/* ============================================================
   Prepare.Care — REDESIGN (Sophia Healthcare-inspired)
   Local preview only. Independent from the live site.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=Noto+Sans+Nandinagari:wght@500;600;700&display=swap');

:root {
  /* core ink */
  --ink:        #0E2433;
  --ink-soft:   #28384A;
  --muted:      #6B7B8A;

  /* warm surfaces */
  --cream:      #F6F1E6;   /* warm section bg */
  --cream-soft: #FBF7EE;   /* hero band */
  --paper:      #FFFFFF;
  --border:     #E6E0D2;
  --border-soft:#EFEAE0;

  /* sage / green system */
  --sage:       #5C8B7A;
  --sage-deep:  #2F6E55;
  --sage-tint:  #E6EFE8;
  --sage-line:  #C9DACE;

  /* accents */
  --coral:      #E26450;   /* keeps brand dot */
  --gold:       #D9B16C;
  --navy-dark:  #0B1F2E;   /* dark hero band */

  /* layout */
  --max:        1200px;
  --max-narrow: 920px;
  --radius:     20px;
  --radius-lg:  28px;
  --radius-pill:999px;

  /* shadows */
  --shadow-sm:  0 6px 16px rgba(14, 36, 51, 0.06);
  --shadow:     0 22px 48px -18px rgba(14, 36, 51, 0.18);
  --shadow-lg:  0 36px 80px -28px rgba(14, 36, 51, 0.28);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover, a:focus { color: var(--ink); text-decoration: underline; }

button, input, select, textarea { font: inherit; }

/* ---------- Type ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sage);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  line-height: 1.12;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 500;
}
h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
}
h3 {
  font-size: clamp(1.18rem, 2.1vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -0.005em;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p { margin: 0 0 1rem; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.muted { color: var(--muted); }
.small-note {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout ---------- */

.container {
  width: min(100% - 2.4rem, var(--max));
  margin: 0 auto;
}
.container--narrow { max-width: var(--max-narrow); }

.section {
  padding: clamp(2.25rem, 5vw, 4.25rem) 0;
}
.section--tight { padding: clamp(1.5rem, 3vw, 2.25rem) 0; }

.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-sage  { background: var(--sage-tint); }
.bg-navy  { background: var(--navy-dark); color: rgba(255,255,255,0.85); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--paper); }
.bg-navy .eyebrow { color: #B5D6C7; }
.bg-navy .eyebrow::before { background: #B5D6C7; }
.bg-navy a { color: #C8E0D2; }
.bg-navy a:hover { color: var(--paper); }

/* ---------- Top Bar ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand-mark {
  font-family: 'Noto Sans Nandinagari', 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}
.brand-mark:hover { text-decoration: none; color: var(--ink); }
.brand-dot { color: var(--coral); font-size: 1.35em; line-height: 1; }
.brand-care { color: var(--sage-deep); }
.site-footer .brand-mark { display: inline-block; margin: 0 0 0.85rem; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.site-nav a:hover,
.site-nav a:focus { background: var(--sage-tint); color: var(--ink); text-decoration: none; }
.site-nav a.active { color: var(--sage-deep); }
.site-nav a.nav-cta {
  background: var(--ink);
  color: var(--paper);
  margin-left: 0.5rem;
  padding: 0 1.15rem;
}
.site-nav a.nav-cta:hover { background: var(--sage-deep); color: var(--paper); }

@media (max-width: 720px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .site-nav ul { flex-wrap: wrap; }
}

/* ---------- Buttons ---------- */

.button,
.button-secondary,
.button-outline,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 52px;
  padding: 0 1.55rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
}

.button {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 28px -12px rgba(14, 36, 51, 0.55);
}
.button:hover, .button:focus {
  background: var(--sage-deep);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--sage-deep);
  color: var(--paper);
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button-outline:hover, .button-outline:focus {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.button .arrow { font-size: 1.05rem; line-height: 1; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-top: 1.6rem; }
.btn-row .small-note { margin: 0; }

/* ---------- Hero ---------- */

.hero {
  padding: clamp(2.25rem, 5vw, 4.25rem) 0 clamp(2rem, 4.25vw, 3.25rem);
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream-soft) 60%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-trust .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}

.hero-art {
  position: relative;
  isolation: isolate;
  /* leave space for the floating pill/stat so they don't clip on tight grids */
  padding: 1rem 1.25rem 1.5rem;
}
.hero-art__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-art__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(92,139,122,0.18) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero-art__main img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-art__pill {
  position: absolute;
  left: 0.25rem;
  bottom: 0.25rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  color: var(--ink-soft);
  z-index: 3;
}
.hero-art__pill .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
}

.hero-art__stat {
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.05rem;
  box-shadow: var(--shadow);
  z-index: 3;
  min-width: 130px;
}
.hero-art__stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.hero-art__stat span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 600px) {
  .hero-art { padding: 0.5rem 0.5rem 1rem; }
  .hero-art__pill { left: 0.6rem; bottom: 0.6rem; font-size: 0.82rem; }
  .hero-art__stat { right: 0.6rem; top: 0.6rem; min-width: 105px; padding: 0.55rem 0.75rem; }
  .hero-art__stat strong { font-size: 1.2rem; }
}

/* ---------- Stats Strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 760px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stats__item {
  background: var(--paper);
  padding: 1.4rem 1.25rem;
}
.stats__num {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--sage-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.stats__label {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ---------- Section heading block ---------- */

.section-head {
  max-width: 720px;
  margin-bottom: clamp(1.4rem, 2.8vw, 2.1rem);
}
.section-head .lead { font-size: 1.05rem; color: var(--muted); }
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .card-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.tile {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--sage-line); }
.tile h3 { margin: 0.85rem 0 0.45rem; }
.tile p { margin: 0; color: var(--ink-soft); }

.tile-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  border: 1px solid var(--sage-line);
}

/* Tile variants */
.tile--cream { background: var(--cream); border-color: var(--border-soft); }
.tile--sage  { background: var(--sage-tint); border-color: var(--sage-line); }

/* ---------- Spotlight ---------- */

.spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: center;
}
@media (min-width: 940px) { .spotlight { grid-template-columns: 0.95fr 1.05fr; } }
.spotlight--reverse > .spotlight__media { order: 2; }
@media (min-width: 940px) {
  .spotlight--reverse > .spotlight__media { order: 0; }
  .spotlight--reverse > .spotlight__copy { order: 2; }
}

.spotlight__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.spotlight__media img { width: 100%; height: auto; display: block; }
.spotlight__copy h2 { margin-bottom: 1rem; }

.checklist {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}
.checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.85rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage-tint);
  border: 1px solid var(--sage-line);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.05rem;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--sage-deep);
  border-bottom: 2px solid var(--sage-deep);
  transform: rotate(-45deg);
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.steps li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.steps__num {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.steps__text strong { display: block; color: var(--ink); margin-bottom: 0.1rem; font-weight: 600; }

/* ---------- Signup panel (ER kit) ---------- */

.signup-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
@media (min-width: 880px) {
  .signup-panel { grid-template-columns: 1fr 1.1fr; gap: 2.75rem; align-items: start; }
}
.signup-panel h2 { margin-bottom: 0.75rem; font-size: clamp(1.55rem, 2.6vw, 1.95rem); }
.signup-panel .small-note { margin-top: 1.1rem; }

/* ER kit Phase 0 — email form → API → thank-you */
.er-kit-form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.er-kit-form__title {
  margin: 0 0 0.45rem;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.er-kit-form__lede {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.er-kit-form__opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0.25rem;
  padding: 0.75rem 0.85rem;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
  font-weight: 500;
}
.er-kit-form__opt input[type="checkbox"] {
  width: 1.35rem;
  height: 1.35rem;
  min-width: 1.35rem;
  min-height: 1.35rem;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--sage-deep);
  cursor: pointer;
}
.er-kit-form { margin-top: 0.25rem; position: relative; }
.er-kit-form .hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.er-kit-form .button { margin-top: 0.85rem; }
.er-kit-form .cf-turnstile { margin-top: 0.85rem; }
.kit-form-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: #FDECEA;
  border: 1px solid #E8B4AC;
  color: var(--ink);
  font-size: 0.92rem;
}
.kit-form-alert[hidden] { display: none !important; }

/* ---------- Forms ---------- */

label {
  display: block;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
input, select, textarea {
  width: 100%;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: var(--paper);
}
textarea { min-height: 160px; resize: vertical; }
.form-row { display: grid; gap: 1rem; }
.form-row.two-up { grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-row.two-up { grid-template-columns: 1fr 1fr; } }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: rgba(255,255,255,0.86);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 100%, rgba(92,139,122,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--paper); margin-bottom: 0.85rem; }
.cta-band p { max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-band .button { background: var(--paper); color: var(--ink); box-shadow: none; margin-top: 1.5rem; }
.cta-band .button:hover { background: var(--sage-tint); color: var(--ink); }

/* ---------- YouTube band ---------- */

.youtube-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.25rem);
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) {
  .youtube-band { grid-template-columns: 1fr 0.85fr; }
}
.youtube-band h2 { color: var(--paper); }
.youtube-band a { color: #B5D6C7; }
.youtube-band__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.youtube-band__panel h3 { color: var(--paper); margin-top: 0.4rem; }
.youtube-band__panel .play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

/* ---------- Inline links list ---------- */

.inline-links {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  align-items: center;
}

/* ---------- ER Action Kit page extras ---------- */

.kit-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.kit-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 36, 51, 0) 60%, rgba(14, 36, 51, 0.08) 100%);
  pointer-events: none;
}
.kit-hero-card img { width: 100%; display: block; }

/* Thank-you kit page: keep hero art from looking squeezed in the grid */
.hero.hero--thankyou-er-kit .hero-grid {
  align-items: start;
}
@media (min-width: 940px) {
  .hero.hero--thankyou-er-kit .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, min(42vw, 560px));
  }
}
.hero.hero--thankyou-er-kit .hero-art {
  padding: 0;
  width: 100%;
  max-width: 560px;
}
@media (min-width: 940px) {
  .hero.hero--thankyou-er-kit .hero-art {
    justify-self: end;
  }
}
.hero.hero--thankyou-er-kit .kit-hero-card {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.hero.hero--thankyou-er-kit .kit-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.kit-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1.25rem;
}
@media (min-width: 700px) { .kit-meta { grid-template-columns: repeat(4, 1fr); } }
.kit-meta__item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
}
.kit-meta__label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.kit-meta__value { display: block; color: var(--ink); font-weight: 600; margin-top: 0.15rem; }

.faq {
  display: grid;
  gap: 0.85rem;
}
.faq__item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
}
.faq__item h3 { margin: 0 0 0.4rem; font-family: 'Inter', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.faq__item p { margin: 0; color: var(--ink-soft); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(2rem, 4vw, 3rem) 0 1.75rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
}
.site-footer .brand-mark { color: var(--paper); }
.site-footer .brand-care { color: #C8E0D2; }
.site-footer p { color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 0.6fr; }
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-links a { color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--paper); }
.footer-disclaimer { font-size: 0.86rem; line-height: 1.55; color: rgba(255,255,255,0.55); margin-top: 1rem; }

/* ---------- Reveal panel (tools page) ---------- */

.reveal-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
  margin-top: 0;
}
.reveal-panel.is-open {
  max-height: 1500px;
  opacity: 1;
  margin-top: 1.25rem;
}

/* ---------- Legal ---------- */

.legal-page main { background: var(--cream-soft); }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.legal-page h2 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); margin-top: 2rem; }
.legal-page h3 { font-size: 1.05rem; margin-top: 1.4rem; }
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body ul { padding-left: 1.25rem; }
