/* ============================================================
   〇〇整骨院  Modern Editorial Demo  v3
   大型写真 × 大きなタイポ × たっぷり余白
   ============================================================ */

:root {
  --bg: #faf7f2;          /* warm off-white base */
  --bg-cream: #f2ece2;    /* deeper cream */
  --ink: #2b2925;         /* near-black warm */
  --ink-soft: #6b655c;    /* muted body text */
  --line: #e3dccf;        /* hairline */
  --accent: #9a7b63;      /* muted clay/brown accent */
  --accent-deep: #7d6450;
  --rose: #c9a9a0;        /* soft rose for tiny accents */
  --white: #ffffff;
  --radius: 18px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --serif: "Zen Old Mincho", "Cormorant Garamond", serif;
  --sans: "Zen Kaku Gothic New", system-ui, sans-serif;
  --en: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.95;
  font-weight: 400;
  letter-spacing: .02em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===== reveal animation ===== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px clamp(20px, 5vw, 60px);
  display: flex; align-items: center;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  padding: 14px clamp(20px, 5vw, 60px);
  background: rgba(250, 247, 242, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.hdr-inner { width: 100%; display: flex; align-items: center; gap: 24px; }

/* default (over hero): light text */
.brand-jp, .hdr-nav a { color: #fff; }
.brand-en { color: rgba(255,255,255,.82); }
.burger span { background: #fff; }
/* scrolled: dark text on cream bg */
.site-header.scrolled .brand-jp, .site-header.scrolled .hdr-nav a { color: var(--ink); }
.site-header.scrolled .brand-en { color: var(--accent); }
.site-header.scrolled .burger span { background: var(--ink); }

.brand { display: flex; flex-direction: column; line-height: 1.15; margin-right: auto; }
.brand-jp { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: .08em; transition: color .4s; }
.brand-en { font-family: var(--en); font-size: .72rem; letter-spacing: .34em; transition: color .4s; }

.hdr-nav { display: flex; gap: clamp(14px, 1.8vw, 30px); }
.hdr-nav a {
  font-size: .86rem; position: relative; padding: 4px 0; letter-spacing: .04em;
  transition: color .3s;
}
.hdr-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .35s var(--ease);
}
.hdr-nav a:hover { color: var(--accent-deep); }
.hdr-nav a:hover::after { width: 100%; }

.hdr-cta {
  font-size: .85rem; font-weight: 500; color: #fff; background: var(--accent);
  padding: 11px 26px; border-radius: 999px; letter-spacing: .08em;
  transition: background .3s, transform .3s var(--ease);
}
.hdr-cta:hover { background: var(--accent-deep); transform: translateY(-2px); }

.burger { display: none; width: 34px; height: 26px; background: none; border: 0; position: relative; cursor: pointer; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.burger span:nth-child(1) { top: 3px; } .burger span:nth-child(2) { top: 12px; } .burger span:nth-child(3) { top: 21px; }
.burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.drawer {
  position: fixed; top: 0; right: 0; width: min(82vw, 340px); height: 100vh; z-index: 99;
  background: var(--bg); padding: 110px 36px 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .45s var(--ease); box-shadow: -10px 0 40px rgba(0,0,0,.08);
}
.drawer.open { transform: translateX(0); }
.drawer a { font-family: var(--serif); font-size: 1.1rem; padding: 16px 0; border-bottom: 1px solid var(--line); }
.drawer .drawer-cta { margin-top: 22px; border: 0; text-align: center; background: var(--accent); color: #fff; border-radius: 999px; padding: 16px; font-family: var(--sans); font-size: .95rem; }

/* ============================================================
   HERO — full-bleed cinematic
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(30,26,22,.34) 0%, rgba(30,26,22,0) 18%),
    linear-gradient(105deg, rgba(30,26,22,.66) 0%, rgba(30,26,22,.36) 45%, rgba(30,26,22,.12) 78%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 0 clamp(24px, 7vw, 110px); max-width: 920px; }
.hero-eyebrow {
  font-size: .82rem; letter-spacing: .28em; margin-bottom: 26px; opacity: .92;
  padding-left: 52px; position: relative;
}
.hero-eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 38px; height: 1px; background: rgba(255,255,255,.7); }
.hero-title {
  font-family: var(--serif); font-weight: 600; line-height: 1.28; letter-spacing: .03em;
  font-size: clamp(1.9rem, 8vw, 4.6rem);
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-title span { display: block; white-space: nowrap; }
.hero-title em { font-style: normal; color: #f0d9c8; }
.hero-lead {
  margin-top: 30px; font-size: clamp(.95rem, 1.5vw, 1.12rem); line-height: 2.1; font-weight: 400;
  text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.hero-actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink); padding: 17px 40px; border-radius: 999px;
  font-size: .95rem; font-weight: 500; letter-spacing: .06em;
  box-shadow: 0 10px 34px rgba(0,0,0,.18); transition: transform .35s var(--ease), box-shadow .35s;
}
.btn-pill:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(0,0,0,.24); }
.btn-pill.lg { padding: 20px 48px; font-size: 1rem; background: var(--accent); color: #fff; }
.btn-pill.lg:hover { background: var(--accent-deep); }
.btn-line {
  display: inline-flex; align-items: center; padding: 17px 34px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6); color: #fff; font-size: .92rem; letter-spacing: .06em;
  transition: background .3s, border-color .3s;
}
.btn-line:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.scroll-cue { position: absolute; z-index: 2; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; color: #fff; }
.scroll-cue span { font-family: var(--en); font-size: .68rem; letter-spacing: .3em; }
.scroll-cue i { width: 1px; height: 46px; background: rgba(255,255,255,.55); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; top: -46px; left: 0; width: 1px; height: 46px; background: #fff; animation: cueRun 2.2s var(--ease) infinite; }
@keyframes cueRun { 0% { top: -46px; } 60%,100% { top: 46px; } }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  text-align: center; padding: clamp(90px, 13vw, 180px) clamp(24px, 6vw, 60px);
  max-width: 820px; margin: 0 auto;
}
.st-en { font-family: var(--en); font-style: italic; font-size: 1.15rem; letter-spacing: .14em; color: var(--accent); margin-bottom: 30px; }
.st-jp { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.9; letter-spacing: .05em; }
.st-desc { margin-top: 34px; color: var(--ink-soft); font-size: 1rem; line-height: 2.2; }

/* ============================================================
   SECTION shell + vertical heading edge
   ============================================================ */
.section { padding: clamp(80px, 11vw, 150px) clamp(24px, 6vw, 90px); position: relative; }
.sec-edge { position: relative; max-width: var(--maxw); margin: 0 auto clamp(48px, 6vw, 80px); }
.v-head {
  position: absolute; top: -10px; right: -2px;
  font-family: var(--en); font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 500;
  color: rgba(154,123,99,.08); letter-spacing: .02em; line-height: 1; pointer-events: none; user-select: none;
  white-space: nowrap;
}
.sec-head { position: relative; }
.sec-en { display: block; font-family: var(--en); font-size: 1rem; letter-spacing: .14em; color: var(--accent); margin-bottom: 18px; font-weight: 500; }
.sec-jp { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 4.4vw, 3.1rem); line-height: 1.5; letter-spacing: .04em; }

/* ===== お悩み ===== */
.concern-list { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.concern { display: flex; gap: 26px; padding: 38px 30px; border-bottom: 1px solid var(--line); transition: background .4s; }
.concern:nth-child(odd) { border-right: 1px solid var(--line); }
.concern:hover { background: var(--bg-cream); }
.c-no { font-family: var(--en); font-size: 2rem; color: var(--accent); line-height: 1; flex-shrink: 0; opacity: .8; }
.concern h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.concern p { color: var(--ink-soft); font-size: .94rem; line-height: 1.95; }

/* ===== 選ばれる理由 — asymmetric photo blocks ===== */
.reasons { background: var(--bg-cream); }
.reason-block {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 6vw, 90px); align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
}
.reason-block.reverse { grid-template-columns: .85fr 1.15fr; }
.reason-block.reverse .rb-img { order: 2; }
.reason-block.reverse .rb-text { order: 1; }
.rb-img { position: relative; }
.rb-img img {
  width: 100%; aspect-ratio: 4/3.1; object-fit: cover; border-radius: 220px 220px 18px 18px;
  box-shadow: 0 30px 70px rgba(110,90,70,.18);
}
.rb-no {
  position: absolute; top: -28px; left: -14px; font-family: var(--en); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500; color: var(--accent); opacity: .26; line-height: 1;
}
.rb-text .rb-en { font-family: var(--en); font-style: italic; font-size: 1.1rem; letter-spacing: .1em; color: var(--accent); margin-bottom: 14px; }
.rb-text h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.55; margin-bottom: 20px; }
.rb-text p { color: var(--ink-soft); font-size: 1rem; line-height: 2.15; }

/* ===== メニュー・料金 — editorial price list ===== */
.menu-list { max-width: 940px; margin: 0 auto; border-top: 1px solid var(--line); }
.m-row {
  display: grid; grid-template-columns: 1fr 1.5fr auto; align-items: center; gap: 30px;
  padding: 30px 16px; border-bottom: 1px solid var(--line); transition: background .35s, padding .35s var(--ease);
}
.m-row:hover { background: var(--white); padding-left: 26px; padding-right: 26px; }
.m-name { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.m-name h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.m-tag { font-size: .7rem; letter-spacing: .05em; padding: 4px 11px; border-radius: 999px; background: #e7ddcf; color: var(--accent-deep); }
.m-tag.self { background: #ece6db; color: var(--ink-soft); }
.m-tag.first { background: var(--accent); color: #fff; }
.m-desc { color: var(--ink-soft); font-size: .92rem; line-height: 1.85; }
.m-price { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--accent-deep); white-space: nowrap; text-align: right; }
.m-price small { font-size: .85rem; font-weight: 400; color: var(--ink-soft); margin-left: 2px; }
.m-row.highlight { background: var(--white); }
.m-row.highlight .m-price { color: var(--accent); }
.menu-note { max-width: 940px; margin: 26px auto 0; font-size: .82rem; color: var(--ink-soft); }

/* ===== 院長紹介 ===== */
.doctor { background: var(--bg-cream); }
.doctor-wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.doctor-photo { position: relative; }
.doctor-photo img { width: 100%; border-radius: 240px 240px 20px 20px; object-fit: cover; box-shadow: 0 30px 70px rgba(110,90,70,.2); }
.doctor-cert { position: absolute; bottom: 26px; right: -10px; background: var(--accent); color: #fff; font-size: .82rem; letter-spacing: .08em; padding: 12px 22px; border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.doctor-info .sec-en { margin-bottom: 14px; }
.doctor-name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: .06em; }
.doctor-role { color: var(--accent); font-size: .95rem; margin: 8px 0 26px; letter-spacing: .04em; }
.doctor-msg { color: var(--ink-soft); line-height: 2.2; margin-bottom: 18px; font-size: 1rem; }
.doctor-career { margin-top: 30px; border-top: 1px solid var(--line); }
.doctor-career li { display: flex; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .94rem; color: var(--ink-soft); }
.doctor-career li span { font-family: var(--en); color: var(--accent); width: 64px; flex-shrink: 0; letter-spacing: .04em; }

/* ===== お客さまの声 ===== */
.voice-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.v-card { background: var(--white); border-radius: var(--radius); padding: 38px 30px; box-shadow: 0 16px 44px rgba(110,90,70,.08); display: flex; flex-direction: column; gap: 18px; transition: transform .4s var(--ease), box-shadow .4s; }
.v-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(110,90,70,.14); }
.v-stars { color: #d9a86a; letter-spacing: .14em; font-size: 1.05rem; }
.v-card blockquote { font-family: var(--serif); font-size: 1.04rem; line-height: 2; color: var(--ink); }
.v-card figcaption { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.v-card .who { font-weight: 500; }
.v-card .meta { font-size: .82rem; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; padding: 26px 50px 26px 0; cursor: pointer; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
/* ＋→− の2本線モーフアイコン（縦棒が回転して横棒に重なり − になる） */
.faq-item summary::before,
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 20px; height: 2px; background: var(--accent); border-radius: 2px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.faq-item summary::before { transform: translateY(-50%); }
.faq-item summary::after  { transform: translateY(-50%) rotate(90deg); }
.faq-item.is-open summary::after { transform: translateY(-50%) rotate(0deg); }
@media (prefers-reduced-motion: reduce) {
  .faq-item summary::before, .faq-item summary::after { transition: none; }
}
.faq-item .faq-a { height: 0; overflow: hidden; transition: height .45s cubic-bezier(.4,0,.2,1); }
.faq-item p { color: var(--ink-soft); line-height: 2.1; padding: 0 40px 28px 0; font-size: .96rem; margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item .faq-a { transition: none; } }

/* ===== アクセス ===== */
.access-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.hours th, .hours td { border: 1px solid var(--line); padding: 12px 6px; text-align: center; font-size: .9rem; font-weight: 400; }
.hours thead th { background: var(--bg-cream); font-family: var(--serif); }
.hours tbody th { text-align: left; padding-left: 14px; background: var(--bg-cream); font-family: var(--serif); white-space: nowrap; }
.hours tbody th small, .hours td small { display: block; font-size: .68rem; color: var(--ink-soft); }
.hours td { color: var(--accent); }
.hours td.x { color: #c9bfb0; }
.hours td.am { color: var(--accent); }
.hours-note { font-size: .82rem; color: var(--ink-soft); margin-bottom: 28px; }
.info-list { border-top: 1px solid var(--line); }
.info-list li { display: flex; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.info-list .lb { font-family: var(--serif); color: var(--accent); width: 48px; flex-shrink: 0; }
.access-map .map-ph { width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); background: var(--bg-cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--ink-soft); }
.access-map .map-ph svg { width: 46px; height: 46px; fill: var(--accent); opacity: .55; }
.access-map .map-ph span { font-size: .88rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; padding: clamp(90px, 13vw, 160px) clamp(24px, 6vw, 60px); overflow: hidden; text-align: center; color: #fff; }
.cta-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, var(--accent-deep), var(--accent) 60%, #b09078); }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 50%); }
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.sec-en.light { color: rgba(255,255,255,.85); }
.cta h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.6; margin: 16px 0 22px; letter-spacing: .05em; }
.cta-lead { color: rgba(255,255,255,.9); line-height: 2; margin-bottom: 44px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.btn-pill.lg { background: #fff; color: var(--accent-deep); }
.btn-pill.lg:hover { background: #fff; transform: translateY(-3px); }
.cta-tel { display: flex; flex-direction: column; gap: 2px; color: #fff; }
.cta-tel .lb { font-size: .8rem; letter-spacing: .1em; opacity: .85; }
.cta-tel .nm { font-family: var(--en); font-size: 1.7rem; letter-spacing: .06em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: clamp(56px, 8vw, 80px) clamp(24px, 6vw, 60px) 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; padding-bottom: 50px; }
.fb-name { font-family: var(--serif); font-size: 1.4rem; color: #fff; letter-spacing: .08em; margin-bottom: 18px; }
.fb-addr { font-size: .9rem; line-height: 2; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 40px; }
.footer-nav a { font-size: .9rem; transition: color .3s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FLOAT CTA
   ============================================================ */
.float-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff; padding: 15px 26px; border-radius: 999px;
  font-size: .92rem; font-weight: 500; letter-spacing: .06em;
  box-shadow: 0 14px 34px rgba(125,100,80,.4);
  opacity: 0; transform: translateY(20px) scale(.95); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s;
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { background: var(--accent-deep); }
.float-cta svg { width: 19px; height: 19px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .reason-block, .reason-block.reverse { grid-template-columns: 1fr; gap: 28px; }
  .reason-block.reverse .rb-img { order: 0; }
  .reason-block.reverse .rb-text { order: 0; }
  .rb-img img { aspect-ratio: 16/10; border-radius: 120px 120px 16px 16px; }
  .doctor-wrap { grid-template-columns: 1fr; gap: 40px; max-width: 560px; }
  .voice-grid { grid-template-columns: 1fr; max-width: 560px; }
  .access-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hdr-nav, .hdr-cta { display: none; }
  .burger { display: block; }
  .concern-list { grid-template-columns: 1fr; }
  .concern:nth-child(odd) { border-right: 0; }
  .m-row { grid-template-columns: 1fr auto; gap: 8px 20px; }
  .m-desc { grid-column: 1 / -1; order: 3; }
  .m-price { order: 2; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  body { line-height: 1.85; }
  .hero { min-height: 560px; }
  .hero-content { padding: 0 22px; }
  .hero-eyebrow { padding-left: 0; }
  .hero-eyebrow::before { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-pill, .btn-line { width: 100%; }
  .section { padding-left: 20px; padding-right: 20px; }
  .v-head { font-size: 2.6rem; top: -4px; }
  .concern { padding: 28px 4px; gap: 18px; }
  .m-row, .m-row:hover { padding-left: 4px; padding-right: 4px; }
  .doctor-cert { right: 0; }
  .float-cta { right: 14px; bottom: 14px; padding: 13px 20px; font-size: .85rem; }
  .footer-inner { flex-direction: column; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 10px 20px; }
}
