/* ============================================================
   SHREYANSH & HENNA  |  style.css v3
   Full-page sage green envelope · Embossed wax seal
   Gold & Maroon theme throughout
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --gold: #C9A84C;
  --gold-l: #E8D5A3;
  --gold-d: #8B6914;
  --maroon: #5C0A0A;
  --bg: #5C0A0A;
  /* Envelope greens */
  --sage: #8FAF82;
  --sage-d: #6E8A63;
  --sage-dd: #58714F;
  --sage-l: #A8C29A;
  /* Seal */
  --seal-hi: #F6F3ED;
  --seal-base: #E9E5DC;
  --seal-sh: #C9C5BC;
  --seal-dp: #B5B1A8;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  overflow-y: auto;
}

body.unlock-scroll {
  overflow-y: auto !important;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes shimmer {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes goldGlow {

  0%,
  100% {
    text-shadow: 0 0 40px rgba(201, 168, 76, .1)
  }

  50% {
    text-shadow: 0 0 80px rgba(201, 168, 76, .5)
  }
}

@keyframes petalDrift {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0
  }

  8% {
    opacity: .8
  }

  90% {
    opacity: .35
  }

  100% {
    transform: translateY(108vh) rotate(580deg) translateX(25px);
    opacity: 0
  }
}

@keyframes beat {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}

@keyframes scrollLn {
  0% {
    transform: translateY(-100%);
    opacity: 0
  }

  50% {
    opacity: 1
  }

  100% {
    transform: translateY(100%);
    opacity: 0
  }
}

@keyframes drawBorder {
  from {
    stroke-dashoffset: 3000
  }

  to {
    stroke-dashoffset: 0
  }
}

@keyframes tapPulse {

  0%,
  100% {
    opacity: .4;
    transform: scale(1)
  }

  50% {
    opacity: .9;
    transform: scale(1.15)
  }
}

@keyframes sealFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0)
  }

  50% {
    transform: translate(-50%, -50%) translateY(-6px)
  }
}

@keyframes sealGlow {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .35), inset 0 3px 8px rgba(255, 255, 255, .55), inset 0 -3px 6px rgba(0, 0, 0, .18)
  }

  50% {
    box-shadow: 0 14px 44px rgba(0, 0, 0, .3), inset 0 3px 8px rgba(255, 255, 255, .6), inset 0 -3px 6px rgba(0, 0, 0, .15)
  }
}

@keyframes flapOpen {
  0% {
    transform: rotateX(0deg)
  }

  100% {
    transform: rotateX(-185deg)
  }
}

@keyframes envFade {
  from {
    opacity: 1
  }

  to {
    opacity: 0;
    pointer-events: none
  }
}

@keyframes slideUp {
  from {
    transform: translateY(60px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

/* ── PETALS ── */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999
}

.petal {
  position: absolute;
  border-radius: 60% 0 60% 0;
  animation: petalDrift linear forwards
}

/* ══════════════════════════════════════════
   FULL-PAGE ENVELOPE SCREEN
══════════════════════════════════════════ */
#env-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  /* removed by JS after animation completes */
}

/* fully hide after exit animation so it never blocks scroll */
#env-screen.gone {
  display: none !important;
  pointer-events: none;
  visibility: hidden;
}

/* THE ENVELOPE FILLS THE ENTIRE VIEWPORT */
.full-envelope {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
  perspective: 1400px;
  -webkit-tap-highlight-color: transparent;
  /* Sage green paper base */
  background:
    linear-gradient(170deg,
      #7A1515 0%,
      #6B1010 20%,
      #5C0A0A 50%,
      #520909 75%,
      #631212 100%);
}

/* Paper grain texture */
.env-paper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .014) 0, rgba(255, 255, 255, .014) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .009) 0, rgba(255, 255, 255, .009) 1px, transparent 1px, transparent 6px),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .008) 0, rgba(0, 0, 0, .008) 1px, transparent 1px, transparent 10px);
}

/* ── FOLD SHADOWS ── */
/* These create the X-fold effect visible in the photo */
.env-fold-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom right,
      rgba(0, 0, 0, .10) 0%,
      rgba(0, 0, 0, .04) 48%,
      rgba(255, 255, 255, .04) 50%,
      transparent 52%);
}

.env-fold-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom left,
      rgba(0, 0, 0, .10) 0%,
      rgba(0, 0, 0, .04) 48%,
      rgba(255, 255, 255, .04) 50%,
      transparent 52%);
}

.env-fold-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .12) 0%,
      rgba(0, 0, 0, .04) 48%,
      transparent 52%);
  clip-path: polygon(0 100%, 50% 0%, 100% 100%);
}

/* ── TOP FLAP ── */
.env-flap-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 20;
  transform-origin: top center;
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
  transform: translateZ(0); /* 🔥 forces GPU */
  backface-visibility: hidden;
  /* Default state: closed flap pointing downward */
}

.flap-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      #7A1515 0%,
      #6B1010 40%,
      #5C0A0A 80%,
      #520909 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: relative;
}

.flap-inner::before {
  /* Slightly lighter shade for the inside of flap */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, transparent 60%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.flap-fold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), rgba(0, 0, 0, .12), transparent);
  z-index: 1;
}

/* Open state */
.env-flap-top.open {
  animation: flapOpen 1.3s cubic-bezier(.22, .8, .22, 1) forwards;
}

/* ── TOP TEXT ── */
.env-top-text {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 80%;
  max-width: 400px;
  animation: fadeIn .8s ease both;
}

.env-pre-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(16px, 4.5vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

/* ── WAX SEAL — centred on page ── */
.full-seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  animation: sealFloat 4s ease infinite;
  transition: opacity .4s, transform .4s;
}

.full-seal.gone {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scale(.1) rotate(20deg) !important;
  animation: none !important;
}

.seal-plate {
  width: min(180px, 42vw);
  height: min(180px, 42vw);
  border-radius: 50%;
  /* Embossed cream/white effect */
  background: radial-gradient(circle at 36% 30%,
      var(--seal-hi) 0%,
      var(--seal-base) 38%,
      var(--seal-sh) 68%,
      var(--seal-dp) 100%);
  box-shadow:
    /* 3D emboss from paper surface */
    0 8px 32px rgba(0, 0, 0, .35),
    0 2px 6px rgba(0, 0, 0, .25),
    inset 0 4px 10px rgba(255, 255, 255, .65),
    inset 0 -4px 8px rgba(0, 0, 0, .18),
    inset 4px 0 8px rgba(255, 255, 255, .3),
    inset -4px 0 6px rgba(0, 0, 0, .1),
    /* Outer ring ridges */
    0 0 0 4px var(--seal-sh),
    0 0 0 7px rgba(200, 196, 187, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sealGlow 3.5s ease infinite;
}

.seal-plate svg {
  width: 85%;
  height: 85%;
  filter:
    drop-shadow(0 1px 2px rgba(255, 255, 255, .5)) drop-shadow(0 -1px 1px rgba(0, 0, 0, .18));
}

.seal-logo {
  width: 180px;
  height: 120px;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%) contrast(0.8);
  transform: translate(2%, 0%);
}

/* ── BOTTOM TEXT ── */
.env-bottom-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 82%;
  max-width: 420px;
}

.env-post-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(14px, 3.8vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  margin-bottom: 20px;
}

.env-tap-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.tap-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  animation: tapPulse 2s ease infinite;
}

.tap-dot:last-child {
  animation-delay: .3s
}

.tap-label {
  font-family: 'Playfair Display SC', serif;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  letter-spacing: 5px;
}

/* Envelope fade-out on open */
#env-screen.exit {
  animation: envFade .7s ease .9s forwards;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   VIDEO SCREEN
══════════════════════════════════════════ */
#vid-screen {
  display: none;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

#weddingVideo {
  border: none;
  /* position: absolute;
  top: 50%;
  left: 50%;
   Make iframe cover full viewport like a video background 
  width: max(95vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%); */
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}


#vid-screen.show {
  display: block
}

.vid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.vid-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.vid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(5, 0, 0, .6) 0%,
      rgba(5, 0, 0, .25) 35%,
      rgba(5, 0, 0, .25) 65%,
      rgba(5, 0, 0, .68) 100%);
}

.vid-deco-frame {
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none
}

.vid-deco-frame svg {
  width: 100%;
  height: 100%
}

.vid-content {
  position: relative;
  min-height: 120vh;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  animation: slideUp .9s .4s both;
}

.vc-blessing {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .55);
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 2px;
  margin-bottom: 2px
}

.vc-elder {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .7);
  font-size: clamp(13px, 3.2vw, 18px);
  letter-spacing: 2px;
  margin-bottom: 18px
}

.vc-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  margin: 0 auto 14px;
  width: 100%
}

.vc-rule span:not(.vc-gem) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .45), transparent)
}

.vc-gem {
  color: rgba(201, 168, 76, .55);
  font-size: 10px;
  white-space: nowrap
}

.vc-bride-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(52px, 14vw, 92px);
  line-height: 1;
  animation: goldGlow 4s ease infinite
}

.vc-weds {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .5);
  font-size: clamp(18px, 5vw, 28px);
  letter-spacing: 5px;
  margin: 4px 0;
  display: block
}

.vc-groom-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(52px, 14vw, 92px);
  line-height: 1;
  animation: goldGlow 4s ease infinite .6s
}

.vc-date {
  font-family: 'Playfair Display SC', serif;
  color: rgba(232, 213, 163, .75);
  font-size: clamp(13px, 3.2vw, 18px);
  letter-spacing: 4px;
  margin-top: 18px
}

.vc-city {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .45);
  font-size: clamp(13px, 3vw, 16px);
  letter-spacing: 3px;
  margin-top: 4px
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .55;
  animation: fadeIn 1s 2s both
}

.sh-line {
  width: 1px;
  height: 34px;
  background: rgba(201, 168, 76, .4);
  position: relative;
  overflow: hidden
}

.sh-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gold);
  animation: scrollLn 1.8s ease infinite
}

.sh-txt {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .4);
  font-size: 8px;
  letter-spacing: 3px
}

/* ══════════════════════════════════════════
   MAIN SCREEN
══════════════════════════════════════════ */
#main-screen {
  display: none;
  width: 100%;
  background: var(--bg);
  z-index: 5;
  position: relative;
}

#main-screen.show {
  display: block
}

.section {
  max-width: 720px;
  margin: 0 auto;
  padding: 68px 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s ease, transform .8s ease
}

.section.vis {
  opacity: 1;
  transform: translateY(0)
}

.sec-eye {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .45);
  font-size: 8px;
  letter-spacing: 6px;
  margin-bottom: 14px
}

.sec-ttl {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(36px, 10vw, 54px);
  font-weight: 600;
  margin-bottom: 8px;
  animation: goldGlow 5s ease infinite
}

.sec-sub {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .38);
  font-size: 14px;
  margin-bottom: 24px
}

.g-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 30px;
  max-width: 300px
}

.g-rl {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .4), transparent)
}

.g-dm {
  color: rgba(201, 168, 76, .55);
  font-size: 11px;
  letter-spacing: 2px
}

.band {
  background: linear-gradient(180deg, #5C0A0A, #0D0101, #5C0A0A)
}

.band2 {
  background: linear-gradient(180deg, #5C0A0A, #0A0000, #5C0A0A)
}

/* ── FAMILY CARD ── */
.family-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(150deg, #180404, #100202);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 4px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.family-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .6), transparent)
}

@media(min-width:560px) {
  .family-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 0
  }
}

.fc-side {
  flex: 1;
  text-align: center;
  padding: 8px 12px
}

.fc-blessed {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .45);
  font-size: 13px;
  margin-bottom: 4px
}

.fc-elder {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .7);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.5
}

.fc-parents {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-l);
  font-size: clamp(15px, 4vw, 19px);
  margin-bottom: 6px
}

.fc-invite-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .45);
  font-size: 13px;
  margin-bottom: 8px
}

.fc-groom {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(28px, 7vw, 42px);
  animation: goldGlow 5s ease infinite
}

.fc-bride {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(28px, 7vw, 42px);
  animation: goldGlow 5s ease infinite .5s;
  margin-bottom: 8px
}

.fc-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 0 8px
}

@media(min-width:560px) {
  .fc-divider {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    align-self: stretch;
    justify-content: center
  }
}

.fc-div-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, .25)
}

@media(min-width:560px) {
  .fc-div-line {
    width: 1px;
    height: auto;
    flex: 1
  }
}

.fc-div-gem {
  color: rgba(201, 168, 76, .5);
  font-size: 12px
}

.compliments {
  border-top: 1px solid rgba(201, 168, 76, .18);
  padding-top: 24px;
  text-align: center;
}

.comp-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .45);
  font-size: 14px;
  margin-bottom: 6px
}

.comp-name {
  font-family: 'Playfair Display SC', serif;
  color: var(--gold-l);
  font-size: 18px;
  letter-spacing: 1px
}

.comp-siblings {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .55);
  font-size: 16px;
  line-height: 2;
  margin-top: 8px
}

/* ── COUNTDOWN ── */
.cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 430px;
  margin: 0 auto
}

.cd-box {
  background: linear-gradient(165deg, #180404, #100303);
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 3px;
  padding: 22px 8px;
  position: relative
}

.cd-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .5), transparent)
}

.cd-n {
  display: block;
  font-family: 'Playfair Display SC', serif;
  color: var(--gold);
  font-size: clamp(22px, 7vw, 38px);
  animation: beat 2s ease infinite
}

.cd-box:nth-child(2) .cd-n {
  animation-delay: .25s
}

.cd-box:nth-child(3) .cd-n {
  animation-delay: .5s
}

.cd-box:nth-child(4) .cd-n {
  animation-delay: .75s
}

.cd-l {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .35);
  font-size: 7px;
  letter-spacing: 2px;
  margin-top: 5px
}

/* ── EVENTS ── */
.ev-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left
}

.ev-card {
  background: linear-gradient(148deg, #180404, #100202);
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s;
  position: relative;
}

.ev-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .55), transparent)
}

.ev-card:hover {
  border-color: rgba(201, 168, 76, .48);
  box-shadow: 0 6px 36px rgba(201, 168, 76, .07)
}

.ev-hd {
  padding: 20px 52px 20px 22px;
  position: relative
}

.ev-tag {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .35);
  font-size: 7px;
  letter-spacing: 5px;
  margin-bottom: 6px
}

.ev-nm {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-l);
  font-size: clamp(17px, 4.5vw, 22px);
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.3
}

.ev-tagline {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .5);
  font-size: 13px;
  margin-bottom: 8px
}

.ev-dt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.ev-dt {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .6);
  font-size: 11px;
  letter-spacing: 2px
}

.ev-tm {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(201, 168, 76, .45);
  font-size: 13px
}

.ev-tog {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, .5);
  font-size: 15px;
  transition: transform .4s, border-color .3s
}

.ev-card.open .ev-tog {
  transform: translateY(-50%) rotate(45deg);
  border-color: rgba(201, 168, 76, .65)
}

.ev-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .4s;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(201, 168, 76, .5);
  font-style: italic;
  font-size: 16px;
  line-height: 1.9;
  border-top: 0px solid rgba(201, 168, 76, .15)
}

.ev-card.open .ev-body {
  max-height: 260px;
  padding: 16px 22px 22px;
  border-top-width: 1px
}

.ev-detail-lbl {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .7);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px
}

/* ── VENUES GRID ── */
.venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px
}

@media(min-width:560px) {
  .venues-grid {
    grid-template-columns: 1fr 1fr
  }
}

.venue-card {
  background: linear-gradient(150deg, #180404, #100202);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 3px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.venue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .6), transparent)
}

.full-width {
  grid-column: 1/-1
}

.vc-fn {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .4);
  font-size: 8px;
  letter-spacing: 4px;
  margin-bottom: 8px
}

.vc-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 600;
  margin-bottom: 6px;
  animation: goldGlow 5s ease infinite
}

.vc-addr {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(232, 213, 163, .55);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px
}

.vc-date-chip {
  display: inline-block;
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .7);
  font-size: 9px;
  letter-spacing: 3px;
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px
}

.v-btn {
  display: inline-block;
  font-family: 'Playfair Display SC', serif;
  letter-spacing: 4px;
  font-size: 8px;
  color: #5C0A0A;
  background: linear-gradient(135deg, #D4AF37, #C9A84C, #B8922A);
  padding: 10px 24px;
  border-radius: 1px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(201, 168, 76, .28);
  transition: filter .2s, transform .2s
}

.v-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px)
}

/* ── FAQ ── */
.faq-list {
  text-align: left
}

.faq-row {
  border-bottom: 1px solid rgba(201, 168, 76, .13);
  padding: 20px 0;
  cursor: pointer
}

.faq-row:first-child {
  border-top: 1px solid rgba(201, 168, 76, .13)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display SC', serif;
  color: var(--gold-l);
  font-size: 12px;
  letter-spacing: .5px
}

.faq-ic {
  color: rgba(201, 168, 76, .42);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .35s
}

.faq-row.open .faq-ic {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s, margin .35s;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .5);
  font-size: 16px;
  line-height: 1.85
}

.faq-row.open .faq-a {
  max-height: 220px;
  margin-top: 12px
}

/* ── FOOTER ── */
.inv-foot {
  text-align: center;
  padding: 56px 24px 52px;
  border-top: 1px solid rgba(201, 168, 76, .12);
  margin-top: 16px
}

.foot-orn {
  color: rgba(201, 168, 76, .28);
  font-size: 18px;
  letter-spacing: 8px;
  margin-bottom: 18px
}

.foot-names {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .5);
  font-size: clamp(30px, 9vw, 48px);
  font-weight: 600;
  animation: goldGlow 6s ease infinite
}

.foot-line {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: rgba(201, 168, 76, .25);
  font-size: 13px;
  margin-top: 10px;
  letter-spacing: 1px
}

.foot-compliment {
  font-family: 'Playfair Display SC', serif;
  color: rgba(201, 168, 76, .35);
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 16px
}

#desktop-block {
  position: fixed;
  inset: 0;
  background: #5C0A0A;
  color: #C9A84C;
  display: none;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.db-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.db-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  opacity: 0.7;
}

.qr-wrap {
  margin: 20px auto;
  padding: 12px;
  background: #fff;
  border-radius: 6px;
  display: inline-block;
  }

.qr-wrap img {
  width: 180px;
  height: 180px;
  display: block;
  }

  