:root {
  --ink: #102f36;
  --ink-2: #164750;
  --teal: #0f6b6f;
  --teal-deep: #0f4f55;
  --aqua: #8fd6cf;
  --cream: #fbf6ec;
  --paper: #fffdf8;
  --sand: #eee0c7;
  --gold: #c79b4b;
  --coral: #d77b68;
  --muted: #60757a;
  --line: rgba(16, 47, 54, .12);
  --shadow: 0 24px 70px rgba(16, 47, 54, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(143, 214, 207, .24), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(199, 155, 75, .18), transparent 24rem),
    linear-gradient(180deg, var(--paper), var(--cream));
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.brand-lock { display: inline-block; white-space: nowrap; margin-inline: .14em; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 82px 0; }
.compact { padding: 48px 0; }
.soft { background: rgba(255, 253, 248, .68); border-block: 1px solid var(--line); }
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left: 20px; top: 20px; width: auto; height: auto; z-index: 99; background: white; padding: 10px 14px; border-radius: 8px; }

.notice-bar {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  color: white;
  text-align: center;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 10px 18px;
  font-size: 15px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -.02em; font-size: 22px; }
.brand strong { font-family: var(--font-display); font-size: 28px; }
.brand-mark { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; color: var(--teal); background: white; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(15, 79, 85, .1); }
.brand-mark svg { width: 33px; height: 33px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; color: var(--ink-2); }
.nav-links a:not(.nav-cta) { opacity: .86; }
.nav-links a:hover { opacity: 1; color: var(--teal-deep); }
.nav-cta { background: var(--ink); color: white; padding: 11px 16px; border-radius: 999px; box-shadow: 0 10px 26px rgba(16, 47, 54, .18); }
.nav-toggle { display: none; border: 1px solid var(--line); background: white; padding: 9px 13px; border-radius: 999px; font: inherit; font-weight: 700; }

.hero { position: relative; overflow: hidden; padding-top: 28px; padding-bottom: 42px; background: linear-gradient(180deg, rgba(255,253,248,.72), rgba(251,246,236,.84)); }
.hero-bg { position:absolute; inset:0; background: linear-gradient(135deg, rgba(15,107,111,.08), transparent 46%), radial-gradient(circle at 75% 32%, rgba(215,123,104,.14), transparent 22rem); pointer-events:none; }
.hero-bg::after { content:""; position:absolute; width: 360px; height:360px; right: 8%; top: 8%; border-radius:50%; background: radial-gradient(circle, rgba(143,214,207,.22), transparent 70%); animation: glow-drift 8s ease-in-out infinite; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr .92fr; gap: 48px; align-items: start; }
.hero-copy { position: relative; padding-top: 16px; }
.hero-copy:before { content:""; position:absolute; left:-18px; top:20px; width:4px; height:72px; border-radius:99px; background: linear-gradient(var(--gold), var(--teal)); opacity:.8; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--teal); font-size: 13px; font-weight: 800; }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; }
h1, h2 { font-family: var(--font-display); }
h1 { font-size: clamp(42px, 4.7vw, 58px); max-width: 690px; }
h2 { font-size: clamp(36px, 4.2vw, 58px); }
h3 { font-size: 26px; letter-spacing: -.025em; line-height: 1.05; }
p { font-size: 18px; color: var(--muted); }
.hero-lede { font-size: clamp(17px, 1.42vw, 20px); max-width: 650px; color: #3d575c; margin: 14px 0 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height: 50px; border-radius: 999px; padding: 13px 22px; font-weight: 800; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--teal-deep), var(--teal)); color: white; box-shadow: 0 18px 36px rgba(15, 79, 85, .22); position: relative; overflow:hidden; }
.button.primary::after { content:""; position:absolute; inset:-1px; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.26), transparent 58%); transform: translateX(-110%); transition: transform .72s ease; }
.button.primary:hover::after { transform: translateX(110%); }
.button.secondary { background: white; color: var(--ink); border-color: var(--line); }
.button.full { width: 100%; border: 0; cursor: pointer; font-size: 17px; }
.trust-row { display:flex; flex-wrap:wrap; gap: 10px; }
.trust-row span { background: rgba(255,255,255,.76); border:1px solid var(--line); border-radius:999px; padding: 8px 13px; font-weight: 700; color: var(--ink-2); }
.hero-card { background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(251,246,236,.9)); border: 1px solid rgba(199,155,75,.22); border-radius: var(--radius-xl); padding: 14px; box-shadow: var(--shadow); transform: none; }
.hero-card:before { content:""; display:block; height: 5px; border-radius:99px; margin: 0 8px 12px; background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral)); opacity:.7; }
.photo-stack { position: relative; min-height: 398px; border-radius: 28px; overflow: hidden; background: radial-gradient(circle at 50% 18%, rgba(255,255,255,.9), var(--sand) 62%); }
.doctor-photo { width: 100%; height: 100%; object-fit: contain; background: linear-gradient(145deg, rgba(238,224,199,.86), rgba(255,253,248,.95)); }
.main-photo { position: absolute; inset: 0; }
.inset-photo { position: absolute; right: 18px; bottom: 18px; width: 34%; height: 42%; border-radius: 22px; border: 8px solid white; box-shadow: 0 18px 45px rgba(0,0,0,.22); object-fit: contain; object-position: center top; background: var(--paper); }
.hero-card-copy { display: grid; gap: 3px; padding: 14px 10px 4px; }
.hero-info-card { min-height: 398px; display: grid; align-content: center; gap: 22px; padding: 34px; background: linear-gradient(150deg, rgba(255,255,255,.92), rgba(251,246,236,.96)); position: relative; overflow: hidden; }
.hero-info-card::after { content:""; position:absolute; right:-70px; top:-70px; width:220px; height:220px; border-radius:50%; background: rgba(143,214,207,.20); }
.hero-info-header, .hero-care-list, .hero-info-card .text-link { position: relative; z-index: 1; }
.hero-info-header h3 { font-family: var(--font-display); font-size: clamp(34px, 3.4vw, 52px); line-height: .98; letter-spacing: -.04em; margin: 8px 0 12px; max-width: 520px; }
.hero-info-header p:not(.photo-caption) { margin: 0; color: #3d575c; }
.hero-care-list { display:grid; gap: 10px; }
.hero-care-list span { display:flex; align-items:center; gap: 10px; background: rgba(15,107,111,.07); border:1px solid rgba(15,107,111,.12); border-radius: 16px; padding: 12px 14px; font-weight: 900; color: var(--ink-2); }
.hero-care-list span::before { content:""; width:10px; height:10px; border-radius:50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(199,155,75,.13); flex:0 0 auto; }
.photo-caption { margin: 0 0 2px; color: var(--coral); text-transform: uppercase; letter-spacing:.11em; font-size:12px; font-weight:900; }
.hero-card-copy strong { font-size: 20px; }
.hero-card-copy span { color: var(--muted); }

.proof-strip { background: rgba(255,255,255,.78); border-block: 1px solid var(--line); padding: 20px 0; }
.proof-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-grid article { background: var(--paper); border:1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: 0 12px 34px rgba(16,47,54,.06); }
.proof-grid span { display:block; color: var(--teal); text-transform: uppercase; letter-spacing:.1em; font-size: 12px; font-weight: 900; margin-bottom: 6px; }
.proof-grid strong { display:block; font-size: 18px; line-height: 1.15; color: var(--ink); }
.proof-grid p { margin: 8px 0 0; font-size: 15px; line-height: 1.42; }

.quick-open { background: linear-gradient(135deg, rgba(15,107,111,.08), rgba(199,155,75,.10)); border-block:1px solid var(--line); }
.quick-open-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items:center; }
.quick-open h2 { font-size: clamp(32px, 3.6vw, 50px); max-width: 650px; }
.quick-open p { max-width: 660px; }
.quick-open-form { background: rgba(255,255,255,.86); border:1px solid rgba(16,47,54,.13); border-radius: 28px; padding: 22px; display:grid; grid-template-columns: 1fr 1fr; gap: 12px; box-shadow: 0 18px 48px rgba(16,47,54,.08); }
.quick-open-form .button, .quick-open-form .compact-consent { grid-column: 1 / -1; }
.quick-open-form label { font-size: 14px; }
.compact-consent { background: rgba(15,107,111,.06); border-radius: 16px; padding: 10px 12px; }

.stats-band { background: var(--ink); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { padding: 28px 24px; border-left: 1px solid rgba(255,255,255,.12); }
.stats-grid div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid strong { display:block; font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--aqua); }
.stats-grid span { display:block; margin-top: 7px; color: rgba(255,255,255,.78); font-weight: 700; }

.step-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.step-grid article, .why-grid div { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: 0 18px 45px rgba(16,47,54,.07); }
.step-grid span { display:grid; place-items:center; width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color:white; font-weight: 900; margin-bottom: 18px; }
.step-grid p { font-size: 17px; margin-bottom: 0; }
.why-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.why-grid strong { display:block; font-size: 20px; margin-bottom: 8px; }
.why-grid span { color: var(--muted); }

.split-grid { display:grid; grid-template-columns: 280px 1fr; gap: 72px; align-items:start; }
.section-kicker { color: var(--coral); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.split-grid p { max-width: 760px; }
.section-heading { margin-bottom: 42px; max-width: 820px; }
.centered { text-align:center; margin-inline:auto; }
.editorial-heading p:not(.eyebrow) { max-width: 660px; margin: 14px auto 0; }
.doctor-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
.doctor-summary-grid .doctor-card { display:flex; flex-direction: column; }
.featured-doctor { border-color: rgba(15,107,111,.24); box-shadow: 0 26px 70px rgba(15,79,85,.13); }
.featured-doctor .doctor-content { padding: 36px; }
.featured-doctor h3 { font-size: clamp(30px, 3vw, 42px); }
.doctor-card { background: linear-gradient(180deg, white, rgba(251,246,236,.68)); border: 1px solid rgba(199,155,75,.20); border-radius: var(--radius-xl); overflow:hidden; box-shadow: 0 20px 50px rgba(16,47,54,.08); transition: transform .2s ease, box-shadow .2s ease; }
.doctor-card:hover { transform: translateY(-3px); box-shadow: 0 24px 62px rgba(16,47,54,.12); }
.doctor-card img { width:100%; height: 430px; object-fit: contain; object-position: center top; background: radial-gradient(circle at 50% 15%, rgba(255,255,255,.95), var(--sand) 66%); border-bottom: 1px solid rgba(199,155,75,.18); padding: 0; }
.doctor-card img.doctor-home-photo { height: 390px; background: linear-gradient(145deg, rgba(238,224,199,.86), rgba(255,253,248,.96)); }
.featured-doctor img.doctor-home-photo { height: 430px; }
.doctor-content { padding: 30px; }
.label { color: var(--teal); font-size: 14px; text-transform: uppercase; letter-spacing:.11em; font-weight: 800; margin: 0 0 10px; }
.credential-chips { display:flex; flex-wrap:wrap; gap: 8px; margin: 14px 0 16px; }
.credential-chips span { border:1px solid rgba(15,107,111,.16); background: rgba(15,107,111,.06); color: var(--teal-deep); border-radius:999px; padding: 6px 9px; font-size: 13px; font-weight: 900; }
blockquote { margin: 20px 0; padding-left: 18px; border-left: 4px solid var(--gold); font-family: var(--font-display); font-size: 24px; line-height: 1.14; color: var(--ink-2); }
.doctor-content blockquote { background: rgba(251,246,236,.74); border-left:0; border-radius: 18px; padding: 18px; position: relative; }
.doctor-content blockquote:before { content:"“"; position:absolute; right:16px; top:-12px; color: rgba(199,155,75,.24); font-size:70px; line-height:1; }
.text-link { display:inline-flex; margin-top: 12px; font-weight: 900; color: var(--teal-deep); border-bottom: 2px solid rgba(199,155,75,.55); }

.service-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-grid article { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; min-height: 252px; position: relative; overflow:hidden; }
.service-grid article:after { content:""; position:absolute; right:-30px; bottom:-30px; width:110px; height:110px; border-radius: 50%; background: rgba(143,214,207,.18); }
.service-grid span { color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.service-grid h3 { margin-top: 18px; }
.service-grid p { font-size: 17px; }

.community-grid { display:grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items:center; }
.community-visual { position:relative; min-height: 360px; border-radius: 34px; background: radial-gradient(circle at 30% 25%, rgba(143,214,207,.34), transparent 32%), linear-gradient(135deg, #11363d, #0f6b6f); overflow:hidden; box-shadow: var(--shadow); }
.community-visual:before { content:""; position:absolute; inset:24px; border:1px solid rgba(255,255,255,.20); border-radius:26px; }
.visual-card { position:absolute; z-index:2; background: rgba(255,253,248,.94); color: var(--ink); border:1px solid rgba(255,255,255,.55); border-radius: 22px; padding: 18px; box-shadow: 0 18px 48px rgba(0,0,0,.18); display:grid; gap: 4px; min-width: 210px; }
.visual-card span { width: 42px; height: 42px; border-radius:50%; background: linear-gradient(135deg, var(--aqua), var(--gold)); margin-bottom: 8px; }
.visual-card strong { font-family: var(--font-display); font-size: 26px; line-height:1; }
.visual-card small { color: var(--muted); font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.visual-card-main { left: 42px; top: 54px; }
.visual-card-side { right: 34px; bottom: 42px; transform: rotate(1.5deg); }
.visual-orbit { position:absolute; width: 220px; height: 220px; border-radius:50%; right: 68px; top: 38px; border: 1px solid rgba(255,255,255,.22); box-shadow: inset 0 0 0 24px rgba(255,255,255,.04); }
.warmth-points { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 22px; }
.warmth-points span { background:white; border:1px solid var(--line); border-radius:999px; padding: 9px 13px; font-weight:900; color: var(--ink-2); }

.mission-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.values-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.expanded-values { grid-template-columns: 1fr 1fr; }
.expanded-values div { min-height: 154px; }
.values-grid div { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.values-grid strong { display:block; font-size: 21px; margin-bottom: 7px; }
.values-grid span { color: var(--muted); }

.faq-list { max-width: 900px; margin: 0 auto; display:grid; gap: 12px; }
details { background:white; border:1px solid var(--line); border-radius: 18px; padding: 20px 22px; }
summary { cursor:pointer; font-weight: 900; font-size: 20px; }
details p { margin-bottom:0; font-size:17px; }
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.contact-cards { display:grid; gap: 12px; margin-top: 28px; }
.contact-cards div { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.contact-cards strong { display:block; margin-bottom: 4px; }
.contact-cards span { color: var(--muted); }
.waitlist-form { background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow); display:grid; gap: 16px; }
label { display:grid; gap: 6px; font-weight: 800; }
input, select { width:100%; border:1px solid var(--line); background: var(--paper); border-radius: 14px; padding: 14px 15px; font: inherit; color: var(--ink); }
input:focus, select:focus { outline: 3px solid rgba(143,214,207,.42); border-color: var(--teal); }
.form-note { font-size: 14px; margin: 0; text-align:center; }
.form-status-card { background: var(--cream); border: 1px solid var(--line); border-radius: 22px; padding: 24px; }
.form-status-card h3 { margin: 6px 0 10px; }
.form-status-card p:not(.eyebrow) { margin: 0; font-size: 17px; }
.status-dot { display:inline-block; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(199,155,75,.15); margin-bottom: 16px; }
.mini-checklist { display:grid; gap: 8px; background: rgba(15,107,111,.06); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.mini-checklist strong { margin-bottom: 4px; }
.mini-checklist span { color: var(--muted); padding-left: 20px; position: relative; }
.mini-checklist span:before { content: "•"; position:absolute; left: 4px; color: var(--teal); font-weight: 900; }
.site-footer { background: #092b31; color:white; padding: 42px 0; }
.footer-grid { display:grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.footer-grid p { color: rgba(255,255,255,.72); margin-bottom:0; font-size: 16px; }

.reveal { opacity: 0; transform: translateY(18px); animation: rise .72s ease forwards; }
.delay-1 { animation-delay: .12s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes soft-rise { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: translateY(0); } }
@keyframes glow-drift { 0%, 100% { transform: translate3d(0,0,0) scale(1); opacity:.8; } 50% { transform: translate3d(12px,-10px,0) scale(1.05); opacity:1; } }
.reveal, .motion-item, .organic-card, .proof-grid article, .service-grid article, .values-grid div, .step-grid article, .why-grid div { will-change: transform, opacity; }
.motion-ready .reveal, .motion-ready .motion-item, .motion-ready .organic-card, .motion-ready .proof-grid article, .motion-ready .service-grid article, .motion-ready .values-grid div, .motion-ready .step-grid article, .motion-ready .why-grid div { opacity:0; transform: translateY(18px); animation: none; }
.motion-ready .is-visible { opacity:1 !important; transform: translateY(0) !important; transition: opacity .62s ease, transform .62s ease; }
.motion-ready .proof-grid article:nth-child(2), .motion-ready .service-grid article:nth-child(2), .motion-ready .values-grid div:nth-child(2) { transition-delay: .06s; }
.motion-ready .proof-grid article:nth-child(3), .motion-ready .service-grid article:nth-child(3), .motion-ready .values-grid div:nth-child(3) { transition-delay: .12s; }
.motion-ready .service-grid article:nth-child(4), .motion-ready .values-grid div:nth-child(4) { transition-delay: .18s; }
.motion-ready .service-grid article:nth-child(5), .motion-ready .values-grid div:nth-child(5) { transition-delay: .24s; }
.motion-ready .service-grid article:nth-child(6), .motion-ready .values-grid div:nth-child(6) { transition-delay: .30s; }

.hidden-field { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; opacity:0 !important; pointer-events:none !important; }
.capture-ready { border-color: rgba(15,107,111,.22); background: linear-gradient(180deg, rgba(143,214,207,.16), var(--cream)); }
.consent-row { grid-template-columns: auto 1fr; align-items: start; gap: 10px; font-weight: 700; line-height: 1.35; }
.consent-row input { width: 18px; height: 18px; margin-top: 3px; }
.inline-kicker { margin: 18px 0 12px; color: var(--teal); letter-spacing:.12em; font-size: 13px; }
.profile-doctor-photo, .organic-card > img.profile-doctor-photo { width: 100%; max-height: 560px; object-fit: contain; object-position: center top; background: linear-gradient(145deg, var(--sand), var(--paper)); border-radius: 22px; margin-bottom: 20px; }
.doctor-profile-card blockquote { margin-top: 0; }

.organic-hero { padding: 76px 0 58px; background: linear-gradient(135deg, rgba(15,107,111,.10), rgba(199,155,75,.10)); border-bottom: 1px solid var(--line); }
.organic-hero .container { max-width: 980px; }
.organic-hero h1 { font-size: clamp(44px, 6vw, 78px); }
.organic-hero p { max-width: 760px; font-size: 21px; }
.organic-content { padding: 72px 0; }
.organic-grid { display:grid; grid-template-columns: 1fr 360px; gap: 42px; align-items:start; }
.organic-card { background:white; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: 0 18px 48px rgba(16,47,54,.08); }
.organic-card + .organic-card { margin-top: 18px; }
.organic-card ul { padding-left: 20px; color: var(--muted); font-size: 18px; }
.organic-card li { margin: 8px 0; }
.quick-links { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 24px; }
.quick-links a { border:1px solid var(--line); background:white; border-radius: 999px; padding: 9px 13px; font-weight:800; color: var(--ink-2); }
.sticky-organic-form { position: sticky; top: 120px; }
.organic-links-section { background: rgba(255,255,255,.46); border-block: 1px solid var(--line); }
.seo-link-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.seo-link-grid a { background:white; border:1px solid var(--line); border-radius: 18px; padding: 18px; font-weight: 900; color: var(--ink-2); box-shadow: 0 12px 28px rgba(16,47,54,.06); }
.seo-link-grid a:hover { color: var(--teal-deep); transform: translateY(-1px); }
.safety-card { border-color: rgba(215,123,104,.22); }
.footer-links a { color: white; font-weight: 800; }
.organic-card details { margin-top: 12px; box-shadow: none; }

@media (max-width: 900px) {
  .nav-toggle { display:inline-flex; order: 3; }
  .brand { order: 1; }
  .nav-links { display:none; position:absolute; left:20px; right:20px; top: 116px; background:white; border:1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: var(--shadow); flex-direction:column; align-items:stretch; }
  .nav-links.open { display:flex; }
  .hero-grid, .split-grid, .mission-grid, .contact-grid, .quick-open-grid, .community-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding-top: 38px; }
  .hero-copy:before { display:none; }
  .photo-stack { min-height: 420px; }
  .stats-grid, .doctor-grid, .service-grid, .values-grid, .footer-grid, .proof-grid, .step-grid, .why-grid, .expanded-values { grid-template-columns: 1fr; }
  .stats-grid div { border-inline: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .quick-open-form { grid-template-columns: 1fr; }
  .community-visual { min-height: 330px; }
  .organic-grid { grid-template-columns: 1fr; }
  .sticky-organic-form { position: static; }
  .seo-link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container, .nav-shell { width: min(100% - 28px, 1160px); }
  .nav-shell { gap: 8px; }
  .brand { gap: 8px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand > span:last-child { font-size: 0; }
  .brand > span:last-child strong { font-size: 25px; }
  .nav-toggle { padding: 8px 11px; }
  .section-pad { padding: 58px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .doctor-card img { height: 330px; }
  .hero-card { transform: none; }
  .photo-stack { min-height: 400px; }
  .inset-photo { width: 38%; height: 36%; border-width: 5px; }
  .waitlist-form { padding: 24px; }
  .profile-doctor-photo, .organic-card > img.profile-doctor-photo { max-height: 470px; }
  .proof-strip { padding-top: 12px; }
  .quick-open-form { padding: 18px; }
    .visual-card { min-width: 185px; padding: 15px; }
  .visual-card-main { left: 18px; top: 42px; }
  .visual-card-side { right: 14px; bottom: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior:auto !important; }
  .motion-ready .reveal, .motion-ready .motion-item, .motion-ready .organic-card, .motion-ready .proof-grid article, .motion-ready .service-grid article, .motion-ready .values-grid div, .motion-ready .step-grid article, .motion-ready .why-grid div { opacity:1; transform:none; }
}
