/* =========================================================================
   ELI CARVALHO — LP
   Luxury editorial aesthetic · mobile-first · desktop-enhanced
   ========================================================================= */

/* ------- RESET / BASE ----------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
em { font-style: italic; }
::selection { background: var(--gold); color: var(--wine); }

/* ------- TOKENS ----------------------------------------------------------- */
:root {
  /* Palette */
  --wine:        #5B0F14;
  --wine-deep:   #3d0a0e;
  --wine-soft:   #7a1a20;
  --gold:        #C9A24D;
  --gold-bright: #dfbb68;
  --gold-soft:   #e6cc8a;
  --cream:       #F6F4F1;
  --cream-warm:  #efe9e0;
  --beige:       #E6D3B1;
  --beige-soft:  #f2e3c5;
  --ink:         #0B0B0B;
  --ink-70:      rgba(11,11,11,.72);
  --ink-50:      rgba(11,11,11,.5);
  --ink-15:      rgba(11,11,11,.15);
  --white-80:    rgba(255,255,255,.8);
  --white-30:    rgba(255,255,255,.3);
  --white-15:    rgba(255,255,255,.15);

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --pad-x:        clamp(20px, 5vw, 48px);
  --pad-y:        clamp(80px, 12vw, 160px);
  --max-w:        1280px;
  --rad:          14px;
  --rad-sm:       8px;

  /* Motion */
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-silk:    cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:     .24s;
  --dur:          .44s;
  --dur-slow:     .8s;
}

/* ------- TYPO UTILS ------------------------------------------------------- */
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 7.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
}
.h-display em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
}
.h-display__accent {
  display: block;
  color: var(--wine);
  margin-top: .18em;
  font-size: .86em;
}
.h-display__accent em { color: var(--wine); }

/* ------- REVEAL / MOTION -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .9s var(--ease-silk),
    transform .9s var(--ease-silk);
  transition-delay: calc(var(--reveal-d, 0) * 1ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translate3d(0,0,0); }

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

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-x);
  transition: background-color var(--dur) var(--ease-smooth),
              box-shadow var(--dur) var(--ease-smooth),
              padding var(--dur) var(--ease-smooth);
}
.nav.is-solid {
  background: rgba(246, 244, 241, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--ink-15);
  padding: 10px var(--pad-x);
}
.nav__logo {
  display: inline-block;
  height: 38px;
  transition: transform var(--dur-fast) var(--ease-smooth);
}
.nav__logo:hover { transform: scale(1.02); }
.nav__logo-img { height: 100%; width: auto; display: block; transition: opacity .3s var(--ease-smooth); }
.nav__logo-img--dark  { display: none; }
.nav__logo-img--light { display: block; }
.nav.is-solid .nav__logo-img--dark  { display: block; }
.nav.is-solid .nav__logo-img--light { display: none; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--cream);
  border: 1px solid var(--white-30);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--dur-fast) var(--ease-smooth);
}
.nav__cta:hover {
  background: var(--cream);
  color: var(--wine);
  border-color: var(--cream);
}
.nav__cta-arrow { transition: transform var(--dur-fast) var(--ease-smooth); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(3px); }
.nav.is-solid .nav__cta {
  color: var(--wine);
  border-color: var(--wine);
}
.nav.is-solid .nav__cta:hover {
  background: var(--wine);
  color: var(--cream);
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .015em;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast) var(--ease-smooth);
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transform: translateX(-100%);
  transition: transform .9s var(--ease-smooth);
  z-index: -1;
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__icon {
  display: inline-flex;
  align-items: center;
  transition: transform var(--dur-fast) var(--ease-smooth);
}
.btn:hover .btn__icon { transform: translateX(3px); }

.btn--gold {
  background: var(--gold);
  color: var(--wine);
  box-shadow:
    0 1px 0 rgba(255,255,255,.3) inset,
    0 -1px 0 rgba(0,0,0,.08) inset,
    0 10px 24px -8px rgba(201, 162, 77, .5);
}
.btn--gold:hover {
  background: var(--gold-bright);
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 -1px 0 rgba(0,0,0,.1) inset,
    0 16px 32px -8px rgba(201, 162, 77, .55);
}

.btn--xl { padding: 22px 44px; font-size: 17px; }

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--white-30);
}
.btn--ghost-light:hover {
  background: var(--gold);
  color: var(--wine);
  border-color: var(--gold);
}


/* =========================================================================
   SECTION TAG (editorial numbered marker)
   ========================================================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.section-tag__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--gold);
  font-variation-settings: 'opsz' 144;
}
.section-tag__line {
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.section-tag--light { color: var(--gold-soft); }
.section-tag--light .section-tag__num { color: var(--gold); }


/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px var(--pad-x) 48px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,162,77,.18), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(61, 10, 14, .9), transparent 60%),
    linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 55%, #2c070a 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36 0 0 0 0 0.06 0 0 0 0 0.08 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.hero__grid {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.hero__eyebrow-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--gold);
  font-variation-settings: 'opsz' 144;
}
.hero__eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 11vw, 6.8rem);
  line-height: .98;
  letter-spacing: -0.025em;
  color: var(--cream);
  font-variation-settings: 'opsz' 144, 'SOFT' 20;
  display: flex;
  flex-wrap: wrap;
  column-gap: .24em;
  row-gap: .04em;
}
.hero__title > span { display: inline-block; overflow: hidden; }
.hero__title-accent em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  position: relative;
}
.hero__title-accent em::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%;
  bottom: 0.12em;
  height: 2px;
  background: var(--gold);
  opacity: .35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-silk) .9s;
}
.reveal.is-in .hero__title-accent em::after { transform: scaleX(1); }

.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.5;
  max-width: 520px;
  color: rgba(255,255,255,.88);
  margin-top: clamp(22px, 3vw, 32px);
  font-variation-settings: 'opsz' 24;
}
.hero__sub strong { font-weight: 500; color: var(--cream); }
.hero__sub em { color: var(--gold-bright); font-style: italic; font-variation-settings: 'opsz' 48, 'SOFT' 80; }

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
}
.hero__actions-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-variation-settings: 'opsz' 24;
}

/* hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__frame {
  position: relative;
  width: min(420px, 88%);
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 40px 80px -20px rgba(0,0,0,.5),
    0 20px 40px -20px rgba(0,0,0,.3);
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.04) saturate(.92);
}
.hero__frame-deco {
  position: absolute; inset: 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2px;
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  top: 4%;
  left: -8px;
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__caption-word--italic {
  font-style: italic;
  letter-spacing: .05em;
  text-transform: none;
  font-size: 14px;
  font-variation-settings: 'opsz' 144;
  margin-top: 10px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__scroll-line {
  position: relative;
  width: 1px; height: 40px;
  background: rgba(255,255,255,.3);
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  height: 14px;
  background: var(--gold);
  animation: scrollLine 2.2s var(--ease-smooth) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* desktop hero */
@media (min-width: 900px) {
  .hero {
    padding: 120px var(--pad-x) 80px;
  }
  .hero__grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
  }
  .hero__title { font-size: clamp(4rem, 8vw, 7.5rem); }
  .hero__visual { justify-content: flex-end; }
  .hero__frame { width: 100%; max-width: 480px; }
  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}


/* =========================================================================
   DOR (pain points)
   ========================================================================= */
.dor {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background: var(--cream);
  max-width: var(--max-w);
  margin: 0 auto;
}
.dor::before {
  content: '';
  position: absolute;
  top: 0; left: var(--pad-x); right: var(--pad-x);
  height: 1px;
  background: var(--ink-15);
}

.dor__head { margin-bottom: clamp(48px, 6vw, 72px); max-width: 860px; }
.dor__head .h-display em {
  color: var(--wine);
  font-style: italic;
}

.pains {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  counter-reset: pains;
  max-width: 860px;
}
.pains__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: baseline;
  padding: clamp(18px, 3vw, 28px) 0;
  border-bottom: 1px solid var(--ink-15);
  transition: background-color .4s var(--ease-smooth);
}
.pains__item:first-child { border-top: 1px solid var(--ink-15); }
.pains__item:hover { background: rgba(201,162,77,.05); }

.pains__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  letter-spacing: 0;
}
.pains__text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 48;
}
.pains__text em {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: 'opsz' 48, 'SOFT' 80;
}

.dor__callout {
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(24px, 3vw, 36px) clamp(28px, 4vw, 48px);
  background: var(--beige-soft);
  border-radius: var(--rad);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  max-width: 780px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.dor__callout-mark {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.1em;
  flex-shrink: 0;
  font-variation-settings: 'opsz' 144;
}
.dor__callout p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.dor__callout em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}


/* =========================================================================
   MÉTODO
   ========================================================================= */
.method {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  color: var(--cream);
  overflow: hidden;
}
.method__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201,162,77,.14), transparent 55%),
    linear-gradient(180deg, var(--wine) 0%, var(--wine-deep) 100%);
}
.method__grain {
  position: absolute; inset: 0;
  opacity: .28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36 0 0 0 0 0.06 0 0 0 0 0.08 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.method__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 6.2vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 18ch;
  font-variation-settings: 'opsz' 144;
  margin-bottom: clamp(56px, 8vw, 96px);
  max-width: var(--max-w);
}
.method__title > span { display: block; }
.method__accent {
  color: var(--gold-soft);
  font-size: .76em;
  margin-top: .35em;
}
.method__accent em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.pillars {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.pillar {
  padding: clamp(24px, 3vw, 32px) 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  gap: 12px;
}
.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .1em;
  font-variation-settings: 'opsz' 144;
}
.pillar__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--cream);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
}
.pillar__text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  max-width: 44ch;
}

@media (min-width: 820px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 3vw, 48px); }
  .pillar { border-top: 1px solid rgba(255,255,255,.22); }
}


/* =========================================================================
   RESULTADOS (before/after)
   ========================================================================= */
.results {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background: var(--cream);
  max-width: var(--max-w);
  margin: 0 auto;
}
.results__head { margin-bottom: clamp(48px, 6vw, 80px); max-width: 760px; }
.results__head .h-display em { color: var(--wine); font-style: italic; }
.results__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-70);
  margin-top: 20px;
  font-variation-settings: 'opsz' 48;
}

.case {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  margin-bottom: clamp(60px, 8vw, 96px);
}
.case:last-child { margin-bottom: 0; }

/* Compare slider */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 78vh;
  overflow: hidden;
  border-radius: var(--rad);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 40px 80px -30px rgba(91, 15, 20, .3),
    0 20px 40px -20px rgba(0,0,0,.15);
  background: var(--wine-deep);
  cursor: ew-resize;
  --pos: 50%;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.compare__img {
  position: absolute; inset: 0;
  pointer-events: none;
}
.compare__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.compare__img--after {
  /* shown always as the base */
}
.compare__img--before {
  /* reveal based on --pos */
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  transition: clip-path .08s linear;
}
.compare__badge {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  pointer-events: none;
}
.compare__badge--before { left: 18px; background: var(--wine); color: var(--cream); }
.compare__badge--after  { right: 18px; background: var(--gold); color: var(--wine); }

.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.compare__handle-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(0,0,0,.3);
}
.compare__handle-grip {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 2px var(--gold),
    0 4px 12px rgba(0,0,0,.25);
  transition: transform var(--dur-fast) var(--ease-spring);
}
.compare:hover .compare__handle-grip,
.compare:focus-within .compare__handle-grip { transform: scale(1.1); }

/* native range for a11y; hidden visually but touchable */
.compare__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.case__quote {
  padding: clamp(22px, 3vw, 32px) clamp(24px, 4vw, 40px);
  background: var(--cream-warm);
  border-radius: var(--rad);
  border-left: 3px solid var(--gold);
  position: relative;
}
.case__quote::before {
  content: '“';
  position: absolute;
  top: -4px; left: 18px;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
  font-variation-settings: 'opsz' 144;
}
.case__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .2em;
  margin-bottom: 10px;
}
.case__text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
}
.case__author {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine);
  font-style: normal;
}

@media (min-width: 900px) {
  .case {
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
  }
  .case:nth-child(even) .compare { order: 2; }
  .case:nth-child(even) .case__quote { order: 1; }
  .compare { aspect-ratio: 4 / 5; }
}


/* =========================================================================
   SOBRE
   ========================================================================= */
.about {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  color: var(--cream);
  overflow: hidden;
}
.about__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(201,162,77,.14), transparent 50%),
    linear-gradient(180deg, var(--wine-deep) 0%, var(--wine) 100%);
}
.about__grain {
  position: absolute; inset: 0;
  opacity: .28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36 0 0 0 0 0.06 0 0 0 0 0.08 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.about__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 5vw, 72px);
}
.about__figure {
  position: relative;
  margin: 0;
}
.about__figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 4px;
  filter: contrast(1.02) saturate(.95);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.04) inset;
}
.about__figure::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,162,77,.3);
  pointer-events: none;
}
.about__fig-cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.about__fig-cap-sep { color: var(--gold); }

.about__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: 'opsz' 144, 'SOFT' 20;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.about__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.about__title-sub {
  display: block;
  font-size: .42em;
  color: rgba(255,255,255,.78);
  font-weight: 300;
  margin-top: .6em;
  letter-spacing: 0;
  line-height: 1.5;
  font-variation-settings: 'opsz' 48;
}
.about__title-sub strong { color: var(--gold-bright); font-weight: 400; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px) 0;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
}
.about__stat-num sup { font-size: .5em; vertical-align: super; margin-left: 2px; }
.about__stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.about__story {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.about__story p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
  font-variation-settings: 'opsz' 48;
  max-width: 52ch;
}
.about__story-highlight {
  color: var(--cream) !important;
  font-weight: 400 !important;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem) !important;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.about__story em {
  font-style: italic;
  color: var(--gold-bright);
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
  .about__figure {
    position: sticky;
    top: 120px;
  }
}


/* =========================================================================
   CTA FINAL
   ========================================================================= */
.cta {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background:
    radial-gradient(ellipse at 50% 0%, var(--beige-soft), var(--cream) 60%);
  overflow: hidden;
}
.cta__ornament {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: .5;
}
.cta__ornament--tl { top: 40px; left: 40px; border-right: 0; border-bottom: 0; }
.cta__ornament--tr { top: 40px; right: 40px; border-left: 0; border-bottom: 0; }
.cta__ornament--bl { bottom: 40px; left: 40px; border-right: 0; border-top: 0; }
.cta__ornament--br { bottom: 40px; right: 40px; border-left: 0; border-top: 0; }
@media (max-width: 640px) {
  .cta__ornament { width: 28px; height: 28px; }
  .cta__ornament--tl, .cta__ornament--tr { top: 24px; }
  .cta__ornament--bl, .cta__ornament--br { bottom: 24px; }
  .cta__ornament--tl, .cta__ornament--bl { left: 24px; }
  .cta__ornament--tr, .cta__ornament--br { right: 24px; }
}

.cta__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 9vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--wine);
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.cta__title em {
  display: inline-block;
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.cta__lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 560px;
  margin-bottom: clamp(36px, 5vw, 48px);
  font-variation-settings: 'opsz' 48;
}
.cta__lede strong { color: var(--wine); font-weight: 500; }

.cta__fine {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-50);
  font-variation-settings: 'opsz' 24;
}


/* =========================================================================
   FOOTER
   ========================================================================= */
.foot {
  background: var(--wine-deep);
  color: rgba(255,255,255,.7);
  padding: 64px var(--pad-x) 48px;
}
.foot__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.foot__logo { height: 42px; margin-bottom: 6px; }
.foot__tag {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-variation-settings: 'opsz' 24;
}
.foot__tag em { color: var(--gold); font-style: italic; }

.foot__links {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .02em;
}
.foot__links a {
  color: var(--cream);
  transition: color var(--dur-fast) var(--ease-smooth);
  position: relative;
}
.foot__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-smooth);
}
.foot__links a:hover { color: var(--gold); }
.foot__links a:hover::after { transform: scaleX(1); }
.foot__links span { color: var(--gold); }

.foot__copy {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.4);
}
