:root {
  --ink: #20221d;
  --ink-soft: #373a33;
  --paper: #f2eee8;
  --paper-2: #e8e0d8;
  --paper-3: #ddd0c5;
  --sage: #6f7866;
  --sage-deep: #56604e;
  --rose: #b98779;
  --white: #fffdf9;
  --line: rgba(32, 34, 29, 0.18);
  --line-light: rgba(255, 253, 249, 0.25);
  --shell: min(1240px, calc(100% - 64px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(90px, 10vw, 160px) 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sage-deep);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 200;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(22px, 4vw, 64px);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  color: var(--ink);
  background: rgba(242, 238, 232, 0.9);
  border-bottom-color: rgba(32, 34, 29, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  justify-self: start;
  text-decoration: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1;
  letter-spacing: 0.18em;
}

.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  justify-self: end;
  padding: 12px 0 10px;
  border-bottom: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-content: center;
  gap: 12px;
  padding: 112px 24px 40px;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.1;
  text-decoration: none;
}

.mobile-menu .mobile-menu-cta {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 52% 44%;
  transform: scale(1.035);
  animation: heroSlowZoom 16s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 23, 19, 0.82) 0%, rgba(22, 23, 19, 0.48) 42%, rgba(22, 23, 19, 0.18) 72%, rgba(22, 23, 19, 0.32) 100%),
    linear-gradient(0deg, rgba(22, 23, 19, 0.54) 0%, transparent 52%);
}

@keyframes heroSlowZoom {
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(88px, 10vh, 120px);
}

.hero-copy {
  width: min(860px, 77vw);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.2vw, 8.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em {
  color: #e3c1b8;
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 253, 249, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 30px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e7c8bf;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.55);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.dark-link {
  border-bottom-color: rgba(32, 34, 29, 0.45);
  color: var(--ink);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: clamp(92px, 10vh, 124px);
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 253, 249, 0.48);
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-vertical-mark {
  position: absolute;
  top: 50%;
  right: clamp(22px, 4vw, 64px);
  z-index: 1;
  color: rgba(255, 253, 249, 0.18);
  font-family: var(--serif);
  font-size: clamp(4.4rem, 9vw, 10rem);
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  user-select: none;
}

.scroll-cue {
  position: absolute;
  left: clamp(22px, 4vw, 64px);
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.3);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  animation: cueLine 2.4s ease-in-out infinite;
}

@keyframes cueLine {
  50%, 100% { transform: translateX(100%); }
}

.signal-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.signal-grid span:last-child {
  border-right: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: 32px 7vw;
  align-items: start;
  padding-bottom: clamp(52px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
  margin-top: 10px;
}

.section-heading h2,
.location-head h2,
.faq-heading h2,
.experience-sticky h2,
.clinic-story-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  max-width: 920px;
  font-size: clamp(3rem, 6vw, 7rem);
}

.section-heading p {
  grid-column: 2;
  max-width: 620px;
  margin: -8px 0 0;
  color: rgba(32, 34, 29, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.decision-list {
  border-bottom: 1px solid var(--line);
}

.decision-item {
  border-top: 1px solid var(--line);
}

.decision-item:first-child {
  border-top: 0;
}

.decision-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.decision-index {
  color: var(--sage-deep);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.decision-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 5.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.decision-icon {
  justify-self: end;
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.decision-item.is-open .decision-icon {
  transform: rotate(45deg);
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px 7vw;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s ease, opacity 0.35s ease, padding 0.55s ease;
}

.decision-item.is-open .decision-panel {
  max-height: 760px;
  opacity: 1;
  padding: 10px 0 50px 110px;
}

.decision-panel p {
  max-width: 460px;
  margin: 0 0 24px;
  color: rgba(32, 34, 29, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.decision-image {
  height: clamp(260px, 34vw, 460px);
  overflow: hidden;
  background: var(--paper-2);
}

.decision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s cubic-bezier(.2,.65,.25,1);
}

.decision-item.is-open .decision-image img {
  transform: scale(1.035);
}

.decision-image.portrait img {
  object-position: center 40%;
}

.manifesto {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.manifesto-media,
.manifesto-media img,
.manifesto-overlay {
  position: absolute;
  inset: 0;
}

.manifesto-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.manifesto-overlay {
  background:
    linear-gradient(0deg, rgba(22, 23, 19, 0.82) 0%, rgba(22, 23, 19, 0.38) 48%, rgba(22, 23, 19, 0.12) 100%),
    linear-gradient(90deg, rgba(22, 23, 19, 0.45), transparent 70%);
}

.manifesto-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(78px, 10vw, 140px);
}

.manifesto h2 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 8.4rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.manifesto p {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.experience {
  background: var(--paper-2);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 8vw;
  align-items: start;
}

.experience-sticky {
  position: sticky;
  top: calc(var(--header-h) + 46px);
}

.experience-sticky h2 {
  max-width: 560px;
  font-size: clamp(3rem, 5.6vw, 6.8rem);
}

.experience-sticky p {
  max-width: 500px;
  margin: 26px 0 32px;
  color: rgba(32, 34, 29, 0.68);
  line-height: 1.75;
}

.experience-steps {
  border-top: 1px solid var(--line);
}

.experience-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  padding: 42px 0 50px;
  border-bottom: 1px solid var(--line);
}

.experience-step > span {
  padding-top: 8px;
  color: var(--sage-deep);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.experience-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.experience-step p {
  grid-column: 2;
  max-width: 560px;
  margin: 6px 0 0;
  color: rgba(32, 34, 29, 0.68);
  line-height: 1.7;
}

.clinic-story {
  background: var(--white);
}

.clinic-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 760px;
}

.clinic-story-image {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
}

.clinic-story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.clinic-story-image figcaption {
  position: absolute;
  left: 22px;
  bottom: 16px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.clinic-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 110px);
  background: var(--white);
}

.clinic-story-copy h2 {
  font-size: clamp(3rem, 5vw, 6.3rem);
}

.clinic-story-copy > p {
  max-width: 560px;
  margin: 26px 0 36px;
  color: rgba(32, 34, 29, 0.68);
  line-height: 1.75;
}

.clinic-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clinic-facts div {
  display: grid;
  gap: 6px;
}

.clinic-facts span {
  color: rgba(32, 34, 29, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clinic-facts strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.location {
  background: var(--paper);
}

.location-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
}

.location-head h2 {
  max-width: 840px;
  font-size: clamp(3rem, 6vw, 7rem);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  min-height: 540px;
  border: 1px solid var(--line);
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 74px);
  background: var(--white);
}

.location-label {
  margin-bottom: 18px;
  color: var(--sage-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card h3 {
  max-width: 440px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.location-card p {
  margin: 24px 0 32px;
  color: rgba(32, 34, 29, 0.68);
  line-height: 1.7;
}

.location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.map-wrap {
  min-height: 540px;
  background: var(--paper-3);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: grayscale(0.9) contrast(0.95) sepia(0.12);
}

.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 8vw;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 46px);
}

.faq-heading h2 {
  font-size: clamp(3rem, 5.2vw, 6.4rem);
}

.faq-heading p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(32, 34, 29, 0.64);
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.faq-item button i {
  justify-self: end;
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 0.3s ease;
}

.faq-item.is-open button i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.45s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
  opacity: 1;
  padding: 0 64px 30px 0;
}

.faq-answer p {
  max-width: 660px;
  margin: 0;
  color: rgba(32, 34, 29, 0.68);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  min-height: min(88svh, 850px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.final-cta-image,
.final-cta-image img,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.02);
}

.final-cta-overlay {
  background:
    linear-gradient(0deg, rgba(22, 23, 19, 0.8) 0%, rgba(22, 23, 19, 0.32) 58%, rgba(22, 23, 19, 0.12) 100%),
    linear-gradient(90deg, rgba(22, 23, 19, 0.56), transparent 70%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(72px, 9vw, 126px);
}

.final-cta h2 {
  max-width: 1050px;
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.8vw, 8rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.site-footer {
  padding: 72px 0 32px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.16);
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand .brand-name {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.footer-brand .brand-sub {
  max-width: 420px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 28px;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 7vw;
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.7rem;
  line-height: 1.6;
}

.mobile-whatsapp {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.2,.65,.25,1), transform 0.8s cubic-bezier(.2,.65,.25,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 44px, 1000px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: grid;
  }

  .hero-copy {
    width: min(760px, 84vw);
  }

  .hero-note {
    display: none;
  }

  .hero-vertical-mark {
    opacity: 0.7;
  }

  .experience-layout,
  .faq-layout {
    gap: 6vw;
  }

  .clinic-story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .clinic-story-copy {
    padding: 56px 44px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
    --shell: calc(100% - 36px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(22, 23, 19, 0.82) 0%, rgba(22, 23, 19, 0.46) 60%, rgba(22, 23, 19, 0.25) 100%),
      linear-gradient(90deg, rgba(22, 23, 19, 0.44), transparent 100%);
  }

  .hero-content {
    padding-bottom: 86px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 670px;
    font-size: clamp(3.5rem, 12vw, 6.6rem);
  }

  .hero-lead {
    max-width: 560px;
  }

  .hero-vertical-mark {
    right: 8px;
    font-size: 5rem;
    opacity: 0.18;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-grid span:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .signal-grid span:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    grid-column: auto;
    margin-top: 0;
  }

  .decision-trigger {
    grid-template-columns: 50px minmax(0, 1fr) 36px;
  }

  .decision-item.is-open .decision-panel {
    padding-left: 70px;
  }

  .experience-layout,
  .faq-layout,
  .location-grid,
  .clinic-story-grid {
    grid-template-columns: 1fr;
  }

  .experience-sticky,
  .faq-heading {
    position: relative;
    top: auto;
  }

  .experience-sticky {
    margin-bottom: 20px;
  }

  .clinic-story-image {
    min-height: 560px;
  }

  .clinic-story-copy {
    padding: 72px 22px;
  }

  .location-head {
    display: block;
  }

  .location-grid {
    min-height: auto;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 80px 0;
  }

  .hero-content {
    min-height: 100svh;
    justify-content: flex-end;
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15.5vw, 5.6rem);
    line-height: 0.91;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: fit-content;
    margin-top: 4px;
  }

  .hero-vertical-mark {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .signal-grid span {
    min-height: 62px;
    padding: 10px 8px;
    font-size: 0.62rem;
  }

  .section-heading {
    gap: 18px;
    padding-bottom: 44px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .decision-trigger {
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 24px 0;
  }

  .decision-title {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .decision-item.is-open .decision-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    max-height: 1100px;
    padding: 0 0 34px 48px;
  }

  .decision-image {
    height: 260px;
  }

  .manifesto {
    min-height: 78svh;
  }

  .manifesto-content {
    padding-bottom: 66px;
  }

  .manifesto h2 {
    font-size: clamp(3rem, 13.2vw, 5rem);
  }

  .manifesto p {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .experience-sticky h2,
  .clinic-story-copy h2,
  .location-head h2,
  .faq-heading h2 {
    font-size: clamp(3rem, 12.5vw, 4.8rem);
  }

  .experience-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 30px 0 36px;
  }

  .experience-step h3 {
    font-size: clamp(1.9rem, 8.5vw, 3rem);
  }

  .clinic-story-image {
    min-height: 430px;
  }

  .clinic-facts {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 42px 24px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .faq-heading {
    margin-bottom: 40px;
  }

  .faq-item button {
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 14px;
    padding: 22px 0;
  }

  .faq-item button span {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .faq-item.is-open .faq-answer {
    padding-right: 10px;
  }

  .final-cta {
    min-height: 78svh;
  }

  .final-cta-content {
    padding-bottom: 88px;
  }

  .final-cta h2 {
    font-size: clamp(3.1rem, 13vw, 5rem);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .mobile-whatsapp {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 18px;
    background: var(--ink);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .hero-content {
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.2vw, 6.5rem);
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
