/* ───────────────────────────────────────────────────────────
   marton group / styles
   creamy editorial · boutique · founder-led
   ─────────────────────────────────────────────────────────── */

:root {
  /* palette */
  --cream:        #F4EFE6;
  --cream-deep:   #ECE5D5;
  --cream-line:   #D9CFBC;
  --ink:          #1A1814;
  --ink-soft:     #2A2620;
  --taupe:        #7A6F62;
  --taupe-soft:   #A89D8E;
  --forest:       #2E3A33;
  --forest-deep:  #1E2722;
  --gold:         #B89968;

  /* type */
  --display: "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif:   "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* spacing */
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 168px);

  /* radii */
  --r-sm: 4px;
  --r-md: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; height: auto; }

/* ─────────────── layout primitives ─────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* ─────────────── typography ─────────────── */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 6.8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "wdth" 95, "opsz" 96;
}
.display--light { color: var(--cream); }

.muted-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: -0.005em;
  /* slight optical bump because Instrument Serif italic reads small next to grotesque */
  font-size: 1.08em;
}
.display--light .muted-italic { color: var(--taupe-soft); }

.eyebrow,
.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.section-tag--light { color: var(--taupe-soft); }
.eyebrow--right { text-align: right; }

.muted { color: var(--taupe); font-size: 14px; }

/* ─────────────── buttons ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn--solid {
  background: var(--ink);
  color: var(--cream);
}
.btn--solid:hover { background: var(--forest-deep); }
.btn--solid.btn--light { background: var(--cream); color: var(--ink); }
.btn--solid.btn--light:hover { background: #FFF; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--link {
  padding: 14px 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--link:hover { color: var(--taupe); border-color: var(--taupe); }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 18px 28px; font-size: 16px; }

/* WhatsApp pill button - used in nav, hero, final CTA, footer */
.btn--whatsapp {
  background: #25D366;
  color: #0E1A14;
  border: 1px solid #25D366;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.btn--whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-1px);
}
.btn--whatsapp svg { flex-shrink: 0; }

/* Plain text link CTA (no border) */
.btn--text {
  padding: 14px 0;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.015em;
  border-radius: 0;
  transition: color 200ms ease, transform 200ms ease;
}
.btn--text:hover { color: var(--gold); transform: translateX(2px); }
.btn--text-light { color: var(--cream); }
.btn--text-light:hover { color: var(--gold); }


/* ─────────────── nav ─────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(20, 16, 10, 0);
  border-bottom: 1px solid rgba(244, 239, 230, 0);
  transition: background 250ms ease, border-color 250ms ease;
}
.nav.is-stuck {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--cream-line);
}
/* over dark hero, links and brand are cream */
body:not(.is-scrolled) .nav .brand-word,
body:not(.is-scrolled) .nav__links a {
  color: var(--cream);
}
body:not(.is-scrolled) .nav .btn--ghost {
  color: var(--cream);
  border-color: rgba(244, 239, 230, 0.5);
}
body:not(.is-scrolled) .nav .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: var(--ink);
}
.brand-word {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 90;
  color: var(--ink);
}
.brand-dot {
  color: var(--gold);
  margin: 0 1px;
  font-weight: 400;
}

.nav__links {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__inner > .btn { justify-self: end; }

/* hamburger button (mobile only) */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  justify-self: end;
}
.nav__burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(0.2, 0.6, 0.2, 1),
              opacity 200ms ease,
              top 300ms cubic-bezier(0.2, 0.6, 0.2, 1),
              background 200ms ease;
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
body:not(.is-scrolled) .nav__burger span { background: var(--cream); }

body.is-drawer-open .nav__burger span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
  background: var(--cream);
}
body.is-drawer-open .nav__burger span:nth-child(2) { opacity: 0; }
body.is-drawer-open .nav__burger span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
  background: var(--cream);
}

/* mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(20, 16, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(96px, 18vh, 140px) var(--pad-x) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 4vh, 40px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 320ms cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 320ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
body.is-drawer-open .nav__drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nav__drawer-links a {
  font-family: var(--display);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
  font-variation-settings: "wdth" 95;
  display: inline-block;
}
.nav__drawer-links a:hover { color: var(--gold); transform: translateX(6px); }
/* stagger entrance */
body.is-drawer-open .nav__drawer-links a {
  animation: drawer-rise 480ms cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
body.is-drawer-open .nav__drawer-links a:nth-child(1) { animation-delay: 120ms; }
body.is-drawer-open .nav__drawer-links a:nth-child(2) { animation-delay: 180ms; }
body.is-drawer-open .nav__drawer-links a:nth-child(3) { animation-delay: 240ms; }
body.is-drawer-open .nav__drawer-links a:nth-child(4) { animation-delay: 300ms; }
body.is-drawer-open .nav__drawer-links a:nth-child(5) { animation-delay: 360ms; }
@keyframes drawer-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__drawer-cta {
  align-self: flex-start;
  margin-top: 24px;
}
.nav__drawer-meta {
  position: absolute;
  bottom: 32px;
  left: var(--pad-x);
  right: var(--pad-x);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}


/* ─────────────── hero (widescreen cinematic, video native 16:9) ─────────────── */
.hero {
  position: relative;
  width: 100%;
  /* Height = 16:9 of viewport width, clamped sensibly. Don't use aspect-ratio
     here - combined with max-height it causes width to shrink and leaves bands. */
  height: 56.25vw;
  min-height: 680px;
  max-height: 880px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: -2;
}
/* viewport swap: ultrawide desktop video / 16:9 mobile video */
.hero__bg--mobile { display: none; }
@media (max-width: 920px) {
  .hero__bg--desktop { display: none; }
  .hero__bg--mobile { display: block; object-position: center center; }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,16,10,0.40) 0%, rgba(20,16,10,0.10) 28%, rgba(20,16,10,0.10) 55%, rgba(20,16,10,0.70) 100%),
    linear-gradient(90deg, rgba(20,16,10,0.65) 0%, rgba(20,16,10,0.30) 45%, rgba(20,16,10,0.05) 80%, rgba(20,16,10,0) 100%);
}
.hero__content {
  padding-top: clamp(90px, 12vh, 140px);
  padding-bottom: clamp(40px, 6vh, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}
.hero__title {
  grid-column: 1;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(46px, 5.6vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--cream);
  font-variation-settings: "wdth" 95, "opsz" 96;
  text-shadow: 0 2px 40px rgba(0,0,0,0.45);
  max-width: 22ch;
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--taupe-soft);
  letter-spacing: -0.005em;
  font-size: 1.05em;
}
.hero__sub {
  grid-column: 2;
  max-width: 460px;
  justify-self: end;
}
.hero__sub p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.88);
  margin-bottom: 24px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__scarcity {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}
.btn--link-light {
  color: var(--cream);
  border-color: rgba(244, 239, 230, 0.5);
}
.btn--link-light:hover { color: var(--gold); border-color: var(--gold); }


/* ─────────────── trust strip (over hero) ─────────────── */
.hero .trust-strip {
  margin-top: 0;
  border: none;
  border-top: 1px solid rgba(244,239,230,0.15);
  background: rgba(20, 16, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .trust-strip__inner { color: rgba(244, 239, 230, 0.72); }


/* ─────────────── solution bridge (numbered card grid) ─────────────── */
.solution {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.solution__head {
  max-width: 920px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.solution__head .display {
  margin-top: 20px;
  font-size: clamp(40px, 5.4vw, 84px);
}
.solution__head .muted-italic { display: block; }

.solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-line);
  border: 1px solid var(--cream-line);
}
.solution__card {
  background: var(--cream);
  padding: clamp(28px, 3vw, 40px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background 200ms ease;
}
.solution__card:hover { background: #FFF; }
.solution__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.solution__fix {
  margin-top: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-variation-settings: "wdth" 95;
}
.solution__pain {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--taupe);
}
.solution__card--cta {
  background: var(--ink);
  color: var(--cream);
}
.solution__card--cta:hover { background: var(--ink); }
.solution__card--cta .solution__num { color: var(--gold); }
.solution__card--cta .solution__fix { color: var(--cream); }
.solution__card--cta .solution__pain { color: rgba(244, 239, 230, 0.65); }
.solution__cta { margin-top: 22px; align-self: flex-start; }


/* ─────────────── media frame ─────────────── */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, #d6c4a4 0%, #8a7457 45%, #3a2f23 100%);
  box-shadow: 0 30px 80px -40px rgba(20, 16, 10, 0.5);
}
.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-frame--portrait { aspect-ratio: 3 / 4; }
.media-frame__stamp {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}


/* ─────────────── trust strip ─────────────── */
.trust-strip {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  background: var(--cream);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 36px);
  justify-content: center;
  padding: 18px var(--pad-x);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-strip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}


/* ─────────────── lead (forecast form) ─────────────── */
.lead {
  padding: clamp(64px, 9vw, 128px) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.lead__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.lead__copy {
  position: sticky;
  top: 96px;
}
.lead__title {
  margin-top: 20px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "wdth" 95, "opsz" 96;
}
.lead__sub {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
}
.lead__bullets {
  margin-top: 28px;
  list-style: none;
  display: grid;
  gap: 10px;
}
.lead__bullets li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--taupe);
}

/* form card */
.lead__form {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-md);
  padding: clamp(28px, 3.2vw, 44px);
  display: grid;
  gap: 20px;
  box-shadow: 0 30px 80px -50px rgba(20, 16, 10, 0.22);
}
.lead__form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cream-line);
  margin-bottom: 4px;
}
.lead__chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.lead__chip--right { color: var(--gold); }

.lead__field {
  display: grid;
  gap: 8px;
}
.lead__field > span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.lead__field > span em {
  font-style: italic;
  color: var(--taupe-soft);
  letter-spacing: 0.06em;
  text-transform: none;
}
.lead__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lead__field input,
.lead__field select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-line);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
  border-radius: 0;
}
.lead__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%237A6F62' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.lead__field input::placeholder { color: var(--taupe-soft); }
.lead__field input:focus,
.lead__field select:focus { border-color: var(--ink); }

/* ─── inline validation ─── */
.lead__field-error {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B0463C; /* warm brick - sits on cream without breaking palette */
  min-height: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 220ms ease, max-height 220ms ease;
}
.lead__field[data-invalid="true"] .lead__field-error {
  opacity: 1;
  transform: translateY(0);
  max-height: 32px;
}
.lead__field[data-invalid="true"] input,
.lead__field[data-invalid="true"] select {
  border-bottom-color: #B0463C;
}
.lead__field[data-invalid="true"] input:focus,
.lead__field[data-invalid="true"] select:focus {
  border-bottom-color: #B0463C;
}

/* server-side / network banner shown above the form */
.lead__banner {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #B0463C;
  background: rgba(176, 70, 60, 0.08);
  border: 1px solid rgba(176, 70, 60, 0.25);
  padding: 12px 16px;
  border-radius: var(--r-md);
  margin: 0 0 4px;
}

.lead__submit {
  margin-top: 12px;
  justify-self: start;
  padding: 16px 28px;
  font-size: 15px;
}
.lead__fineprint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: -4px;
}

.lead__form[data-state="sent"] {
  position: relative;
}
.lead__form[data-state="sent"]::after {
  content: "✓  request received, forecast en route";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-md);
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}


/* ─────────────── pain ─────────────── */
.pain {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--cream-line);
}
.pain .display { margin-top: 24px; }
.pain__list {
  list-style: none;
  margin-top: 64px;
  max-width: 820px;
  border-top: 1px solid var(--cream-line);
}
.pain__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-line);
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.25;
  font-variation-settings: "wdth" 95;
}
.pain__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--taupe);
  text-transform: lowercase;
}


/* ─────────────── showcase (full-bleed editorial moment) ─────────────── */
.showcase {
  padding: 0;
  background: var(--cream);
  line-height: 0; /* removes baseline gap under the video */
}
.showcase__figure {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
.showcase__figure img,
.showcase__figure video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.showcase__caption {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: baseline;
  gap: 32px;
  padding: 0 var(--pad-x) 24px;
  max-width: 1440px;
  margin: 0 auto 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid var(--cream-line);
}
.showcase__line {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.4;
}
.showcase__credit { text-align: right; }


/* ─────────────── interstitial banner ─────────────── */
.banner {
  padding: 0;
  background: var(--cream);
}
.banner__figure {
  position: relative;
  width: 100%;
  height: clamp(280px, 50vh, 520px);
  overflow: hidden;
}
.banner__figure img,
.banner__figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.95);
}
.banner__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.25) 60%, rgba(20,16,10,0) 100%);
  pointer-events: none;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x);
  max-width: 1440px;
  margin: 0 auto;
  left: 0; right: 0;
  z-index: 1;
}
.banner__quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 880px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  font-variation-settings: "wdth" 95;
}
.banner__quote em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.08em;
  letter-spacing: -0.005em;
}
.banner__attr {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
}


/* ─────────────── 7-day proof (dark) ─────────────── */
.proof {
  padding: var(--section-y) 0;
  background: var(--forest-deep);
  color: var(--cream);
}
.proof .display { color: var(--cream); margin-top: 24px; }
.proof__hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
.proof__copy .display { margin-top: 20px; }
.proof__title {
  font-size: clamp(40px, 5.4vw, 88px) !important;
  line-height: 1 !important;
}
.proof__title .muted-italic { display: block; }
.proof__intro {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.78);
  max-width: 460px;
}
.proof__media {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5);
}
.proof__media img,
.proof__media video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.proof__media figcaption {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.proof__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proof__card {
  padding: 36px 28px;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: var(--r-md);
}
.proof__day {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.proof__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.proof__card p {
  color: rgba(244, 239, 230, 0.7);
  font-size: 15px;
  line-height: 1.55;
}


/* ─────────────── comparison ─────────────── */
.compare {
  padding: var(--section-y) 0;
}
.compare__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.compare__head .display { margin-top: 20px; }
.compare__head .muted { margin-top: 24px; max-width: 360px; }
.compare__systems {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-line);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 420px;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
}
.compare__table th {
  text-align: left;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cream-line);
}
.compare__table td {
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-line);
  color: var(--ink-soft);
}
.compare__table td:first-child {
  color: var(--taupe);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare__table td.hi {
  color: var(--ink);
  font-weight: 500;
}

/* highlight the Marton column with a subtle warm-cream wash + gold hairline */
.compare__hi-col { position: relative; }
.compare__hi-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.compare__table tbody td:last-child {
  background: linear-gradient(180deg, rgba(184,153,104,0.07), rgba(184,153,104,0.04));
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  padding-left: 16px;
  padding-right: 16px;
  border-left: 1px solid rgba(184,153,104,0.25);
}
.compare__table tbody td:first-child {
  padding-right: 16px;
}
.compare__table tbody td:nth-child(2) {
  color: var(--taupe);
  text-decoration: line-through;
  text-decoration-color: var(--taupe-soft);
}


/* ─────────────── work ─────────────── */
.work {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
}
.work .display { margin-top: 20px; }
.work__grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-line);
  border: 1px solid var(--cream-line);
}
.work__card {
  background: var(--cream-deep);
  padding: 40px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 200ms ease;
}
.work__card:hover { background: var(--cream); }
.work__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 95;
}
.work__card p {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.work__channels {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-line);
}
.work__channels li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 4px 10px;
  border: 1px solid var(--cream-line);
  border-radius: 999px;
  background: var(--cream);
}


/* ─────────────── founder ─────────────── */
.founder {
  padding: var(--section-y) 0;
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.founder__copy .display { margin-top: 20px; }
.founder__copy p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
}
.founder__signature {
  margin-top: 36px !important;
  padding-top: 28px;
  border-top: 1px solid var(--cream-line);
  font-family: var(--display);
  font-size: 14px !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  letter-spacing: -0.01em;
  display: grid;
  gap: 14px;
}
.founder__signature em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.founder__signature span {
  display: inline-block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}


/* ─────────────── faq ─────────────── */
.faq {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
}
.faq .display { margin-top: 20px; }
.faq__list {
  margin-top: 72px;
  border-top: 1px solid var(--cream-line);
  max-width: 920px;
}
.faq__list details {
  border-bottom: 1px solid var(--cream-line);
  padding: 28px 0;
}
.faq__list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.025em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  line-height: 1.25;
  font-variation-settings: "wdth" 95;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--taupe);
  transition: transform 200ms ease;
}
.faq__list details[open] summary::after { content: "−"; }
.faq__list details p {
  margin-top: 16px;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}


/* ─────────────── final cta (dark) ─────────────── */
.cta {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
}
.cta__inner { max-width: 920px; }
.cta .display { color: var(--cream); margin-top: 20px; }
.cta__sub {
  margin-top: 28px;
  max-width: 540px;
  font-size: 17px;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.55;
}

/* WhatsApp primary CTA */
.cta__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding: 18px 28px;
  background: #25D366;
  color: #0E1A14;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: transform 200ms ease, background 200ms ease;
}
.cta__whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }
.cta__whatsapp-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-left: 14px;
  border-left: 1px solid rgba(14,26,20,0.3);
  font-weight: 500;
}
.cta__fineprint {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-soft);
}
.cta__fineprint a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.cta__fineprint a:hover { color: var(--gold); }

.cta__scarcity {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(244, 239, 230, 0.25);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.cta__scarcity-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse-gold 2.6s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 153, 104, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(184, 153, 104, 0); }
}


/* ─────────────── footer (minimal) ─────────────── */
.footer {
  background: var(--forest-deep);
  color: rgba(244, 239, 230, 0.7);
  padding: 48px 0 28px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
.brand-word--footer {
  font-family: var(--display);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-weight: 600;
  font-variation-settings: "wdth" 90;
  text-decoration: none;
}
.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.25);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.footer__whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #0E1A14;
}
.footer__base {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.45);
  text-align: center;
}


/* ─────────────── responsive ─────────────── */
@media (max-width: 920px) {
  /* nav: brand left, WhatsApp + burger right (side by side) */
  .nav__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
  }
  .nav__links { display: none; }
  .nav__cta {
    display: inline-flex;
    justify-self: end;
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }
  .nav__cta svg { width: 14px; height: 14px; }
  /* show burger to the right of WhatsApp */
  .nav__burger {
    display: inline-block;
    justify-self: end;
    width: 40px;
    height: 40px;
    margin-left: 4px;
  }

  /* When drawer is open, nav matches drawer background seamlessly */
  body.is-drawer-open .nav {
    background: rgba(20, 16, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: transparent;
  }
  body.is-drawer-open .nav .brand-word { color: var(--cream); }
  body.is-drawer-open .nav__cta { background: #25D366; color: #0E1A14; }

  /* Mobile hero: bottom-anchored gaussian blur for readability */
  .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
    position: relative;
  }
  /* Frosted band: covers the lower 60% of the hero, smooth gradient mask
     so the blur fades out toward the top. */
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(180deg,
      rgba(20, 16, 10, 0) 0%,
      rgba(20, 16, 10, 0.55) 60%,
      rgba(20, 16, 10, 0.85) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
            mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    z-index: 0;
    pointer-events: none;
  }
  /* keep text above the frosted band */
  .hero__content { z-index: 1; }
  .hero__title { grid-column: 1; font-size: clamp(48px, 11vw, 80px); }
  .hero__sub { grid-column: 1; max-width: 100%; justify-self: start; }
  .hero__sub p { color: rgba(244, 239, 230, 0.95); }

  /* Hide phone number on mobile in the final WhatsApp CTA */
  .cta__whatsapp-num { display: none; }
  .cta__whatsapp { gap: 10px; padding: 18px 24px; }

  .proof__grid,
  .proof__hero,
  .work__grid,
  .lead__grid,
  .lead__row {
    grid-template-columns: 1fr;
  }

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

  .lead__copy { position: static; }

  /* mobile hero: taller, not 19:6 */
  .hero { aspect-ratio: auto; min-height: 90vh; max-height: none; }

  .compare__inner,
  .founder__grid {
    grid-template-columns: 1fr;
  }

  .footer__row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__base { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .hero__meta { flex-direction: column; gap: 6px; }
  .eyebrow--right { text-align: left; }
  .compare__table { font-size: 13px; }
  .lead__chip { font-size: 9px; letter-spacing: 0.14em; }
  .lead__chip--right { width: 100%; }
}

/* ─────────────── reveal-on-scroll (subtle, opt-in) ─────────────── */
@media (prefers-reduced-motion: no-preference) {
  .display.is-visible,
  .pain__list li.is-visible,
  .media-frame.is-visible,
  .solution__card.is-visible {
    animation: gentle-rise 700ms cubic-bezier(0.2, 0.6, 0.2, 1) both;
  }
  @keyframes gentle-rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── page-load hero reveal (luxury cinematic stagger) ─── */
  .hero__bg            { opacity: 0; animation: bg-fade   1600ms cubic-bezier(0.16, 0.84, 0.32, 1) 100ms forwards; }
  .hero__scrim         { opacity: 0; animation: scrim-fade 1400ms ease-out 300ms forwards; }
  .nav                 { opacity: 0; animation: hero-rise 900ms cubic-bezier(0.2, 0.6, 0.2, 1) 700ms forwards; }
  .hero__title         { opacity: 0; animation: hero-rise 1100ms cubic-bezier(0.2, 0.6, 0.2, 1) 900ms forwards; }
  .hero__sub p         { opacity: 0; animation: hero-rise 1100ms cubic-bezier(0.2, 0.6, 0.2, 1) 1200ms forwards; }
  .hero__cta           { opacity: 0; animation: hero-rise 1100ms cubic-bezier(0.2, 0.6, 0.2, 1) 1400ms forwards; }

  @keyframes bg-fade    { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
  @keyframes scrim-fade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes hero-rise  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
}
