/* ══ FRONT PAGE — page-specific styles ══ */

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 40fr 60fr;
  overflow: hidden;
  background: var(--cream);
}

.hero-copy {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 56px 80px 64px;
  background: var(--cream);
}
.hero-copy::after {
  content: ""; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 28px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .9s .3s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-h1 {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(48px, 5.2vw, 80px); line-height: .93; letter-spacing: -.025em;
  color: var(--text); margin-bottom: 14px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1.1s .45s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 300;
  font-size: clamp(13px, 1.1vw, 16px); letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 36px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1s .6s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-desc {
  font-size: 14px; line-height: 1.92; color: var(--muted);
  max-width: 360px; font-weight: 300; margin-bottom: 44px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1s .75s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-ctas {
  display: flex; align-items: center; gap: 24px; margin-bottom: 44px; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 1s .9s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-trust {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 1s 1.05s cubic-bezier(.4,0,.2,1) forwards;
}

.hero-image { position: relative; overflow: visible; }
.hero-image img {
  position: absolute; top: 0; width: 115%; height: 100%;
  object-fit: cover; object-position: 98% center; display: block;
  opacity: 0; animation: imgReveal 1.6s .2s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-image::before {
  content: ""; position: absolute; top: 0; left: -5%; bottom: 0; width: 30%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.hero-image::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, rgba(247,242,234,.4) 0%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.light-layer {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 55% 40%, rgba(255,240,200,1) 0%, transparent 70%);
  animation: lightShift 8s ease-in-out infinite; mix-blend-mode: soft-light;
}
.dust-wrap { position: absolute; inset: 0; z-index: 4; pointer-events: none; overflow: hidden; }
.dust {
  position: absolute; border-radius: 50%; background: rgba(255,245,220,.7);
  animation: dustFloat linear infinite;
}
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 20; opacity: 0; animation: fadeUp 1s 1.8s ease forwards;
}
.scroll-line { width: 1px; height: 0; background: var(--gold); animation: lineGrow 1.2s 2s cubic-bezier(.4,0,.2,1) forwards; }
.scroll-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; opacity: 0; animation: arrowFade .8s 3s ease forwards; }
.scroll-arrow svg { animation: arrowBounce 2.4s 3.2s ease-in-out infinite; }
.scroll-txt { font-size: 8px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted2); font-weight: 400; white-space: nowrap; }


/* ──────────────────────────────────────────
   S2 — THE FIRST BITE
────────────────────────────────────────── */
.s2 { background: var(--warm); padding: 140px 0; overflow: hidden; }
.s2-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

.s2-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 20px;
}
.s2-eyebrow::before, .s2-eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.s2-heading {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(40px, 4.8vw, 60px); line-height: 1.04; letter-spacing: -.025em;
  color: var(--text); text-align: center; margin-bottom: 72px;
}
.s2-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.s2-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.s2-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 22%; display: block; transform: scale(1.02); transition: transform 1.6s cubic-bezier(.4,0,.2,1); }
.s2-img-wrap.in img { transform: scale(1); }

.s2-pull {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px); line-height: 1.18; letter-spacing: -.015em;
  color: var(--brown-mid); margin-bottom: 40px;
}
.s2-lines { list-style: none; margin-bottom: 48px; }
.s2-lines li {
  font-size: clamp(15px, 1.5vw, 18px); font-weight: 300; line-height: 1.5;
  color: var(--muted); letter-spacing: .01em;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(12px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--ld, 0s);
}
.s2-lines li:first-child { border-top: 1px solid var(--border); }
.s2-lines li.in { opacity: 1; transform: none; }
.s2-lines li strong { font-weight: 400; color: var(--text); }

.s2-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brown); text-decoration: none; font-weight: 500;
  transition: color .3s, gap .35s cubic-bezier(.4,0,.2,1);
}
.s2-cta:hover { color: var(--gold-deep); gap: 16px; }
.s2-cta-line { display: block; width: 28px; height: 1px; background: currentColor; transition: width .35s cubic-bezier(.4,0,.2,1); }
.s2-cta:hover .s2-cta-line { width: 42px; }
.s2-cta-arrow { font-size: 13px; line-height: 1; transition: transform .35s cubic-bezier(.4,0,.2,1); }
.s2-cta:hover .s2-cta-arrow { transform: translateX(4px); }


/* ──────────────────────────────────────────
   S3 — WHY EVERY LADOO MATTERS
────────────────────────────────────────── */
.s3 { background: var(--cream); padding: 140px 0; overflow: hidden; }
.s3-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

.s3-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.s3-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 20px;
}
.s3-eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
.s3-heading {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(38px, 4.4vw, 58px); line-height: 1.04; letter-spacing: -.025em; color: var(--text);
}
.s3-intro { font-size: clamp(14px, 1.4vw, 16px); line-height: 1.95; color: var(--muted); font-weight: 300; max-width: 420px; }

.s3-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 16/9; margin-bottom: 80px; background: var(--warm);
}
.s3-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 42%; display: block; transform: scale(1.03); transition: transform 1.8s cubic-bezier(.4,0,.2,1); }
.s3-img-wrap.in img { transform: scale(1); }

.s3-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); }
.s3-point { padding: 48px 40px 48px 0; border-right: 1px solid var(--border); }
.s3-point:last-child { border-right: none; padding-right: 0; }
.s3-point:first-child { padding-left: 0; }
.s3-point + .s3-point { padding-left: 40px; }
.s3-point-num { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400; font-size: 11px; letter-spacing: .12em; color: var(--gold); margin-bottom: 20px; display: block; }
.s3-point-title { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: clamp(18px, 1.8vw, 22px); letter-spacing: -.01em; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.s3-point-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 16px; transition: width .5s cubic-bezier(.4,0,.2,1); }
.s3-point:hover .s3-point-rule { width: 48px; }
.s3-point-body { font-size: 13px; line-height: 1.88; color: var(--muted); font-weight: 300; }


/* ──────────────────────────────────────────
   S4 — INSIDE EVERY BITE
────────────────────────────────────────── */
.s4 { background: var(--warm); padding: 140px 0 0; overflow: hidden; }
.s4-header { text-align: center; max-width: 700px; margin: 0 auto 100px; padding: 0 48px; }
.s4-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 20px;
}
.s4-eyebrow::before, .s4-eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.s4-heading {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(38px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -.025em; color: var(--text); margin-bottom: 20px;
}
.s4-subhead { font-size: 14px; line-height: 1.9; color: var(--muted); font-weight: 300; max-width: 440px; margin: 0 auto; }

.ing-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; border-top: 1px solid var(--border); }
.ing-row:last-child { border-bottom: 1px solid var(--border); }
.ing-img { position: relative; overflow: hidden; background: var(--cream); }
.ing-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transform: scale(1.04); transition: transform 1.8s cubic-bezier(.4,0,.2,1); }
.ing-img.in img { transform: scale(1); }
.ing-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 72px 72px 64px; }
.ing-row--flip .ing-copy { padding: 72px 64px 72px 72px; order: -1; }
.ing-row--flip .ing-img { order: 1; }
.ing-name {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -.02em; line-height: 1.05;
  color: var(--text); margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s .15s cubic-bezier(.4,0,.2,1), transform .9s .15s cubic-bezier(.4,0,.2,1);
}
.ing-name.in { opacity: 1; transform: none; }
.ing-rule {
  width: 28px; height: 1px; background: var(--gold); margin-bottom: 20px;
  opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: opacity .9s .22s cubic-bezier(.4,0,.2,1), transform .9s .22s cubic-bezier(.4,0,.2,1), width .5s cubic-bezier(.4,0,.2,1);
}
.ing-rule.in { opacity: 1; transform: scaleX(1); }
.ing-copy:hover .ing-rule { width: 52px; }
.ing-desc {
  font-size: clamp(14px, 1.5vw, 17px); line-height: 1.85; color: var(--muted); font-weight: 300; max-width: 380px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s .28s cubic-bezier(.4,0,.2,1), transform .9s .28s cubic-bezier(.4,0,.2,1);
}
.ing-desc.in { opacity: 1; transform: none; }


/* ──────────────────────────────────────────
   S5 — FROM OUR KITCHEN
────────────────────────────────────────── */
.s5 { background: var(--cream); padding: 140px 0; overflow: hidden; }
.s5-header { text-align: center; max-width: 640px; margin: 0 auto 100px; padding: 0 48px; }
.s5-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 20px;
}
.s5-eyebrow::before, .s5-eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.s5-heading {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(38px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -.025em; color: var(--text);
}
.s5-scenes { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.s5-scene { margin-bottom: 80px; }
.s5-step-label {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.s5-step-label.in { opacity: 1; transform: none; }
.s5-step-num { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 11px; letter-spacing: .16em; color: var(--gold); font-weight: 400; white-space: nowrap; }
.s5-step-rule { flex: 1; height: 1px; background: var(--border); }
.s5-step-name { font-size: 9px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted2); font-weight: 400; white-space: nowrap; }
.s5-scene-img {
  position: relative; width: 100%; height: 65vh; min-height: 420px; max-height: 680px;
  overflow: hidden; background: var(--warm); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.s5-scene-img.in { opacity: 1; transform: none; }
.s5-scene-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.s5-caption {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s .2s cubic-bezier(.4,0,.2,1), transform .8s .2s cubic-bezier(.4,0,.2,1);
}
.s5-caption.in { opacity: 1; transform: none; }
.s5-caption-text { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.35; letter-spacing: -.01em; color: var(--brown-mid); }
.s5-caption-sub { font-size: 13px; line-height: 1.85; color: var(--muted); font-weight: 300; padding-top: 6px; max-width: 340px; }
.s5-cta-row { margin-top: 80px; padding-top: 64px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.s5-cta-copy { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(22px, 2.5vw, 32px); font-weight: 400; letter-spacing: -.01em; color: var(--text); line-height: 1.2; }
.btn-order-s5 {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: var(--brown); padding: 15px 40px;
  text-decoration: none; font-weight: 500; border: 1.5px solid var(--brown); white-space: nowrap;
  transition: background .35s cubic-bezier(.4,0,.2,1), border-color .35s, transform .25s, box-shadow .35s;
}
.btn-order-s5:hover { background: var(--red); border-color: var(--red); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(138,20,20,.28); }
.btn-order-s5:active { transform: none; box-shadow: none; }


/* ──────────────────────────────────────────
   S6 — COMMUNITY
────────────────────────────────────────── */
.s6 { background: var(--warm); padding: 140px 0; overflow: hidden; }
.s6-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.s6-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 20px;
}
.s6-eyebrow::before, .s6-eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.s6-heading {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: clamp(38px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -.025em;
  color: var(--text); margin-bottom: 80px;
}
.s6-launch-img {
  position: relative; width: 100%; height: 70vh; min-height: 440px; max-height: 720px;
  overflow: hidden; background: var(--cream); margin-bottom: 64px;
}
.s6-launch-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; transform: scale(1.03); transition: transform 1.8s cubic-bezier(.4,0,.2,1); }
.s6-launch-img.in img { transform: scale(1); }
.s6-launch-body { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.s6-launch-tag { font-size: 9px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.s6-launch-tag::before { content: ""; width: 18px; height: 1px; background: var(--gold); }
.s6-launch-title { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -.02em; color: var(--text); margin-bottom: 20px; }
.s6-launch-copy { font-size: 15px; line-height: 1.92; color: var(--muted); font-weight: 300; max-width: 400px; }
.s6-launch-stat { display: flex; flex-direction: column; gap: 4px; padding-bottom: 32px; border-bottom: 1px solid var(--border); width: 100%; margin-bottom: 0; }
.s6-launch-stat + .s6-launch-stat { margin-top: 32px; }
.s6-launch-stat:last-of-type { border-bottom: none; padding-bottom: 0; }
.s6-stat-num { font-family: "Cormorant Garamond", serif; font-size: clamp(40px, 4vw, 56px); font-weight: 300; letter-spacing: -.03em; color: var(--text); line-height: 1; }
.s6-stat-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted2); font-weight: 400; }
.btn-s6 {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: var(--brown); padding: 15px 40px;
  text-decoration: none; font-weight: 500; border: 1.5px solid var(--brown);
  display: inline-block; margin-top: 16px;
  transition: background .35s cubic-bezier(.4,0,.2,1), border-color .35s, transform .25s, box-shadow .35s;
}
.btn-s6:hover { background: var(--red); border-color: var(--red); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(138,20,20,.28); }
.btn-s6:active { transform: none; box-shadow: none; }


/* ──────────────────────────────────────────
   S7 — FAQ
────────────────────────────────────────── */
.s7 { background: var(--cream); padding: 140px 0; overflow: hidden; }
.s7-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.s7-header { margin-bottom: 88px; }
.s7-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 20px;
}
.s7-eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--gold); }
.s7-heading { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.06; letter-spacing: -.025em; color: var(--text); margin-bottom: 14px; }
.s7-subhead { font-size: 15px; line-height: 1.85; color: var(--muted); font-weight: 300; max-width: 400px; }
.s7-body { display: grid; grid-template-columns: 1fr 1fr 420px; gap: 0 64px; align-items: start; }
.s7-faq { border-top: 1px solid var(--border); cursor: pointer; }
.s7-faq:last-child { border-bottom: 1px solid var(--border); }
.s7-faq-q { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 24px 0; user-select: none; }
.s7-faq-q-text { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.3; letter-spacing: -.01em; color: var(--text); transition: color .3s; }
.s7-faq:hover .s7-faq-q-text { color: var(--brown-mid); }
.s7-faq-icon { font-size: 20px; font-weight: 200; color: var(--gold); line-height: 1; flex-shrink: 0; margin-top: 2px; transition: transform .35s cubic-bezier(.4,0,.2,1), color .3s; font-family: "Cormorant Garamond", serif; }
.s7-faq.open .s7-faq-icon { transform: rotate(45deg); color: var(--brown-mid); }
.s7-faq-a { font-size: 14px; line-height: 1.85; color: var(--muted); font-weight: 300; max-height: 0; overflow: hidden; opacity: 0; padding-bottom: 0; transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s cubic-bezier(.4,0,.2,1), opacity .3s ease; }
.s7-faq.open .s7-faq-a { max-height: 200px; opacity: 1; padding-bottom: 24px; }
.s7-img-wrap { position: sticky; top: 120px; overflow: hidden; background: var(--warm); aspect-ratio: 3/4; }
.s7-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }


/* ──────────────────────────────────────────
   S8 — FINAL CTA
────────────────────────────────────────── */
.s8 { background: var(--cream); overflow: hidden; }
.s8-img-wrap { position: relative; width: 100%; height: 80vh; min-height: 480px; max-height: 800px; overflow: hidden; background: var(--warm); }
.s8-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; opacity: 0; transition: opacity 1.4s cubic-bezier(.4,0,.2,1); }
.s8-img-wrap.in img { opacity: 1; }
.s8-img-wrap::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, var(--cream) 0%, rgba(247,242,234,.6) 40%, transparent 100%); pointer-events: none; }
.s8-content { max-width: 680px; margin: 0 auto; padding: 80px 48px 120px; text-align: center; }
.s8-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 24px;
}
.s8-eyebrow > span { width: 24px; height: 1px; background: var(--gold); display: inline-block; }
.s8-heading { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400; font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -.025em; color: var(--text); margin-bottom: 24px; }
.s8-copy { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.85; color: var(--muted); font-weight: 300; max-width: 480px; margin: 0 auto 16px; }
.s8-copy-em { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(18px, 2vw, 24px); line-height: 1.5; color: var(--brown-mid); margin-bottom: 48px; display: block; }
.s8-btn {
  display: inline-block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; background: var(--brown); padding: 18px 56px; text-decoration: none; font-weight: 500;
  border: 1.5px solid var(--brown); margin-bottom: 32px;
  transition: background .35s cubic-bezier(.4,0,.2,1), border-color .35s, transform .25s, box-shadow .35s;
}
.s8-btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(138,20,20,.28); }
.s8-btn:active { transform: none; box-shadow: none; }
.s8-trust { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.s8-trust-item { font-size: 10px; letter-spacing: .14em; color: var(--muted2); font-weight: 400; white-space: nowrap; }
.s8-trust-sep { margin: 0 14px; color: var(--gold); font-size: 8px; }


/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Hero */
  .hero { grid-template-columns: 1fr; grid-template-rows: 52vh auto; min-height: 100dvh; }
  .hero-image { grid-row: 1; overflow: hidden; }
  .hero-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
  .hero-image::before { display: none; }
  .hero-copy { grid-row: 2; padding: 36px 24px 48px; }
  .hero-copy::after { display: none; }
  .hero-h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero-desc { max-width: 100%; }
  .hero-ctas { gap: 16px; }
  .scroll-hint { display: none; }
  /* S2 */
  .s2 { padding: 96px 0; }
  .s2-inner { padding: 0 24px; }
  .s2-cols { grid-template-columns: 1fr; gap: 48px; }
  .s2-img-wrap { aspect-ratio: 4/3; }
  .s2-heading { margin-bottom: 48px; }
  /* S3 */
  .s3 { padding: 96px 0; }
  .s3-inner { padding: 0 24px; }
  .s3-header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 52px; }
  .s3-img-wrap { aspect-ratio: 4/3; margin-bottom: 52px; }
  .s3-points { grid-template-columns: 1fr 1fr; }
  .s3-point { padding: 36px 20px 36px 0; }
  .s3-point + .s3-point { padding-left: 20px; }
  .s3-point:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .s3-point:nth-child(even) { border-right: none; }
  /* S4 */
  .s4 { padding: 96px 0 0; }
  .s4-header { padding: 0 24px; margin-bottom: 64px; }
  .ing-row { grid-template-columns: 1fr; min-height: unset; }
  .ing-img { aspect-ratio: 4/3; position: relative; height: auto; }
  .ing-img img { position: absolute; }
  .ing-copy { padding: 44px 24px; }
  .ing-row--flip .ing-copy { order: 1; padding: 44px 24px; }
  .ing-row--flip .ing-img { order: 0; }
  /* S5 */
  .s5 { padding: 96px 0; }
  .s5-header { padding: 0 24px; margin-bottom: 64px; }
  .s5-scenes { padding: 0 24px; }
  .s5-scene { margin-bottom: 56px; }
  .s5-scene-img { height: 56vw; min-height: 260px; }
  .s5-caption { grid-template-columns: 1fr; gap: 12px; }
  .s5-cta-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  /* S6 */
  .s6 { padding: 96px 0; }
  .s6-inner { padding: 0 24px; }
  .s6-heading { margin-bottom: 52px; }
  .s6-launch-img { height: 60vw; min-height: 280px; }
  .s6-launch-body { grid-template-columns: 1fr; gap: 48px; }
  /* S7 */
  .s7 { padding: 96px 0; }
  .s7-inner { padding: 0 24px; }
  .s7-header { margin-bottom: 56px; }
  .s7-body { grid-template-columns: 1fr; gap: 0; }
  .s7-img-wrap { position: relative; top: auto; aspect-ratio: 4/3; margin-top: 56px; }
  /* S8 */
  .s8-img-wrap { height: 60vw; min-height: 280px; }
  .s8-content { padding: 64px 24px 80px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-copy { padding: 100px 40px 80px 48px; }
  .s2-inner { padding: 0 40px; }
  .s2-cols { gap: 48px; }
  .s3-inner { padding: 0 40px; }
  .s3-header { gap: 48px; }
  .s3-points { grid-template-columns: 1fr 1fr; }
  .s3-point:nth-child(2) { border-right: none; }
  .s3-point:nth-child(-n+2) { border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .s3-point:nth-child(n+3) { padding-top: 40px; }
  .s4-header { padding: 0 40px; }
  .ing-copy, .ing-row--flip .ing-copy { padding: 52px 48px; }
  .ing-row { min-height: 420px; }
  .s5-header { padding: 0 40px; }
  .s5-scenes { padding: 0 40px; }
  .s5-scene-img { height: 55vw; }
  .s5-caption { gap: 32px; }
  .s6-inner { padding: 0 40px; }
  .s6-launch-body { gap: 48px; }
  .s7-inner { padding: 0 40px; }
  .s7-body { grid-template-columns: 1fr 1fr; gap: 0 48px; }
  .s7-img-wrap { display: none; }
  .s8-content { padding: 64px 40px 100px; }
}

@media (min-width: 1200px) {
  .s7-body { grid-template-columns: 1fr 1fr 380px; }
}
