:root {
  --forest-950: #0b2825;
  --forest-900: #123430;
  --forest-800: #194a43;
  --forest-700: #26675c;
  --sage-500: #7eb09d;
  --sage-400: #9bc8b7;
  --sage-300: #b8d8cc;
  --mint-100: #e8f1ed;
  --ivory: #f5f1ea;
  --paper: #fbfaf7;
  --sand: #ded2c4;
  --ink: #17302d;
  --muted: #64716d;
  --white: #fff;
  --line: rgba(18, 52, 48, 0.14);
  --shadow-lg: 0 35px 100px rgba(11, 40, 37, 0.16);
  --shadow-sm: 0 14px 40px rgba(11, 40, 37, 0.08);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1280px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--sage-300); color: var(--forest-950); }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--forest-950);
  color: white;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-pad { padding: 150px 0; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 999;
  background: transparent;
}
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sage-400), #d8ebdf); }

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle, rgba(126,176,157,.11), rgba(126,176,157,0) 68%);
  transform: translate(-50%, -50%);
  transition: opacity .25s;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(251,250,247,.82);
  border-color: rgba(18,52,48,.08);
  backdrop-filter: blur(18px) saturate(150%);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 44px; height: 44px; color: var(--forest-800); fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.brand span { display: grid; gap: 2px; }
.brand strong { font-family: "Marcellus", serif; font-weight: 400; letter-spacing: -.02em; font-size: 18px; }
.brand small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 600; color: rgba(23,48,45,.75); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--forest-800); transition: right .35s var(--ease); }
.desktop-nav a:hover::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
  will-change: transform;
}
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.button:hover svg { transform: translateX(4px); }
.button-sm { min-height: 46px; padding: 0 20px; color: white; background: var(--forest-900); box-shadow: 0 12px 28px rgba(18,52,48,.16); }
.button-primary { color: white; background: var(--forest-900); box-shadow: 0 18px 42px rgba(18,52,48,.18); }
.button-primary:hover, .button-sm:hover { background: var(--forest-800); box-shadow: 0 22px 48px rgba(18,52,48,.24); }
.button-outline { border-color: rgba(18,52,48,.22); background: rgba(255,255,255,.45); color: var(--forest-900); }
.button-outline:hover { border-color: var(--forest-900); background: white; }
.button-soft { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.18); }
.button-soft:hover { background: rgba(255,255,255,.16); }
.button-lime { background: var(--sage-300); color: var(--forest-950); box-shadow: 0 20px 55px rgba(184,216,204,.16); }
.button-lime:hover { background: #d4e8df; box-shadow: 0 24px 65px rgba(184,216,204,.24); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; position: relative; }
.menu-toggle span { position: absolute; left: 10px; right: 10px; height: 1px; background: var(--forest-950); transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 145px 0 84px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 84% 21%, rgba(126,176,157,.22), transparent 25%),
    radial-gradient(circle at 18% 82%, rgba(222,210,196,.34), transparent 28%),
    linear-gradient(135deg, #fbfaf7 0%, #f2f0e9 56%, #e7efea 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
}
.hero-mesh { position: absolute; width: 600px; height: 600px; right: -180px; top: -190px; border-radius: 50%; border: 1px solid rgba(18,52,48,.08); box-shadow: 0 0 0 80px rgba(18,52,48,.018), 0 0 0 160px rgba(18,52,48,.012); }
.hero-gridlines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(18,52,48,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(18,52,48,.12) 1px, transparent 1px); background-size: 96px 96px; mask-image: linear-gradient(to right, rgba(0,0,0,.65), transparent 72%); }
.hero-layout { position: relative; z-index: 3; display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 4; padding-top: 24px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--forest-700); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-500); box-shadow: 0 0 0 7px rgba(126,176,157,.13); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(126,176,157,0); } }
.hero-title { margin: 30px 0 28px; font-family: "Marcellus", serif; font-size: clamp(64px, 7.2vw, 112px); font-weight: 400; letter-spacing: -.062em; line-height: .86; color: var(--forest-950); }
.title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.title-line > span { display: block; transform: translateY(110%); }
.title-line.accent { color: var(--sage-500); padding-left: .32em; }
.hero-description { max-width: 670px; margin: 0; color: #4d5e59; font-family: "Manrope", sans-serif; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--forest-800); }
.text-link span { font-size: 18px; transition: transform .35s var(--ease); }
.text-link:hover span { transform: translate(4px,4px); }
.hero-trust { display: flex; align-items: stretch; gap: 36px; margin-top: 62px; }
.hero-trust > div { display: flex; gap: 12px; align-items: flex-start; }
.hero-trust > div + div { padding-left: 36px; border-left: 1px solid var(--line); }
.hero-trust strong { font-family: "Marcellus", serif; font-size: 22px; color: var(--sage-500); font-weight: 400; }
.hero-trust span { font-size: 12px; line-height: 1.5; font-weight: 600; color: #5b6b66; }

.hero-visual { position: relative; min-width: 0; }
.portrait-frame { position: relative; width: min(100%, 570px); aspect-ratio: .86; margin-left: auto; border-radius: 180px 180px 40px 40px; overflow: visible; }
.portrait-frame::before { content: ""; position: absolute; inset: 5% -5% -4% 8%; border: 1px solid rgba(18,52,48,.12); border-radius: inherit; transform: rotate(3.4deg); }
.portrait-frame img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; border-radius: inherit; box-shadow: var(--shadow-lg); }
.portrait-scrim { position: absolute; z-index: 3; inset: 0; border-radius: inherit; background: linear-gradient(to top, rgba(18,52,48,.18), transparent 35%); pointer-events: none; }
.portrait-halo { position: absolute; z-index: 1; inset: -9%; border-radius: 50%; background: radial-gradient(circle, rgba(126,176,157,.26), transparent 65%); filter: blur(18px); }
.glass-card { backdrop-filter: blur(16px) saturate(160%); background: rgba(249,248,244,.72); border: 1px solid rgba(255,255,255,.62); box-shadow: 0 20px 50px rgba(18,52,48,.15); }
.portrait-tag { position: absolute; z-index: 4; left: -75px; bottom: 42px; display: flex; align-items: center; gap: 13px; padding: 14px 18px 14px 14px; border-radius: 18px; }
.tag-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: white; background: var(--forest-900); }
.tag-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.portrait-tag > span:last-child { display: grid; gap: 3px; }
.portrait-tag small { font-size: 9px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.portrait-tag strong { font-size: 13px; }
.floating-orbit { position: absolute; z-index: 4; right: -42px; top: 24%; width: 94px; height: 94px; border: 1px solid rgba(18,52,48,.2); border-radius: 50%; animation: orbit 8s linear infinite; }
.floating-orbit::before, .floating-orbit::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(18,52,48,.12); border-radius: inherit; }
.floating-orbit span { position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--sage-500); box-shadow: 0 0 18px rgba(126,176,157,.8); }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-signature { position: absolute; z-index: 0; right: -10px; bottom: -35px; font-family: "Marcellus", serif; font-size: 140px; letter-spacing: -.08em; color: rgba(18,52,48,.055); }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: rgba(23,48,45,.55); }
.scroll-cue i { display: block; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(18,52,48,.16); position: relative; }
.scroll-cue i::after { content: ""; position: absolute; width: 5px; height: 5px; left: 50%; top: 9px; border-right: 1px solid var(--forest-800); border-bottom: 1px solid var(--forest-800); transform: translateX(-50%) rotate(45deg); animation: scrollDrop 1.8s ease infinite; }
@keyframes scrollDrop { 60% { transform: translate(-50%,9px) rotate(45deg); opacity: 0; } }

.manifesto { background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: .34fr 1fr; gap: 70px; align-items: start; }
.manifesto-copy { max-width: 960px; }
.statement { margin: 0; font-family: "Marcellus", serif; font-size: clamp(37px, 4.45vw, 68px); line-height: 1.08; letter-spacing: -.045em; color: var(--forest-950); }
.statement .word { display: inline-block; opacity: .18; transition: opacity .2s; }
.manifesto-bottom { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; margin-top: 72px; padding-top: 38px; border-top: 1px solid var(--line); }
.manifesto-bottom > p { margin: 0; color: #53625e; font-size: 17px; line-height: 1.8; }
.manifesto-bottom blockquote { margin: 0; padding-left: 30px; border-left: 2px solid var(--sage-500); font-family: "Marcellus", serif; font-size: 23px; line-height: 1.45; color: var(--forest-800); }

.care-journey { background: linear-gradient(180deg, #f6f4ee 0%, #eef3ef 100%); position: relative; }
.section-heading { display: grid; grid-template-columns: 1.25fr .58fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.section-heading h2, .feature-copy h2, .faq-intro h2, .final-cta h2 { margin: 18px 0 0; font-family: "Marcellus", serif; font-size: clamp(48px, 5.5vw, 78px); font-weight: 400; line-height: 1.03; letter-spacing: -.052em; }
.section-heading > p { margin: 0; font-size: 17px; line-height: 1.75; color: #5d6b67; }
.journey-rail { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.journey-rail::before { content: ""; position: absolute; z-index: 0; left: 6%; right: 6%; top: 51px; height: 1px; background: linear-gradient(90deg, transparent, var(--sage-500), transparent); }
.journey-card { position: relative; z-index: 1; min-height: 330px; padding: 30px; border: 1px solid rgba(18,52,48,.1); border-radius: 30px; background: rgba(255,255,255,.56); box-shadow: 0 16px 44px rgba(18,52,48,.04); transition: transform .45s var(--ease), box-shadow .45s, background .45s; overflow: hidden; }
.journey-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; bottom: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(126,176,157,.18), transparent 67%); }
.journey-card:hover { transform: translateY(-10px); background: white; box-shadow: 0 24px 60px rgba(18,52,48,.09); }
.journey-number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--forest-800); font: 12px/1 "DM Sans", sans-serif; font-weight: 700; background: var(--mint-100); border: 1px solid rgba(18,52,48,.1); }
.journey-card > svg { width: 38px; height: 38px; margin: 54px 0 30px; fill: none; stroke: var(--sage-500); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.journey-card h3 { margin: 0 0 14px; font-family: "Marcellus", serif; font-size: 24px; font-weight: 400; }
.journey-card p { margin: 0; color: #60706b; font-size: 14px; line-height: 1.65; }

.treatments { position: relative; overflow: hidden; background: var(--forest-950); color: white; }
.treatments::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 120px 120px; mask-image: radial-gradient(circle at 50% 45%, black, transparent 80%); }
.treatments-glow { position: absolute; width: 900px; height: 900px; top: -450px; right: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(126,176,157,.18), transparent 65%); filter: blur(12px); }
.treatments .container { position: relative; z-index: 2; }
.section-kicker.light { color: var(--sage-300); }
.dark-heading h2 { color: #f5f1ea; }
.dark-heading > p { color: rgba(238,245,241,.62); }
.treatment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.treatment-card { position: relative; min-height: 390px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: rgba(255,255,255,.035); overflow: hidden; transition: transform .45s var(--ease), border-color .45s, background .45s; }
.treatment-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(184,216,204,.13), transparent 38%); opacity: 0; transition: opacity .3s; }
.treatment-card:hover { transform: translateY(-8px); border-color: rgba(184,216,204,.34); background: rgba(255,255,255,.052); }
.treatment-card:hover::before { opacity: 1; }
.treatment-card.featured { background: linear-gradient(145deg, rgba(126,176,157,.24), rgba(255,255,255,.04)); border-color: rgba(184,216,204,.28); }
.card-topline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.44); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.card-topline small { font-size: 9px; }
.treatment-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 62px; height: 62px; margin: 76px 0 30px; border-radius: 20px; background: rgba(184,216,204,.11); border: 1px solid rgba(184,216,204,.12); }
.treatment-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--sage-300); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.treatment-card h3 { position: relative; z-index: 2; margin: 0 0 14px; font-family: "Marcellus", serif; font-size: 29px; font-weight: 400; }
.treatment-card p { position: relative; z-index: 2; max-width: 90%; margin: 0; color: rgba(238,245,241,.58); font-size: 14px; line-height: 1.7; }
.card-line { position: absolute; z-index: 2; left: 30px; right: 100%; bottom: 27px; height: 1px; background: var(--sage-300); transition: right .55s var(--ease); }
.treatment-card:hover .card-line { right: 30px; }

.laser-feature { background: var(--ivory); }
.feature-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.feature-image { position: relative; min-height: 720px; }
.feature-image::before { content: ""; position: absolute; inset: 8% -8% -6% 10%; border: 1px solid rgba(18,52,48,.14); border-radius: 36px 150px 36px 36px; transform: rotate(-2deg); }
.feature-image img { position: relative; z-index: 2; width: 100%; height: 720px; object-fit: cover; object-position: 54% 35%; border-radius: 36px 150px 36px 36px; box-shadow: var(--shadow-lg); }
.feature-caption { position: absolute; z-index: 3; left: 30px; bottom: 28px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; color: white; background: rgba(18,52,48,.76); backdrop-filter: blur(12px); font-size: 11px; letter-spacing: .05em; }
.feature-caption span { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-300); }
.feature-copy h2 { max-width: 760px; }
.feature-copy > p { margin: 30px 0 44px; color: #596863; font-size: 17px; line-height: 1.82; }
.feature-list { border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-item > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--mint-100); color: var(--forest-700); font-size: 11px; font-weight: 700; }
.feature-item p { margin: 0; color: #61716c; font-size: 14px; line-height: 1.65; }
.feature-item strong { display: block; margin-bottom: 5px; color: var(--forest-900); font-size: 16px; }
.dark-link { margin-top: 36px; }

.locations { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 22px; }
.location-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.home-card { min-height: 650px; padding: 48px; background: linear-gradient(145deg, #e6efea, #f2eee7); border: 1px solid rgba(18,52,48,.08); }
.location-art { position: absolute; inset: auto -65px -40px 10px; opacity: .13; }
.location-art svg { width: 100%; fill: none; stroke: var(--forest-900); stroke-width: 1.1; }
.location-badge { display: inline-flex; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.64); border: 1px solid rgba(18,52,48,.09); color: var(--forest-700); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.home-card h3, .clinic-content h3 { margin: 34px 0 20px; font-family: "Marcellus", serif; font-size: clamp(40px, 4vw, 62px); line-height: 1.02; font-weight: 400; letter-spacing: -.04em; }
.home-card p { max-width: 480px; margin: 0; color: #5a6964; font-size: 16px; line-height: 1.75; }
.home-card ul { list-style: none; padding: 0; margin: 36px 0 44px; display: grid; gap: 13px; }
.home-card li { display: flex; align-items: center; gap: 12px; color: var(--forest-800); font-size: 14px; font-weight: 600; }
.home-card li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sage-500); box-shadow: 0 0 0 5px rgba(126,176,157,.12); }
.clinic-card { display: grid; grid-template-rows: 1.1fr .9fr; min-height: 650px; background: var(--forest-950); color: white; }
.map-wrap { position: relative; min-height: 320px; overflow: hidden; }
.map-wrap iframe { position: absolute; inset: -15%; width: 130%; height: 130%; border: 0; filter: grayscale(1) contrast(.95) sepia(.15); }
.map-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, var(--forest-950), transparent 60%); }
.clinic-content { position: relative; z-index: 2; margin-top: -40px; padding: 0 46px 46px; }
.clinic-content .location-badge { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.12); color: var(--sage-300); }
.clinic-content h3 { margin-top: 22px; }
.clinic-content address { margin: 0; color: rgba(255,255,255,.62); font-style: normal; line-height: 1.65; }
.clinic-actions { display: flex; gap: 14px; align-items: center; margin-top: 30px; }
.clinic-actions .button-primary { background: var(--sage-300); color: var(--forest-950); box-shadow: none; }
.clinic-actions .button-primary:hover { background: white; }
.icon-button { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); transition: background .3s, transform .3s; }
.icon-button:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.faq { background: var(--forest-950); color: white; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { color: #f5f1ea; }
.faq-intro p { max-width: 500px; margin: 28px 0 34px; color: rgba(238,245,241,.58); font-size: 16px; line-height: 1.75; }
.accordion { border-top: 1px solid rgba(255,255,255,.12); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.accordion-item button { width: 100%; padding: 29px 0; display: flex; justify-content: space-between; align-items: center; gap: 28px; text-align: left; border: 0; background: transparent; cursor: pointer; font-family: "Marcellus", serif; font-size: 24px; }
.accordion-item button i { flex: 0 0 auto; position: relative; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.accordion-item button i::before, .accordion-item button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--sage-300); transform: translate(-50%,-50%); transition: transform .3s; }
.accordion-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-item.is-open button i::after { transform: translate(-50%,-50%) rotate(0deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.accordion-panel > p { overflow: hidden; margin: 0; color: rgba(238,245,241,.6); line-height: 1.8; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p { padding: 0 58px 30px 0; }

.final-cta { position: relative; padding: 130px 0; overflow: hidden; background: linear-gradient(135deg, #194a43, #0b2825 75%); color: white; }
.final-cta::before { content: "AM"; position: absolute; right: -40px; bottom: -100px; font-family: "Marcellus", serif; font-size: 380px; line-height: 1; color: rgba(255,255,255,.035); letter-spacing: -.09em; }
.cta-noise { position: absolute; inset: 0; opacity: .35; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E"); }
.cta-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.final-cta h2 { max-width: 850px; color: #f7f3eb; }
.cta-side p { margin: 0 0 32px; color: rgba(255,255,255,.67); line-height: 1.75; }

.site-footer { padding: 75px 0 24px; background: #081f1d; color: white; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 70px; }
.footer-brand .brand-mark { width: 56px; height: 56px; color: var(--sage-300); }
.footer-brand strong { font-size: 25px; }
.footer-brand small { color: rgba(255,255,255,.42); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-links > div { display: grid; align-content: start; gap: 11px; }
.footer-links small { margin-bottom: 11px; color: var(--sage-300); font-size: 9px; text-transform: uppercase; letter-spacing: .17em; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.6); font-size: 14px; transition: color .25s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 30px; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.4); font-size: 11px; line-height: 1.5; }
.footer-bottom a:hover { color: white; }
.mobile-whatsapp { display: none; }

.reveal, .reveal-title, .reveal-card, .reveal-image { will-change: transform, opacity; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .hero-layout { grid-template-columns: 1fr .85fr; gap: 36px; }
  .portrait-tag { left: -35px; }
  .hero-title { font-size: clamp(60px, 8.4vw, 92px); }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .journey-rail { grid-template-columns: repeat(2,1fr); }
  .journey-rail::before { display: none; }
  .treatment-grid { grid-template-columns: repeat(2,1fr); }
  .feature-layout { gap: 55px; }
  .faq-layout { gap: 55px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section-pad { padding: 96px 0; }
  .site-header .button-sm { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: -1; display: grid; align-content: center; gap: 24px; padding: 90px 26px 40px; background: rgba(245,241,234,.97); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s, visibility .3s, transform .3s; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { font-family: "Marcellus", serif; font-size: 35px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
  .mobile-menu a:last-child { margin-top: 12px; display: inline-flex; justify-content: center; padding: 17px 20px; border: 0; border-radius: 999px; color: white; background: var(--forest-900); font: 700 14px "DM Sans", sans-serif; }

  .hero { min-height: auto; padding: 125px 0 82px; }
  .hero-layout { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { padding-top: 0; }
  .hero-title { font-size: clamp(56px, 15vw, 82px); }
  .title-line.accent { padding-left: .16em; }
  .hero-description { max-width: 620px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-trust { margin-top: 45px; gap: 20px; }
  .hero-trust > div + div { padding-left: 20px; }
  .portrait-frame { width: min(92%, 560px); margin-inline: auto; border-radius: 140px 140px 34px 34px; }
  .portrait-tag { left: -12px; bottom: 26px; }
  .floating-orbit { right: -18px; }
  .hero-signature { right: 4%; }
  .scroll-cue { display: none; }

  .manifesto-bottom { grid-template-columns: 1fr; gap: 40px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .section-heading h2, .feature-copy h2, .faq-intro h2, .final-cta h2 { font-size: clamp(44px, 10vw, 64px); }
  .feature-layout { grid-template-columns: 1fr; }
  .feature-image { min-height: 620px; }
  .feature-image img { height: 620px; }
  .location-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .cta-layout { grid-template-columns: 1fr; gap: 42px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .mobile-whatsapp { position: fixed; z-index: 80; left: 16px; right: 16px; bottom: max(14px, env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 56px; border-radius: 999px; color: white; background: var(--forest-900); box-shadow: 0 18px 50px rgba(11,40,37,.28); font-size: 14px; font-weight: 700; }
  .mobile-whatsapp svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .site-footer { padding-bottom: 100px; }
  .cursor-glow { display: none; }
}

@media (max-width: 620px) {
  .hero-gridlines { opacity: .11; background-size: 62px 62px; }
  .eyebrow { font-size: 9px; letter-spacing: .13em; }
  .hero-title { margin-top: 24px; line-height: .9; }
  .hero-description { font-size: 16px; line-height: 1.65; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { margin-inline: auto; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-trust > div { display: grid; gap: 5px; }
  .hero-trust > div + div { padding-left: 16px; }
  .portrait-tag { left: 10px; right: 10px; bottom: 16px; justify-content: center; }
  .floating-orbit { width: 68px; height: 68px; right: -12px; }
  .hero-signature { font-size: 90px; bottom: -18px; }
  .statement { font-size: 39px; }
  .journey-rail { grid-template-columns: 1fr; }
  .journey-card { min-height: 300px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card { min-height: 355px; }
  .feature-image { min-height: 510px; }
  .feature-image img { height: 510px; border-radius: 28px 100px 28px 28px; }
  .feature-image::before { border-radius: 28px 100px 28px 28px; }
  .home-card { min-height: 590px; padding: 34px 26px; }
  .location-art { left: 10px; right: -20px; }
  .map-wrap iframe { inset: 0; width: 100%; height: 100%; }
  .clinic-content { padding: 0 26px 34px; }
  .clinic-actions { align-items: stretch; }
  .clinic-actions .button { flex: 1; padding-inline: 18px; }
  .accordion-item button { font-size: 20px; }
  .accordion-item.is-open .accordion-panel > p { padding-right: 0; }
  .final-cta { padding: 100px 0; }
  .footer-links { grid-template-columns: 1fr; }
  .brand strong { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .title-line > span { transform: none; }
  .statement .word { opacity: 1; }
}
