﻿/* Homepage cinematic sections â€” polished story / vows / cites */
.wvn-cin-story,
.wvn-cin-cites {
  --wvn-oxblood: #3a2727;
  --wvn-oxblood-deep: #2a1b1b;
  --wvn-ivory: #f7f2eb;
  --wvn-ivory-soft: #fbf8f3;
  --wvn-gold: #c4a574;
  --wvn-gold-bright: #d4b888;
  --wvn-maroon: #6b3030;
  --wvn-clay: #9a7b6a;
  --wvn-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wvn-display: "Aboreto", Georgia, serif;
  --wvn-serif: "Cormorant Garamond", Georgia, serif;
  --wvn-sans: "Plus Jakarta Sans", system-ui, sans-serif;
}

body.wvn-body .wvn-cin-story,
body.wvn-body .wvn-cin-cites,
body.wvn-body .wvn-cin-story p,
body.wvn-body .wvn-cin-story h2,
body.wvn-body .wvn-cin-story span,
body.wvn-body .wvn-cin-story em,
body.wvn-body .wvn-cin-story a,
body.wvn-body .wvn-cin-cites p,
body.wvn-body .wvn-cin-cites h2,
body.wvn-body .wvn-cin-cites span,
body.wvn-body .wvn-cin-cites cite,
body.wvn-body .wvn-cin-cites button {
  font-family: var(--wvn-sans);
  text-transform: none;
  letter-spacing: normal;
}

body.wvn-body .wvn-cin-story__start-heading,
body.wvn-body .wvn-cin-story__vows-word,
body.wvn-body .wvn-cin-story__vows-headline,
body.wvn-body .wvn-cin-cites__title,
body.wvn-body .wvn-cin-cites__name,
body.wvn-body .wvn-cin-cites__count,
body.wvn-body .wvn-cin-cites__kicker {
  font-family: var(--wvn-display) !important;
  text-transform: uppercase !important;
}

body.wvn-body .wvn-cin-story__start-heading em,
body.wvn-body .wvn-cin-story__start-sub,
body.wvn-body .wvn-cin-cites__quote,
body.wvn-body .wvn-cin-cites__title em {
  font-family: var(--wvn-serif) !important;
  text-transform: none !important;
  font-style: italic;
  letter-spacing: 0.01em !important;
}

body.wvn-body .wvn-cin-cites__title {
  color: var(--wvn-oxblood) !important;
}

body.wvn-body .wvn-cin-cites__quote {
  color: rgba(58, 39, 39, 0.9) !important;
  font-style: italic;
}

body.wvn-body .wvn-cin-cites__name {
  color: var(--wvn-ivory) !important;
}

body.wvn-body .wvn-cin-cites__venue-title {
  font-family: var(--wvn-display) !important;
  color: var(--wvn-oxblood) !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
}

body.wvn-body .wvn-cin-cites__cta {
  font-family: var(--wvn-sans) !important;
  color: var(--wvn-ivory) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
}

body.wvn-body .wvn-cin-story__start-eyebrow,
body.wvn-body .wvn-cin-story__vows-eyebrow,
body.wvn-body .wvn-cin-story__vows-cta,
body.wvn-body .wvn-cin-cites__eyebrow,
body.wvn-body .wvn-cin-cites__meta {
  font-family: var(--wvn-sans) !important;
  text-transform: uppercase !important;
}

.wvn-cin-story *,
.wvn-cin-story *::before,
.wvn-cin-story *::after,
.wvn-cin-cites *,
.wvn-cin-cites *::before,
.wvn-cin-cites *::after {
  box-sizing: border-box;
}

/* â€”â€”â€” Section 1: The Story We Create â€”â€”â€” */
.wvn-cin-story {
  position: relative;
  width: 100%;
  height: 360vh;
  margin: 0;
  padding: 0;
  background: var(--wvn-oxblood-deep);
  color: var(--wvn-ivory);
  font-family: var(--wvn-sans);
  isolation: isolate;
}

.wvn-cin-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0a0606;
}

.wvn-cin-story__film {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: scale(1.18);
  transform-origin: center center;
  will-change: transform, opacity;
}

.wvn-cin-story__film video,
.wvn-cin-story__film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

.wvn-cin-story__film-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 27, 27, 0.45) 0%, rgba(58, 39, 39, 0.28) 40%, rgba(42, 27, 27, 0.55) 100%),
    rgba(58, 39, 39, 0.22);
  pointer-events: none;
}

/* Blocks video during mosaic split — sits above film/mask until VOWS beat */
.wvn-cin-story__curtain {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #000;
  pointer-events: none;
  opacity: 1;
  will-change: opacity;
}

/* VOWS layers — hidden until mosaic is gone */
.wvn-cin-story__vows-film {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: scale(1);
  transform-origin: center center;
  will-change: opacity;
  pointer-events: none;
  background: #000;
}

.wvn-cin-story__vows-film video,
.wvn-cin-story__vows-film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.96) contrast(1.05) brightness(1.02);
}

.wvn-cin-story__vows-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.22) 100%);
}

.wvn-cin-story__vows-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  mix-blend-mode: multiply;
  transform: scale(1);
  transform-origin: center center;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}

.wvn-cin-story__vows-word {
  margin: 0;
  font-family: var(--wvn-display);
  font-weight: 400;
  /* Little readable VOWS in the middle */
  font-size: clamp(16vw, 20vw, 22vw);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}

.wvn-cin-story__tiles {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  padding: 3px;
  /* Opaque so gaps during split stay black, not video */
  background: #000;
}

.wvn-cin-story__tile {
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
  background: #1a1010;
}

.wvn-cin-story__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 27, 27, 0.35) 100%);
  pointer-events: none;
}

.wvn-cin-story__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  filter: saturate(0.9) contrast(1.05);
}

.wvn-cin-story__start {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  will-change: opacity, transform;
}

.wvn-cin-story__card {
  position: relative;
  max-width: min(580px, 92vw);
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
  border-radius: 28px;
  border: 1px solid rgba(246, 241, 234, 0.14);
  background: rgba(42, 27, 27, 0.55);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wvn-cin-story__card::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 50%;
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--wvn-gold), transparent);
  opacity: 0.7;
}

.wvn-cin-story__start-eyebrow {
  margin: 0.35rem 0 1.15rem;
  font-family: var(--wvn-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--wvn-gold);
}

.wvn-cin-story__start-heading {
  margin: 0;
  font-family: var(--wvn-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wvn-ivory);
}

.wvn-cin-story__start-heading em {
  font-family: var(--wvn-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--wvn-gold-bright);
}

.wvn-cin-story__start-sub {
  margin: 1.15rem auto 0;
  max-width: 28ch;
  font-family: var(--wvn-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.08rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  color: rgba(246, 241, 234, 0.78);
}

.wvn-cin-story__vows-caption {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  will-change: opacity, transform;
  pointer-events: none;
}

.wvn-cin-story__vows-caption.is-live {
  pointer-events: auto;
}

.wvn-cin-story__vows-panel {
  position: relative;
  max-width: min(720px, 94vw);
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 28px;
  border: 1px solid rgba(246, 241, 234, 0.12);
  background: rgba(20, 12, 12, 0.42);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.wvn-cin-story__vows-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  font-family: var(--wvn-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--wvn-gold);
}

.wvn-cin-story__vows-eyebrow::before,
.wvn-cin-story__vows-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--wvn-gold);
  opacity: 0.55;
}

.wvn-cin-story__vows-headline {
  margin: 0;
  font-family: var(--wvn-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wvn-ivory);
}

.wvn-cin-story__vows-headline span {
  display: block;
  margin-top: 0.2em;
  color: var(--wvn-gold-bright);
}

.wvn-cin-story__vows-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--wvn-ivory);
  color: var(--wvn-oxblood);
  font-family: var(--wvn-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transition:
    background 0.45s var(--wvn-ease),
    color 0.45s var(--wvn-ease),
    transform 0.45s var(--wvn-ease);
}

.wvn-cin-story__vows-cta-arrow {
  display: inline-block;
  transition: transform 0.45s var(--wvn-ease);
}

.wvn-cin-story__vows-cta:hover {
  background: var(--wvn-gold);
  color: var(--wvn-oxblood-deep);
  transform: translateY(-2px);
}

.wvn-cin-story__vows-cta:hover .wvn-cin-story__vows-cta-arrow {
  transform: translate3d(3px, -3px, 0);
}

.wvn-cin-story__vignette {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 65% at 50% 45%, transparent 35%, rgba(20, 10, 10, 0.55) 100%);
  mix-blend-mode: multiply;
  opacity: 0.85;
  will-change: opacity;
}

.wvn-cin-story__grain {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.wvn-cin-story__cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.7;
  pointer-events: none;
  will-change: opacity;
}

.wvn-cin-story__cue span {
  font-family: var(--wvn-sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.65);
}

.wvn-cin-story__cue i {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--wvn-gold), transparent);
  transform-origin: top center;
  animation: wvn-cin-cue 1.8s var(--wvn-ease) infinite;
}

@keyframes wvn-cin-cue {
  0%, 100% { transform: scaleY(0.45); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 767px) {
  .wvn-cin-story__tiles {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .wvn-cin-story__vows-word {
    font-size: 24vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wvn-cin-story {
    height: auto;
    min-height: 200vh;
  }

  .wvn-cin-story__sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
  }

  .wvn-cin-story__tiles,
  .wvn-cin-story__start,
  .wvn-cin-story__cue,
  .wvn-cin-story__vows-mask {
    display: none;
  }

  .wvn-cin-story__film {
    display: none;
  }

  .wvn-cin-story__vows-film,
  .wvn-cin-story__vows-shade {
    opacity: 1 !important;
    transform: none !important;
  }

  .wvn-cin-story__vows-caption {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    position: relative;
    min-height: 100vh;
  }

  .wvn-cin-story__cue i {
    animation: none;
  }
}


/* --- Section 3: In Their Words — coverflow scroller --- */
.wvn-cin-cites {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(154, 107, 107, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(154, 123, 106, 0.08), transparent 50%),
    #f0ede4;
  color: var(--wvn-oxblood);
  font-family: var(--wvn-sans);
  overflow: hidden;
  isolation: isolate;
}

.wvn-cin-cites__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wvn-cin-cites__glow {
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(ellipse at center, rgba(154, 107, 107, 0.12), transparent 70%);
  filter: blur(40px);
}

.wvn-cin-cites__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.wvn-cin-cites__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.wvn-cin-cites__head {
  width: min(820px, 92vw);
  margin: 0 auto 2.75rem;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 900ms var(--wvn-ease), transform 900ms var(--wvn-ease);
}

.wvn-cin-cites.is-in .wvn-cin-cites__head {
  opacity: 1;
  transform: none;
}

.wvn-cin-cites__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--wvn-gold);
}

.wvn-cin-cites__eyebrow::before,
.wvn-cin-cites__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wvn-gold));
  opacity: 0.7;
}

.wvn-cin-cites__eyebrow::after {
  background: linear-gradient(90deg, var(--wvn-gold), transparent);
}

.wvn-cin-cites__title {
  margin: 0;
  font-family: var(--wvn-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wvn-ivory);
}

.wvn-cin-cites__title em {
  font-family: var(--wvn-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(196, 165, 116, 0.95);
}

.wvn-cin-cites__deck {
  --card-w: min(380px, 82vw);
  --card-h: 520px;
  position: relative;
  width: 100%;
  min-height: calc(var(--card-h) + 48px);
  height: auto;
  margin: 0 auto;
  perspective: 1400px;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 1s var(--wvn-ease) 0.15s, transform 1s var(--wvn-ease) 0.15s;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.wvn-cin-cites.is-in .wvn-cin-cites__deck {
  opacity: 1;
  transform: none;
}

.wvn-cin-cites__deck.is-dragging {
  cursor: grabbing;
}

.wvn-cin-cites__rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(247, 242, 235, 0.18) 15%,
    rgba(247, 242, 235, 0.28) 50%,
    rgba(247, 242, 235, 0.18) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.wvn-cin-cites__stage {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wvn-cin-cites__card {
  --o: 0;
  --x: 0px;
  --s: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--card-w);
  min-height: var(--card-h);
  height: auto;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #efe7dc;
  border: 1px solid rgba(247, 242, 235, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%) translateX(var(--x)) scale(var(--s));
  opacity: 0.55;
  z-index: 1;
  transition:
    transform 720ms var(--wvn-ease),
    opacity 720ms var(--wvn-ease),
    box-shadow 720ms var(--wvn-ease),
    border-color 720ms var(--wvn-ease);
  cursor: pointer;
  display: grid;
  grid-template-rows: minmax(210px, 1.15fr) auto;
  grid-template-columns: 1fr;
}

.wvn-cin-cites__card[data-far="1"] {
  pointer-events: none;
  opacity: 0;
}

.wvn-cin-cites__card.is-active {
  border-color: rgba(196, 165, 116, 0.4);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(196, 165, 116, 0.12) inset;
  opacity: 1;
  z-index: 40;
  cursor: pointer;
}

.wvn-cin-cites__card-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.wvn-cin-cites__card-media img,
.wvn-cin-cites__card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.06);
  transition: transform 8s linear, filter 0.6s var(--wvn-ease);
}

.wvn-cin-cites__card.is-active .wvn-cin-cites__card-media img,
.wvn-cin-cites__card.is-active .wvn-cin-cites__card-media video {
  transform: scale(1);
  filter: saturate(0.9) contrast(1.05);
}

.wvn-cin-cites__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 242, 235, 0.88);
  transform: translate(-50%, -50%) scale(0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 400ms var(--wvn-ease), transform 400ms var(--wvn-ease), background 280ms var(--wvn-ease);
  z-index: 2;
}

.wvn-cin-cites__card.is-active .wvn-cin-cites__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 200ms;
}

.wvn-cin-cites__play--ghost {
  display: none;
}

.wvn-cin-cites__play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #2a1b1b;
}

.wvn-cin-cites__play:hover {
  background: #fff;
}

.wvn-cin-cites__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  min-height: 0;
  padding: 1.35rem 1.45rem 1.5rem;
  background: linear-gradient(165deg, #f7f2eb 0%, #efe7dc 100%);
  color: var(--wvn-oxblood);
}

.wvn-cin-cites__card:not(.is-active) .wvn-cin-cites__card-body {
  opacity: 0.72;
}

.wvn-cin-cites__card.is-active .wvn-cin-cites__card-body {
  animation: wvn-cin-cites-body-in 650ms var(--wvn-ease) both;
}

@keyframes wvn-cin-cites-body-in {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}

.wvn-cin-cites__kicker {
  margin: 0 0 0.65rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wvn-maroon);
}

.wvn-cin-cites__venue-title {
  margin: 0 0 0.55rem;
  font-family: var(--wvn-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--wvn-oxblood);
}

.wvn-cin-cites__quote {
  margin: 0;
  font-family: var(--wvn-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.98rem, 1.55vw, 1.2rem);
  line-height: 1.55;
  color: rgba(58, 39, 39, 0.9);
  display: block;
  overflow: visible;
}

.wvn-cin-cites__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--wvn-oxblood);
  color: var(--wvn-ivory);
  font-family: var(--wvn-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wvn-cin-cites__credit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
}

.wvn-cin-cites__name,
.wvn-cin-cites__meta {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wvn-cin-cites__name {
  font-family: var(--wvn-display);
  background: var(--wvn-oxblood);
  color: var(--wvn-ivory);
  letter-spacing: 0.18em;
}

.wvn-cin-cites__meta {
  font-family: var(--wvn-sans);
  font-weight: 500;
  background: rgba(58, 39, 39, 0.08);
  color: rgba(58, 39, 39, 0.65);
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
}

.wvn-cin-cites__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 800ms var(--wvn-ease) 0.35s, transform 800ms var(--wvn-ease) 0.35s;
}

.wvn-cin-cites.is-in .wvn-cin-cites__nav {
  opacity: 1;
  transform: none;
}

.wvn-cin-cites__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 116, 0.35);
  background: rgba(10, 6, 6, 0.4);
  color: var(--wvn-ivory);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background 280ms var(--wvn-ease), border-color 280ms var(--wvn-ease), transform 280ms var(--wvn-ease);
}

.wvn-cin-cites__btn:hover {
  background: rgba(107, 48, 48, 0.85);
  border-color: var(--wvn-gold);
  transform: scale(1.05);
}

.wvn-cin-cites__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wvn-cin-cites__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.28);
  cursor: pointer;
  transition: width 450ms var(--wvn-ease), background 450ms var(--wvn-ease);
}

.wvn-cin-cites__dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--wvn-gold), var(--wvn-gold-bright));
}

@media (max-width: 900px) {
  .wvn-cin-cites__deck {
    --card-w: min(340px, 78vw);
    --card-h: 480px;
  }
}

@media (max-width: 640px) {
  .wvn-cin-cites__deck {
    --card-w: min(300px, 78vw);
    --card-h: 460px;
  }

  .wvn-cin-cites__card[data-abs="2"],
  .wvn-cin-cites__card[data-abs="3"] {
    opacity: 0 !important;
    pointer-events: none;
  }

  .wvn-cin-cites__quote {
    font-size: clamp(1rem, 4.2vw, 1.18rem);
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wvn-cin-cites__head,
  .wvn-cin-cites__deck,
  .wvn-cin-cites__nav,
  .wvn-cin-cites__card,
  .wvn-cin-cites__card-media img,
  .wvn-cin-cites__play,
  .wvn-cin-cites__dot {
    transition: none !important;
    animation: none !important;
  }
}

/* Full-read testimonial lightbox (gallery-style) */
.wvn-cite-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(26, 18, 18, 0.92);
  opacity: 0;
  transition: opacity 280ms var(--wvn-ease, cubic-bezier(0.22, 1, 0.36, 1));
  box-sizing: border-box;
}

.wvn-cite-lightbox.is-open {
  opacity: 1;
}

.wvn-cite-lb__close {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.wvn-cite-lb__close svg {
  width: 20px;
  height: 20px;
}

.wvn-cite-lb__close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
}

.wvn-cite-lb__card {
  width: min(920px, 100%);
  max-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: #f7f2eb;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.wvn-cite-lb__media {
  min-height: 280px;
  background: #1a1212;
}

.wvn-cite-lb__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wvn-cite-lb__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  overflow: auto;
  color: #3a2727;
}

.wvn-cite-lb__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b3030;
}

.wvn-cite-lb__quote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  color: rgba(58, 39, 39, 0.92);
}

.wvn-cite-lb__credit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.wvn-cite-lb__name,
.wvn-cite-lb__meta {
  margin: 0;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wvn-cite-lb__name {
  color: #3a2727;
  font-family: "Aboreto", Georgia, serif;
}

.wvn-cite-lb__meta {
  color: rgba(58, 39, 39, 0.55);
}

@media (max-width: 760px) {
  .wvn-cite-lb__card {
    grid-template-columns: 1fr;
    max-height: min(92vh, 900px);
  }

  .wvn-cite-lb__media {
    min-height: 220px;
    max-height: 38vh;
  }
}

/* Force cream on homepage SEO bridge (overrides any dark-theme bleed) */
body.wvn-body .wvn-home-seo-copy {
  background: #f0ede4 !important;
  color: #3a2727 !important;
}
body.wvn-body .wvn-home-seo-copy h2,
body.wvn-body .wvn-home-seo-copy #wvn-home-seo-heading,
body.wvn-body .wvn-home-seo-copy__lede,
body.wvn-body .wvn-home-seo-copy__prompt,
body.wvn-body .wvn-home-seo-copy__links a {
  color: #3a2727 !important;
}
body.wvn-body .wvn-home-seo-copy h2 em {
  color: rgba(58, 39, 39, 0.78) !important;
}
body.wvn-body .wvn-home-seo-copy__eyebrow {
  color: #9a7b6a !important;
}
body.wvn-body .wvn-home-seo-copy__links a {
  border-color: rgba(58, 39, 39, 0.22) !important;
  background: transparent !important;
}



.wvn-intro.is-minimal-notes .wvn-intro__ground { opacity: 0.55; }
