/* ==========================================================================
   Viha ENT Hospital — styles.css
   Mobile-first. Palette from the logo (deep blue + white) with teal "air"
   and a warm amber CTA accent used sparingly.
   ========================================================================== */

/* ---------- Fonts (self-hosted Google Fonts, latin + gujarati subsets) ---------- */
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 500 800; font-display: swap; src: url(assets/fonts/jakarta.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 700; font-display: swap; src: url(assets/fonts/inter.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Noto Sans Gujarati"; font-style: normal; font-weight: 400 600; font-display: swap; src: url(assets/fonts/noto-gujarati.woff2) format("woff2"); unicode-range: U+0951-0952, U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839; }

/* ---------- Design tokens ---------- */
:root {
  --blue: #0B3C7D;
  --blue-800: #082D5E;
  --blue-900: #061F42;
  --blue-50: #E8F0FA;
  --teal: #1FA2B8;          /* decorative / on dark */
  --teal-ink: #0B6F80;      /* teal for text on light backgrounds (AA) */
  --teal-50: #E4F5F8;
  --amber: #F59E0B;
  --amber-600: #E08E05;
  --bg: #F4F8FC;
  --white: #fff;
  --ink: #0F1B2D;
  --muted: #475569;
  --line: #DCE6F1;

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(11, 60, 125, .06), 0 2px 8px rgba(11, 60, 125, .05);
  --shadow: 0 2px 6px rgba(11, 60, 125, .05), 0 12px 32px -8px rgba(11, 60, 125, .14);
  --shadow-lg: 0 24px 60px -18px rgba(11, 60, 125, .30);

  --font-head: "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-gu: "Noto Sans Gujarati", "Shruti", sans-serif;

  --header-h: 68px;
  --gutter: 20px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-head); color: var(--blue-900); line-height: 1.15; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button, input, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.gu, [lang="gu"] { font-family: var(--font-gu); letter-spacing: 0; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--blue); color: #fff; border-radius: 10px; font-weight: 600; }
.skip-link:focus { top: 12px; }

.placeholder {
  display: inline-block; padding: 1px 8px; border: 1.5px dashed #9DB3CE; border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82em; color: var(--blue); background: var(--blue-50);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .7em 1.35em; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { min-height: 42px; padding: .5em 1.05em; font-size: .9rem; }
.btn-lg { min-height: 56px; padding: .8em 1.6em; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-accent { background: var(--amber); color: var(--ink); box-shadow: 0 8px 20px -8px rgba(245, 158, 11, .7); }
.btn-accent:hover { background: #FBB024; box-shadow: 0 12px 26px -10px rgba(245, 158, 11, .8); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px -10px rgba(11, 60, 125, .7); }
.btn-primary:hover { background: var(--blue-800); }
.btn-outline { background: #fff; color: var(--blue); border-color: #C5D5EA; }
.btn-outline:hover { border-color: var(--blue); }
.btn-ghost { background: transparent; color: var(--blue); border-color: #C5D5EA; }
.btn-ghost:hover { background: var(--blue-50); }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: var(--blue-50); }
.btn-gu { display: block; font-size: .8rem; font-weight: 500; opacity: .85; margin-top: 2px; }
.btn-lg:has(.btn-gu) { border-radius: 20px; text-align: left; }

.text-link { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; font-family: var(--font-head); text-decoration: none; color: var(--blue); }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

.icon-btn {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  border: 1.5px solid var(--line); background: #fff; color: var(--blue); cursor: pointer;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(11, 60, 125, .5); }
.nav { display: flex; align-items: center; gap: 10px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-logo { height: 40px; width: auto; }
@media (min-width: 1000px) { .brand-logo { height: 46px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--blue); letter-spacing: -.02em; }
.brand-sub { font-size: .74rem; color: var(--muted); font-weight: 500; letter-spacing: .02em; }
.brand--light { display: inline-flex; margin: 0; padding: 10px 18px 10px 10px; border-radius: 999px; background: #fff; }

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile menu panel */
.nav-menu {
  position: absolute; left: 0; right: 0; top: var(--header-h);
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px -20px rgba(11, 60, 125, .35);
  padding: 8px var(--gutter) 20px;
  display: none;
}
.nav-menu.is-open { display: block; animation: drop .25s ease; }
@keyframes drop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.nav-links a {
  display: block; padding: 14px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); text-decoration: none;
}
.nav-links a.active { color: var(--blue); }
.nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }

@media (min-width: 1000px) {
  :root { --header-h: 76px; }
  .nav-toggle, .nav-call { display: none; }
  .nav-menu {
    position: static; display: flex !important; align-items: center; gap: 28px;
    padding: 0; background: none; border: 0; box-shadow: none; animation: none;
  }
  .nav-links { display: flex; gap: 4px; }
  .nav-links a {
    position: relative; padding: 8px 12px; border: 0; font-size: .94rem; color: #33445C; border-radius: 10px;
  }
  .nav-links a:hover { color: var(--blue); background: var(--blue-50); }
  .nav-links a.active { color: var(--blue); }
  .nav-links a.active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--teal); }
  .nav-actions { display: flex; margin: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 36px 0 56px; background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; }
.blob-1 { width: 520px; height: 520px; right: -180px; top: -160px; background: radial-gradient(circle at 40% 40%, rgba(31, 162, 184, .28), rgba(31, 162, 184, 0) 65%); }
.blob-2 { width: 460px; height: 460px; left: -200px; top: 120px; background: radial-gradient(circle, rgba(11, 60, 125, .14), rgba(11, 60, 125, 0) 65%); }
.blob-3 { width: 300px; height: 300px; right: 20%; bottom: -120px; background: radial-gradient(circle, rgba(245, 158, 11, .14), rgba(245, 158, 11, 0) 65%); }
.airflow { position: absolute; left: 0; bottom: 0; width: 100%; height: 70%; }
.airflow path { fill: none; stroke: var(--teal); stroke-width: 1.5; opacity: .22; stroke-dasharray: 6 10; animation: flow 14s linear infinite; }
.airflow path:nth-child(2) { opacity: .16; animation-duration: 18s; }
.airflow path:nth-child(3) { opacity: .1; animation-duration: 22s; }
@keyframes flow { to { stroke-dashoffset: -320; } }

.hero-grid { position: relative; display: grid; gap: 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 10px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: .82rem; font-weight: 600; color: var(--blue);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(31, 162, 184, .18); }
.hero h1 { margin-top: 18px; font-size: clamp(2.2rem, 7.4vw, 3.9rem); font-weight: 800; letter-spacing: -.035em; }
.hero h1 .hl { color: var(--teal-ink); background: linear-gradient(90deg, var(--blue) 0%, var(--teal-ink) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-gu { margin-top: 14px; font-size: clamp(1rem, 3.6vw, 1.18rem); line-height: 1.7; color: var(--blue-800); font-weight: 500; }
.lead { margin-top: 14px; font-size: 1.06rem; color: var(--muted); max-width: 36em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-ctas .btn { flex: 1 1 220px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chips li {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, .8); border: 1px solid var(--line); font-size: .86rem; font-weight: 600; color: #26374F;
}
.chips .icon { width: 17px; height: 17px; color: var(--teal-ink); }

.hero-media { position: relative; }
.ph {
  position: relative; margin: 0; overflow: hidden; display: grid; place-items: center;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(31, 162, 184, .45), transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(255, 255, 255, .18), transparent 60%),
    linear-gradient(150deg, #134E9C 0%, var(--blue) 45%, var(--blue-900) 100%);
  color: #fff; box-shadow: var(--shadow-lg);
}
.ph-inner {
  position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28); font-size: .88rem; font-weight: 600;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ph-hero { aspect-ratio: 4 / 4.2; }
.ph-waves { position: absolute; inset: auto 0 12% 0; width: 100%; height: 40%; }
.ph-waves path { fill: none; stroke: rgba(255, 255, 255, .22); stroke-width: 2; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 16px;
  background: #fff; box-shadow: var(--shadow); font-size: .88rem;
}
.float-card strong { display: block; font-family: var(--font-head); color: var(--blue-900); font-size: .94rem; }
.float-card small { display: block; color: var(--muted); font-size: .8rem; }
.float-status { left: -6px; bottom: 26px; }
.float-tag { right: -6px; top: 22px; }
.float-tag .icon { width: 34px; height: 34px; padding: 6px; border-radius: 10px; background: var(--teal-50); color: var(--teal-ink); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #16A34A; box-shadow: 0 0 0 4px rgba(22, 163, 74, .18); flex: none; }
.status-dot.is-closed { background: #DC2626; box-shadow: 0 0 0 4px rgba(220, 38, 38, .15); }

@media (min-width: 900px) {
  .hero { padding: 64px 0 88px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 56px; }
  .hero-ctas .btn { flex: 0 0 auto; }
  .float-status { left: -28px; }
  .float-tag { right: -24px; }
}

/* ---------- Trust strip ---------- */
.trust { position: relative; margin-top: -20px; z-index: 2; }
.trust-grid {
  display: grid; gap: 4px; padding: 10px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.trust-grid li { display: flex; align-items: center; gap: 14px; padding: 12px; }
.trust-ic { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--blue-50); color: var(--blue); }
.trust-ic svg { width: 26px; height: 26px; }
.trust-grid li:nth-child(even) .trust-ic { background: var(--teal-50); color: var(--teal-ink); }
.trust-grid strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--blue-900); line-height: 1.3; }
.trust-grid small { display: block; color: var(--muted); font-size: .84rem; line-height: 1.4; margin-top: 2px; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .trust-grid { grid-template-columns: repeat(4, 1fr); padding: 14px; } }

/* ---------- Sections ---------- */
.section { position: relative; padding: 72px 0; }
.section-tint { background: var(--bg); }
.section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.section-head--left { text-align: left; margin: 0; }
.kicker { display: inline-block; font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-ink); margin-bottom: 10px; }
.section-head h2, .doc-copy h2, .appt-copy h2 { font-size: clamp(1.75rem, 5vw, 2.6rem); font-weight: 800; }
.sub-gu { margin-top: 10px; color: var(--blue); font-size: 1.05rem; font-weight: 500; }
.section-lead { margin-top: 12px; color: var(--muted); }
.fineprint { margin-top: 24px; text-align: center; font-size: .86rem; color: var(--muted); }
.section-wave { position: absolute; left: 0; top: 0; width: 100%; height: 90px; pointer-events: none; }
.section-wave path { fill: none; stroke: var(--teal); stroke-width: 1.4; opacity: .18; }
@media (min-width: 900px) { .section { padding: 104px 0; } .section-head { margin-bottom: 56px; } }

.ticks li { position: relative; padding-left: 28px; margin: 9px 0; line-height: 1.5; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230B6F80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M6 12.5l4 4L18 8'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.ticks-sm li { font-size: .94rem; margin: 6px 0; }

/* ---------- Specialities ---------- */
.spec-grid { display: grid; gap: 20px; }
.spec-card {
  position: relative; display: flex; flex-direction: column; gap: 18px; padding: 28px;
  border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: box-shadow .25s ease, transform .25s ease;
}
.spec-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.spec-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.spec-top { display: flex; align-items: center; gap: 16px; }
.spec-top h3 { font-size: 1.6rem; font-weight: 800; }
.spec-top .gu { color: var(--teal-ink); font-weight: 500; }
.spec-ic { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 22px; background: var(--blue-50); color: var(--blue); flex: none; }
.spec-ic svg { width: 46px; height: 46px; }
.spec-card--nose .spec-ic { background: var(--teal-50); color: var(--teal-ink); }
.spec-card--throat .spec-ic { background: #FEF3E2; color: #9A5B00; }
.spec-card .ticks { flex: 1; }
.spec-note { display: flex; gap: 10px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--bg); font-size: .88rem; color: #33445C; }
.spec-note .icon { color: var(--teal-ink); margin-top: 2px; }
@media (min-width: 900px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Procedures ---------- */
.proc-list { display: grid; gap: 20px; }
.proc {
  display: grid; gap: 20px; padding: 28px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.proc-head { display: flex; align-items: flex-start; gap: 16px; }
.proc-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff;
  display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 14px;
  background: linear-gradient(140deg, var(--blue), #1467A8);
}
.proc-area { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-ink); }
.proc h3 { font-size: 1.35rem; font-weight: 800; margin-top: 2px; }
.proc-body { display: grid; gap: 16px; margin: 0; }
.proc-body dt { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--blue); margin-bottom: 4px; }
.proc-body dd { margin: 0; color: #33445C; font-size: .96rem; }
.proc-body .ticks li { margin: 4px 0; }
@media (min-width: 900px) {
  .proc { grid-template-columns: 300px 1fr; gap: 36px; padding: 36px; }
  .proc-body { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ---------- Symptoms ---------- */
.sym-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
.sym {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; height: 100%;
  border-radius: var(--r); background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.sym:hover { border-color: #9DB3CE; box-shadow: var(--shadow); transform: translateY(-2px); }
.sym-ic { width: 44px; height: 44px; padding: 8px; flex: none; border-radius: 14px; background: var(--blue-50); color: var(--blue); }
.sym--nose .sym-ic { background: var(--teal-50); color: var(--teal-ink); }
.sym--throat .sym-ic { background: #FEF3E2; color: #9A5B00; }
.sym span { flex: 1; min-width: 0; }
.sym strong { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--blue-900); }
.sym small { display: block; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.sym-go { color: #7C8EA8; transition: transform .2s ease, color .2s ease; }
.sym:hover .sym-go { color: var(--blue); transform: translateX(3px); }
@media (min-width: 560px) { .sym-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .sym-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

/* ---------- Doctor ---------- */
.doc-grid { display: grid; gap: 36px; }
.ph-doc { aspect-ratio: 5 / 6; }
.doc-media { position: relative; }
.doc-media::after {
  content: ""; position: absolute; z-index: -1; inset: 18px -14px -14px 18px; border-radius: var(--r-lg);
  border: 2px dashed rgba(31, 162, 184, .45);
}
.doc-role { margin-top: 14px; font-family: var(--font-head); font-weight: 700; color: var(--teal-ink); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.doc-bio { margin-top: 12px; color: var(--muted); }
.quote { position: relative; margin: 24px 0; padding: 22px 24px 22px 26px; border-radius: var(--r); background: #fff; border-left: 4px solid var(--teal); box-shadow: var(--shadow-sm); }
.quote p { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--blue-900); line-height: 1.45; }
.quote footer { margin-top: 10px; font-size: .88rem; color: var(--muted); }
.pillars { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 26px; }
.pillars li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .94rem; color: #26374F; }
.pillars .icon { color: var(--teal-ink); }
@media (min-width: 900px) { .doc-grid { grid-template-columns: .85fr 1.15fr; align-items: center; gap: 72px; } }

/* ---------- Stories ---------- */
.story-grid { display: grid; gap: 20px; }
.story {
  position: relative; display: flex; flex-direction: column; padding: 26px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.story-tag { align-self: flex-start; padding: 4px 12px; border-radius: 999px; background: var(--blue-50); color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .02em; }
.story h3 { margin-top: 14px; font-size: 1.22rem; font-weight: 800; }
.story-dl { margin: 16px 0 0; display: grid; gap: 8px; flex: 1; }
.story-dl div { display: grid; grid-template-columns: 88px 1fr; gap: 8px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.story-dl dt { color: var(--muted); }
.story-dl dd { margin: 0; font-weight: 600; color: #26374F; }
.story-out { display: flex; gap: 10px; margin-top: 16px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--teal-50); color: #0A5A68; font-weight: 600; font-size: .94rem; }
.story-out .icon { margin-top: 2px; }
.story-social { overflow: hidden; background: linear-gradient(150deg, #134E9C, var(--blue) 50%, var(--blue-900)); border: 0; color: #DCE7F5; }
.story-social h3 { color: #fff; margin-top: 16px; }
.story-social p { margin-top: 8px; font-size: .94rem; flex: 1; }
.story-social-ic { width: 44px; height: 44px; padding: 9px; border-radius: 14px; background: rgba(255, 255, 255, .14); color: #fff; }
.story-social-bg { position: absolute; right: -20px; bottom: -30px; width: 240px; height: 240px; pointer-events: none; }
.story-social-bg path { fill: none; stroke: rgba(31, 162, 184, .5); stroke-width: 2; }
.story-social-links { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
@media (min-width: 700px) { .story-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .story-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- FAQ accordion ---------- */
.faq-wrap { display: grid; gap: 32px; }
.faq-wrap .section-head .btn { margin-top: 22px; }
.accordion { display: grid; gap: 12px; }
.acc-item { border-radius: var(--r); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s ease; }
.acc-item:has(.acc-btn[aria-expanded="true"]) { box-shadow: var(--shadow); border-color: #C5D5EA; }
.acc-item h3 { font-size: inherit; letter-spacing: normal; }
.acc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 18px 20px; border: 0; background: none; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; color: var(--blue-900); line-height: 1.35;
}
.acc-btn .icon { color: var(--teal-ink); transition: transform .25s ease; }
.acc-btn[aria-expanded="true"] .icon { transform: rotate(45deg); }
.acc-btn:focus-visible { outline-offset: -3px; border-radius: var(--r); }
.acc-panel { padding: 0 20px 20px; color: #33445C; }
@media (min-width: 900px) { .faq-wrap { grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; } .faq-wrap .section-head { position: sticky; top: calc(var(--header-h) + 32px); } }

/* ---------- Visit ---------- */
.visit-grid { display: grid; gap: 20px; }
.visit-card { padding: 28px; border-radius: var(--r-lg); background: var(--bg); border: 1px solid var(--line); }
.visit-row { display: flex; gap: 16px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.visit-ic { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 14px; background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.visit-row h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.visit-row p, .visit-row address { color: #33445C; }
.open-pill { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; padding: 4px 12px 4px 10px; border-radius: 999px; background: #fff; font-size: .86rem; font-weight: 600; }
.visit-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.visit-actions .btn:first-child { grid-column: 1 / -1; }
.visit-areas { margin-top: 18px; font-size: .88rem; color: var(--muted); }
.map { position: relative; min-height: 340px; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(150deg, var(--blue-50), var(--teal-50)); border: 1px solid var(--line); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-ph { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 10px; color: var(--blue); font-weight: 600; text-align: center; }
.map-ph > .icon { width: 40px; height: 40px; }
.map-ph .btn { border: 1px solid var(--line); }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1.2fr; } .map { min-height: 100%; } }

/* ---------- Appointment ---------- */
.appt { background: linear-gradient(150deg, #0E4A96 0%, var(--blue) 45%, var(--blue-900) 100%); color: #DCE7F5; overflow: hidden; }
.appt::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -200px; top: -220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 162, 184, .35), transparent 65%); pointer-events: none;
}
.appt-grid { position: relative; display: grid; gap: 36px; }
.appt-copy h2 { color: #fff; }
.kicker-light { color: #7FD6E4; }
.appt-copy .sub-gu { color: #BFE6EE; }
.appt-copy > p:not(.kicker):not(.sub-gu) { margin-top: 16px; font-size: 1.04rem; }
.appt-points { margin-top: 24px; display: grid; gap: 12px; }
.appt-points li { display: flex; align-items: center; gap: 12px; }
.appt-points .icon { color: #7FD6E4; }
.appt-points a { color: #fff; font-weight: 600; }
.appt-form { padding: 26px; border-radius: var(--r-lg); background: #fff; color: var(--ink); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .45); display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--blue-900); }
.field input, .field select {
  width: 100%; min-height: 50px; padding: 10px 14px; border-radius: 14px; border: 1.5px solid #C9D6E6; background: var(--bg);
  font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230B3C7D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat; }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); background-color: #fff; box-shadow: 0 0 0 4px rgba(11, 60, 125, .14); }
.field input[aria-invalid="true"] { border-color: #C62828; }
.field input::placeholder { color: #7C8BA0; }
.err { color: #B91C1C; font-size: .84rem; font-weight: 500; }
.field-row { display: grid; gap: 16px; }
.symptom-chip { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 8px 8px 14px; border-radius: 12px; background: var(--teal-50); color: #0A5A68; font-size: .92rem; }
.symptom-chip button { display: grid; place-items: center; width: 32px; height: 32px; border: 0; border-radius: 10px; background: #fff; color: #0A5A68; cursor: pointer; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .appt-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; } .appt-form { padding: 34px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: #B9C9E0; padding: 64px 0 28px; font-size: .94rem; }
.footer-grid { display: grid; gap: 36px; }
.footer-tag { margin-top: 14px; font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.05rem; }
.social { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .2); color: #fff; text-decoration: none; font-weight: 600; }
.social:hover { background: rgba(255, 255, 255, .08); }
.footer-h { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #7FD6E4; margin-bottom: 14px; }
.footer-list { display: grid; gap: 10px; }
.footer-list a { color: #E6EEF8; text-decoration: none; }
.footer-list a:hover { text-decoration: underline; }
.footer-links { grid-template-columns: 1fr 1fr; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 12px; font-size: .84rem; }
.disclaimer { color: #9FB2CC; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.1fr 1fr 1fr; gap: 56px; } }

/* ---------- Mobile sticky bar ---------- */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(11, 60, 125, .5);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.mbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 52px; border-radius: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: var(--blue); text-decoration: none;
}
.mbar a:active { background: var(--blue-50); }
.mbar .mbar-wa { background: #0F7B3E; color: #fff; }
.mbar .icon { width: 22px; height: 22px; }
body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
@media (min-width: 1000px) { .mbar { display: none; } body { padding-bottom: 0; } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
