/* =========================================================
   CHARLINE BACKES — Landing page institucional
   HTML/CSS/JS puro, sem build e sem dependências obrigatórias
   ========================================================= */

:root {
  --ivory: #fffdfb;
  --cream: #faefea;
  --cream-2: #f5e5dd;
  --sand: #e7c2ae;
  --rose: #d8a184;
  --terracotta: #976450;
  --cocoa: #734c3d;
  --cocoa-deep: #59372d;
  --graphite: #333333;
  --muted: #756b67;
  --line: rgba(115, 76, 61, 0.17);
  --line-strong: rgba(115, 76, 61, 0.3);
  --white-alpha: rgba(255, 253, 251, 0.78);
  --shadow-sm: 0 12px 30px rgba(75, 48, 39, 0.07);
  --shadow-md: 0 24px 70px rgba(75, 48, 39, 0.12);
  --shadow-lg: 0 36px 100px rgba(75, 48, 39, 0.17);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1320px;
  --font-display: "Bodoni 72", Didot, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2,.72,.18,1);
  --header-height: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

ul,
ol {
  padding-left: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: var(--ivory);
  background: var(--cocoa);
}

:focus-visible {
  outline: 3px solid rgba(151, 100, 80, 0.55);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ivory);
  background: var(--cocoa);
  border-radius: var(--radius-pill);
  transform: translateY(-160%);
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding-block: clamp(80px, 8vw, 132px);
}

.section--compact {
  position: relative;
  padding-block: clamp(50px, 5vw, 82px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--center {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.results-head h2,
.faq-intro h2,
.be-copy h2,
.final-cta-copy h2,
.manifesto-heading h2,
.about-copy h2,
.case-copy h2 {
  margin-bottom: 18px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .99;
}

.section-heading > p:last-child,
.results-head > p,
.faq-intro > p,
.be-copy > p,
.about-copy > p,
.final-cta-copy > p {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  color: var(--ivory);
  background: var(--cocoa);
  border: 1px solid var(--cocoa);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(115, 76, 61, .16);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1.2;
  text-align: center;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.button:hover {
  background: var(--cocoa-deep);
  border-color: var(--cocoa-deep);
  box-shadow: 0 16px 38px rgba(89, 55, 45, .22);
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.button--outline {
  color: var(--cocoa);
  background: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--ivory);
  background: var(--cocoa);
  border-color: var(--cocoa);
}

.button--whatsapp {
  min-height: 60px;
  padding-inline: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: var(--cocoa);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .025em;
}

.text-link span {
  font-size: 22px;
  transition: transform .25s var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--dark {
  color: var(--cocoa-deep);
}

/* Header -------------------------------------------------- */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 253, 251, .72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(120%);
  transition: height .28s var(--ease), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled {
  height: 78px;
  background: rgba(255, 253, 251, .92);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(75, 48, 39, .06);
}

.header-inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: 170px 1fr auto;
  gap: 36px;
}

.brand {
  display: inline-flex;
  width: 88px;
  align-items: center;
}

.brand img {
  width: 88px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.5vw, 40px);
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  color: #5f5551;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--terracotta);
  transition: right .25s var(--ease), left .25s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
}

/* Hero ---------------------------------------------------- */
.hero {
  position: relative;
  min-height: 800px;
  padding-top: calc(var(--header-height) + 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(216,161,132,.15), transparent 28%),
    linear-gradient(108deg, #fffdfb 0%, #fffdfb 51%, #f6e9e2 51%, #f6e9e2 100%);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 26%;
  content: "";
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(255,253,251,.82) 38%, rgba(255,253,251,0) 100%);
  transform: translateX(-18%);
}

.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-background picture,
.hero-background img {
  width: 100%;
  height: 100%;
}

.hero-background img {
  object-fit: cover;
  object-position: center top;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(151,100,80,.09);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow--one {
  top: 120px;
  left: -290px;
  width: 680px;
  height: 680px;
}

.hero-glow--two {
  top: 186px;
  left: -222px;
  width: 540px;
  height: 540px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.hero-copy {
  max-width: 650px;
  padding-bottom: 56px;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: 26px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: clamp(58px, 5.35vw, 83px);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .92;
}

.hero-copy h1 em,
.manifesto-heading h2 em,
.case-copy h2 em {
  color: var(--cocoa);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #625955;
  font-size: clamp(16px, 1.34vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  margin-bottom: 34px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #7a6c67;
  font-size: 12px;
  font-weight: 600;
}

.hero-meta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.6;
}

.hero-meta span {
  color: var(--rose);
}

.hero-proofs {
  display: grid;
  max-width: 630px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-proof {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding-right: 18px;
  color: #6f625d;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.mini-proof + .mini-proof {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.mini-proof svg {
  width: 28px;
  min-width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.35;
}

.hero-media {
  position: relative;
  height: 700px;
  align-self: end;
}

.hero-photo-frame {
  position: absolute;
  inset: 0 -2vw 0 0;
  overflow: hidden;
  border-radius: 0 0 0 130px;
  box-shadow: -20px 28px 85px rgba(76, 54, 46, .13);
}

.hero-photo-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,253,251,.63) 0, rgba(255,253,251,.17) 15%, transparent 37%),
    linear-gradient(0deg, rgba(89,55,45,.07), transparent 36%);
  pointer-events: none;
}

.hero-photo-frame picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 29%;
}

.hero-photo-line {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: 9%;
  width: 73%;
  height: 84%;
  border: 1px solid rgba(255, 253, 251, .74);
  border-radius: 200px 200px 12px 12px;
  pointer-events: none;
}

.hero-signature {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  background: rgba(255,253,251,.72);
  border: 1px solid rgba(255,253,251,.9);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(89,55,45,.13);
  backdrop-filter: blur(12px);
}

.hero-signature img {
  width: 58px;
  opacity: .82;
}

/* Authority ----------------------------------------------- */
.authority {
  z-index: 3;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.authority-card {
  display: flex;
  min-height: 168px;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  background: rgba(255,253,251,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.authority-card h2 {
  margin-bottom: 8px;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.authority-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.icon-orbit {
  display: grid;
  width: 76px;
  min-width: 76px;
  height: 76px;
  place-items: center;
  color: var(--terracotta);
  border: 1px solid rgba(151,100,80,.25);
  border-radius: 50%;
}

.icon-orbit::before {
  position: absolute;
  width: 62px;
  height: 62px;
  content: "";
  border: 1px solid rgba(151,100,80,.12);
  border-radius: 50%;
}

.icon-orbit svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
}

.icon-orbit--logo span {
  font-family: var(--font-display);
  font-size: 31px;
  letter-spacing: -.08em;
}

/* Manifesto ----------------------------------------------- */
.manifesto {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250,239,234,.43), rgba(255,253,251,0) 60%),
    var(--ivory);
}

.manifesto::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 630px;
  height: 630px;
  content: "";
  border: 1px solid rgba(151,100,80,.08);
  border-radius: 50%;
}

.manifesto-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 128px);
}

.manifesto-heading h2 {
  max-width: 570px;
  margin-bottom: 0;
}

.manifesto-copy {
  position: relative;
  padding-left: clamp(30px, 4vw, 60px);
  border-left: 1px solid var(--line-strong);
}

.manifesto-copy p {
  color: #625955;
  font-size: 17px;
}

.manifesto-highlight {
  position: relative;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 18px 20px 18px 26px;
  color: var(--cocoa-deep) !important;
  background: rgba(250,239,234,.6);
  border-left: 2px solid var(--terracotta);
  font-family: var(--font-display);
  font-size: 23px !important;
  line-height: 1.3;
}

/* About ---------------------------------------------------- */
.about {
  overflow: hidden;
  background: var(--cream);
}

.about::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(216,161,132,.09));
}

.about-watermark {
  position: absolute;
  right: 2vw;
  bottom: -40px;
  width: 320px;
  opacity: .055;
  filter: sepia(.2);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 7vw, 112px);
}

.about-photo {
  position: relative;
  max-width: 550px;
}

.about-photo::before {
  position: absolute;
  z-index: 0;
  top: -22px;
  right: -22px;
  width: 68%;
  height: 63%;
  content: "";
  border: 1px solid rgba(151,100,80,.28);
  border-radius: 0 120px 0 0;
}

.about-photo picture {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: 3px 110px 3px 3px;
  box-shadow: var(--shadow-md);
}

.about-photo img {
  width: 100%;
  aspect-ratio: .86;
  object-fit: cover;
  object-position: 50% 46%;
}

.about-badge {
  position: absolute;
  z-index: 2;
  right: -38px;
  bottom: 34px;
  display: flex;
  width: 162px;
  height: 162px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  background: var(--cocoa);
  border: 8px solid var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: .9;
}

.about-badge span {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-copy {
  max-width: 630px;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy p {
  margin-bottom: 16px;
  line-height: 1.72;
}

/* Process -------------------------------------------------- */
.process {
  background: var(--ivory);
}

.process::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1180px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  transform: translateX(-50%);
}

.process-grid {
  position: relative;
  display: grid;
  margin: 0;
  list-style: none;
  counter-reset: steps;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 52px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 28px 26px 30px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}

.process-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.step-number {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--cocoa);
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
}

.step-icon {
  position: absolute;
  top: 32px;
  right: 26px;
  color: rgba(151,100,80,.62);
}

.step-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.process-card h3 {
  margin-bottom: 14px;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-note {
  margin: 32px auto 0;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 23px;
  text-align: center;
}

/* Treatments ---------------------------------------------- */
.treatments {
  background:
    radial-gradient(circle at 82% 10%, rgba(216,161,132,.16), transparent 24%),
    var(--cream);
}

.treatment-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1.08fr .92fr .84fr;
  gap: 20px;
}

.treatment-card {
  position: relative;
  overflow: hidden;
  padding: 34px 32px 36px;
  background: rgba(255,253,251,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.treatment-card::after {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(151,100,80,.1);
  border-radius: 50%;
}

.treatment-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--terracotta);
  background: rgba(250,239,234,.72);
  border: 1px solid rgba(151,100,80,.18);
  border-radius: 50%;
}

.treatment-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.card-kicker {
  margin-bottom: 4px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.treatment-card h3 {
  margin-bottom: 22px;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
}

.treatment-card ul {
  margin: 0;
  list-style: none;
}

.treatment-card li {
  position: relative;
  padding: 15px 0 15px 18px;
  border-top: 1px solid var(--line);
}

.treatment-card li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--rose);
  border-radius: 50%;
}

.treatment-card li strong,
.treatment-card li span {
  display: block;
}

.treatment-card li strong {
  margin-bottom: 5px;
  color: #544a46;
  font-size: 14px;
}

.treatment-card li span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.treatment-card--skin {
  background: linear-gradient(145deg, rgba(255,253,251,.94), rgba(232,198,181,.35));
}

.treatment-card--body {
  background: rgba(255,253,251,.65);
}

.treatment-accent {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 88px;
  height: 88px;
  opacity: .18;
  background: radial-gradient(circle, var(--rose) 0 2px, transparent 3px);
  background-size: 14px 14px;
}

.treatment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.treatment-footer p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Featured case ------------------------------------------- */
.featured-case {
  overflow: hidden;
  padding-block: clamp(70px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(255,253,251,.06), transparent 28%, rgba(115,76,61,.06)),
    linear-gradient(135deg, #e4b49b, #d49a7c 52%, #c88969);
}

.featured-case::before,
.featured-case::after {
  position: absolute;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(255,253,251,.18);
  border-radius: 50%;
}

.featured-case::before {
  top: -280px;
  left: -90px;
}

.featured-case::after {
  right: -140px;
  bottom: -310px;
}

.case-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: .86fr 1.23fr .72fr;
  gap: clamp(28px, 4vw, 58px);
}

.label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--ivory);
  background: var(--cocoa);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.case-copy h2 {
  margin-bottom: 24px;
  color: var(--cocoa-deep);
  font-size: clamp(42px, 4vw, 61px);
}

.case-copy h2 em {
  color: var(--ivory);
}

.case-copy p {
  margin-bottom: 16px;
  color: rgba(75,48,39,.82);
  font-size: 14px;
  line-height: 1.65;
}

.case-image {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #1f1c1b;
  border: 8px solid rgba(255,253,251,.46);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}

.case-image img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.case-image:hover img {
  transform: scale(1.025);
}

.comparison-label {
  position: absolute;
  bottom: 12px;
  padding: 5px 9px;
  color: var(--ivory);
  background: rgba(51,51,51,.72);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.comparison-label--before {
  left: 12px;
}

.comparison-label--after {
  left: calc(50% + 12px);
}

.zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ivory);
  background: rgba(51,51,51,.55);
  border: 1px solid rgba(255,253,251,.26);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.zoom-hint svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.case-benefits {
  display: grid;
  margin: 0;
  list-style: none;
  gap: 0;
}

.case-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,253,251,.28);
}

.case-benefits li:first-child {
  border-top: 1px solid rgba(255,253,251,.28);
}

.benefit-icon {
  display: grid;
  width: 36px;
  min-width: 36px;
  height: 36px;
  place-items: center;
  color: var(--cocoa);
  background: rgba(255,253,251,.42);
  border: 1px solid rgba(255,253,251,.5);
  border-radius: 50%;
}

.case-benefits strong,
.case-benefits small {
  display: block;
}

.case-benefits strong {
  color: var(--cocoa-deep);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.case-benefits small {
  margin-top: 5px;
  color: rgba(75,48,39,.7);
  font-size: 10px;
  line-height: 1.4;
}

/* Results -------------------------------------------------- */
.results {
  background: var(--ivory);
}

.results-head {
  display: grid;
  align-items: end;
  margin-bottom: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
  gap: 50px;
}

.results-head h2 {
  margin-bottom: 0;
}

.results-head > p {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.65;
}

.result-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.result-filters button {
  padding: 9px 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.result-filters button:hover,
.result-filters button.is-active {
  color: var(--ivory);
  background: var(--cocoa);
  border-color: var(--cocoa);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  text-align: left;
  transition: opacity .24s ease, transform .3s var(--ease), box-shadow .3s ease;
}

.result-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.result-card[hidden] {
  display: none;
}

.result-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #26211f;
}

.result-card-media img {
  width: 100%;
  aspect-ratio: 1.17;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.result-card:hover .result-card-media img {
  transform: scale(1.035);
}

.result-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  color: var(--cocoa);
  background: rgba(255,253,251,.9);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.result-card-copy {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.result-card-copy small {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.result-card-copy strong {
  color: #5a504b;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

.results-cta-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 22px;
  background: linear-gradient(145deg, var(--cream), rgba(216,161,132,.36));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.results-cta-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--cocoa);
  background: rgba(255,253,251,.7);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.results-cta-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.results-cta-card p {
  margin-bottom: 24px;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
}

.results-cta-card .button {
  width: 100%;
  padding-inline: 12px;
}

/* Be Clinic ------------------------------------------------ */
.be-clinic {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(250,239,234,.2), rgba(255,253,251,.78) 50%, rgba(250,239,234,.65)),
    var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.be-clinic::before {
  position: absolute;
  top: -230px;
  right: -160px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(151,100,80,.08);
  border-radius: 50%;
}

.be-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 520px;
  align-items: center;
  grid-template-columns: .9fr 1.05fr .56fr;
  gap: 44px;
}

.be-copy h2 {
  font-size: clamp(42px, 4.5vw, 65px);
}

.be-copy p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
}

.be-copy .button {
  margin-top: 10px;
}

.be-photo {
  align-self: stretch;
  overflow: hidden;
  border-radius: 2px 100px 2px 2px;
  box-shadow: var(--shadow-md);
}

.be-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 48%;
}

.be-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--terracotta);
  text-align: center;
}

.be-monogram {
  display: grid;
  width: 116px;
  height: 116px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(151,100,80,.45);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 47px;
  letter-spacing: -.1em;
}

.be-mark strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .13em;
}

.be-mark small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Testimonials (shown only after real authorized content) -- */
.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  background: rgba(255,253,251,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  position: absolute;
  top: 14px;
  right: 22px;
  color: rgba(151,100,80,.15);
  content: "“";
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  margin: 0 0 24px;
  color: #5d534f;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person strong {
  color: var(--cocoa);
  font-size: 13px;
}

.testimonial-person small {
  color: var(--muted);
  font-size: 11px;
}

/* FAQ ------------------------------------------------------ */
.faq {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .66fr 1.34fr;
  gap: clamp(48px, 8vw, 124px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(42px, 4.5vw, 62px);
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  position: relative;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background .25s ease, transform .25s var(--ease);
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--cocoa);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .25s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-plus {
  color: var(--ivory);
  background: var(--cocoa);
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-plus::before,
.faq-item button[aria-expanded="true"] .faq-plus::after {
  background: var(--ivory);
}

.faq-item button[aria-expanded="true"] .faq-plus::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 60px 28px 4px;
}

/* Final CTA ------------------------------------------------ */
.final-cta {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #e4b096;
}

.final-cta-photo {
  position: absolute;
  inset: 0 auto 0 0;
  width: 47%;
}

.final-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 23%;
}

.final-cta-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(228,176,150,.04) 0 30%, rgba(228,176,150,.86) 49%, #e4b096 65%),
    linear-gradient(0deg, rgba(115,76,61,.08), transparent 50%);
}

.final-cta-watermark {
  position: absolute;
  right: 2vw;
  bottom: -52px;
  width: 340px;
  opacity: .07;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: flex-end;
}

.final-cta-copy {
  width: 54%;
  max-width: 720px;
  padding-block: 70px;
}

.final-cta-copy h2 {
  color: var(--cocoa-deep);
  font-size: clamp(49px, 5vw, 74px);
}

.final-cta-copy > p {
  max-width: 620px;
  margin-bottom: 13px;
  color: rgba(75,48,39,.78);
  font-size: 16px;
}

.final-cta-copy .button {
  margin-top: 16px;
}

.final-cta-meta {
  display: block;
  margin-top: 14px;
  color: rgba(75,48,39,.7);
  font-size: 12px;
  font-weight: 700;
}

/* Footer --------------------------------------------------- */
.site-footer {
  padding-top: 48px;
  color: #6f625d;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  align-items: center;
  padding-bottom: 38px;
  grid-template-columns: .9fr 1fr .9fr 1.15fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 76px;
}

.footer-brand p,
.footer-address p,
.footer-legal p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-address svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.4;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 18px;
}

.footer-links a {
  color: #6a5d58;
  font-size: 11px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--cocoa);
}

.footer-legal {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.footer-bottom {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.footer-bottom a {
  font-weight: 700;
}

/* Floating CTA, lightbox and toast ------------------------ */
.floating-whatsapp {
  position: fixed;
  z-index: 850;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: #25d366;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(37,211,102,.25);
  transition: transform .25s var(--ease), background .25s ease;
}

.floating-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.mobile-cta {
  display: none;
}

.lightbox {
  width: min(94vw, 1080px);
  max-height: 92vh;
  padding: 12px;
  overflow: visible;
  background: var(--ivory);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgba(32,25,22,.82);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox p {
  margin: 12px 6px 2px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ivory);
  background: var(--cocoa);
  border: 2px solid var(--ivory);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 24px;
  bottom: 96px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 17px;
  color: var(--ivory);
  background: var(--graphite);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s var(--ease);
}

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

/* Reveal animations --------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="60"] { --reveal-delay: 60ms; }
[data-reveal-delay="70"] { --reveal-delay: 70ms; }
[data-reveal-delay="80"] { --reveal-delay: 80ms; }
[data-reveal-delay="90"] { --reveal-delay: 90ms; }
[data-reveal-delay="100"] { --reveal-delay: 100ms; }
[data-reveal-delay="120"] { --reveal-delay: 120ms; }
[data-reveal-delay="140"] { --reveal-delay: 140ms; }
[data-reveal-delay="150"] { --reveal-delay: 150ms; }
[data-reveal-delay="160"] { --reveal-delay: 160ms; }
[data-reveal-delay="180"] { --reveal-delay: 180ms; }
[data-reveal-delay="220"] { --reveal-delay: 220ms; }

/* Privacy page -------------------------------------------- */
.legal-page {
  min-height: 100vh;
  padding: 140px 0 90px;
  background: var(--cream);
}

.legal-card {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(30px, 6vw, 70px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--cocoa);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 15px;
}

.legal-card ul {
  padding-left: 20px;
}

/* Responsive: large tablet -------------------------------- */
@media (max-width: 1180px) {
  :root {
    --container: 1080px;
  }

  .header-inner {
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  }

  .hero-copy h1 {
    font-size: clamp(54px, 6.1vw, 72px);
  }

  .hero-proofs {
    gap: 12px;
  }

  .mini-proof {
    padding-right: 10px;
  }

  .mini-proof + .mini-proof {
    padding-left: 10px;
  }

  .authority-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .process-card {
    min-height: 280px;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-card--body {
    grid-column: span 2;
  }

  .case-grid {
    grid-template-columns: .86fr 1.14fr;
  }

  .case-benefits {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .case-benefits li,
  .case-benefits li:first-child {
    padding: 18px;
    background: rgba(255,253,251,.2);
    border: 1px solid rgba(255,253,251,.28);
    border-radius: 8px;
  }

  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .results-cta-card {
    grid-column: span 2;
    min-height: 220px;
  }

  .be-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .be-mark {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .be-monogram {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
    font-size: 30px;
  }

  .faq-grid {
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal {
    padding-left: 0;
    border-left: 0;
  }
}

/* Responsive: tablet -------------------------------------- */
@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand,
  .brand img {
    width: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--cocoa);
    transition: transform .25s var(--ease);
  }

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

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

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 420px);
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 38px 50px;
    background: var(--ivory);
    box-shadow: -20px 0 70px rgba(75,48,39,.15);
    transform: translateX(105%);
    transition: transform .35s var(--ease);
  }

  .main-nav::before {
    position: absolute;
    inset: 24px auto auto 30px;
    color: var(--terracotta);
    content: "Menu";
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .main-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .header-cta {
    display: none;
  }

  body.menu-open::before {
    position: fixed;
    z-index: 999;
    inset: 0;
    content: "";
    background: rgba(51,51,51,.42);
    backdrop-filter: blur(3px);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
    background: var(--ivory);
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 8px;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(55px, 9vw, 78px);
  }

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

  .hero-media {
    width: calc(100% + 36px);
    height: min(78vw, 720px);
    margin-left: -18px;
  }

  .hero-photo-frame {
    inset: 0;
    border-radius: 0 90px 0 0;
  }

  .hero-photo-frame img {
    object-position: 50% 28%;
  }

  .hero-photo-frame::before {
    background: linear-gradient(0deg, rgba(89,55,45,.12), transparent 44%);
  }

  .hero-photo-line {
    top: 8%;
    left: 7%;
    width: 86%;
  }

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

  .authority-card {
    min-height: 0;
    align-items: center;
    flex-direction: row;
  }

  .manifesto-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .manifesto-copy {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .about-grid {
    align-items: start;
  }

  .about-photo {
    width: min(86%, 590px);
    max-width: none;
    margin-inline: auto;
  }

  .about-copy {
    max-width: 740px;
  }

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

  .treatment-card--body {
    grid-column: auto;
  }

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

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

  .case-copy {
    max-width: 720px;
  }

  .case-image {
    width: min(100%, 760px);
  }

  .case-benefits {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-cta-card {
    grid-column: span 2;
  }

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

  .be-copy {
    max-width: 720px;
  }

  .be-photo {
    height: 630px;
  }

  .be-photo img {
    min-height: 0;
  }

  .be-mark {
    grid-column: auto;
  }

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

  .faq-intro {
    position: static;
    max-width: 700px;
  }

  .final-cta {
    min-height: auto;
    padding-top: 56vw;
  }

  .final-cta-photo {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 62vw;
  }

  .final-cta-photo img {
    object-position: 50% 20%;
  }

  .final-cta-gradient {
    background: linear-gradient(0deg, #e4b096 0%, #e4b096 25%, rgba(228,176,150,.1) 73%);
  }

  .final-cta-inner {
    min-height: 0;
    justify-content: flex-start;
  }

  .final-cta-copy {
    width: 100%;
    max-width: 760px;
    padding: 20px 0 78px;
  }
}

/* Responsive: mobile -------------------------------------- */
@media (max-width: 620px) {
  :root {
    --header-height: 72px;
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .section--compact {
    padding-block: 52px;
  }

  .section-heading h2,
  .results-head h2,
  .faq-intro h2,
  .be-copy h2,
  .final-cta-copy h2,
  .manifesto-heading h2,
  .about-copy h2,
  .case-copy h2 {
    font-size: clamp(39px, 12vw, 54px);
    line-height: .98;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: .2em;
  }

  .brand,
  .brand img {
    width: 64px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-background img {
    width: auto;
    min-width: 100%;
    max-width: none;
    height: calc(100% + 250px);
    object-position: left top;
  }

  .hero-copy h1 {
    margin-bottom: 21px;
    font-size: clamp(47px, 14.2vw, 64px);
    letter-spacing: -.055em;
    line-height: .91;
  }

  .hero-lead {
    margin-bottom: 23px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 26px;
  }

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

  .hero-meta {
    align-self: center;
    font-size: 10px;
  }

  .hero-proofs {
    display: grid;
    padding-top: 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mini-proof {
    padding: 13px 0;
    font-size: 11px;
  }

  .mini-proof + .mini-proof {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-media {
    width: calc(100% + 28px);
    height: 126vw;
    max-height: 660px;
    margin-left: -14px;
  }

  .hero-photo-frame {
    border-radius: 0 74px 0 0;
  }

  .hero-photo-frame img {
    object-position: 51% 31%;
  }

  .hero-photo-line {
    top: 6%;
    left: 6%;
    width: 88%;
    height: 88%;
    border-radius: 160px 160px 8px 8px;
  }

  .hero-signature {
    right: 16px;
    bottom: 16px;
    width: 82px;
    height: 82px;
  }

  .hero-signature img {
    width: 46px;
  }

  .authority-card {
    align-items: flex-start;
    gap: 18px;
    padding: 23px 20px;
  }

  .authority-card h2 {
    font-size: 23px;
  }

  .icon-orbit {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }

  .icon-orbit::before {
    width: 48px;
    height: 48px;
  }

  .icon-orbit svg {
    width: 35px;
    height: 35px;
  }

  .manifesto-grid,
  .about-grid,
  .faq-grid {
    gap: 36px;
  }

  .manifesto-copy p {
    font-size: 15px;
  }

  .manifesto-highlight {
    font-size: 20px !important;
  }

  .about-photo {
    width: calc(100% - 18px);
    margin-left: 0;
  }

  .about-photo::before {
    top: -14px;
    right: -14px;
    border-radius: 0 80px 0 0;
  }

  .about-photo picture {
    border-radius: 3px 76px 3px 3px;
  }

  .about-badge {
    right: -16px;
    bottom: 22px;
    width: 128px;
    height: 128px;
    border-width: 6px;
  }

  .about-badge strong {
    font-size: 38px;
  }

  .about-badge span {
    font-size: 8px;
  }

  .about-copy p {
    font-size: 15px;
  }

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

  .process-card {
    min-height: 0;
    padding: 24px 22px 25px;
  }

  .step-number {
    margin-bottom: 28px;
  }

  .process-note {
    font-size: 20px;
  }

  .treatment-card {
    padding: 28px 22px 30px;
  }

  .treatment-card h3 {
    font-size: 31px;
  }

  .treatment-footer .button {
    width: 100%;
  }

  .case-copy h2 {
    font-size: clamp(43px, 12vw, 55px);
  }

  .case-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-benefits li,
  .case-benefits li:first-child {
    padding: 14px;
  }

  .results-head > p {
    font-size: 13px;
  }

  .result-filters {
    flex-wrap: nowrap;
    margin-right: -14px;
    margin-left: -14px;
    padding-inline: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .result-filters::-webkit-scrollbar {
    display: none;
  }

  .result-filters button {
    flex: 0 0 auto;
  }

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

  .results-cta-card {
    min-height: 250px;
    grid-column: auto;
  }

  .result-card-copy {
    min-height: 112px;
  }

  .be-photo {
    height: 116vw;
    max-height: 600px;
    border-radius: 2px 74px 2px 2px;
  }

  .be-mark {
    flex-direction: column;
    gap: 10px;
  }

  .be-monogram {
    width: 86px;
    height: 86px;
    font-size: 36px;
  }

  .faq-item button {
    min-height: 76px;
    gap: 16px;
    padding: 18px 0;
    font-size: 21px;
  }

  .faq-plus {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .faq-item.is-open .faq-answer > p {
    padding-right: 28px;
  }

  .final-cta {
    padding-top: 92vw;
  }

  .final-cta-photo {
    height: 102vw;
  }

  .final-cta-photo img {
    object-position: 50% 18%;
  }

  .final-cta-gradient {
    background: linear-gradient(0deg, #e4b096 0%, #e4b096 22%, rgba(228,176,150,.2) 65%, rgba(228,176,150,0) 100%);
  }

  .final-cta-copy {
    padding: 0 0 84px;
  }

  .final-cta-copy > p {
    font-size: 14px;
  }

  .final-cta-copy .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand img {
    width: 68px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 14px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  body:has(.mobile-cta.is-visible) .floating-whatsapp {
    bottom: 78px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 800;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    background: rgba(255,253,251,.94);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 35px rgba(75,48,39,.08);
    backdrop-filter: blur(14px);
    transform: translateY(120%);
    transition: transform .3s var(--ease);
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 48px;
  }

  .toast {
    right: 14px;
    bottom: 142px;
    max-width: calc(100vw - 28px);
  }

  .lightbox {
    width: calc(100vw - 20px);
    padding: 7px;
  }

  .lightbox-close {
    top: -12px;
    right: -4px;
  }

  .legal-page {
    padding: 108px 0 70px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Print ---------------------------------------------------- */
@media print {
  .site-header,
  .floating-whatsapp,
  .mobile-cta,
  .button,
  .result-filters,
  .lightbox,
  .toast {
    display: none !important;
  }

  .hero {
    padding-top: 40px;
  }

  .section,
  .section--compact {
    padding-block: 38px;
  }
}
