/* ============================================================
   Dr. Hsu Pediatric Dentistry — Peach Blush Design System
   Tokens + components, per design-system handoff.
   ============================================================ */
:root {
  /* Peach Blush core ramp */
  --peach-50:#FFF8F4; --peach-100:#FDEDE4; --peach-200:#FADCCB; --peach-300:#F6C4AC;
  --peach-400:#F0A588; --peach-500:#E68968; --peach-600:#D46E4E; --peach-700:#B0543A;
  /* Rose accent */
  --rose-50:#FEF4F5; --rose-100:#FBE3E7; --rose-200:#F6C6CE; --rose-300:#EFA1AE;
  --rose-400:#E47D8F; --rose-500:#D65E74; --rose-600:#B84A60;
  /* Warm neutrals */
  --cream-50:#FFFDFB; --cream-100:#FBF6F1; --cream-200:#F4EBE2; --sand-300:#E7D8C9;
  --taupe-400:#C9B4A3; --taupe-500:#A8917E; --clay-600:#7C6455; --clay-700:#574539;
  --espresso-800:#3B2E26; --espresso-900:#2A201A;
  /* Sky / lilac accents */
  --sky-200:#DBE3F2; --sky-300:#B9C7E8; --lilac-300:#D8C7E6;
  /* Semantic */
  --success-500:#6FA57C; --success-100:#E4F0E6; --warning-500:#E0A54B; --warning-100:#FAEFD8;
  --danger-500:#D66A5C; --danger-100:#FBE6E2; --info-500:#7C93C9; --info-100:#E7ECF7;
  /* Gradients */
  --gradient-peach:linear-gradient(135deg,#FDEDE4 0%,#FADCCB 45%,#F6C6CE 100%);
  --gradient-blush-soft:linear-gradient(160deg,#FFF8F4 0%,#FBE3E7 100%);
  --gradient-sunset:linear-gradient(120deg,#F6C4AC 0%,#EFA1AE 55%,#D8C7E6 100%);
  --gradient-hero:linear-gradient(180deg,#FFF8F4 0%,#FDEDE4 40%,#F6C6CE 100%);
  /* Semantic aliases */
  --bg-app:var(--cream-50); --bg-subtle:var(--peach-50);
  --surface-card:#FFFFFF; --surface-cream:var(--cream-100);
  --border-soft:var(--cream-200); --border-default:var(--sand-300); --border-strong:var(--taupe-400);
  --text-heading:var(--espresso-800); --text-body:var(--clay-700); --text-muted:var(--clay-600);
  --text-caption:var(--taupe-500); --text-on-peach:#FFFFFF;
  --brand-primary:var(--peach-500); --brand-primary-hover:var(--peach-600);
  --brand-primary-soft:var(--peach-100); --brand-accent:var(--rose-500); --brand-accent-soft:var(--rose-100);
  /* Type */
  --font-display:'Noto Serif TC','Cormorant Garamond',serif;
  --font-serif:'Noto Serif TC','Cormorant Garamond',serif;
  --font-body:'Noto Sans TC',system-ui,-apple-system,'Helvetica Neue',sans-serif;
  --text-2xs:.6875rem; --text-xs:.75rem; --text-sm:.875rem; --text-base:1rem; --text-md:1.125rem;
  --text-lg:1.375rem; --text-xl:1.75rem; --text-2xl:2.25rem; --text-3xl:3rem;
  --leading-tight:1.15; --leading-snug:1.3; --leading-normal:1.6; --leading-relaxed:1.85;
  --tracking-wider:.14em;
  /* Effects */
  --radius-xs:6px; --radius-sm:10px; --radius-md:16px; --radius-lg:24px; --radius-xl:32px;
  --radius-2xl:44px; --radius-pill:999px;
  --shadow-xs:0 1px 2px rgba(122,79,56,.06); --shadow-sm:0 2px 8px rgba(122,79,56,.07);
  --shadow-md:0 8px 24px rgba(150,90,62,.10); --shadow-lg:0 18px 44px rgba(150,90,62,.13);
  --shadow-xl:0 30px 70px rgba(150,90,62,.16); --shadow-glow-peach:0 10px 30px rgba(230,137,104,.28);
  --ease-soft:cubic-bezier(.22,.61,.36,1); --ease-gentle:cubic-bezier(.4,0,.2,1);
  --dur-fast:140ms; --dur-base:240ms; --dur-slow:420ms;
  /* Layout */
  --container-md:820px; --container-lg:1100px; --container-xl:1180px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:var(--bg-app); color:var(--text-body);
  font-family:var(--font-body); font-size:var(--text-base);
  line-height:var(--leading-normal); -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
h1,h2,h3,h4 { font-family:var(--font-serif); color:var(--text-heading); font-weight:500; line-height:1.35; letter-spacing:.06em; }
a { color:var(--brand-primary); text-decoration:none; transition:color var(--dur-fast) var(--ease-gentle); }
a:hover { color:var(--brand-primary-hover); }
::selection { background:var(--peach-200); color:var(--espresso-900); }
.eyebrow {
  font-family:var(--font-body); font-size:var(--text-xs); font-weight:600;
  letter-spacing:var(--tracking-wider); text-transform:uppercase; color:var(--brand-accent);
}
.lucide, [data-lucide] { width:18px; height:18px; stroke-width:1.75; flex-shrink:0; }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 26px; font-size:var(--text-base); font-family:var(--font-body); font-weight:600;
  line-height:1; letter-spacing:.01em; border:1px solid transparent; border-radius:var(--radius-pill);
  cursor:pointer; white-space:nowrap;
  background:var(--brand-primary); color:var(--text-on-peach); box-shadow:var(--shadow-glow-peach);
  transition:transform var(--dur-fast) var(--ease-soft), background var(--dur-base) var(--ease-gentle),
    box-shadow var(--dur-base) var(--ease-gentle), color var(--dur-base) var(--ease-gentle);
}
.btn:hover { background:var(--brand-primary-hover); color:var(--text-on-peach); transform:translateY(-1px); }
.btn .lucide { width:17px; height:17px; }
.btn-sm { padding:8px 18px; font-size:var(--text-sm); gap:6px; }
.btn-secondary { background:var(--surface-cream); color:var(--text-heading); border-color:var(--border-default); box-shadow:var(--shadow-xs); }
.btn-secondary:hover { background:#fff; color:var(--text-heading); border-color:var(--border-strong); transform:none; }
.btn-ghost { background:transparent; color:var(--brand-primary); box-shadow:none; }
.btn-ghost:hover { background:var(--brand-primary-soft); color:var(--brand-primary); transform:none; }
:is(.btn,.tag,.chip):focus-visible { outline:none; box-shadow:0 0 0 4px rgba(240,165,136,.22); border-color:var(--focus-ring,var(--peach-400)); }

/* ---------- Badge / Tag ---------- */
.badge {
  display:inline-flex; align-items:center; gap:5px; padding:4px 12px;
  border-radius:var(--radius-pill); font-size:var(--text-xs); font-weight:600; letter-spacing:.02em; line-height:1.4;
  background:var(--peach-100); color:var(--peach-700);
}
.badge-sm { padding:2px 9px; font-size:var(--text-2xs); }
.badge-rose { background:var(--rose-100); color:var(--rose-600); }
.badge-lilac { background:#EFE7F5; color:#7E5FA0; }
.badge-info { background:var(--info-100); color:var(--info-500); }
.badge-success { background:var(--success-100); color:var(--success-500); }
.badge-warning { background:var(--warning-100); color:var(--warning-500); }
.badge-neutral { background:var(--cream-200); color:var(--clay-600); }
.tag {
  display:inline-flex; align-items:center; gap:6px; padding:7px 15px;
  border-radius:var(--radius-pill); font-size:var(--text-sm); font-weight:500;
  border:1px solid var(--border-default); background:var(--surface-card); color:var(--text-body);
  cursor:pointer; transition:all var(--dur-base) var(--ease-gentle);
}
.tag:hover { background:var(--brand-primary-soft); color:var(--text-body); }
.tag.selected { background:var(--brand-primary); border-color:var(--brand-primary); color:#fff; }

/* ---------- Cards ---------- */
.card {
  background:var(--surface-card); border:1px solid var(--border-soft);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
}
.card-blush { background:var(--gradient-blush-soft); }
.card-pad { padding:2rem; }
.card-pad-lg { padding:2.75rem; }

/* ---------- Header ---------- */
.site-header {
  position:sticky; top:0; z-index:50;
  background:rgba(255,253,251,.85); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border-soft);
}
.header-inner {
  max-width:var(--container-xl); margin:0 auto; padding:14px 28px;
  display:flex; align-items:center; gap:24px; flex-wrap:wrap;
}
.logo { display:flex; align-items:center; gap:8px; color:inherit; }
.logo-disc {
  width:34px; height:34px; border-radius:50%; background:var(--gradient-sunset);
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-glow-peach);
}
.logo-disc .lucide { width:18px; height:18px; color:#fff; }
.logo-name { font-family:var(--font-serif); font-weight:600; font-size:20px; color:var(--text-heading); line-height:1; }
.logo-sub { font-size:10px; letter-spacing:.14em; color:var(--text-caption); text-transform:uppercase; margin-top:2px; }
.site-nav { display:flex; gap:4px; margin-left:auto; flex-wrap:wrap; }
.site-nav a {
  color:var(--text-muted); font-size:15px; font-weight:500;
  padding:9px 16px; border-radius:var(--radius-pill); transition:all var(--dur-base) var(--ease-gentle);
}
.site-nav a:hover { background:var(--bg-subtle); color:var(--text-body); }
.site-nav a.active { background:var(--brand-primary-soft); color:var(--peach-700); font-weight:600; }

/* ---------- Hero ---------- */
.hero { background:var(--gradient-hero); position:relative; overflow:hidden; padding:80px 28px 96px; }
.hero-mood {
  position:absolute; inset:0; background-image:url(/mood.jpg);
  background-size:cover; background-position:center top; opacity:.28; mix-blend-mode:soft-light;
}
.hero-inner { position:relative; max-width:820px; margin:0 auto; text-align:center; }
.hero h1 {
  font-size:clamp(36px,5.2vw,60px); line-height:1.3; margin:20px 0 18px;
  font-family:var(--font-display); font-weight:500; letter-spacing:.1em;
}
.hero h1 .accent { color:var(--brand-primary); }
.hero-sub { font-size:var(--text-md); color:var(--text-body); line-height:1.8; max-width:560px; margin:0 auto 36px; }

/* ---------- AI search bar ---------- */
.searchbar { width:100%; max-width:640px; margin:0 auto; }
.searchbar form {
  display:flex; align-items:center; gap:10px;
  background:var(--surface-card); border:1px solid var(--peach-200);
  border-radius:var(--radius-pill); padding:8px 8px 8px 22px; box-shadow:var(--shadow-md);
  transition:all var(--dur-base) var(--ease-gentle);
}
.searchbar form:focus-within { border-color:var(--brand-primary); box-shadow:0 0 0 5px rgba(240,165,136,.20), var(--shadow-md); }
.searchbar .lucide-lead { width:22px; height:22px; color:var(--brand-accent); }
.searchbar input {
  flex:1; min-width:0; border:none; outline:none; background:transparent;
  font-family:var(--font-body); font-size:var(--text-md); color:var(--text-body);
}
.searchbar input::placeholder { color:var(--text-caption); }
.searchbar .btn { padding:12px 22px; }
.suggestions { display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; justify-content:center; }
.suggestions a {
  border:1px solid var(--border-default); background:var(--surface-card);
  border-radius:var(--radius-pill); padding:7px 16px; font-size:var(--text-sm); color:var(--text-muted);
  display:inline-flex; align-items:center; gap:6px; transition:all var(--dur-base) var(--ease-gentle);
}
.suggestions a:hover { background:var(--brand-primary-soft); color:var(--text-body); }
.suggestions .lucide { width:14px; height:14px; color:var(--brand-accent); }

/* ---------- Sections ---------- */
.wrap { max-width:var(--container-xl); margin:0 auto; padding:0 28px; }
.wrap-md { max-width:var(--container-md); margin:0 auto; padding:0 28px; }
.section { margin-top:80px; }
.section-head { text-align:center; max-width:640px; margin:0 auto 40px; }
.section-head .eyebrow { margin-bottom:10px; }
.section-head h2 { font-size:var(--text-2xl); }
.section-head p { color:var(--text-muted); font-size:var(--text-md); line-height:1.7; margin-top:12px; }
.section-row { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:28px; flex-wrap:wrap; gap:12px; }
.section-row h2 { font-size:var(--text-2xl); }
.section-row .eyebrow { margin-bottom:8px; }

/* ---------- Age hub cards ---------- */
.age-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px; }
.age-card {
  display:flex; flex-direction:column; gap:16px; padding:2rem;
  background:var(--surface-card); border:1px solid var(--border-soft); border-radius:var(--radius-xl);
  box-shadow:var(--shadow-sm); color:inherit;
  transition:transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-gentle);
}
.age-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); color:inherit; }
.age-disc {
  width:60px; height:60px; border-radius:var(--radius-lg); color:#fff;
  display:inline-flex; align-items:center; justify-content:center; box-shadow:var(--shadow-glow-peach);
}
.age-disc .lucide { width:28px; height:28px; }
.age-card h3 { font-size:var(--text-lg); margin-bottom:4px; }
.age-card .sub { font-size:var(--text-sm); color:var(--text-muted); line-height:var(--leading-normal); }
.age-foot { display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:8px; }
.age-foot .count { font-size:var(--text-xs); color:var(--text-caption); }
.age-foot .go {
  color:var(--brand-primary); display:inline-flex; align-items:center; gap:4px;
  font-size:var(--text-sm); font-weight:600; transition:transform var(--dur-base) var(--ease-soft);
}
.age-card:hover .go { transform:translateX(3px); }
.age-foot .lucide { width:15px; height:15px; }

/* ---------- Topic tags row ---------- */
.topic-row { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; max-width:760px; margin:0 auto; }

/* ---------- Article cards ---------- */
.article-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.article-grid-2 { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.article-card {
  background:var(--surface-card); border:1px solid var(--border-soft); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; color:inherit;
  transition:transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-gentle);
}
.article-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); color:inherit; }
.article-thumb { height:150px; position:relative; }
.article-thumb .badges { position:absolute; top:14px; left:14px; display:flex; gap:6px; flex-wrap:wrap; }
.article-card-body { padding:1.5rem; display:flex; flex-direction:column; gap:10px; flex:1; }
.article-card-body h3 { font-size:var(--text-md); line-height:var(--leading-snug); }
.article-card-body p {
  font-size:var(--text-sm); color:var(--text-muted); line-height:var(--leading-normal); flex:1;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.read-time { display:flex; align-items:center; gap:6px; color:var(--text-caption); font-size:var(--text-xs); margin-top:2px; }
.read-time .lucide { width:14px; height:14px; }

/* ---------- Doctor teaser / profile ---------- */
.doctor-card {
  display:flex; gap:40px; align-items:center; flex-wrap:wrap;
  border-radius:var(--radius-2xl); padding:2.75rem;
  background:var(--gradient-blush-soft); border:1px solid var(--border-soft); box-shadow:var(--shadow-sm);
}
.doctor-avatar {
  width:150px; height:150px; border-radius:50%; object-fit:cover; object-position:center 18%;
  flex-shrink:0; box-shadow:var(--shadow-md); border:4px solid #fff;
}
.doctor-avatar-lg { width:180px; height:180px; box-shadow:var(--shadow-lg); }
.doctor-card .body { flex:1 1 320px; }
.doctor-card h2 { font-size:var(--text-xl); margin:8px 0 10px; }
.doctor-card p { color:var(--text-body); line-height:1.85; margin-bottom:20px; max-width:520px; }
.cred-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:20px; }
.cred-card { text-align:center; padding:1.5rem 1rem; }
.cred-tile {
  width:48px; height:48px; border-radius:var(--radius-md); background:var(--brand-primary-soft);
  color:var(--peach-700); display:inline-flex; align-items:center; justify-content:center; margin-bottom:12px;
}
.cred-tile .lucide { width:24px; height:24px; }
.cred-card .label { font-size:14px; color:var(--text-body); font-weight:500; line-height:1.5; }

/* ---------- Page head ---------- */
.page-head { text-align:center; padding-top:56px; margin-bottom:36px; }
.page-head .eyebrow { margin-bottom:12px; }
.page-head h1 { font-size:var(--text-2xl); margin-bottom:14px; }
.page-head p { color:var(--text-muted); font-size:var(--text-md); max-width:520px; margin:0 auto; line-height:1.8; }

/* ---------- FAQ ---------- */
.chips { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.chip {
  border:1px solid var(--border-default); background:var(--surface-card); color:var(--text-muted);
  padding:8px 18px; border-radius:var(--radius-pill); cursor:pointer;
  font-family:var(--font-body); font-size:var(--text-sm); font-weight:500;
  transition:all var(--dur-base) var(--ease-gentle);
}
.chip:hover { background:var(--brand-primary-soft); color:var(--text-body); }
.chip.active { background:var(--brand-primary); border-color:var(--brand-primary); color:#fff; font-weight:600; }
.faq-list { display:flex; flex-direction:column; gap:14px; }
.faq-item {
  background:var(--surface-card); border:1px solid var(--border-soft); border-radius:var(--radius-md);
  overflow:hidden; transition:border-color var(--dur-base) var(--ease-gentle);
}
.faq-item[open] { border-color:var(--peach-200); box-shadow:var(--shadow-sm); }
.faq-item summary {
  list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 22px; cursor:pointer;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-q { display:flex; align-items:center; gap:12px; }
.faq-qmark {
  width:30px; height:30px; flex-shrink:0; border-radius:50%;
  background:var(--brand-primary-soft); color:var(--peach-700);
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-style:italic; font-size:var(--text-md);
}
.faq-q span:last-child { font-size:var(--text-base); font-weight:500; color:var(--text-heading); }
.faq-item summary .lucide { color:var(--text-muted); transition:transform var(--dur-base) var(--ease-soft); width:20px; height:20px; }
.faq-item[open] summary .lucide { transform:rotate(180deg); }
.faq-a { padding:0 22px 22px 64px; color:var(--text-body); line-height:var(--leading-relaxed); }
.faq-a .src { display:inline-flex; align-items:center; gap:5px; margin-top:10px; font-size:var(--text-sm); font-weight:500; }
.faq-a .src .lucide { width:14px; height:14px; }

/* ---------- Article page ---------- */
.article-banner { height:280px; background:var(--gradient-sunset); position:relative; overflow:hidden; }
.article-banner .mood {
  position:absolute; inset:0; background-image:url(/mood.jpg);
  background-size:cover; background-position:center; opacity:.4; mix-blend-mode:soft-light;
}
.article-sheet { margin-top:-70px; position:relative; border-radius:var(--radius-xl); padding:2.75rem; }
.article-sheet .badges { display:flex; gap:8px; margin-bottom:16px; flex-wrap:wrap; }
.article-sheet h1 { font-size:var(--text-2xl); line-height:1.25; margin-bottom:16px; }
.article-meta {
  display:flex; align-items:center; gap:16px; color:var(--text-caption); font-size:14px;
  padding-bottom:20px; border-bottom:1px solid var(--border-soft); flex-wrap:wrap;
}
.article-meta span { display:flex; align-items:center; gap:6px; }
.article-meta .lucide { width:15px; height:15px; }
.keypoints {
  background:var(--bg-subtle); border:1px solid var(--peach-100);
  border-radius:var(--radius-md); padding:18px 20px; margin:24px 0;
}
.keypoints .kp-head { display:flex; align-items:center; gap:8px; margin-bottom:10px; font-weight:600; color:var(--peach-700); font-size:14px; }
.keypoints .kp-head .lucide { width:16px; height:16px; }
.keypoints ul { margin:0; padding-left:20px; color:var(--text-body); line-height:1.9; font-size:14px; }
.article-body { font-size:var(--text-base); color:var(--text-body); line-height:var(--leading-relaxed); }
.article-body h2 { font-size:var(--text-lg); margin:28px 0 12px; }
.article-body h3 { font-size:var(--text-md); margin:22px 0 10px; color:var(--clay-700); }
.article-body p { margin:12px 0; }
.article-body ul { margin:12px 0 12px 22px; }
.article-body li { margin:4px 0; }
.article-body .tip {
  display:flex; gap:10px; background:var(--gradient-blush-soft); border:1px solid var(--rose-100);
  border-radius:var(--radius-md); padding:16px 18px; margin:18px 0; font-size:var(--text-sm); line-height:1.8;
}
.article-body .tip .lucide { width:17px; height:17px; color:var(--brand-accent); margin-top:3px; }
.disclaimer {
  margin-top:28px; padding:14px 18px; border-radius:var(--radius-md);
  background:var(--surface-cream); border:1px dashed var(--border-default);
  color:var(--text-caption); font-size:var(--text-sm); line-height:1.7;
}
.breadcrumb { font-size:var(--text-sm); color:var(--text-caption); margin-bottom:14px; }
.related-head { font-size:var(--text-lg); margin-bottom:18px; display:flex; align-items:center; gap:8px; }
.related-head .lucide { width:18px; height:18px; color:var(--brand-accent); }

/* ---------- Search page ---------- */
.search-page { background:var(--bg-subtle); min-height:70vh; padding:48px 0 40px; }
.answer-card { margin-top:28px; }
.answer-head { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.answer-disc {
  width:38px; height:38px; border-radius:50%; background:var(--gradient-sunset);
  display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;
}
.answer-disc .lucide { width:20px; height:20px; color:#fff; }
.answer-head .t { font-weight:600; color:var(--text-heading); }
.answer-head .s { font-size:13px; color:var(--text-caption); }
.asked { font-family:var(--font-serif); font-size:var(--text-md); color:var(--text-heading); margin-bottom:18px; }
.points { list-style:none; display:flex; flex-direction:column; gap:14px; }
.points li { display:flex; gap:12px; align-items:flex-start; }
.points .num {
  width:26px; height:26px; flex-shrink:0; border-radius:50%;
  background:var(--brand-primary-soft); color:var(--peach-700);
  display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-weight:700;
}
.points span:last-child { color:var(--text-body); line-height:1.75; }
.skeleton { height:14px; border-radius:8px; background:linear-gradient(90deg,var(--cream-200),var(--peach-100),var(--cream-200)); background-size:200% 100%; animation:shimmer 1.2s infinite; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.answer-note { color:var(--text-caption); font-size:var(--text-sm); margin-top:20px; padding-top:16px; border-top:1px solid var(--border-soft); }

/* ---------- Info / location ---------- */
.info-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.map-box {
  height:200px; background:var(--sky-200); border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center; position:relative; margin-bottom:16px;
}
.map-box .lucide { width:40px; height:40px; color:var(--info-500); }
.map-box .cap {
  position:absolute; bottom:12px; right:12px; font-size:12px; color:var(--text-caption);
  background:rgba(255,255,255,.8); padding:4px 10px; border-radius:var(--radius-pill);
}
.todo-note {
  background:var(--surface-cream); border:1px dashed var(--border-default);
  border-radius:var(--radius-md); padding:14px 18px; font-size:var(--text-sm);
  color:var(--text-muted); margin:16px 0; line-height:1.7;
}

/* ---------- CTA card ---------- */
.cta-card { text-align:center; padding:2.75rem; border-radius:var(--radius-xl); }
.cta-card h3 { font-size:var(--text-lg); margin-bottom:8px; }
.cta-card p { color:var(--text-muted); margin-bottom:20px; }
.cta-card .row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ---------- Stats ---------- */
.stats h2 { margin:2rem 0 .7rem; font-size:var(--text-lg); }
.stats table { width:100%; border-collapse:collapse; background:var(--surface-card); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-sm); }
.stats th,.stats td { text-align:left; padding:.55rem .9rem; border-bottom:1px solid var(--border-soft); font-size:var(--text-sm); }
.stats th { background:var(--surface-cream); color:var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer { background:var(--surface-cream); border-top:1px solid var(--border-soft); margin-top:88px; }
.footer-inner { max-width:var(--container-xl); margin:0 auto; padding:56px 28px 40px; display:flex; gap:48px; flex-wrap:wrap; }
.footer-brand { flex:1 1 280px; }
.footer-brand p { color:var(--text-muted); font-size:14px; line-height:1.8; margin-top:16px; max-width:320px; }
.footer-col { display:flex; flex-direction:column; gap:12px; max-width:260px; }
.footer-col .head { font-weight:600; color:var(--text-heading); margin-bottom:4px; }
.footer-col a, .footer-col .soon { display:flex; align-items:center; gap:8px; color:var(--text-muted); font-size:14px; }
.footer-col a:hover { color:var(--brand-primary); }
.footer-col .lucide { width:16px; height:16px; }
.footer-col .cap { color:var(--text-caption); font-size:13px; line-height:1.7; }
.footer-bar { border-top:1px solid var(--border-soft); padding:18px 28px; text-align:center; color:var(--text-caption); font-size:12px; }

@media (max-width:960px) {
  .logo-sub { display:none; }
  .site-nav a { padding:8px 12px; font-size:14px; }
}
@media (max-width:760px) {
  .header-inner { justify-content:space-between; row-gap:6px; }
  .site-nav { margin-left:0; width:100%; justify-content:center; order:3; }
}
@media (max-width:640px) {
  .header-inner { padding:12px 16px; gap:10px; }
  .hero { padding:56px 20px 64px; }
  .article-sheet, .doctor-card, .card-pad-lg { padding:1.6rem; }
  .faq-a { padding-left:22px; }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
