/* ================================================================
   SOVNEAR — WEDDINGS PAGE
   Premium visual system for all wedding content sections.
   Requires: tokens.css (via sovnear.min.css)
   ================================================================ */


/* ══════════════════════════════════════════════════════════════
   SHARED EYEBROW UTILITY
   ══════════════════════════════════════════════════════════════ */

.wed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 20px;
}

.wed-eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════
   §1  PACKAGE INTRO — split: text left, portrait image right
   ══════════════════════════════════════════════════════════════ */

.pkg-intro {
  background: var(--color-green-deep, #2E3D30);
  position: relative;
  overflow: hidden;
}

/* Two-column split */
.pkg-intro__split {
  display: grid;
  grid-template-columns: 1fr 40%;
  min-height: clamp(480px, 62vh, 740px);
}

/* ── Left content panel ── */
.pkg-intro__content {
  padding: clamp(52px, 6.5vw, 100px) clamp(36px, 5.5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.pkg-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 32px;
}

.pkg-intro__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
  flex-shrink: 0;
}

.pkg-intro__price {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-ivory, #FAF6F0);
  margin-bottom: 6px;
}

.pkg-intro__price em {
  font-style: italic;
  color: var(--color-gold-light);
  font-size: 0.70em;
}

.pkg-intro__price-label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.38);
  margin-bottom: clamp(28px, 4vw, 44px);
}

.pkg-intro__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--color-ivory, #FAF6F0);
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.pkg-intro__heading em {
  font-style: italic;
  color: var(--color-gold-light);
}

.pkg-intro__text {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 246, 240, 0.58);
  max-width: 520px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

/* Spec strip */
.pkg-intro__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200, 146, 42, 0.16);
  padding-top: clamp(24px, 3vw, 36px);
}

.pkg-spec {
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(200, 146, 42, 0.12);
  text-align: left;
}

.pkg-spec:last-child { border-right: none; }
.pkg-spec:first-child { padding-left: 0; }
.pkg-spec + .pkg-spec { padding-left: clamp(12px, 2vw, 24px); }

.pkg-spec__num {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1;
  color: var(--color-ivory, #FAF6F0);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.pkg-spec__num em {
  font-style: italic;
  color: var(--color-gold-light);
  font-size: 0.78em;
}

.pkg-spec__label {
  display: block;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.38);
}

/* ── Right image panel ── */
.pkg-intro__media {
  position: relative;
  overflow: hidden;
}

.pkg-intro__media-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transition: transform 600ms ease;
  filter: brightness(0.88) saturate(1.05);
}

.pkg-intro:hover .pkg-intro__media-img {
  transform: scale(1.02);
}

/* Thin left gradient to blend into the dark green panel */
.pkg-intro__media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--color-green-deep, #2E3D30), transparent);
  z-index: 1;
  pointer-events: none;
}

.pkg-intro__media-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.42);
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pkg-intro__split { grid-template-columns: 1fr 38%; }
}

@media (max-width: 768px) {
  .pkg-intro__split {
    grid-template-columns: 1fr;
    grid-template-rows: auto clamp(260px, 50vw, 380px);
  }
  .pkg-intro__content {
    padding: clamp(56px, 8vw, 80px) clamp(24px, 5vw, 48px) 40px;
  }
  .pkg-intro__media { order: -1; }
  .pkg-intro__media::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 40px;
    width: 100%;
    background: linear-gradient(to bottom, var(--color-green-deep, #2E3D30), transparent);
  }
  .pkg-intro__specs { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .pkg-spec:nth-child(2) { border-right: none; }
  .pkg-spec:nth-child(3) { border-right: 1px solid rgba(200,146,42,.12); }
  .pkg-spec:nth-child(3),
  .pkg-spec:nth-child(4) { border-top: 1px solid rgba(200,146,42,.12); padding-top: 20px; }
}

@media (max-width: 480px) {
  .pkg-intro__specs { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   §2  WHAT'S INCLUDED — 3×2 editorial typography grid (no icons)
   ══════════════════════════════════════════════════════════════ */

.included {
  background: var(--color-ivory, #FAF6F0);
  padding: clamp(52px, 6vw, 96px) clamp(24px, 5vw, 80px);
}

.included__inner { max-width: 1240px; margin: 0 auto; }

.included__header {
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.included__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 18px;
}

.included__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
  flex-shrink: 0;
}

.included__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-green-deep, #2E3D30);
  margin-bottom: 14px;
}

.included__heading em { font-style: italic; color: var(--color-gold, #C8922A); }

.included__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(14px, 1.3vw, 15.5px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-slate, #4A4A4A);
  max-width: 520px;
  margin: 0 auto;
}

/* Grid — 3×2 editorial layout */
.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  counter-reset: inc-counter;
}

/* Card */
.inc-card {
  background: #fff;
  padding: clamp(36px, 4vw, 52px) clamp(32px, 3.5vw, 48px) clamp(32px, 3.5vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
  counter-increment: inc-counter;
}

/* Ghost counter — large italic Cormorant numeral, very faint */
.inc-card::after {
  content: counter(inc-counter, decimal-leading-zero);
  position: absolute;
  bottom: clamp(20px, 3vw, 32px);
  right: clamp(24px, 3vw, 40px);
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--color-gold, #C8922A);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 300ms ease;
}

/* Gold top-rule on hover */
.inc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-gold, #C8922A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.inc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(46,61,48,.12);
  z-index: 1;
}
.inc-card:hover::before { transform: scaleX(1); }
.inc-card:hover::after  { opacity: 0.10; }

/* Title — editorial scale, heavier Cormorant weight */
.inc-card__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-green-deep, #2E3D30);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
}

/* Thin gold rule under title */
.inc-card__title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.42);
  margin-top: 16px;
  transition: width 280ms ease;
}

.inc-card:hover .inc-card__title::after { width: 44px; }

.inc-card__title em {
  font-style: italic;
  color: var(--color-gold, #C8922A);
}

.inc-card__desc {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(13px, 1.2vw, 14.5px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(74, 74, 74, 0.82);
  position: relative;
}

/* Responsive — 2-col at tablet, 1-col at mobile */
@media (max-width: 900px) {
  .included__grid { grid-template-columns: repeat(2, 1fr); }
  .inc-card { padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 40px) clamp(36px, 4vw, 48px); }
}
@media (max-width: 560px) {
  .included__grid { grid-template-columns: 1fr; gap: 1px; }
  .inc-card { padding: 40px 28px; }
  .inc-card::after { font-size: 72px; opacity: 0.05; }
}


/* ══════════════════════════════════════════════════════════════
   §3  CEREMONY JOURNEY — 4-panel cinematic photo card grid
   Full visual replacement for the old text timeline
   ══════════════════════════════════════════════════════════════ */

.ceremony-journey {
  background: var(--color-green-deep, #2E3D30);
}

/* Section header */
.ceremony-journey__header {
  padding: clamp(52px, 6vw, 84px) clamp(24px, 5vw, 80px) clamp(36px, 4.5vw, 56px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.ceremony-journey__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 18px;
}

.ceremony-journey__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
  flex-shrink: 0;
}

.ceremony-journey__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-ivory, #FAF6F0);
  margin-bottom: 18px;
}

.ceremony-journey__heading em { font-style: italic; color: var(--color-gold-light); }

.ceremony-journey__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  line-height: 1.80;
  color: rgba(250, 246, 240, 0.52);
}

/* 5-column photo card grid — full bleed, no gap */
.ceremony-journey__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: clamp(400px, 44vw, 560px);
}

/* Epilogue card — visual cue that Day 3 is a gentle send-off, not a main act */
.cj-card--epilogue .cj-card__overlay {
  background: linear-gradient(
    to top,
    rgba(5, 10, 6, 0.92) 0%,
    rgba(46, 61, 48, 0.55) 32%,
    rgba(46, 61, 48, 0.18) 64%,
    rgba(5, 10, 6, 0.02) 100%
  );
}
.cj-card--epilogue .cj-card__day { color: var(--color-gold-light); }

/* Individual card */
.cj-card {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: default;
  transition: flex 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Deep gradient overlay — stronger at bottom for text legibility */
.cj-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 10, 6, 0.95) 0%,
    rgba(5, 10, 6, 0.65) 30%,
    rgba(5, 10, 6, 0.22) 60%,
    rgba(5, 10, 6, 0.04) 100%
  );
  transition: background 400ms ease;
}

/* Vertical gold left-rule — appears on hover */
.cj-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-gold, #C8922A) 30%, var(--color-gold, #C8922A) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 2;
}

.cj-card:hover::before { opacity: 1; }

/* Content sits at the bottom */
.cj-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(22px, 2.2vw, 36px);
  z-index: 2;
}

/* Day label with gold dot */
.cj-card__day {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 10px;
}

.cj-card__day-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold, #C8922A);
  flex-shrink: 0;
}

/* Event headline — sized for 5-col grid so two-word names sit on one line */
.cj-card__event {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(22px, 1.95vw, 30px);
  font-weight: 400;
  line-height: 1.16;
  color: var(--color-ivory, #FAF6F0);
  letter-spacing: -0.015em;
  margin-bottom: 0;
  transition: margin-bottom 350ms ease;
}

.cj-card__event em { font-style: italic; color: var(--color-gold-light); }

/* Description — revealed on hover */
.cj-card__desc {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(12.5px, 1.1vw, 14px);
  font-weight: 300;
  line-height: 1.72;
  color: rgba(250, 246, 240, 0.70);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 400ms ease, opacity 350ms 60ms ease, margin-top 350ms ease;
}

.cj-card:hover .cj-card__event { margin-bottom: 12px; }
.cj-card:hover .cj-card__desc { max-height: 100px; opacity: 1; margin-top: 0; }

/* Space / venue tag */
.cj-card__space {
  display: block;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.38);
  border-top: 1px solid rgba(200, 146, 42, 0.22);
  padding-top: 10px;
  margin-top: 14px;
  transition: color 300ms ease, border-color 300ms ease;
}

.cj-card:hover .cj-card__space {
  color: rgba(250, 246, 240, 0.55);
  border-color: rgba(200, 146, 42, 0.38);
}

/* ── Responsive ── */

/* Wide tablet / small desktop: 6-col grid; row 1 = 3 cards @ 2-col each,
   row 2 = 2 cards @ 3-col each. Visually balanced, intentional pause before epilogue. */
@media (max-width: 1100px) {
  .ceremony-journey__grid {
    grid-template-columns: repeat(6, 1fr);
    height: auto;
  }
  .cj-card {
    height: clamp(360px, 42vw, 480px);
  }
  .cj-card:nth-child(1),
  .cj-card:nth-child(2),
  .cj-card:nth-child(3) { grid-column: span 2; }
  .cj-card:nth-child(4),
  .cj-card:nth-child(5) { grid-column: span 3; }
  .cj-card__event { font-size: clamp(22px, 2.6vw, 30px); }
}

/* Tablet: 2 columns; 5th (epilogue) spans full width as final beat */
@media (max-width: 960px) {
  .ceremony-journey__grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .cj-card {
    height: clamp(340px, 44vw, 480px);
  }
  .cj-card:nth-child(1),
  .cj-card:nth-child(2),
  .cj-card:nth-child(3),
  .cj-card:nth-child(4) { grid-column: span 1; }
  .cj-card:nth-child(5) {
    grid-column: 1 / -1;
    height: clamp(260px, 38vw, 360px);
  }
  /* Always show desc at tablet — no reliable hover */
  .cj-card__desc {
    max-height: none;
    opacity: 1;
    margin-top: 12px;
  }
  .cj-card__event { margin-bottom: 10px; }
}

/* Mobile ≤768px — hide description, image leads */
@media (max-width: 768px) {
  .cj-card__desc { display: none; }
  .cj-card__event { margin-bottom: 0; }
}

/* Mobile: single column */
@media (max-width: 600px) {
  .ceremony-journey__grid {
    grid-template-columns: 1fr;
  }
  .cj-card {
    height: clamp(320px, 70vw, 420px);
  }
  .cj-card:nth-child(5) {
    grid-column: auto;
    height: clamp(240px, 50vw, 320px);
  }
  .ceremony-journey__header {
    padding: clamp(56px, 8vw, 80px) 24px clamp(36px, 5vw, 52px);
  }
}


/* ══════════════════════════════════════════════════════════════
   §4  WEDDING GALLERY STRIP — expanding accordion panels
   ══════════════════════════════════════════════════════════════ */

.wed-gallery {
  display: flex;
  height: clamp(200px, 26vw, 360px);
  overflow: hidden;
}

.wed-gallery__img {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 520ms cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 520ms ease;
  filter: brightness(0.90) saturate(1.05);
  cursor: pointer;
  position: relative;
}

.wed-gallery__img:hover {
  flex: 2.5;
  filter: brightness(1.02) saturate(1.12);
}

@media (max-width: 600px) {
  .wed-gallery { height: clamp(160px, 44vw, 240px); }
  .wed-gallery__img:hover { flex: 1.8; }
}


/* ══════════════════════════════════════════════════════════════
   §5  EVENT TYPES — 3 tall photo cards
   ══════════════════════════════════════════════════════════════ */

.evt-types {
  background: var(--color-ivory, #FAF6F0);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.evt-types__inner { max-width: 1240px; margin: 0 auto; }

.evt-types__header {
  text-align: center;
  margin-bottom: clamp(40px, 5.5vw, 64px);
}

.evt-types__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 16px;
}

.evt-types__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
  flex-shrink: 0;
}

.evt-types__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-green-deep, #2E3D30);
}

.evt-types__heading em { font-style: italic; color: var(--color-gold, #C8922A); }

.evt-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.et-card {
  position: relative;
  height: clamp(400px, 48vw, 600px);
  overflow: hidden;
  border-radius: 2px;
}

.et-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 600ms ease;
  filter: brightness(0.84) saturate(1.08);
}

.et-card:hover .et-card__bg { transform: scale(1.04); filter: brightness(0.80) saturate(1.14); }

.et-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,10,0.90) 0%, rgba(10,18,10,0.52) 36%, rgba(10,18,10,0.10) 66%, transparent 100%);
  transition: background 400ms ease;
}

.et-card:hover .et-card__overlay {
  background: linear-gradient(to top, rgba(10,18,10,0.92) 0%, rgba(10,18,10,0.58) 40%, rgba(10,18,10,0.14) 70%, transparent 100%);
}

.et-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(24px, 3vw, 40px);
}

.et-card__body::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-gold-light);
  margin-bottom: 14px;
  opacity: 0.70;
  transition: width 320ms ease, opacity 320ms ease;
}

.et-card:hover .et-card__body::before { width: 46px; opacity: 1; }

.et-card__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-ivory, #FAF6F0);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.et-card__title em { font-style: italic; color: var(--color-gold-light); }

.et-card__desc {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(13px, 1.2vw, 14.5px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 246, 240, 0.68);
  max-width: 360px;
  transform: translateY(5px);
  opacity: 0.80;
  transition: transform 320ms ease, opacity 320ms ease;
}

.et-card:hover .et-card__desc { transform: translateY(0); opacity: 1; }

@media (max-width: 900px) {
  .evt-types__grid { grid-template-columns: 1fr; gap: 16px; }
  .et-card { height: clamp(300px, 55vw, 460px); }
  .et-card__desc { transform: none; opacity: 1; }
}

@media (max-width: 600px) {
  .et-card { height: clamp(280px, 66vw, 380px); }
}


/* ══════════════════════════════════════════════════════════════
   §6  TESTIMONIAL — full image background with overlay
   ══════════════════════════════════════════════════════════════ */

.wed-quote {
  position: relative;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Background image */
.wed-quote__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.35) saturate(0.80);
  z-index: -2;
}

/* Dark green tint overlay on top of the image */
.wed-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 14, 0.62);
  z-index: -1;
}

.wed-quote__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* Large decorative quotation mark */
.wed-quote__mark {
  display: block;
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.55;
  color: var(--color-gold, #C8922A);
  opacity: 0.28;
  margin-bottom: 12px;
  user-select: none;
  pointer-events: none;
}

.wed-quote__text {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.58;
  letter-spacing: -0.01em;
  color: var(--color-ivory, #FAF6F0);
  margin-bottom: clamp(28px, 4vw, 48px);
}

/* Divider */
.wed-quote__inner::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(200, 146, 42, 0.55);
  margin: 0 auto 22px;
}

.wed-quote__author {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 6px;
}

.wed-quote__occasion {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 240, 0.38);
}

/* Gold rule between quote and author */
.wed-quote__rule {
  width: 40px;
  height: 1px;
  background: rgba(200, 146, 42, 0.55);
  margin: 0 auto 22px;
}

/* Remove the old ::after rule that was appended at the wrong position */
.wed-quote__inner::after { display: none; }


/* ══════════════════════════════════════════════════════════════
   §7  EDITORIAL STATEMENT — full-width dark quote section
   ══════════════════════════════════════════════════════════════ */

.wed-editorial {
  background: #060d07;
  padding: clamp(48px, 6vw, 88px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wed-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.wed-editorial__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.wed-editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 32px;
}

.wed-editorial__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.38);
  flex-shrink: 0;
}

.wed-editorial__quote {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 4.2vw, 60px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.24;
  letter-spacing: -0.025em;
  color: var(--color-ivory, #FAF6F0);
  margin: 0 0 40px;
}

.wed-editorial__quote em {
  font-style: normal;
  color: var(--color-gold-light);
}

.wed-editorial__orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.wed-editorial__orn-line {
  width: 40px;
  height: 1px;
  background: rgba(200, 146, 42, 0.38);
}

.wed-editorial__orn-diamond {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(200, 146, 42, 0.68);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.wed-editorial__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(13.5px, 1.3vw, 15.5px);
  font-weight: 300;
  line-height: 1.88;
  color: rgba(250, 246, 240, 0.48);
  max-width: 560px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   §8  PLANNING PROCESS — 3-step how it works
   ══════════════════════════════════════════════════════════════ */

.wed-process {
  background: var(--color-ivory-warm, #F5EFE4);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.wed-process__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wed-process__header {
  text-align: center;
  margin-bottom: clamp(52px, 7vw, 84px);
}

.wed-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 18px;
}

.wed-process__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
  flex-shrink: 0;
}

.wed-process__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-green-deep, #2E3D30);
  margin-bottom: 14px;
}

.wed-process__heading em { font-style: italic; color: var(--color-gold, #C8922A); }

.wed-process__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(13.5px, 1.3vw, 15.5px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-slate, #4A4A4A);
  max-width: 480px;
  margin: 0 auto;
}

.wed-process__steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  gap: 0 clamp(16px, 3vw, 48px);
}

/* connecting rule between step circles */
.wed-process__steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(33.33% - 28px);
  right: calc(33.33% - 28px);
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(200,146,42,0.28) 15%,
    rgba(200,146,42,0.28) 85%,
    transparent
  );
  pointer-events: none;
}

.wp-step {
  text-align: center;
  padding: 0 clamp(12px, 2vw, 32px);
}

.wp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, 0.32);
  background: var(--color-ivory-warm, #F5EFE4);
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold, #C8922A);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: border-color 280ms ease, box-shadow 280ms ease;
}

.wp-step:hover .wp-step__num {
  border-color: rgba(200, 146, 42, 0.65);
  box-shadow: 0 0 0 4px rgba(200, 146, 42, 0.08);
}

.wp-step__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-green-deep, #2E3D30);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.wp-step__title em { font-style: italic; color: var(--color-gold, #C8922A); }

.wp-step__desc {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--color-slate, #4A4A4A);
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .wed-process__steps { grid-template-columns: 1fr; gap: 44px; }
  .wed-process__steps::before { display: none; }
  .wp-step { padding: 0; }
}


/* ══════════════════════════════════════════════════════════════
   §9  GALLERY CTA STRIP — "View Full Gallery" link below strip
   ══════════════════════════════════════════════════════════════ */

.wed-gallery__cta {
  background: var(--color-green-deep, #2E3D30);
  padding: 14px clamp(24px, 5vw, 80px);
  text-align: right;
}

.wed-gallery__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(200, 146, 42, 0.72);
  transition: color 240ms ease, gap 240ms ease;
}

.wed-gallery__cta-link svg {
  width: 16px;
  height: 16px;
  transition: transform 240ms ease;
}

.wed-gallery__cta-link:hover { color: var(--color-gold-light); gap: 12px; }
.wed-gallery__cta-link:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════════════════════════
   §10  CTA SECTION — weddings modifier with subtle bg image
   ══════════════════════════════════════════════════════════════ */

.vcta--weddings {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: none;
}

.vcta--weddings .vcta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/sovnear/sov-aerial-estate.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.18) saturate(0.60);
  z-index: -1;
}

/* ── Dark-background colour overrides ──
   The .vcta base uses light-bg colours (green-deep, slate).
   Flip everything to ivory / gold for legibility on near-black. */

.vcta--weddings .vcta__eyebrow {
  color: var(--color-gold-muted);
}

.vcta--weddings .vcta__eyebrow-rule {
  background: rgba(200, 146, 42, 0.42);
}

.vcta--weddings .vcta__heading {
  color: var(--color-ivory, #FAF6F0);
}

.vcta--weddings .vcta__heading em {
  color: var(--color-gold-light);
}

.vcta--weddings .vcta__sub {
  color: rgba(250, 246, 240, 0.62);
}

/* Scarcity line */
.vcta__scarcity {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 14px;
  opacity: 0.80;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile — soften tracking + size so the longer scarcity line wraps gracefully */
@media (max-width: 768px) {
  .vcta__scarcity {
    font-size: 9.5px;
    letter-spacing: 0.20em;
    line-height: 1.85;
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .vcta__scarcity {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
}

/* Primary CTA: gold on dark = premium */
.vcta--weddings .vcta__btn:not(.vcta__btn--ghost) {
  background: var(--color-gold, #C8922A);
  color: #0c160d;
  border-radius: 2px;
}
.vcta--weddings .vcta__btn:not(.vcta__btn--ghost):hover {
  background: var(--color-gold-deep, #9A6E1C);
  color: var(--color-ivory, #FAF6F0);
}

/* Ghost CTA: ivory outline on dark — was nearly invisible */
.vcta--weddings .vcta__btn--ghost {
  background: transparent;
  color: rgba(250, 246, 240, 0.82);
  border: 1px solid rgba(250, 246, 240, 0.28);
  border-radius: 2px;
}
.vcta--weddings .vcta__btn--ghost:hover {
  background: rgba(250, 246, 240, 0.09);
  color: var(--color-ivory, #FAF6F0);
  border-color: rgba(250, 246, 240, 0.55);
}

/* Tighten button gap — 40px reads as disconnected on a centred layout */
.vcta--weddings .vcta__actions {
  gap: clamp(14px, 2.5vw, 28px);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .vcta__actions { flex-direction: column; }
  .wed-process__steps { gap: 36px; }
}

/* Full-width buttons on small mobile */
@media (max-width: 480px) {
  .vcta--weddings .vcta__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .vcta--weddings .vcta__btn {
    max-width: 260px;
  }
}


/* ══════════════════════════════════════════════════════════════
   ADDITIONS — audit fixes
   ══════════════════════════════════════════════════════════════ */

/* § A  International price note under ₹1 Crore */
.pkg-intro__price-intl {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 240, 0.28);
  line-height: 1.6;
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 480px;
}

/* § B  Testimonial carousel — compact cinematic quote stage */
.wed-testimonials {
  background: var(--color-green-deep, #2E3D30);
  padding: clamp(40px, 4.5vw, 64px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

/* Subtle warm radial glow */
.wed-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 52%, rgba(200,146,42,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.wed-testimonials__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

/* Eyebrow */
.wed-testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: clamp(18px, 2vw, 28px);
}

.wed-testimonials__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.34);
  flex-shrink: 0;
}

/* ── Carousel stage — CSS grid stacking ── */
.wtm-stage {
  display: grid;
  grid-template-areas: "stage";
  margin-bottom: clamp(18px, 2vw, 28px);
}

.wtm-slide {
  grid-area: stage;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 600ms;
  pointer-events: none;
  visibility: hidden;
}

.wtm-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

/* Centred inner content */
.wtm-slide__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Decorative mark — hidden; gold left-rule on blockquote instead */
.wtm-slide__mark {
  display: none;
}

/* The quote — precise, elegant scale */
.wtm-slide__text {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.60;
  letter-spacing: -0.008em;
  color: var(--color-ivory, #FAF6F0);
  max-width: 680px;
  margin-bottom: clamp(18px, 2vw, 26px);
  position: relative;
}

/* Thin gold left-rule — replaces the big mark, costs no vertical space */
.wtm-slide__text::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(200, 146, 42, 0.55);
  margin: 0 auto clamp(12px, 1.5vw, 18px);
}

/* Attribution */
.wtm-slide__attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Ornamental divider: line · diamond · line */
.wtm-slide__orn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.wtm-slide__orn-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
}

.wtm-slide__orn-diamond {
  display: inline-block;
  width: 4px;
  height: 4px;
  border: 1px solid rgba(200, 146, 42, 0.62);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.wtm-slide__name {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 3px;
}

.wtm-slide__detail {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 240, 0.32);
}

/* ── Progress bar navigation ── */
.wtm-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wtm-nav__bar {
  position: relative;
  width: 52px;
  height: 1px;
  background: rgba(200, 146, 42, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Expanded click/tap target */
.wtm-nav__bar::before {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -4px;
  right: -4px;
}

.wtm-nav__bar:focus-visible {
  outline: 1px solid rgba(200, 146, 42, 0.50);
  outline-offset: 4px;
}

/* Gold fill bar */
.wtm-nav__fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: var(--color-gold, #C8922A);
  display: block;
}

/* Animate fill on active bar */
@keyframes wtm-progress {
  from { width: 0% }
  to   { width: 100% }
}

.wtm-nav__bar.is-active .wtm-nav__fill {
  animation: wtm-progress 7s linear forwards;
}

.wtm-nav__bar.is-paused .wtm-nav__fill {
  animation-play-state: paused;
}

.wtm-nav__bar.is-done .wtm-nav__fill {
  width: 100%;
  animation: none;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .wed-testimonials { padding: clamp(32px, 5vw, 52px) 24px; }
  .wtm-nav__bar { width: 40px; }
  .wtm-slide__text { font-size: clamp(17px, 3.8vw, 21px); }
}

@media (max-width: 480px) {
  .wed-testimonials { padding: 32px 20px; }
  .wtm-nav__bar { width: 32px; gap: 6px; }
  .wtm-slide__text { font-size: clamp(16px, 4.2vw, 19px); line-height: 1.65; }
  .wtm-stage { margin-bottom: 16px; }
}


/* § C  WhatsApp note in the CTA section */
.vcta__wa-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(46, 61, 48, 0.62);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(46, 61, 48, 0.10);
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vcta__wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #1a9e47;
  transition: color 200ms ease, opacity 200ms ease;
  white-space: nowrap;
}

.vcta__wa-link svg {
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.vcta__wa-link:hover { color: #158a3a; opacity: 0.88; }

/* ── CTA dark variant (vcta--weddings has dark bg image) ── */
.vcta--weddings .vcta__wa-note {
  color: rgba(250, 246, 240, 0.72);   /* was 0.38 — now clearly readable */
  border-top-color: rgba(250, 246, 240, 0.14);
}

.vcta--weddings .vcta__wa-link {
  color: #4ADE80;                     /* bright mint — high contrast on dark bg */
  font-weight: 500;
}

.vcta--weddings .vcta__wa-link:hover { color: #6EF09A; opacity: 1; }

/* ── Mobile ── */
@media (max-width: 600px) {
  .vcta__wa-note {
    font-size: 12.5px;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
    margin-top: 28px;
  }
}

@media (max-width: 400px) {
  .vcta__wa-note { font-size: 12px; }
}


/* ════════════════════════════════════════════════════════════════
   ════════════════════════════════════════════════════════════════
   §11  PREMIUM REBUILD — Movements III, IV, V, VII, VIII, X, XII
   Editorial-grade conversion architecture for the ₹1 Cr decision.
   ════════════════════════════════════════════════════════════════
   ════════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────
   §11.1  MOVEMENT III · SINGULARITY
   The scarcity reveal — sets up the price by establishing rarity.
   ────────────────────────────────────────────────────────────── */

.wed-singular {
  position: relative;
  background: #050a06;
  padding: clamp(72px, 10vw, 140px) clamp(24px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
}

.wed-singular__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/sovnear/sov-aerial-grounds.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.18) saturate(0.7) blur(2px);
  z-index: -2;
  transform: scale(1.05);
}

.wed-singular::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,146,42,0.08) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5,10,6,0.55) 0%, rgba(5,10,6,0.85) 100%);
  z-index: -1;
}

.wed-singular__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.wed-singular__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 36px;
}

.wed-singular__eyebrow-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(200, 146, 42, 0.40);
  flex-shrink: 0;
}

.wed-singular__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(34px, 5.8vw, 78px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--color-ivory, #FAF6F0);
  margin: 0 0 36px;
}

.wed-singular__heading em {
  font-style: italic;
  color: var(--color-gold-light);
}

.wed-singular__rule {
  width: 60px;
  height: 1px;
  background: rgba(200, 146, 42, 0.55);
  margin: 0 auto 36px;
}

.wed-singular__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(14px, 1.3vw, 16.5px);
  font-weight: 300;
  line-height: 1.92;
  color: rgba(250, 246, 240, 0.62);
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.wed-singular__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}

.ws-stat {
  text-align: center;
  flex: 0 0 auto;
}

.ws-stat__num {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}

.ws-stat__label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.52);
}

.ws-stat__rule {
  width: 1px;
  height: 64px;
  background: rgba(200, 146, 42, 0.18);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .wed-singular__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .ws-stat__rule { display: none; }
}

@media (max-width: 480px) {
  .ws-stat__num { font-size: clamp(42px, 13vw, 64px); }
  .ws-stat__label { font-size: 9px; letter-spacing: 0.18em; }
}


/* ──────────────────────────────────────────────────────────────
   §11.2  MOVEMENT IV · THE STANDARD
   Cinematic price reveal — earns the right to the number.
   ────────────────────────────────────────────────────────────── */

.wed-standard {
  position: relative;
  padding: clamp(80px, 11vw, 160px) clamp(24px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
  background: var(--color-green-deep, #2E3D30);
}

.wed-standard__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/sovnear/sov-estate-golden.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.42) saturate(1.10) contrast(1.04);
  z-index: -2;
  transform: scale(1.04);
}

.wed-standard__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(46,61,48,0.45) 0%, rgba(5,10,6,0.78) 75%),
    linear-gradient(to bottom, rgba(5,10,6,0.40) 0%, rgba(5,10,6,0.10) 30%, rgba(5,10,6,0.10) 70%, rgba(5,10,6,0.55) 100%);
  z-index: -1;
}

.wed-standard__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.wed-standard__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 36px;
}

.wed-standard__eyebrow-rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(200, 146, 42, 0.50);
  flex-shrink: 0;
}

.wed-standard__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(32px, 4.6vw, 62px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--color-ivory, #FAF6F0);
  margin: 0 0 clamp(48px, 6vw, 72px);
}

.wed-standard__heading em {
  font-style: italic;
  color: var(--color-gold-light);
}

/* ── Enquiry Invite Block (replaces price block) ── */
.wed-standard__enquiry-block {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.wed-standard__enq-label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.65);
  margin-bottom: 24px;
}

.wed-standard__enq-statement {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(54px, 9vw, 128px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-ivory, #FAF6F0);
  margin: 0 0 36px;
}

.wed-standard__enq-statement em {
  font-style: italic;
  color: var(--color-gold-light);
}

.wed-standard__enq-body {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 246, 240, 0.55);
  letter-spacing: 0.02em;
  max-width: 500px;
  margin: 0 auto 40px;
}

.wed-standard__enq-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0c160d;
  background: var(--color-gold, #C8922A);
  text-decoration: none;
  padding: 18px 40px;
  border: 1px solid var(--color-gold, #C8922A);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  margin-bottom: 20px;
}

.wed-standard__enq-cta:hover {
  background: transparent;
  color: var(--color-gold-light);
  border-color: rgba(200, 146, 42, 0.55);
  box-shadow: 0 0 40px rgba(200, 146, 42, 0.12);
}

.wed-standard__enq-cta:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

.wed-standard__enq-note {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.35);
  letter-spacing: 0.12em;
  margin: 0;
}

@media (max-width: 768px) {
  .wed-standard__enq-statement { font-size: clamp(44px, 14vw, 72px); }
  .wed-standard__enq-cta { padding: 16px 28px; width: 100%; justify-content: center; }
  .wed-standard__enq-body { font-size: 14px; }
}

@media (max-width: 480px) {
  .wed-standard__enq-statement { font-size: clamp(40px, 16vw, 60px); }
}

.wed-standard__orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.wed-standard__orn-line {
  width: 48px;
  height: 1px;
  background: rgba(200, 146, 42, 0.45);
}

.wed-standard__orn-diamond {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(200, 146, 42, 0.75);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.wed-standard__signature {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.78);
  max-width: 640px;
  margin: 0 auto 12px;
  letter-spacing: -0.005em;
  border: none;
  padding: 0;
}

.wed-standard__signature-attr {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin: 0 0 clamp(56px, 7vw, 88px);
}

.wed-standard__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200, 146, 42, 0.20);
  padding-top: clamp(28px, 4vw, 44px);
  max-width: 720px;
  margin: 0 auto;
}

.wed-standard__specs .ws-spec {
  text-align: center;
  border-right: 1px solid rgba(200, 146, 42, 0.14);
  padding: 0 clamp(8px, 1.5vw, 16px);
}

.wed-standard__specs .ws-spec:last-child { border-right: none; }

.wed-standard__specs .ws-spec__num {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 300;
  line-height: 1;
  color: var(--color-ivory, #FAF6F0);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.wed-standard__specs .ws-spec__num em {
  font-style: italic;
  color: var(--color-gold-light);
  font-size: 0.72em;
}

.wed-standard__specs .ws-spec__label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.45);
}

@media (max-width: 768px) {
  .wed-standard__specs {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
  .wed-standard__specs .ws-spec:nth-child(2) { border-right: none; }
  .wed-standard__specs .ws-spec:nth-child(3),
  .wed-standard__specs .ws-spec:nth-child(4) {
    border-top: 1px solid rgba(200, 146, 42, 0.14);
    padding-top: 24px;
  }
  .wed-standard__specs .ws-spec:nth-child(3) { border-right: 1px solid rgba(200, 146, 42, 0.14); }
}


/* ──────────────────────────────────────────────────────────────
   §11.3  MOVEMENT V · THE SOVNEAR MANIFEST
   Eight chapters of granular inclusion.
   ────────────────────────────────────────────────────────────── */

.wed-manifest {
  background: var(--color-ivory, #FAF6F0);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 5vw, 80px);
  position: relative;
}

.wed-manifest__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wed-manifest__header {
  text-align: center;
  margin-bottom: clamp(48px, 5.5vw, 72px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.wed-manifest__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 22px;
}

.wed-manifest__eyebrow-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(200, 146, 42, 0.45);
  flex-shrink: 0;
}

.wed-manifest__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-green-deep, #2E3D30);
  margin: 0 0 clamp(28px, 3.5vw, 44px);
}

.wed-manifest__heading em {
  font-style: italic;
  color: var(--color-gold, #C8922A);
}

.wed-manifest__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(14px, 1.3vw, 15.5px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(74, 74, 74, 0.86);
  max-width: 620px;
  margin: 0 auto 32px;
}

/* wed-manifest__index removed — redundant with chapter accordion below */

/* Chapter — uses native <details> for accessibility */
.wm-chapter {
  background: #fff;
  margin-bottom: 12px;
  border: 1px solid rgba(46, 61, 48, 0.07);
  border-left: 3px solid rgba(200, 146, 42, 0.18);
  transition: border-color 280ms ease, box-shadow 280ms ease;
  overflow: hidden;
}

.wm-chapter[open],
.wm-chapter:hover {
  border-left-color: var(--color-gold, #C8922A);
  box-shadow: 0 8px 28px rgba(46, 61, 48, 0.06);
}

.wm-chapter__summary {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(20px, 2.5vw, 32px) clamp(20px, 3vw, 40px);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 240ms ease;
}

.wm-chapter__summary::-webkit-details-marker { display: none; }
.wm-chapter__summary::marker { display: none; }

.wm-chapter__summary:hover {
  background: rgba(200, 146, 42, 0.03);
}

.wm-chapter__roman {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--color-gold, #C8922A);
  letter-spacing: -0.01em;
  text-align: left;
}

.wm-chapter__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-green-deep, #2E3D30);
  letter-spacing: -0.018em;
}

.wm-chapter__title em {
  font-style: italic;
  color: var(--color-gold, #C8922A);
}

.wm-chapter__count {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(74, 74, 74, 0.48);
  white-space: nowrap;
}

.wm-chapter__chevron {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.wm-chapter__chevron::before,
.wm-chapter__chevron::after {
  content: '';
  position: absolute;
  background: var(--color-gold, #C8922A);
  transition: transform 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 240ms ease;
}

.wm-chapter__chevron::before {
  top: 8px; left: 0;
  width: 18px; height: 1px;
}

.wm-chapter__chevron::after {
  top: 0; left: 8px;
  width: 1px; height: 18px;
}

.wm-chapter[open] .wm-chapter__chevron::after {
  transform: scaleY(0);
  opacity: 0;
}

.wm-chapter__body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border-top: 1px solid rgba(46, 61, 48, 0.07);
  animation: wm-chapter-open 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes wm-chapter-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wm-chapter__media {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  position: relative;
}

.wm-chapter__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,61,48,0.08), transparent 40%);
}

.wm-chapter__items {
  list-style: none;
  margin: 0;
  padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px clamp(20px, 3vw, 36px);
}

.wm-chapter__items li {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(74, 74, 74, 0.88);
  padding-left: 18px;
  position: relative;
}

.wm-chapter__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--color-gold, #C8922A);
}

@media (max-width: 900px) {
  .wm-chapter__body { grid-template-columns: 1fr; }
  .wm-chapter__media { min-height: 200px; }
  .wm-chapter__items { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  /* (manifest index removed) */
}

@media (max-width: 600px) {
  .wm-chapter__summary {
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    padding: 20px 18px;
  }
  .wm-chapter__count { display: none; }
  .wm-chapter__title { font-size: 19px; }
  .wm-chapter__roman { font-size: 22px; }
  .wm-chapter__items { padding: 24px 22px; }
  .wm-chapter__items li { font-size: 13px; }
  /* (manifest index removed) */
}


/* ──────────────────────────────────────────────────────────────
   §11.4  MOVEMENT VII · THE ATELIER
   The team behind the day — humanises the price.
   ────────────────────────────────────────────────────────────── */

.wed-atelier {
  background: var(--color-ivory-warm, #F5EFE4);
  position: relative;
  overflow: hidden;
}

.wed-atelier__split {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: clamp(560px, 70vh, 820px);
}

.wed-atelier__media {
  position: relative;
  overflow: hidden;
}

.wed-atelier__media-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.86) saturate(1.06) contrast(1.02);
  transition: transform 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wed-atelier:hover .wed-atelier__media-img {
  transform: scale(1.03);
}

.wed-atelier__media-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, rgba(245, 239, 228, 0.50) 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(46, 61, 48, 0.30) 100%);
  pointer-events: none;
}

.wed-atelier__media-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.78);
  z-index: 2;
  padding: 8px 14px;
  background: rgba(5, 10, 6, 0.42);
  backdrop-filter: blur(6px);
}

.wed-atelier__content {
  padding: clamp(60px, 7vw, 120px) clamp(36px, 5.5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wed-atelier__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 26px;
}

.wed-atelier__eyebrow-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(200, 146, 42, 0.45);
  flex-shrink: 0;
}

.wed-atelier__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--color-green-deep, #2E3D30);
  margin: 0 0 26px;
}

.wed-atelier__heading em {
  font-style: italic;
  color: var(--color-gold, #C8922A);
}

.wed-atelier__lead {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  line-height: 1.88;
  color: rgba(74, 74, 74, 0.88);
  margin: 0 0 36px;
  max-width: 540px;
}

.wed-atelier__roles {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px clamp(20px, 3vw, 36px);
}

.wa-role {
  padding: 14px 16px;
  border-left: 1px solid rgba(200, 146, 42, 0.32);
  background: rgba(200, 146, 42, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wa-role__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--color-green-deep, #2E3D30);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.3;
}

/* Closing line that resolves the "47 named" math (6 visible + 41 specialists) */
.wed-atelier__roles-coda {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 12.5px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(46, 61, 48, 0.62);
  letter-spacing: 0.02em;
  margin: -12px 0 28px;
  padding-left: 2px;
}

.wed-atelier__signature {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-green-deep, #2E3D30);
  letter-spacing: 0.04em;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 146, 42, 0.28);
}

.wed-atelier__signature em {
  font-style: italic;
  color: var(--color-gold, #C8922A);
}

@media (max-width: 960px) {
  .wed-atelier__split {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(280px, 50vw, 420px) auto;
  }
  .wed-atelier__roles { grid-template-columns: 1fr; gap: 18px; }
  .wed-atelier__roles-coda { margin: -4px 0 24px; font-size: 12.5px; }
}

@media (max-width: 480px) {
  .wed-atelier__content { padding: 56px 24px 64px; }
  .wed-atelier__roles-coda { font-size: 12px; line-height: 1.65; margin: 0 0 22px; }
}


/* ──────────────────────────────────────────────────────────────
   §11.5  MOVEMENT VIII · PROVENANCE
   Press, awards, credibility.
   ────────────────────────────────────────────────────────────── */

.wed-provenance {
  background: #f9f4ea;
  border-top: 1px solid rgba(200, 146, 42, 0.12);
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px);
  text-align: center;
}

.wed-provenance__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.wed-provenance__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 22px;
}

.wed-provenance__eyebrow-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(200, 146, 42, 0.45);
  flex-shrink: 0;
}

.wed-provenance__lead {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(46, 61, 48, 0.80);
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  letter-spacing: -0.005em;
}

.wed-provenance__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3.5vw, 56px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid rgba(200, 146, 42, 0.18);
  border-bottom: 1px solid rgba(200, 146, 42, 0.18);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.wp-logo {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(46, 61, 48, 0.55);
  white-space: nowrap;
  transition: color 240ms ease;
  cursor: default;
}

.wp-logo:hover {
  color: var(--color-green-deep, #2E3D30);
}

.wed-provenance__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 36px);
}

.wp-stat { text-align: center; }

.wp-stat__num {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-green-deep, #2E3D30);
  margin-bottom: 10px;
}

.wp-stat__num em {
  font-style: italic;
  color: var(--color-gold, #C8922A);
  font-size: 0.72em;
}

.wp-stat__label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(74, 74, 74, 0.58);
}

@media (max-width: 720px) {
  .wed-provenance__logos { gap: 14px 24px; }
  .wp-logo { font-size: 10px; letter-spacing: 0.20em; }
  .wed-provenance__stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}


/* ──────────────────────────────────────────────────────────────
   §11.6  MOVEMENT X · CONSIDERED CONCERNS (FAQ)
   Editorial accordion that converts hesitation to confidence.
   ────────────────────────────────────────────────────────────── */

.wed-faq {
  background: var(--color-ivory, #FAF6F0);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.wed-faq__inner {
  max-width: 920px;
  margin: 0 auto;
}

.wed-faq__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.wed-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold, #C8922A);
  margin-bottom: 22px;
}

.wed-faq__eyebrow-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(200, 146, 42, 0.45);
  flex-shrink: 0;
}

.wed-faq__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--color-green-deep, #2E3D30);
  margin: 0 0 16px;
}

.wed-faq__heading em {
  font-style: italic;
  color: var(--color-gold, #C8922A);
}

.wed-faq__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(13.5px, 1.3vw, 15.5px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(74, 74, 74, 0.78);
  max-width: 600px;
  margin: 0 auto;
}

.wed-faq__list {
  border-top: 1px solid rgba(46, 61, 48, 0.10);
}

.wf-item {
  border-bottom: 1px solid rgba(46, 61, 48, 0.10);
  transition: background 240ms ease;
}

.wf-item:hover {
  background: rgba(200, 146, 42, 0.02);
}

.wf-item__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 2.5vw, 32px) clamp(8px, 2vw, 20px);
  cursor: pointer;
  list-style: none;
}

.wf-item__summary::-webkit-details-marker { display: none; }
.wf-item__summary::marker { display: none; }

.wf-item__q {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-green-deep, #2E3D30);
  letter-spacing: -0.012em;
}

.wf-item[open] .wf-item__q {
  color: var(--color-gold-deep, #9A6E1C);
}

.wf-item__chevron {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.wf-item__chevron::before,
.wf-item__chevron::after {
  content: '';
  position: absolute;
  background: var(--color-gold, #C8922A);
  transition: transform 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 240ms ease;
}

.wf-item__chevron::before {
  top: 7px; left: 0;
  width: 16px; height: 1px;
}

.wf-item__chevron::after {
  top: 0; left: 7px;
  width: 1px; height: 16px;
}

.wf-item[open] .wf-item__chevron::after {
  transform: scaleY(0);
  opacity: 0;
}

.wf-item__body {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: clamp(14px, 1.25vw, 15.5px);
  font-weight: 300;
  line-height: 1.92;
  color: rgba(74, 74, 74, 0.88);
  padding: 0 clamp(8px, 2vw, 20px) clamp(28px, 3vw, 36px);
  max-width: 760px;
  animation: wf-open 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes wf-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .wf-item__summary { padding: 22px 4px; gap: 16px; }
  .wf-item__q { font-size: 16px; }
  .wf-item__body { padding: 0 4px 28px; font-size: 14px; }
}


/* ──────────────────────────────────────────────────────────────
   §11.7  MOVEMENT XII · THE TIERED CONVERSATION CTA
   Three calibrated micro-conversions.
   ────────────────────────────────────────────────────────────── */

.vcta--tiered {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.vcta--tiered .vcta__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vcta__tray {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 60px);
  margin-bottom: clamp(36px, 4.5vw, 52px);
  text-align: left;
}

.vcta-tier {
  position: relative;
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.18);
  border-radius: 2px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  transition: border-color 280ms ease, background 280ms ease, transform 280ms ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vcta-tier:hover {
  border-color: rgba(200, 146, 42, 0.55);
  background: rgba(250, 246, 240, 0.07);
  transform: translateY(-3px);
}

.vcta-tier--featured {
  border-color: var(--color-gold, #C8922A);
  background: rgba(200, 146, 42, 0.06);
  box-shadow: 0 0 0 1px rgba(200, 146, 42, 0.35), 0 24px 48px rgba(5, 10, 6, 0.30);
}

.vcta-tier--featured:hover {
  background: rgba(200, 146, 42, 0.10);
  border-color: var(--color-gold-light);
}

.vcta-tier__num {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--color-gold-light);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.vcta-tier__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0c160d;
  background: var(--color-gold, #C8922A);
  padding: 5px 9px;
  border-radius: 1px;
}

.vcta-tier__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--color-ivory, #FAF6F0);
  margin: 0 0 14px;
}

.vcta-tier__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.vcta-tier__desc {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(250, 246, 240, 0.68);
  margin: 0 0 28px;
  flex: 1;
}

.vcta-tier__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-gold-light);
  border: 1px solid rgba(200, 146, 42, 0.55);
  padding: 12px 22px;
  border-radius: 2px;
  transition: background 240ms ease, color 240ms ease, gap 240ms ease, border-color 240ms ease;
}

.vcta-tier__cta:hover {
  background: rgba(200, 146, 42, 0.10);
  color: var(--color-ivory, #FAF6F0);
  border-color: var(--color-gold-light);
  gap: 12px;
}

.vcta-tier__cta--gold {
  background: var(--color-gold, #C8922A);
  color: #0c160d;
  border-color: var(--color-gold, #C8922A);
}

.vcta-tier__cta--gold:hover {
  background: var(--color-gold-light);
  color: #0c160d;
  border-color: var(--color-gold-light);
}

.vcta-tier__cta svg {
  transition: transform 240ms ease;
  flex-shrink: 0;
}

.vcta-tier__cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .vcta__tray { grid-template-columns: 1fr; }
  .vcta-tier { padding: 28px 24px; }
  .vcta-tier--featured { order: -1; }
}

@media (max-width: 480px) {
  .vcta-tier__title { font-size: 22px; }
  .vcta-tier__cta { padding: 12px 18px; font-size: 10.5px; }
}


/* ──────────────────────────────────────────────────────────────
   §11.8  CROSS-CUTTING · scroll reveal stagger for new sections
   ────────────────────────────────────────────────────────────── */

/* Apply stagger to chapter and FAQ items via nth-child */
.wm-chapter.sr--visible:nth-child(1) { transition-delay: 0ms; }
.wm-chapter.sr--visible:nth-child(2) { transition-delay: 60ms; }
.wm-chapter.sr--visible:nth-child(3) { transition-delay: 120ms; }
.wm-chapter.sr--visible:nth-child(4) { transition-delay: 180ms; }
.wm-chapter.sr--visible:nth-child(5) { transition-delay: 240ms; }
.wm-chapter.sr--visible:nth-child(6) { transition-delay: 300ms; }
.wm-chapter.sr--visible:nth-child(7) { transition-delay: 360ms; }
.wm-chapter.sr--visible:nth-child(8) { transition-delay: 420ms; }

.wf-item.sr--visible:nth-child(1) { transition-delay: 0ms; }
.wf-item.sr--visible:nth-child(2) { transition-delay: 50ms; }
.wf-item.sr--visible:nth-child(3) { transition-delay: 100ms; }
.wf-item.sr--visible:nth-child(4) { transition-delay: 150ms; }
.wf-item.sr--visible:nth-child(5) { transition-delay: 200ms; }
.wf-item.sr--visible:nth-child(6) { transition-delay: 250ms; }
.wf-item.sr--visible:nth-child(7) { transition-delay: 300ms; }
.wf-item.sr--visible:nth-child(8) { transition-delay: 350ms; }

