/* ============================================================
   cuvée studios — Conversion Funnel
   Clean-premium light theme · Burgundy highlight signature
   ============================================================ */

/* ---------- Tokens ------------------------------------------------ */
:root {
  --burgundy:       #7A1F2E;
  --burgundy-deep:  #5A1622;
  --burgundy-light: #F5E6E8;
  --gold:           #B8924B;
  --cream:          #FAF6F0;
  --white:          #FFFFFF;
  --noir:           #1A1A1A;
  --stone:          #6B6B6B;
  --stone-light:    #E8E6E1;

  --bg:        var(--white);
  --bg-soft:   var(--cream);
  --text:      var(--noir);
  --text-soft: var(--stone);
  --accent:    var(--burgundy);
  --border:    var(--stone-light);

  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --gutter:    clamp(20px, 5vw, 80px);
  --header-h:  76px;

  --shadow-sm:  0 1px 2px rgba(26,26,26,.04), 0 4px 12px rgba(26,26,26,.04);
  --shadow-md:  0 4px 16px rgba(26,26,26,.06), 0 12px 32px rgba(26,26,26,.05);
  --shadow-cta: 0 8px 24px rgba(122,31,46,.18);

  --ease-out:  cubic-bezier(.22,.61,.36,1);
  --ease-marker: cubic-bezier(.65,0,.35,1);
}

/* ---------- Reset & base ----------------------------------------- */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  overflow-x: clip;
  width: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  position: relative;
}
body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--burgundy); color: var(--white); }

/* ---------- Container & sections --------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vh, 104px); position: relative; overflow-x: clip; }
.section--soft { background: var(--bg-soft); }

.section__head { max-width: 920px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--centered { margin-inline: auto; text-align: center; }

/* Subtle background blob shared across light sections */
.section--soft::before,
.solution::before,
.offer::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle at 30% 30%, rgba(184, 146, 75, .08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.solution::before { left: -20%; right: auto; top: auto; bottom: -10%; }

/* ---------- Typography ------------------------------------------- */
.h1, .h2, .h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  font-variation-settings: "opsz" 144;
  margin: 0;
}
.h1 { font-size: clamp(40px, 5.5vw, 72px); }
.h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.08; }
.h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 24px;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--burgundy);
  display: inline-block;
}
.eyebrow--light { color: var(--cream); }
.eyebrow--light .eyebrow__dot { background: var(--cream); }

/* ============================================================
   THE HIGHLIGHTER — the brand signature animation
   ============================================================ */
.highlight {
  position: relative;
  display: inline;
  padding: 0 8px;
  margin: 0 -2px;
  color: var(--text);
  background-image: linear-gradient(120deg, var(--burgundy) 0%, var(--burgundy) 100%);
  background-repeat: no-repeat;
  background-size: 0% 78%;
  background-position: 0% 88%;
  transition: background-size .85s var(--ease-marker), color .35s ease .35s;
  border-radius: 2px;
  white-space: nowrap;
}
.highlight.is-active {
  background-size: 100% 78%;
  color: var(--white);
}
/* Cream variant for the dark Final-CTA */
.highlight--cream {
  color: var(--white);
  background-image: linear-gradient(120deg, var(--cream) 0%, var(--cream) 100%);
}
.highlight--cream.is-active {
  color: var(--burgundy);
}

/* ---------- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
  will-change: transform;
  white-space: nowrap;
}
.btn__arrow { width: 16px; height: 16px; flex: none; transition: transform .35s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--sm  { padding: 11px 20px; font-size: 14px; }
.btn--lg  { padding: 18px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(122,31,46,.28);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--noir);
}
.btn--ghost:hover {
  background: var(--noir);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Header ----------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  /* sits ABOVE the mobile menu so the burger stays tappable when menu is open */
  z-index: 120;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--stone-light);
  box-shadow: 0 1px 0 rgba(26,26,26,.02);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 15px;
  color: var(--text-soft);
  transition: color .2s ease;
}
.nav a:hover { color: var(--burgundy); }

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 22px;
}
.logo__cuvee  {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--burgundy);
}
.logo__studios {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--noir);
  letter-spacing: -0.01em;
}
.logo--light .logo__studios { color: var(--cream); }

/* Burger button — desktop hidden, mobile visible */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--stone-light);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  transition: background-color .2s ease, border-color .2s ease;
  position: relative;
  z-index: 110;
}
.burger:hover { background: var(--bg-soft); }
.burger__line {
  width: 18px;
  height: 1.6px;
  background: var(--noir);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s ease;
  transform-origin: center;
}
.burger.is-open .burger__line:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger__line:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile-menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;                           /* below the header so the burger stays clickable */
  background: var(--white);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;                   /* unclickable when closed */
  transition: opacity .35s var(--ease-out), transform .4s var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  border-top: 1px solid var(--stone-light);
}
.mobile-menu__link {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--noir);
  padding: 22px 0;
  border-bottom: 1px solid var(--stone-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: .10s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: .16s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: .22s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: .28s; }
.mobile-menu__cta {
  margin-top: 28px;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  transition-delay: .36s;
}
.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 0;
  font-size: 14px;
  text-align: center;
  color: var(--text-soft);
  opacity: 0;
  transition: opacity .4s var(--ease-out) .44s;
}
.mobile-menu.is-open .mobile-menu__note { opacity: 1; }

@media (max-width: 880px) {
  .nav         { display: none; }
  .header__cta { display: none; }
  .burger      { display: inline-flex; }
}

/* ============================================================
   HERO — ruixen-style two-column with right-side card
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(40px, 5vh, 64px);
  padding-bottom: clamp(48px, 7vh, 88px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, rgba(250,246,240,.4) 100%);
}
.hero__blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--left  { top: 60px; left: -40px;  background: rgba(122,31,46,.18); }
.hero__blob--right { bottom: 40px; right: -60px; width: 440px; height: 440px; background: rgba(184,146,75,.14); opacity: .25; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  min-height: 64vh;
}

/* Badge top-left */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--stone-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 28px;
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--burgundy);
  display: inline-block;
}

.hero__copy { position: relative; }
.hero__title { margin: 0 0 24px; }
.hero__title .line { display: block; }
.hero__sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-soft);
  margin: 0 0 32px;
  max-width: 540px;
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}
.hero__note-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--burgundy);
  display: inline-block;
}

/* Right card */
.hero__card {
  position: relative;
  padding: 28px clamp(22px, 2.2vw, 32px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--stone-light);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(26,26,26,.06), 0 24px 56px rgba(26,26,26,.08);
}
.hero__card-head {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--stone-light);
}
.hero__card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.hero__card-eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--burgundy);
  display: inline-block;
}
.hero__card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--noir);
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__checks li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.check-icon {
  flex: none;
  width: 22px; height: 22px;
  color: var(--burgundy);
  margin-top: 1px;
}
.hero__card-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}
.hero__card-glow--tl { top: -16px;    right: -16px; background: rgba(122,31,46,.10); }
.hero__card-glow--br { bottom: -28px; left: -28px;  background: rgba(184,146,75,.12); width: 160px; height: 160px; }

/* ---- Fake restaurant site inside the preview card ---- */
.screen-site {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--noir);
}
.screen-site__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--stone-light);
  background: var(--white);
}
.screen-site__brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.screen-site__brand em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
}
.screen-site__nav ul {
  display: flex;
  gap: 18px;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}
.screen-site__hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 16px;
  padding: 20px 22px 22px;
  align-items: center;
  background: var(--white);
}
.screen-site__eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 10px;
}
.screen-site__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.screen-site__title em {
  font-style: italic;
  color: var(--burgundy);
}
.screen-site__cta {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
}
.screen-site__photo {
  height: 100%;
  min-height: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  clip-path: polygon(20% 0%, 100% 0%, 100% 70%, 78% 100%, 0% 100%, 0% 30%);
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__card { order: 2; }
  .hero__copy { order: 1; text-align: center; }
  /* Flex-Approach für H1: jede .line wird als eigenes Flex-Item zentriert
     — bypasst text-align-Quirks komplett */
  .hero__title {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero__title .line {
    display: block;
    text-align: center;
    width: auto;
  }
  .hero__title .highlight { white-space: normal; }
  .hero__sub   { margin-left: auto; margin-right: auto; text-align: center; }
  .hero__cta   { justify-content: center; }
  .hero__note  { display: inline-flex; justify-content: center; }
}

/* ============================================================
   PAIN
   ============================================================ */
.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  position: relative;
  z-index: 1;
}
.pain__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 28px 28px 24px;
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: 18px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  position: relative;
}
.pain__item::before {
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 3px;
  border-radius: 3px;
  background: var(--burgundy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease-out);
}
.pain__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.pain__item:hover::before { transform: scaleY(1); }

.pain__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy-light);
  color: var(--burgundy);
  border-radius: 12px;
  flex: none;
}
.pain__icon svg { width: 22px; height: 22px; }

.pain__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.3;
  margin: 4px 0 8px;
  color: var(--noir);
  letter-spacing: -0.01em;
}
.pain__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}

.pain__close {
  text-align: center;
  margin-top: clamp(56px, 7vw, 88px);
  position: relative;
  z-index: 1;
}
.pain__statement {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--noir);
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.pain__statement em { font-style: italic; color: var(--burgundy); }

@media (max-width: 880px) {
  .pain__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution { background: var(--white); }
.solution__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
}
.solution__copy { position: sticky; top: calc(var(--header-h) + 32px); }
.solution__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 24px 0 32px;
  max-width: 480px;
}
.cta-stack { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cta-sub {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  padding-left: 4px;
}
.cta-sub::before {
  content: "·";
  display: inline-block;
  margin-right: 6px;
  color: var(--burgundy);
}

.features { display: flex; flex-direction: column; gap: 28px; }
.feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: 20px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 16px;
  flex: none;
  transition: transform .5s var(--ease-out);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature:hover .feature__icon { transform: rotate(-6deg) scale(1.05); }

.feature__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature__text {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 980px) {
  .solution__inner { grid-template-columns: 1fr; }
  .solution__copy { position: static; }
}

/* ============================================================
   PROCESS (Stepper)
   ============================================================ */
.stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
  z-index: 1;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0;
}
/* Dashed connector line — drawn between current step and the next.
   Only on steps 1..n-1, sits at the vertical center of the circle (top: 36px),
   starts at the right edge of the current circle, ends at the left edge of
   the next circle. Width math: from (50% + 36px) over the gap into the next
   column's circle edge. Reveals via clip-path once .stepper.is-active fires. */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;        /* circle vertical center (72px / 2 - line/2) */
  left: calc(50% + 36px);
  width: calc(100% - 48px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--burgundy) 0 6px,
    transparent 6px 14px
  );
  opacity: .35;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease-out);
  z-index: 0;
}
.stepper.is-active .step:nth-child(1)::after { clip-path: inset(0); transition-delay: 0.10s; }
.stepper.is-active .step:nth-child(2)::after { clip-path: inset(0); transition-delay: 0.35s; }
.stepper.is-active .step:nth-child(3)::after { clip-path: inset(0); transition-delay: 0.60s; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--stone);
  background: var(--white);
  border: 1px solid var(--stone-light);
  letter-spacing: -0.02em;
  transition: background-color .6s var(--ease-out), color .6s var(--ease-out), transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.step.is-active .step__num {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
  box-shadow: 0 8px 24px rgba(122,31,46,.18);
  transform: scale(1.06);
}
.step__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.step__text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 230px;
  /* Reserve 4 lines so all 4 step blocks align at the bottom regardless of wrap */
  min-height: calc(15px * 1.55 * 4);
}

.process__cta {
  text-align: center;
  margin-top: clamp(48px, 6vw, 72px);
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .stepper {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 8px;
  }
  .step {
    display: grid;
    grid-template-columns: 72px 1fr;
    column-gap: 20px;
    row-gap: 4px;
    text-align: left;
    align-items: start;
  }
  .step__num   { grid-row: 1 / span 3; margin: 0; }
  .step__title { grid-column: 2; margin-top: 14px; }
  .step__text  {
    grid-column: 2;
    max-width: none;
    min-height: 0;
  }
  /* Vertical dashed connector on mobile — runs from below the circle
     to the top of the next circle. */
  .step:not(:last-child)::after {
    top: 80px;
    left: 35px;
    width: 2px;
    height: calc(100% - 80px + 28px);  /* into the gap (28px) */
    background: repeating-linear-gradient(
      180deg,
      var(--burgundy) 0 6px,
      transparent 6px 14px
    );
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.8s var(--ease-out);
  }
  .stepper.is-active .step:nth-child(1)::after { clip-path: inset(0); transition-delay: 0.10s; }
  .stepper.is-active .step:nth-child(2)::after { clip-path: inset(0); transition-delay: 0.30s; }
  .stepper.is-active .step:nth-child(3)::after { clip-path: inset(0); transition-delay: 0.50s; }
}

/* ============================================================
   SLAM OFFER — Value stack
   ============================================================ */
.stack {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px);
  background: var(--bg-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.stack__list { display: flex; flex-direction: column; }
.stack__row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone-light);
}
.stack__row:last-child { border-bottom: 0; }
.stack__check {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  flex: none;
}
.stack__check svg { width: 16px; height: 16px; }
.stack__label {
  font-size: 16px;
  line-height: 1.4;
  color: var(--noir);
}
.stack__value {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-soft);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.stack__row--total {
  grid-template-columns: 1fr auto;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 2px solid var(--noir);
  border-bottom: 0;
}
.stack__row--total .stack__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
}
.stack__value--total {
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--burgundy);
}

.stack__price {
  text-align: center;
  margin: 32px 0 0;
  font-size: 17px;
  color: var(--text-soft);
}
.stack__price strong { color: var(--burgundy); font-weight: 600; }

.offer__lead {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 680px;
  margin: 28px auto 0;
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 6vw, 72px);
  position: relative;
  z-index: 1;
}
.guarantee {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: 20px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.guarantee:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.guarantee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--burgundy-light);
  color: var(--burgundy);
  border-radius: 50%;
  margin-bottom: 20px;
}
.guarantee__icon svg { width: 26px; height: 26px; }
.guarantee__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(19px, 1.5vw, 22px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.guarantee__text { font-size: 15px; color: var(--text-soft); line-height: 1.55; margin: 0; }

.offer__cta {
  text-align: center;
  margin-top: clamp(48px, 6vw, 72px);
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .stack__row { grid-template-columns: 28px 1fr; }
  .stack__value { grid-column: 2 / 3; padding-left: 0; font-size: 15px; }
  .stack__row--total { grid-template-columns: 1fr; }
  .stack__row--total .stack__value { grid-column: auto; }
  .guarantees { grid-template-columns: 1fr; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  background: var(--burgundy);
  color: var(--cream);
  padding-block: clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}
.final__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.final__title { color: var(--white); margin: 0 0 24px; }
.final__sub {
  color: rgba(250,246,240,.82);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}

.final__form {
  background: var(--white);
  color: var(--text);
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field__label em { font-style: normal; color: var(--stone); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 0;
  font: inherit;
  font-size: 15px;
  color: var(--noir);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stone-light);
  outline: none;
  transition: border-color .25s ease;
  resize: none;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--burgundy); }

.toggle-group {
  margin: 8px 0 20px;
  border: 0;
  padding: 0;
}
.toggle-group legend { margin-bottom: 12px; }
.toggle-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.toggle-group legend { grid-column: 1 / -1; }
.toggle {
  position: relative;
  display: block;
}
.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.toggle span {
  display: block;
  text-align: center;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-soft);
  border: 1px solid var(--stone-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s ease;
}
.toggle:hover span { border-color: var(--burgundy); color: var(--burgundy); }
.toggle input:checked + span {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.consent {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  margin: 20px 0 24px;
}
.consent input {
  margin: 3px 0 0;
  width: 16px; height: 16px;
  accent-color: var(--burgundy);
}

.final__note {
  text-align: center;
  margin: 20px 0 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.form-status {
  text-align: center;
  margin: 14px 0 0;
  font-size: 13px;
  min-height: 1.4em;
  opacity: 0;
  transition: opacity .35s ease;
}
.form-status.is-success { opacity: 1; color: var(--burgundy); font-weight: 500; }
.form-status.is-error   { opacity: 1; color: #c54a4a; }

@media (max-width: 980px) {
  .final__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .toggle-group { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--noir);
  color: var(--cream);
  padding: clamp(60px, 8vw, 96px) 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__tag {
  font-size: 14px;
  color: rgba(250,246,240,.6);
  margin: 16px 0 0;
  max-width: 280px;
  line-height: 1.55;
}
.footer__h {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 18px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 14.5px;
  color: rgba(250,246,240,.62);
  transition: color .2s ease;
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
}
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,240,.6);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer__social a:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,.04);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__copy {
  font-size: 13px;
  color: rgba(250,246,240,.5);
  margin: 0;
}
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: start; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .highlight { background-size: 100% 78% !important; color: var(--white) !important; }
  .highlight--cream { color: var(--burgundy) !important; }
  .stepper__line line { stroke-dashoffset: 0 !important; }
  .step__num {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    border-color: var(--burgundy) !important;
  }
}

/* ============================================================
   BLOG / JOURNAL
   ============================================================ */
.blog-hero {
  padding: clamp(60px, 9vh, 96px) 0 clamp(40px, 6vh, 64px);
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(122,31,46,.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.blog-hero > .container { position: relative; z-index: 1; }
.blog-hero .eyebrow { justify-content: center; }
.blog-hero__title {
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.08;
}
.blog-hero__sub {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}

/* Article grid */
.blog-grid { background: var(--bg-soft); padding-block: clamp(48px, 7vh, 88px); }
.posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.post-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: 20px;
  padding: 32px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.post-card--featured {
  grid-column: 1 / -1;
  padding: 40px clamp(32px, 4vw, 56px);
}
.post-card--upcoming {
  background: transparent;
  border-style: dashed;
  opacity: .72;
}
.post-card__link { display: block; color: inherit; text-decoration: none; }
.post-card:hover:not(.post-card--upcoming) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.post-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--burgundy-light);
  border-radius: 999px;
}
.post-card--upcoming .post-card__tag {
  color: var(--text-soft);
  background: var(--stone-light);
}
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.post-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--noir);
}
.post-card--featured .post-card__title {
  font-size: clamp(26px, 3vw, 42px);
}
.post-card__lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 720px;
}
.post-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--burgundy);
  transition: gap .25s var(--ease-out);
}
.post-card__cta svg { width: 16px; height: 16px; }
.post-card__link:hover .post-card__cta { gap: 14px; }

@media (max-width: 880px) {
  .posts { grid-template-columns: 1fr; }
  .post-card { padding: 26px; }
  .post-card--featured { padding: 30px; }
}

/* Blog soft footer CTA */
.blog-cta {
  padding-block: clamp(64px, 9vh, 104px);
  text-align: center;
  background: var(--white);
}
.blog-cta__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 16px;
}
.blog-cta__title {
  margin: 0 auto 32px;
  max-width: 800px;
}

/* ============================================================
   ARTICLE (single post)
   ============================================================ */
.post__head {
  padding-top: clamp(40px, 6vh, 64px);
  padding-bottom: 32px;
  text-align: left;
  border-bottom: 1px solid var(--stone-light);
  max-width: 880px;
}
.post__back {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 28px;
  transition: color .2s ease;
}
.post__back:hover { color: var(--burgundy); }
.post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.post__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-soft);
  display: inline-block;
}
.post__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--noir);
}
.post__lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--text-soft);
  margin: 0;
}

.post__body {
  max-width: 800px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 80px);
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
}

/* Editorial drop-cap on the first paragraph of the article body */
.post__body > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 5.4em;
  line-height: 0.85;
  float: left;
  padding: 0.14em 0.14em 0 0;
  margin-top: 0.06em;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}
.post__body p {
  margin: 0 0 22px;
}
.post__body h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: clamp(40px, 5vw, 56px) 0 18px;
  scroll-margin-top: 96px;
}
.post__body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 22px);
  line-height: 1.2;
  margin: 32px 0 12px;
}
.post__body a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease;
}
.post__body a:hover { color: var(--burgundy-deep); text-decoration-thickness: 2px; }
/* Buttons inside the article body must NOT inherit the underlined burgundy link style */
.post__body a.btn { text-decoration: none; }
.post__body a.btn:hover { text-decoration: none; }
.post__body a.btn--primary,
.post__body a.btn--primary:hover { color: var(--white); }
.post__body a.btn--ghost,
.post__body a.btn--ghost:hover { color: var(--text); }
.post__body a.btn--ghost:hover { color: var(--white); }
.post__body strong { font-weight: 600; color: var(--noir); }
.post__body em { font-style: italic; }
.post__body code {
  font-family: ui-monospace, "SF Mono", Monaco, monospace;
  font-size: 0.92em;
  padding: 2px 6px;
  background: var(--bg-soft);
  border: 1px solid var(--stone-light);
  border-radius: 4px;
  color: var(--burgundy);
}

.post__callout {
  padding: 18px 22px;
  background: var(--bg-soft);
  border-left: 3px solid var(--burgundy);
  border-radius: 4px;
  font-size: 16px;
  margin: 8px 0 36px !important;
  color: var(--text);
}
.post__callout em {
  font-style: normal;
  font-weight: 600;
  color: var(--burgundy);
}

/* Inline CTA card */
.post__cta {
  margin: clamp(48px, 6vw, 72px) 0;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--bg-soft);
  border: 1px solid var(--stone-light);
  border-radius: 20px;
  text-align: center;
}
.post__cta-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 12px;
}
.post__cta-text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--noir);
  margin: 0 0 24px;
}

/* FAQ accordions */
.faq {
  border-bottom: 1px solid var(--stone-light);
  padding: 18px 0;
}
.faq:first-of-type { border-top: 1px solid var(--stone-light); }
.faq summary {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 20px);
  color: var(--noir);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: start;
  gap: 16px;
  padding-right: 8px;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  color: var(--burgundy);
  line-height: 1;
  transition: transform .3s var(--ease-out);
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--burgundy); }
.faq p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .post__body { font-size: 17px; }
  .post__body h2 { font-size: 22px; }
  .post__lead { font-size: 18px; }
}

/* ============================================================
   POST IMAGES — hero + inline figures
   ============================================================ */
.post__hero {
  max-width: 880px;                       /* matches .post__head / .post__body alignment */
  margin: 32px auto 0;
  padding-inline: var(--gutter);
}
.post__hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.post__figure {
  margin: clamp(36px, 5vw, 56px) 0;
}
.post__figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  max-height: 720px;
  object-fit: cover;
}
.post__figure figcaption {
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  padding-inline: clamp(4px, 2vw, 24px);
  line-height: 1.55;
}

/* Featured post card with image */
.post-card--media .post-card__link {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.post-card__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.post-card__link:hover .post-card__media img { transform: scale(1.03); }
.post-card__copy { display: flex; flex-direction: column; }

@media (max-width: 880px) {
  .post-card--media .post-card__link {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .post-card__media { aspect-ratio: 16 / 10; }
  .post__hero img { aspect-ratio: 4 / 3; border-radius: 14px; }
}

/* Post-Card mit Top-Thumbnail (für Standard-Cards in 2er-Grid) */
.post-card--thumb { padding: 0; overflow: hidden; }
.post-card--thumb .post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card__media--top {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
}
.post-card__media--top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.post-card__link:hover .post-card__media--top img { transform: scale(1.04); }
.post-card--thumb .post-card__copy { padding: 26px 28px 30px; }

/* ============================================================
   LEGAL PAGES — Impressum, Datenschutz
   ============================================================ */
.legal { padding-bottom: clamp(48px, 6vw, 80px); }
.legal__head {
  padding-top: clamp(40px, 6vh, 64px);
  padding-bottom: 32px;
  max-width: 880px;
  border-bottom: 1px solid var(--stone-light);
}
.legal__head .eyebrow { justify-content: flex-start; }
.legal__title { margin: 0 0 16px; }
.legal__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  color: var(--text-soft);
  margin: 0;
  max-width: 720px;
}
.legal__body {
  max-width: 800px;
  padding-top: clamp(32px, 4vw, 48px);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.legal__body h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
  color: var(--noir);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { margin: 0 0 16px; }
.legal__body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 18px;
}
.legal__body ul li { margin-bottom: 8px; }
.legal__body a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease;
}
.legal__body a:hover { color: var(--burgundy-deep); text-decoration-thickness: 2px; }
.legal__body strong { font-weight: 600; color: var(--noir); }
.legal__meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-light);
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

/* ============================================================
   Scarcity hint (dezent, gold-akzent, edel statt grell)
   ============================================================ */
.scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-align: center;
}
.scarcity::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,75,.18);
}

/* ============================================================
   Final-Polish (Mai 2026)
   ============================================================ */

/* Pain-Grid: ALLE Items auf gleiche Höhe (auch zwischen Reihen) */
@media (min-width: 881px) {
  .pain__grid {
    grid-auto-rows: 1fr;
  }
  .pain__item {
    height: 100%;
  }
}

/* Hero-Card auf Mobile zentriert
   – Eyebrow + Title über text-align: center
   – Checks-Liste als Block mittig (margin auto + width fit-content),
     einzelne Bullets bleiben linksbündig damit alle Icons untereinander
     in einer Spalte stehen */
@media (max-width: 980px) {
  .hero__card-head { text-align: center; }
  .hero__card-eyebrow { justify-content: center; }
  .hero__checks {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__checks li {
    justify-content: flex-start;
    text-align: left;
  }
  .hero__checks li .check-icon { flex: none; }
}

/* Datenschutz-Link in Consent-Checkbox */
.consent a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.consent a:hover { color: var(--burgundy-deep); }
