/* ============================================================
   A3 Aura Health - mehjooba.doctor
   Modern-calm-warm. Brand purple + green. Light + dark.
   Signature: the "Aura" soft radial glow.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --font-display: "SF Pro Rounded", ui-rounded, "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-accent: Georgia, "Times New Roman", "Iowan Old Style", serif;

  /* Brand */
  --purple: #7a3fa0;
  --purple-strong: #5e2b7e;
  --plum: #45215c;
  --lilac: #b98fd6;
  --green: #6ba82e;
  --green-soft: #8bc34a;

  /* Light theme surfaces + ink */
  --bg: #fbf8fd;
  --surface: #ffffff;
  --surface-2: #f5eefb;
  --ink: #2b2333;
  --ink-soft: #6a5f77;
  --ink-faint: #9b8fa8;
  --border: rgba(90, 45, 120, 0.12);
  --border-strong: rgba(90, 45, 120, 0.22);

  --primary: var(--purple);
  --primary-ink: #ffffff;
  --accent: var(--green);
  --shadow-sm: 0 1px 2px rgba(69, 33, 92, 0.06), 0 2px 8px rgba(69, 33, 92, 0.05);
  --shadow-md: 0 6px 24px rgba(69, 33, 92, 0.10);
  --shadow-lg: 0 18px 60px rgba(69, 33, 92, 0.16);

  /* Aura glow colors */
  --aura-1: rgba(122, 63, 160, 0.35);
  --aura-2: rgba(139, 195, 74, 0.28);
  --aura-3: rgba(185, 143, 214, 0.30);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);
}

:root[data-theme="dark"] {
  --bg: #16111c;
  --surface: #1f1727;
  --surface-2: #271d31;
  --ink: #f1e8f8;
  --ink-soft: #bdaecb;
  --ink-faint: #8a7c98;
  --border: rgba(200, 170, 230, 0.14);
  --border-strong: rgba(200, 170, 230, 0.24);

  --primary: #b98fd6;
  --primary-ink: #1a1121;
  --accent: #9bd154;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 64px rgba(0, 0, 0, 0.55);

  --aura-1: rgba(150, 90, 200, 0.40);
  --aura-2: rgba(139, 195, 74, 0.22);
  --aura-3: rgba(185, 143, 214, 0.26);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #16111c;
    --surface: #1f1727;
    --surface-2: #271d31;
    --ink: #f1e8f8;
    --ink-soft: #bdaecb;
    --ink-faint: #8a7c98;
    --border: rgba(200, 170, 230, 0.14);
    --border-strong: rgba(200, 170, 230, 0.24);
    --primary: #b98fd6;
    --primary-ink: #1a1121;
    --accent: #9bd154;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 64px rgba(0, 0, 0, 0.55);
    --aura-1: rgba(150, 90, 200, 0.40);
    --aura-2: rgba(139, 195, 74, 0.22);
    --aura-3: rgba(185, 143, 214, 0.26);
  }
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 0.5em; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; border-radius: 6px; }
:root[data-theme="dark"] :focus-visible { outline-color: var(--lilac); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--surface-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }
.accent-serif { font-family: var(--font-accent); font-style: italic; font-weight: 400; letter-spacing: 0; }
.text-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 14px 24px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--primary); color: var(--primary-ink); box-shadow: var(--shadow-md); }
.btn--primary:hover { box-shadow: var(--shadow-lg); }
.btn--accent { background: var(--accent); color: #123006; box-shadow: var(--shadow-md); }
:root[data-theme="dark"] .btn--accent { color: #0f2404; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--primary); }
.btn--wa { background: #25d366; color: #05330f; box-shadow: var(--shadow-md); }
.btn--wa:hover { box-shadow: var(--shadow-lg); }
.btn--lg { padding: 17px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- Aura signature ---------- */
.aura { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; opacity: 0.9; }
.aura-breathe { animation: breathe 9s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .aura-breathe { animation: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__logo {
  width: 42px; height: 42px; border-radius: 12px; background: #fff; padding: 4px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); object-fit: contain;
}
.brand__name { font-size: 1.14rem; letter-spacing: -0.02em; line-height: 1; }
.brand__name b { color: var(--purple); }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.04em; color: var(--ink-soft); margin-top: 3px; }
:root[data-theme="dark"] .brand__name b { color: var(--lilac); }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; padding: 8px 12px; border-radius: 10px; }
.nav__links a:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .18s ease, transform .18s ease;
}
.icon-btn:hover { background: var(--surface-2); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; }
.theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .moon { display: block; }
}

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px var(--gutter) 22px;
    box-shadow: var(--shadow-lg); transform: translateY(-140%); transition: transform .28s ease; margin-left: 0;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 12px; font-size: 1.05rem; }
  .nav__cta-mobile { margin-top: 8px; }
  .nav-toggle { display: inline-flex; }
  .nav__desk-cta { display: none; }
  /* Push the theme toggle + menu button to the far right on phones */
  .nav__actions { margin-left: auto; }
}
@media (min-width: 861px) { .nav__cta-mobile { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 8vw, 96px) var(--section-y); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__title { font-size: clamp(2.3rem, 6vw, 4rem); margin-bottom: 20px; }
.hero__title .accent-serif { color: var(--purple); }
:root[data-theme="dark"] .hero__title .accent-serif { color: var(--lilac); }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.24rem); color: var(--ink-soft); max-width: 40ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__micro { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }
.hero__micro li { display: inline-flex; align-items: center; gap: 7px; }
.hero__micro svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.hero__figure { position: relative; justify-self: center; width: min(420px, 100%); aspect-ratio: 1; display: grid; place-items: center; }
.hero__halo {
  position: absolute; inset: -6%; border-radius: 50%;
  background: conic-gradient(from 200deg, var(--purple), var(--green-soft), var(--lilac), var(--purple));
  filter: blur(2px); opacity: 0.9; z-index: 0;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__halo { animation: none; } }
.hero__photo-wrap {
  position: relative; z-index: 2; width: 86%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 6px solid var(--surface); box-shadow: var(--shadow-lg);
}
.hero__photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero__badge {
  position: absolute; z-index: 3; bottom: 6%; left: -4%;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero__badge b { font-family: var(--font-display); font-size: 1.4rem; color: var(--purple); line-height: 1; }
:root[data-theme="dark"] .hero__badge b { color: var(--lilac); }
.hero__badge span { font-size: 0.78rem; color: var(--ink-soft); font-weight: 600; }
.hero .aura-1 { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -18%; right: -12%; background: radial-gradient(circle, var(--aura-1), transparent 68%); }
.hero .aura-2 { width: 40vw; height: 40vw; max-width: 520px; max-height: 520px; bottom: -22%; left: -14%; background: radial-gradient(circle, var(--aura-2), transparent 68%); }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--border); background: var(--surface); }
.trust__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding-block: 26px; }
.trust__item { text-align: center; padding: 6px 10px; border-right: 1px solid var(--border); }
.trust__item:last-child { border-right: 0; }
.trust__item b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1.05; }
.trust__item span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 820px) {
  .trust__row { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  .trust__item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust__item:nth-child(even), .trust__item:last-child { border-right: 0; }
  .trust__item:nth-child(5) { grid-column: 1 / -1; border-right: 0; }
}

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--purple) 16%, transparent), color-mix(in srgb, var(--green-soft) 20%, transparent));
  color: var(--purple);
}
:root[data-theme="dark"] .card__icon { color: var(--lilac); }
.card__icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* ---------- Offerings ---------- */
.offerings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 780px) { .offerings { grid-template-columns: 1fr; } }
.offer {
  position: relative; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); display: flex; flex-direction: column;
  box-shadow: var(--shadow-md); overflow: hidden;
}
.offer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--purple), var(--green-soft)); }
.offer__tag { align-self: flex-start; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.offer h3 { font-size: 1.5rem; }
.offer__desc { color: var(--ink-soft); margin-bottom: 20px; }
.offer__list { margin-bottom: 28px; display: grid; gap: 11px; }
.offer__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.97rem; color: var(--ink); }
.offer__list svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 3px; }
.offer__foot { margin-top: auto; }
.offer__note { margin: 12px 0 0; font-size: 0.83rem; color: var(--ink-faint); text-align: center; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }
.about__figure { position: relative; }
.about__figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.about__figure .aura-3 { width: 70%; height: 70%; bottom: -10%; right: -10%; background: radial-gradient(circle, var(--aura-3), transparent 70%); z-index: -1; }
.about__quals { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.chip { font-size: 0.8rem; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--surface-2); color: var(--ink-soft); border: 1px solid var(--border); }
.about__reg { font-size: 0.9rem; color: var(--ink-soft); }
.about__reg b { color: var(--ink); }
.about p { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step__num { counter-increment: step; font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--primary-ink); background: var(--primary); width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 16px; }
.step__num::before { content: counter(step, decimal-leading-zero); }
.step__icon { color: var(--accent); margin-bottom: 10px; }
.step__icon svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.why__item { display: flex; gap: 16px; align-items: flex-start; }
.why__ic { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--green-soft) 20%, transparent); color: var(--accent); }
.why__ic svg { width: 24px; height: 24px; }
.why__item h3 { font-size: 1.08rem; margin-bottom: 5px; }
.why__item p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 22px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq details[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 12px; height: 12px; border-right: 2.5px solid var(--primary); border-bottom: 2.5px solid var(--primary); transform: rotate(45deg); transition: transform .2s ease; flex: none; margin-top: -4px; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq p { color: var(--ink-soft); margin: 0 0 18px; font-size: 0.98rem; }

/* ---------- Enquiry / CTA ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .aura-1 { width: 50vw; height: 50vw; max-width: 640px; max-height: 640px; top: -30%; left: -10%; background: radial-gradient(circle, var(--aura-1), transparent 68%); }
.cta-band .aura-2 { width: 44vw; height: 44vw; max-width: 560px; max-height: 560px; bottom: -34%; right: -12%; background: radial-gradient(circle, var(--aura-2), transparent 68%); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-copy h2 { margin-bottom: 14px; }
.cta-copy p { color: var(--ink-soft); font-size: 1.05rem; }
.cta-copy .btn { margin-top: 8px; }

.form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px); box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 7px; color: var(--ink); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink); background: var(--bg);
  border: 1px solid var(--border-strong); border-radius: 12px; padding: 12px 14px; transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent); }
.form__note { font-size: 0.82rem; color: var(--ink-faint); margin: 14px 0 0; text-align: center; }
.form__note svg { width: 14px; height: 14px; vertical-align: -2px; color: var(--accent); }

/* ---------- Alert / disclaimer ---------- */
.alert {
  display: flex; gap: 14px; align-items: flex-start; background: var(--surface-2);
  border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 12px;
  padding: 16px 18px; font-size: 0.92rem; color: var(--ink-soft);
}
.alert svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 1px; }
.alert b { color: var(--ink); }
.alert a { font-weight: 700; }
.mt-band { margin-top: clamp(40px, 6vw, 64px); }

/* ---------- Footer ---------- */
.footer { background: var(--surface-2); border-top: 1px solid var(--border); padding-block: clamp(48px, 7vw, 72px) 28px; font-size: 0.95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }
.footer__brand .brand { margin-bottom: 14px; }
.footer p { color: var(--ink-soft); margin: 0 0 10px; max-width: 38ch; }
.footer h4 { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); margin: 0 0 16px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a, .footer__contact a { color: var(--ink-soft); }
.footer__links a:hover, .footer__contact a:hover { color: var(--primary); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--ink-soft); }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer__disclaimer { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--ink-faint); }
.footer__disclaimer p { max-width: none; font-size: 0.82rem; color: var(--ink-faint); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer__bottom p { margin: 0; font-size: 0.85rem; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__bottom nav a { color: var(--ink-faint); font-size: 0.85rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.hidden { display: none !important; }

/* ---------- Hero stack on mobile ---------- */
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__cta, .hero__micro { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .hero__figure { order: -1; width: min(320px, 82%); }
}

/* ---------- Legal pages ---------- */
.legal { padding-block: clamp(48px, 7vw, 88px); }
.legal__inner { max-width: 760px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 8px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; font-weight: 700; }
.legal .back svg { width: 18px; height: 18px; }
