/* =========================================================================
   AUREA Doula Alliance — Design System
   Warm, editorial, institutional. Mobile-first. Accessible.
   Palette: ivory / parchment / muted gold / deep olive / charcoal / clay.
   ========================================================================= */

:root {
  /* Surfaces */
  --ivory: #FBF8F1;
  --parchment: #F4ECDB;
  --parchment-2: #EFE5D2;
  --paper: #FFFFFF;

  /* Ink */
  --charcoal: #2A2826;
  --ink: #33302B;
  --muted: #6E675C;
  --faint: #9A9384;

  /* Brand */
  --gold: #B08D4F;
  --gold-deep: #8A6D3B;
  --gold-soft: #E7D8B8;
  --olive: #4B553B;
  --olive-deep: #363D2B;
  --clay: #B57A57;
  --clay-soft: #E3C3AC;

  /* Functional */
  --line: #E3DACB;
  --line-strong: #D9CDB8;
  --ok: #3F6B4A;
  --ok-soft: #E2EEDF;
  --warn: #9A6B1F;
  --warn-soft: #F6E9CE;
  --bad: #9B3B32;
  --bad-soft: #F4DEDB;

  /* Type */
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Scale */
  --step--1: clamp(0.80rem, 0.77rem + 0.15vw, 0.88rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.10rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.45rem);
  --step-2:  clamp(1.50rem, 1.35rem + 0.75vw, 2.00rem);
  --step-3:  clamp(1.95rem, 1.65rem + 1.50vw, 2.85rem);
  --step-4:  clamp(2.40rem, 1.90rem + 2.50vw, 3.80rem);
  --step-5:  clamp(3.00rem, 2.20rem + 4.00vw, 5.20rem);

  /* Layout */
  --container: 1140px;
  --container-narrow: 760px;
  --gutter: clamp(1.1rem, 0.6rem + 2.2vw, 2.2rem);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(42,40,38,0.06), 0 2px 8px rgba(42,40,38,0.05);
  --shadow-md: 0 6px 18px rgba(42,40,38,0.10);
  --shadow-lg: 0 18px 50px rgba(42,40,38,0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--gold-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--olive); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 540; line-height: 1.12; color: var(--charcoal); letter-spacing: -0.01em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { max-width: 68ch; }
ul, ol { padding-left: 1.15rem; }
li { margin: 0.35rem 0; }
strong { color: var(--charcoal); font-weight: 620; }
small { font-size: var(--step--1); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
.section-tight { padding-block: clamp(2rem, 1.4rem + 3vw, 3.5rem); }
.stack > * + * { margin-top: 1rem; }
.split > * + * { margin-top: 1.25rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 650; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.lead { font-size: var(--step-1); color: var(--muted); line-height: 1.55; max-width: 60ch; }
.section-head { max-width: 62ch; margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.6rem); }
.section-head > * + * { margin-top: 0.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-sans); font-size: 0.98rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 0.78rem 1.45rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  text-decoration: none; line-height: 1.1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn-olive { background: var(--olive); color: #fff; }
.btn-olive:hover { background: var(--olive-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--gold-deep); padding-inline: 0.4rem; }
.btn-ghost:hover { color: var(--olive); }
.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,241,0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(251,248,241,0.94); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-serif); font-weight: 600; font-size: 1.22rem; color: var(--charcoal); letter-spacing: 0.02em; }
.brand:hover { color: var(--gold-deep); }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-sub { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); display: block; margin-top: 2px; }
.nav-desktop { display: none; }
.nav-link { font-size: 0.94rem; font-weight: 500; color: var(--ink); padding: 0.4rem 0.2rem; position: relative; }
.nav-link:hover { color: var(--gold-deep); }
.nav-link.is-active { color: var(--gold-deep); }
.nav-link.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gold); border-radius: 2px; }
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.lang-pill { font-size: 0.74rem; font-weight: 600; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.3rem 0.7rem; }
.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line-strong); border-radius: 10px; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 70px 0 0 0; z-index: 49; background: var(--ivory); padding: var(--gutter); overflow-y: auto; }
.mobile-menu.is-open { display: block; }
.mobile-menu .nav-link { display: block; padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
.mobile-menu .nav-link.is-active { color: var(--gold-deep); }
.mobile-menu .btn { margin-top: 1.2rem; }

@media (min-width: 980px) {
  .nav-desktop { display: flex; align-items: center; gap: 1.35rem; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background:
   radial-gradient(900px 500px at 85% -10%, var(--gold-soft) 0%, transparent 60%),
   radial-gradient(700px 500px at -10% 110%, var(--olive) 0%, transparent 55%),
   linear-gradient(180deg, var(--ivory), var(--parchment)); opacity: 0.9; }
.hero-inner { position: relative; padding-block: clamp(3.5rem, 2rem + 7vw, 7rem); }
.hero h1 { max-width: 16ch; }
.hero .lead { margin-top: 1.3rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.2rem; margin-top: 2.6rem; }
.hero-meta .stat .n { font-family: var(--font-serif); font-size: var(--step-3); color: var(--olive); line-height: 1; }
.hero-meta .stat .l { font-size: var(--step--1); color: var(--muted); margin-top: 0.35rem; letter-spacing: 0.02em; }
.hero-card { display: none; }
@media (min-width: 980px) {
  .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
  .hero-card { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-lg); }
}

/* ---------- Cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; margin-bottom: 1rem; font-family: var(--font-serif); font-size: 1.3rem; }
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Definition list cards (standards/ethics) */
.spec { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.spec-row { display: grid; grid-template-columns: 1fr; gap: 0.4rem; padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 0; }
.spec-row .k { font-family: var(--font-serif); font-size: 1.18rem; color: var(--charcoal); display: flex; align-items: baseline; gap: 0.7rem; }
.spec-row .k .num { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; color: var(--gold-deep); background: var(--gold-soft); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.spec-row .v { color: var(--muted); font-size: 0.97rem; }
@media (min-width: 760px) { .spec-row { grid-template-columns: 0.9fr 1.6fr; gap: 2rem; align-items: start; } }

/* ---------- Badges ---------- */
.badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.32rem 0.7rem; border-radius: 999px; border: 1px solid transparent; }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-valid { color: var(--ok); background: var(--ok-soft); }
.badge-suspended { color: var(--warn); background: var(--warn-soft); }
.badge-revoked { color: var(--bad); background: var(--bad-soft); }
.badge-draft { color: var(--olive); background: var(--gold-soft); }
.badge-demo { color: var(--clay); background: var(--clay-soft); }
.badge-neutral { color: var(--muted); background: var(--parchment-2); }

/* ---------- Banners ---------- */
.banner { border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.95rem; display: flex; gap: 0.75rem; align-items: flex-start; border: 1px solid; }
.banner .ico { flex: none; font-size: 1.1rem; line-height: 1.4; }
.banner-note { color: var(--olive-deep); background: var(--gold-soft); border-color: var(--gold); }
.banner-demo { color: #7c4a28; background: var(--clay-soft); border-color: var(--clay); }
.banner-warn { color: var(--warn); background: var(--warn-soft); border-color: #d8b06a; }
.banner-legal { color: var(--ink); background: var(--parchment); border-color: var(--line-strong); font-size: 0.92rem; }

/* ---------- Callout / panels ---------- */
.panel { background: var(--parchment); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 1rem + 1.5vw, 2rem); }
.panel-olive { background: var(--olive); color: #f3efe4; border-color: var(--olive-deep); }
.panel-olive h2, .panel-olive h3, .panel-olive h4 { color: #fff; }
.panel-olive p, .panel-olive li { color: #e7e2d3; }
.panel-olive .eyebrow { color: var(--gold-soft); }
.panel-olive .eyebrow::before { background: var(--gold-soft); }
.panel-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.field .req { color: var(--bad); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 0.72rem 0.85rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field .hint { font-size: 0.82rem; color: var(--faint); margin-top: 0.35rem; }
.field .err { font-size: 0.82rem; color: var(--bad); margin-top: 0.35rem; display: none; }
.field.has-error input, .field.has-error select { border-color: var(--bad); }
.field.has-error .err { display: block; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.consent input { margin-top: 0.25rem; width: 18px; height: 18px; flex: none; accent-color: var(--gold); }
.form-note { font-size: 0.85rem; color: var(--faint); margin-top: 0.8rem; }
.form-success { display: none; background: var(--ok-soft); color: var(--ok); border: 1px solid #b9d8bf; border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-top: 1rem; }
.form-success.show { display: block; }

/* ---------- Verify ---------- */
.verify-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow-md); }
.verify-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.verify-form input { flex: 1 1 240px; }
.verify-result { margin-top: 1.6rem; }
.result-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.result-card.ok { border-color: #b9d8bf; background: var(--ok-soft); }
.result-card.warn { border-color: #d8b06a; background: var(--warn-soft); }
.result-card.bad { border-color: #e0b3ad; background: var(--bad-soft); }
.result-card.empty { background: var(--parchment); border-style: dashed; }
.result-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.result-head .mark { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-size: 1.3rem; flex: none; }
.result-card.ok .mark { background: #cfe6d3; color: var(--ok); }
.result-card.warn .mark { background: #f0dcb0; color: var(--warn); }
.result-card.bad .mark { background: #eccac4; color: var(--bad); }
.result-card.empty .mark { background: var(--parchment-2); color: var(--muted); }
.cred-table { width: 100%; border-collapse: collapse; margin-top: 0.4rem; }
.cred-table th, .cred-table td { text-align: left; padding: 0.6rem 0.2rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; vertical-align: top; }
.cred-table th { font-weight: 600; color: var(--muted); width: 42%; }
.cred-table td { color: var(--ink); }
.verified-checks { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.verified-checks .chip { font-size: 0.82rem; background: #cfe6d3; color: var(--ok); border-radius: 999px; padding: 0.3rem 0.8rem; }

/* ---------- Credential record page ---------- */
.record-sheet { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2.5vw, 2.6rem); box-shadow: var(--shadow-md); }
.record-header { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); margin-bottom: 1.4rem; }
.seal { width: 64px; height: 64px; flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-deep); color: #d9dccf; margin-top: 4rem; }
.site-footer a { color: #cdd2c0; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; gap: 2rem; padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: #aeb3a0; font-size: 0.95rem; max-width: 36ch; margin-top: 0.8rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 0.9rem; font-family: var(--font-sans); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.8rem; opacity: 0.85; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin: 0.5rem 0; font-size: 0.95rem; }
.footer-disclosure { background: rgba(0,0,0,0.18); border-radius: var(--radius); padding: 1.1rem 1.3rem; font-size: 0.86rem; color: #c2c7b5; line-height: 1.55; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; font-size: 0.85rem; color: #9aa08c; }

/* ---------- Misc ---------- */
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.2rem; font-size: var(--step-2); }
.prose h3 { margin-top: 1.6rem; font-size: var(--step-1); }
.prose ul { color: var(--ink); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 2rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.8rem; background: var(--parchment-2); color: var(--muted); border-radius: 999px; padding: 0.3rem 0.8rem; }
.timeline { border-left: 2px solid var(--line-strong); margin-left: 0.5rem; padding-left: 1.4rem; }
.timeline-item { position: relative; padding-bottom: 1.6rem; }
.timeline-item::before { content: ""; position: absolute; left: -1.75rem; top: 0.35rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid var(--ivory); }
.timeline-item .when { font-size: 0.82rem; font-weight: 650; color: var(--gold-deep); letter-spacing: 0.04em; }
.not-found { text-align: center; padding-block: clamp(3rem, 2rem + 6vw, 6rem); }
.not-found .code { font-family: var(--font-serif); font-size: clamp(4rem, 3rem + 8vw, 8rem); color: var(--gold-soft); line-height: 1; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- More dropdown (nav) ---------- */
.nav-more { position: relative; display: inline-flex; }
.nav-more-btn { background: transparent; border: 0; cursor: pointer; font: inherit; color: var(--ink); padding: 0.4rem 0.2rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.nav-more-btn:hover { color: var(--gold-deep); }
.nav-more-btn .caret { font-size: 0.7rem; opacity: 0.7; }
.nav-more-menu { position: absolute; top: calc(100% + 12px); right: 0; min-width: 220px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 0.5rem; display: flex; flex-direction: column; gap: 0.1rem; z-index: 60; }
.nav-more-menu[hidden] { display: none; }
.nav-more-menu .nav-link { padding: 0.6rem 0.75rem; border-radius: 8px; font-size: 0.95rem; }
.nav-more-menu .nav-link:hover { background: var(--parchment); color: var(--gold-deep); }
.nav-more-menu .nav-link.is-active { color: var(--gold-deep); background: var(--parchment); }

/* ---------- Disclosure boxes ---------- */
.disclosure-box { background: var(--parchment); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.2rem 1.4rem; font-size: 0.92rem; color: var(--ink); line-height: 1.6; }
.disclosure-box h4 { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.74rem; color: var(--gold-deep); margin-bottom: 0.6rem; }
.disclosure-box p + p { margin-top: 0.7rem; }

/* ---------- Demo form notice ---------- */
.form-demo { background: var(--parchment); border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 0.9rem 1.1rem; font-size: 0.88rem; color: var(--muted); margin-bottom: 1.2rem; }
.form-demo strong { color: var(--charcoal); }

/* ---------- Footer extras ---------- */
.footer-zh { font-size: 0.85rem; color: #aeb3a0; margin-top: 0.9rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; margin-top: 0.9rem; }
.footer-legal-links a { font-size: 0.88rem; color: #cdd2c0; }
.footer-legal-links a:hover { color: #fff; }
.email-note { display: block; font-size: 0.8rem; color: #aeb3a0; margin-top: 0.35rem; }
/* ---------- card-cta ---------- */
.card-cta { display: flex; flex-direction: column; gap: 0.6rem; }
.card-cta .eyebrow { margin-bottom: 0.2rem; }
.card-cta .btn { margin-top: 0.4rem; align-self: flex-start; }

/* ---------- check-list ---------- */
.check-list { list-style: none; padding-left: 0; margin: 0.6rem 0; }
.check-list li { position: relative; padding-left: 1.7rem; margin: 0.5rem 0; line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }

/* ---------- faq / details ---------- */
.faq { margin-top: 1rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 0; }
.faq summary { cursor: pointer; font-weight: 600; padding: 1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 1rem; color: var(--muted); line-height: 1.65; max-width: 62ch; }

/* ---------- spec-list ---------- */
.spec-list { margin-top: 0.8rem; border-top: 1px solid var(--line); }
.spec { display: grid; grid-template-columns: 220px 1fr; gap: 1.2rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.spec-key { font-weight: 600; color: var(--olive); }
.spec-val { color: var(--ink); line-height: 1.6; }
@media (max-width: 640px) {
  .spec { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ---------- panel-warn ---------- */
.panel-warn { border-left: 4px solid var(--clay); background: rgba(181,122,87,0.07); }
