:root {
  --ivory: #fbf8f1;
  --paper: #fffdf9;
  --sand: #d4c293;
  --sand-soft: #eee4cf;
  --gold: #b98c38;
  --gold-dark: #8a641f;
  --cocoa: #3f2b22;
  --cocoa-2: #5b4032;
  --wine: #6d3732;
  --ink: #2f2722;
  --muted: #74665c;
  --border: rgba(63, 43, 34, 0.14);
  --shadow: 0 24px 70px rgba(63, 43, 34, 0.14);
  --radius: 24px;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --serif: Didot, "Bodoni MT", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(185, 140, 56, 0.58); outline-offset: 4px; }

.draft-ribbon {
  background: #1f1814;
  color: #f4ead8;
  padding: 7px 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 5vw, 76px);
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}
.brand img { width: 210px; height: 74px; object-fit: contain; object-position: left center; }
.main-nav { margin-left: auto; display: flex; gap: clamp(16px, 2.1vw, 34px); }
.main-nav a { text-decoration: none; color: var(--cocoa-2); font-size: 0.78rem; letter-spacing: 0.02em; }
.main-nav a:hover { color: var(--gold-dark); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 25px;
  background: var(--cocoa);
  color: #fffaf2;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(63, 43, 34, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { background: var(--wine); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(63, 43, 34, 0.24); }
.button-small { min-height: 42px; padding: 10px 18px; font-size: 0.77rem; }
.button-full { width: 100%; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(72px, 9vw, 128px); }
.eyebrow { margin: 0 0 16px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; font-size: 0.7rem; }
.eyebrow-light { color: #e7cd92; }
h1, h2, h3 { margin: 0; color: var(--cocoa); font-family: var(--serif); font-weight: 400; line-height: 1.05; text-wrap: balance; }
h1 { font-size: clamp(3.2rem, 6.4vw, 6.25rem); letter-spacing: -0.052em; }
h2 { font-size: clamp(2.4rem, 4.7vw, 4.85rem); letter-spacing: -0.038em; }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { margin: 0; color: var(--muted); }

.hero {
  min-height: min(820px, calc(100vh - 120px));
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -180px;
  top: 80px;
  border: 1px solid rgba(185, 140, 56, 0.2);
  border-radius: 50%;
}
.hero-copy { padding: clamp(64px, 8vw, 122px) clamp(30px, 6vw, 90px) clamp(64px, 8vw, 112px) 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; position: relative; z-index: 1; }
.hero-lead { max-width: 640px; margin: 26px 0 34px; font-size: clamp(1.02rem, 1.35vw, 1.22rem); }
.trust-list { display: flex; flex-wrap: wrap; gap: 11px 24px; list-style: none; padding: 0; margin: 28px 0 0; color: var(--cocoa-2); font-size: 0.74rem; }
.trust-list li { position: relative; padding-left: 17px; }
.trust-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); position: absolute; left: 0; top: 0.58em; }
.hero-portrait { position: relative; min-height: 650px; padding: 34px 0 34px 34px; }
.hero-mobile-photo { display: none; }
.portrait-frame { width: 100%; height: 100%; min-height: 650px; overflow: hidden; border-radius: 260px 260px 24px 24px; background: var(--sand-soft); box-shadow: var(--shadow); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-signature { position: absolute; left: 4px; bottom: 58px; width: 94px; height: 94px; border: 1px solid var(--gold); border-radius: 50%; background: rgba(251, 248, 241, 0.92); color: var(--gold-dark); display: grid; place-items: center; font-family: var(--serif); font-size: 2.4rem; letter-spacing: -0.1em; }

.pain-section { width: min(1320px, calc(100% - 40px)); padding-inline: clamp(26px, 6vw, 90px); background: var(--cocoa); border-radius: var(--radius); display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px, 8vw, 108px); }
.pain-section h2, .pain-section .section-heading > p:last-child { color: #fff9f0; }
.pain-section .section-heading > p:last-child { margin-top: 24px; opacity: 0.72; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pain-item { min-height: 124px; padding: 19px; background: rgba(255, 250, 242, 0.075); border: 1px solid rgba(255, 250, 242, 0.08); border-radius: 16px; }
.pain-item span { color: #dcbf7d; font-size: 0.66rem; letter-spacing: 0.12em; }
.pain-item p { margin-top: 13px; color: #fff9f0; font-size: 0.88rem; line-height: 1.45; }

.natural-section { margin-top: clamp(72px, 9vw, 128px); display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; background: var(--paper); box-shadow: var(--shadow); }
.natural-media { min-height: 650px; position: relative; overflow: hidden; align-self: stretch; }
.natural-media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.natural-stamp { position: absolute; right: 28px; bottom: 28px; width: 128px; height: 128px; border-radius: 50%; background: rgba(109, 55, 50, 0.92); color: #fff7ea; display: grid; place-items: center; text-align: center; font-family: var(--serif); font-size: 1.25rem; line-height: 1.08; transform: rotate(-7deg); }
.natural-copy { padding-inline: clamp(34px, 6vw, 88px); }
.natural-copy > p:not(.eyebrow) { margin: 26px 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; color: var(--cocoa-2); font-size: 0.85rem; }
.check-list li { padding-left: 22px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); }
blockquote { margin: 34px 0 0; padding: 20px 0 0 26px; border-left: 2px solid var(--gold); font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.1rem); line-height: 1.25; color: var(--wine); }
blockquote strong { font-weight: 400; color: var(--cocoa); }

.results-section { background: linear-gradient(180deg, var(--ivory), #efe5d2); }
.section-heading { max-width: 680px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { margin-top: 20px; }
.case-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case-card { margin: 0; background: var(--paper); padding: 10px; border-radius: 18px; box-shadow: 0 14px 46px rgba(63, 43, 34, 0.09); overflow: hidden; }
.case-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.case-card figcaption { padding: 13px 6px 5px; display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 0.73rem; }
.case-card figcaption span { color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; }
.clinical-note, .fit-note { max-width: 770px; margin: 28px auto 0; text-align: center; font-size: 0.74rem; }
.instagram-preview { position: relative; overflow: hidden; margin-top: 50px; border-radius: 22px; background: var(--paper); padding: clamp(20px, 4vw, 36px); box-shadow: 0 14px 46px rgba(63,43,34,.08); }
.instagram-preview::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.instagram-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid #eee4dc; }
.instagram-brand { display: flex; align-items: center; gap: 14px; }
.instagram-brand > img { width: 48px; height: 48px; flex: none; }
.instagram-brand div { display: grid; gap: 2px; }
.instagram-brand span { color: var(--muted); font-size: .76rem; }
.instagram-brand strong { color: var(--cocoa); font-size: clamp(1.35rem, 2.3vw, 1.85rem); line-height: 1; }
.instagram-watch-note { color: #9d3c80; font-size: .72rem; font-weight: 700; text-align: right; }
.instagram-profile { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.instagram-profile img { width: 48px; height: 48px; border: 2px solid #d84489; padding: 2px; border-radius: 50%; object-fit: cover; }
.instagram-profile div { display: grid; line-height: 1.3; }
.instagram-profile span { color: var(--muted); font-size: .7rem; }
.instagram-profile strong { color: var(--cocoa); font-size: .98rem; }
.instagram-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.instagram-grid a { display: block; position: relative; overflow: hidden; width: 100%; padding: 0; border-radius: 12px; aspect-ratio: 4 / 5; background: var(--sand-soft); }
.instagram-grid a > img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.instagram-grid a:hover > img { transform: scale(1.045); }
.instagram-grid a::after { content: "▶"; display: grid; place-items: center; position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; padding-left: 3px; border-radius: 50%; transform: translate(-50%, -50%); background: #fff; color: #b33778; font-size: 18px; box-shadow: 0 4px 18px #0005; }
.instagram-reel-mark { position: absolute; right: 10px; top: 10px; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 7px; background: #fff; box-shadow: 0 2px 9px #0005; }
.instagram-reel-mark img { width: 19px; height: 19px; }
.instagram-fallback { margin-top: 20px; font-size: .82rem; }
.instagram-fallback a { color: #a82f83; font-weight: 700; }

.testimonial-section { background: var(--wine); }
.testimonial-intro { max-width: 760px; }
.testimonial-intro h2, .testimonial-intro > p:last-child { color: #fffaf2; }
.testimonial-intro > p:last-child { max-width: 660px; margin-top: 24px; opacity: 0.78; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 390px)); gap: 20px; margin-top: 48px; }
.video-card { overflow: hidden; background: #261d19; border-radius: 18px; box-shadow: 0 18px 46px rgba(24, 13, 10, 0.24); }
.video-card video { width: 100%; aspect-ratio: 9 / 14; object-fit: cover; background: #17110f; }
.video-card > div { padding: 14px 16px 16px; display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.video-card span { color: #efd69f; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.63rem; }
.video-card p { color: #e9ddd4; font-size: 0.7rem; }

.faq-section { display: grid; grid-template-columns: 0.84fr 1.16fr; gap: clamp(48px, 8vw, 110px); }
.faq-heading > p:last-child { margin-top: 24px; }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary { list-style: none; cursor: pointer; padding: 22px 46px 22px 0; color: var(--cocoa); font-family: var(--serif); font-size: 1.35rem; position: relative; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 3px; top: 20px; color: var(--gold-dark); font-family: var(--sans); font-weight: 300; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 50px 24px 0; font-size: 0.9rem; }

.identity-section { background: var(--cocoa); text-align: center; position: relative; overflow: hidden; }
.identity-section::before, .identity-section::after { content: ""; position: absolute; border: 1px solid rgba(212, 194, 147, 0.16); border-radius: 50%; width: 420px; height: 420px; }
.identity-section::before { left: -230px; top: -180px; }
.identity-section::after { right: -230px; bottom: -180px; }
.identity-inner { max-width: 920px; position: relative; z-index: 1; }
.identity-inner h2, .identity-inner p, .identity-inner > strong { color: #fffaf2; }
.identity-inner > p:not(.eyebrow) { max-width: 760px; margin: 24px auto 42px; opacity: 0.76; }
.identity-lines { display: grid; gap: 8px; margin-bottom: 34px; }
.identity-lines span { color: #d9c18e; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.8rem); }
.identity-inner > strong { font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 3.4rem); font-weight: 400; }

.fit-section .section-heading { margin-bottom: 44px; }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fit-card { min-height: 160px; padding: 23px; border: 1px solid var(--border); border-radius: 17px; background: rgba(255, 253, 249, 0.54); }
.fit-card span { color: var(--gold-dark); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; }
.fit-card p { margin-top: 25px; color: var(--cocoa-2); }

.process-section { background: var(--sand-soft); }
.process-list { list-style: none; padding: 0; margin: 54px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-list li { padding: 30px 24px; position: relative; border-top: 1px solid rgba(63, 43, 34, 0.25); }
.process-list li::before { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); position: absolute; top: -6px; left: 24px; box-shadow: 0 0 0 7px var(--sand-soft); }
.process-list span { color: var(--gold-dark); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; }
.process-list h3 { margin-top: 22px; font-size: 1.62rem; }
.process-list p { margin-top: 12px; font-size: 0.84rem; }

.doctor-section { display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--paper); box-shadow: var(--shadow); margin-top: clamp(72px, 9vw, 128px); margin-bottom: clamp(72px, 9vw, 128px); }
.doctor-photo { min-height: 680px; overflow: hidden; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.doctor-copy { padding-inline: clamp(36px, 7vw, 106px); display: flex; flex-direction: column; justify-content: center; }
.doctor-copy > p:not(.eyebrow) { margin-top: 26px; }
.pending-content { margin-top: 32px; padding: 18px; background: var(--sand-soft); border-left: 3px solid var(--gold); }
.pending-content span, .form-badge { display: inline-block; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.62rem; font-weight: 750; }
.pending-content p { margin-top: 7px; font-size: 0.78rem; }

.final-section { background: linear-gradient(120deg, #412c23 0%, #5e3e30 55%, #785145 100%); }
.final-grid { display: grid; grid-template-columns: 1fr 0.84fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.final-copy h2, .final-copy > p { color: #fffaf2; }
.final-copy > p:not(.eyebrow) { margin-top: 26px; max-width: 620px; opacity: 0.78; }
.final-note { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255, 250, 242, 0.16); color: #decfbe; font-size: 0.75rem; }
.demo-form { background: var(--paper); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); box-shadow: 0 28px 70px rgba(22, 12, 8, 0.28); }
.demo-form h3 { margin-top: 12px; font-size: 2rem; }
.demo-form > p { margin: 10px 0 24px; font-size: 0.78rem; }
.demo-form label { display: block; margin-top: 15px; color: var(--cocoa-2); font-size: 0.73rem; font-weight: 650; }
.demo-form input, .demo-form select { width: 100%; margin-top: 7px; min-height: 50px; border: 1px solid rgba(63, 43, 34, 0.2); border-radius: 11px; background: #fff; color: var(--ink); padding: 12px 14px; font-size: 0.9rem; }
.demo-form .button { margin-top: 22px; }
.availability-card { align-self: center; }
.availability-place { display: inline-flex; margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--gold-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.form-feedback { min-height: 1.4em; color: var(--wine) !important; font-weight: 650; }
.form-dialog { width: min(560px, calc(100% - 30px)); max-height: min(92vh, 820px); padding: clamp(24px, 5vw, 40px); border: 0; border-radius: 24px; background: var(--paper); box-shadow: 0 30px 100px #1d0f0bc0; overflow-y: auto; }
.form-dialog::backdrop { background: rgba(29, 15, 11, .72); backdrop-filter: blur(4px); }
.dialog-topline, .dialog-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dialog-close { border: 0; background: transparent; font-size: 2rem; line-height: 1; color: var(--cocoa); cursor: pointer; }
.form-progress { margin: 24px 0 12px; color: var(--gold-dark); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-step h2 { font-size: clamp(2rem, 6vw, 3rem); }
.form-step > p { margin: 12px 0 24px; }
.form-step label:not(.consent-row) { display: block; margin-top: 17px; color: var(--cocoa-2); font-size: .82rem; font-weight: 650; }
.form-step input:not([type=checkbox]), .form-step select, .select-trigger { display: block; width: 100%; min-height: 52px; margin-top: 7px; padding: 12px 14px; border: 1px solid rgba(63,43,34,.25); border-radius: 11px; background: white; color: var(--ink); text-align: left; font-size: .9rem; }
.select-trigger { cursor: pointer; }
.select-trigger::after { content: "⌄"; float: right; }
.select-options { max-height: 260px; overflow-y: auto; padding: 7px 12px; border: 1px solid var(--border); background: white; border-radius: 11px; box-shadow: 0 12px 25px #3f2b2217; }
.select-options label { display: flex !important; align-items: flex-start; gap: 9px; padding: 9px 5px; margin: 0 !important; font-weight: 400 !important; cursor: pointer; }
.select-options input { margin-top: 3px; accent-color: var(--wine); }
.conditional-field[hidden], .form-step[hidden], .select-options[hidden] { display: none !important; }
.form-step label span { color: var(--muted); font-weight: 400; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; font-size: .72rem; color: var(--muted); }
.consent-row input { margin-top: 3px; accent-color: var(--wine); }
.dialog-actions { justify-content: flex-end; margin-top: 22px; }
.button-outline { color: var(--cocoa); border: 1px solid var(--border); background: transparent; box-shadow: none; }
.button-outline:hover { color: white; }
.form-dialog .form-feedback { margin-top: 15px; font-size: .78rem; }
[hidden] { display: none !important; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.thanks-page { min-height: 100vh; }
.thanks-main { min-height: calc(100vh - 100px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 7vw, 90px); padding-block: 70px; }
.thanks-copy h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
.thanks-copy > p:not(.eyebrow) { margin-top: 22px; max-width: 550px; }
.thanks-callout { margin-top: 32px; padding-left: 20px; border-left: 2px solid var(--gold); color: var(--cocoa-2); }
.thanks-photo img { width: 100%; max-height: 700px; object-fit: cover; object-position: center 35%; border-radius: 220px 220px 20px 20px; box-shadow: var(--shadow); }
.whatsapp-button { margin-top: 32px; gap: 10px; background: #217b52; }
.whatsapp-button:hover { background: #17633f; }
.whatsapp-button[disabled] { opacity: .58; cursor: not-allowed; }
.whatsapp-button svg { width: 21px; height: 21px; fill: currentColor; }
.thanks-secondary { margin-top: 15px !important; font-size: .8rem; }
.privacy-main { max-width: 840px; }
.privacy-main h1 { margin: 12px 0 24px; }
.privacy-main h2 { margin: 38px 0 12px; font-size: clamp(1.6rem, 4vw, 2.2rem); }
.privacy-main > a { display: inline-block; margin-top: 30px; color: var(--gold-dark); font-weight: 700; }

.site-footer { padding: 48px max(20px, 6vw); background: #201815; color: #e5d9ca; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.site-footer img { width: 190px; max-height: 76px; object-fit: contain; object-position: left center; }
.site-footer p { color: #cdbfb3; font-size: 0.72rem; }
.site-footer a { color: #e2c47f; font-size: 0.75rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.metrics-consent { position: fixed; z-index: 1000; left: 16px; right: 16px; bottom: 16px; max-width: 760px; margin: auto; padding: 18px 20px; border: 1px solid #d9c5aa; border-radius: 16px; background: #fffdf9; box-shadow: 0 12px 40px rgba(48, 34, 25, .22); color: #3f2b22; }
.metrics-consent p { margin: 0 0 12px; font-size: .9rem; line-height: 1.55; }
.metrics-consent a { color: inherit; text-decoration: underline; }
.metrics-consent div { display: flex; flex-wrap: wrap; gap: 10px; }
.metrics-consent button, .metrics-preferences { cursor: pointer; border: 1px solid #3f2b22; border-radius: 999px; padding: 9px 16px; background: #3f2b22; color: white; font: inherit; font-size: .84rem; }
.metrics-consent button:first-child { background: transparent; color: #3f2b22; }
.metrics-preferences { position: fixed; z-index: 999; right: 12px; bottom: 12px; padding: 7px 12px; opacity: .88; }
.metrics-consent ~ .metrics-preferences { display: none; }

@media (max-width: 1020px) {
  .main-nav { display: none; position: absolute; top: 91px; left: 20px; right: 20px; padding: 20px; background: var(--paper); box-shadow: var(--shadow); border-radius: 16px; }
  .main-nav.is-open { display: grid; gap: 15px; }
  .menu-toggle { display: inline-flex; margin-left: auto; border: 0; background: transparent; color: var(--cocoa); font-weight: 650; }
  .hero { grid-template-columns: 1fr 0.78fr; }
  .hero-copy { padding-right: 34px; }
  .hero-portrait, .portrait-frame { min-height: 560px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card video { aspect-ratio: 4 / 5; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 20px 0; }
}

@media (max-width: 760px) {
  .draft-ribbon { font-size: 0.6rem; }
  .site-header { min-height: 78px; padding: 8px 20px; }
  .brand img { width: 162px; height: 60px; }
  .main-nav { top: 78px; }
  .header-cta { display: none; }
  .section-shell { width: min(100% - 30px, 620px); }
  .section-pad { padding-top: 72px; padding-bottom: 72px; }
  .hero { min-height: auto; grid-template-columns: 1fr; width: 100%; }
  .hero-copy { padding: 64px 22px 38px; }
  .hero-mobile-photo { display: block; position: absolute; right: 0; top: 94px; width: 50%; height: 335px; z-index: 0; overflow: hidden; opacity: .35; mask-image: linear-gradient(90deg, transparent 0%, #000 42%), linear-gradient(0deg, transparent 0%, #000 30%); mask-composite: intersect; }
  .hero-mobile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 15%; }
  .hero-copy h1 { position: relative; z-index: 1; max-width: 90%; }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .hero-lead { margin: 22px 0 28px; }
  .trust-list { display: grid; }
  .hero-portrait { min-height: 540px; padding: 0 15px 20px; }
  .portrait-frame { min-height: 540px; border-radius: 200px 200px 20px 20px; }
  .hero-signature { left: 12px; bottom: 40px; }
  .pain-section { width: 100%; border-radius: 0; grid-template-columns: 1fr; padding-inline: 22px; gap: 38px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-item { min-height: auto; }
  .natural-section { width: 100%; grid-template-columns: 1fr; }
  .natural-media { min-height: 420px; }
  .natural-copy { padding-inline: 22px; }
  .check-list { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; width: min(100% - 30px, 620px); }
  .video-grid { grid-template-columns: 1fr; }
  .instagram-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .instagram-watch-note { text-align: left; }
  .instagram-grid { gap: 6px; }
  .video-card video { aspect-ratio: 9 / 12; }
  .faq-section { grid-template-columns: 1fr; gap: 38px; }
  .accordion summary { font-size: 1.17rem; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: auto; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { border-top: 0; border-left: 1px solid rgba(63, 43, 34, 0.25); padding: 0 0 32px 30px; }
  .process-list li::before { top: 5px; left: -6px; }
  .doctor-section { width: 100%; grid-template-columns: 1fr; margin-bottom: 0; }
  .doctor-photo { min-height: 520px; }
  .doctor-copy { padding-inline: 22px; }
  .final-grid { grid-template-columns: 1fr; }
  .thanks-main { grid-template-columns: 1fr; }
  .thanks-photo img { max-height: none; height: auto; object-fit: contain; border-radius: 24px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer img { margin-inline: auto; object-position: center; }
}

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