/* ==========================================================================
   Ashish & Deepthi — Wedding Invitation
   Luxury floral theme — maroon + gold on soft peach/pink floral artwork
   Structure, animation timing & premium feel matched to Vinay & Athira ref.
   ========================================================================== */

:root {
  --ivory: #fffdf9;
  --ivory-deep: #f7f0e2;
  --maroon: #5c0612;
  --maroon-deep: #3a030c;
  --maroon-soft: #7a1524;
  --gold: #b8860b;
  --gold-light: #d4af37;
  --gold-pale: #f0dfa8;
  --leaf: #4a5d3a;
  --rose: #d9678a;

  --font-display: 'Cinzel', serif;
  --font-verse: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --max-w: 1080px;
  --section-pad: clamp(64px, 10vw, 120px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--maroon-deep);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--maroon);
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(184,134,11,0.07) 0, transparent 45%),
    radial-gradient(circle at 92% 18%, rgba(92,6,18,0.05) 0, transparent 40%),
    radial-gradient(circle at 20% 85%, rgba(184,134,11,0.06) 0, transparent 40%),
    radial-gradient(circle at 88% 90%, rgba(92,6,18,0.05) 0, transparent 45%);
}

.mobile-only { display: inline; }
@media (min-width: 768px) { .mobile-only { display: none; } }

/* ==========================================================================
   SHARED TYPE / DIVIDERS
   ========================================================================== */
.section-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 500;
  margin-bottom: 48px;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 320px;
  margin: 30px auto;
  color: var(--gold);
}
.divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.divider i { font-size: 0.85rem; }

.invitation-message {
  font-family: var(--font-verse);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--maroon-soft);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==========================================================================
   MONOGRAM (text-based, no external asset required)
   ========================================================================== */
.monogram-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  letter-spacing: 0.4em;
  color: var(--gold);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.monogram-glyph {
  color: var(--rose);
  font-size: 0.85em;
  margin: 0 8px;
  display: inline-block;
  animation: glowPulse 3.2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; text-shadow: 0 0 4px rgba(217, 103, 138, 0.4); }
  50% { opacity: 1; text-shadow: 0 0 12px rgba(217, 103, 138, 0.75); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  overflow: hidden;
  background: var(--ivory-deep);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  z-index: 0;
  background-image: url('assets/hero-mobile.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

@media (min-width: 768px) {
  .hero::before { background-image: url('assets/hero-desktop.png'); }
  .couple-names { white-space: nowrap; }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  bottom: -20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.95), rgba(212, 175, 55, 0));
  opacity: 0;
  animation: floatUp 13s linear infinite;
}
.hero-particles span:nth-child(1) { left: 8%;  animation-delay: 0s;   animation-duration: 15s; }
.hero-particles span:nth-child(2) { left: 22%; animation-delay: 2.5s; animation-duration: 12s; }
.hero-particles span:nth-child(3) { left: 40%; animation-delay: 5s;   animation-duration: 16s; }
.hero-particles span:nth-child(4) { left: 62%; animation-delay: 1.5s; animation-duration: 13s; }
.hero-particles span:nth-child(5) { left: 80%; animation-delay: 4s;   animation-duration: 14s; }
.hero-particles span:nth-child(6) { left: 92%; animation-delay: 6.5s; animation-duration: 11s; }

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  12%  { opacity: 0.85; }
  100% { transform: translateY(-95vh) scale(0.35); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  transform: translateY(-120px);
}

@media (min-width: 768px) {
  .hero-content { transform: translateY(-180px); }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon-soft);
  margin: 0 0 18px;
}

.couple-names {
  font-size: clamp(3rem, 10vw, 5.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
}
.couple-names span { display: inline-block; }
.couple-names .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
}
.couple-names .amp {
  font-family: var(--font-verse);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.7em;
  margin: 0 0.15em;
}

.hero-invite {
  font-family: var(--font-verse);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--maroon-soft);
  margin: 6px 0 4px;
}

.hero-date {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: var(--maroon);
  letter-spacing: 0.04em;
  margin: 4px 0 0;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.85;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================================================
   SECTION SHARED (page backgrounds — new floral artwork)
   ========================================================================== */
.parivar-section,
.gallery-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('assets/page2-mobile.png');
}

.countdown-section,
.events-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('assets/page3-mobile.png');
}

@media (min-width: 768px) {
  .parivar-section,
  .gallery-section {
    background-image: url('assets/page2-desktop.png');
  }
  .countdown-section,
  .events-section {
    background-image: url('assets/page3-desktop.png');
  }
}

main section {
  width: 100%;
  box-sizing: border-box;
  padding: var(--section-pad) 24px;
  position: relative;
}

/* Ornamental page divider — a slim gold motif, not a heavy image,
   so it never competes with the floral corners baked into the artwork. */
.page-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 260px;
  margin: 0 auto 28px;
  color: var(--gold);
  font-size: 0.85rem;
}
.motif-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.parivar-section > *,
.countdown-section > *,
.events-section > *,
.gallery-section > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   THEMED CARDS
   ========================================================================== */
.parivar-card, .event-card, .map-card, .rsvp-card {
  text-align: center;
  position: relative;
  background: rgba(255, 253, 249, 0.92) !important;
  border: 1px solid var(--gold-pale) !important;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(92, 6, 18, 0.08) !important;
  padding: 36px 24px !important;
  backdrop-filter: blur(2px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.parivar-card:hover, .event-card:hover, .map-card:hover, .rsvp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(92, 6, 18, 0.12) !important;
}
.parivar-card::before, .event-card::before, .map-card::before, .rsvp-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-pale);
  border-radius: 12px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .parivar-card, .event-card, .map-card, .rsvp-card { padding: 50px 36px 40px !important; }
}

.themed-card { max-width: 480px; margin: 0 auto; }
.card-content { position: relative; z-index: 3; }

/* ==========================================================================
   PARIVAR / FAMILY
   ========================================================================== */
.parivar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) { .parivar-grid { grid-template-columns: 1fr auto 1fr; } }

.parivar-divider { display: none; justify-self: center; color: var(--gold-light); }
.parivar-divider svg { width: 20px; height: 200px; }
.parivar-divider line { stroke: currentColor; stroke-width: 1; }
.parivar-divider circle { fill: currentColor; }
@media (min-width: 768px) { .parivar-divider { display: block; } }

.parivar-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.parivar-name { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 18px; }
.parivar-line { font-size: 0.92rem; color: var(--maroon-soft); margin: 0 0 14px; line-height: 1.7; }
.parivar-line strong { color: var(--maroon); font-weight: 600; }

/* ==========================================================================
   PORTRAIT (Open Invitation section)
   ========================================================================== */
.portrait-frame {
  position: relative;
  max-width: 360px;
  margin: 0 auto 30px;
  border: 1.5px solid var(--gold-light);
  border-radius: 200px 200px 20px 20px;
  padding: 12px;
  background: rgba(255,253,249,0.85);
  box-shadow: 0 20px 50px rgba(92,6,18,0.08);
}
.portrait-inner {
  border: 1px solid var(--gold-pale);
  border-radius: 190px 190px 14px 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.rsvp-contact {
  text-align: center;
  font-size: 0.88rem;
  color: var(--maroon-soft);
  margin: -20px 0 34px;
}
.rsvp-contact a {
  color: var(--maroon);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.rsvp-contact a:hover { color: var(--gold); }

.portrait-placeholder, .gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(160deg, var(--ivory-deep), #f2d9c4 140%);
  color: var(--gold);
  font-family: var(--font-verse);
  font-style: italic;
  font-size: 0.95rem;
}
.portrait-placeholder i, .gallery-placeholder i { font-size: 2rem; opacity: 0.75; }

.weds-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.weds-name { font-family: var(--font-display); font-size: clamp(1.7rem, 5vw, 2.3rem); color: var(--maroon); }
.weds-label { font-family: var(--font-verse); font-style: italic; font-size: 1.1rem; color: var(--gold); letter-spacing: 0.08em; }

/* ==========================================================================
   COUNTDOWN
   ========================================================================== */
.countdown-section { text-align: center; }
.countdown-sub {
  font-family: var(--font-verse);
  font-style: italic;
  color: var(--maroon-soft);
  margin: -30px 0 44px;
  font-size: 1.05rem;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 480px) { .countdown-grid { grid-template-columns: repeat(4, 1fr); } }

.countdown-box {
  border: 1px solid var(--gold-light);
  padding: 20px 8px;
  position: relative;
  background: rgba(255, 253, 249, 0.85);
  transition: transform 0.35s ease;
}
.countdown-box:hover { transform: translateY(-3px); }
.countdown-box::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold-pale);
  pointer-events: none;
}
.countdown-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  color: var(--maroon);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ==========================================================================
   EVENTS
   ========================================================================== */
.events-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .events-grid { grid-template-columns: 1fr 1fr; } }

.event-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.event-kicker { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.event-title { font-size: 1.3rem; margin-bottom: 16px; }
.event-date, .event-time { font-size: 0.9rem; color: var(--maroon-soft); margin: 0 0 4px; }
.event-venue { font-size: 0.95rem; color: var(--maroon); margin: 14px 0 24px; line-height: 1.5; }
.event-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.btn-map, .btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--gold);
  border-radius: 30px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}
.btn-map:hover { background: var(--maroon-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(92,6,18,0.28); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-frame {
  aspect-ratio: 1/1;
  background: rgba(247, 240, 226, 0.9);
  border: 1px solid var(--gold-pale);
  padding: 8px;
  position: relative;
  cursor: pointer;
}
.frame-inner {
  height: 100%;
  width: 100%;
  border: 1px solid var(--gold-light);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gallery-frame:hover .frame-inner { transform: scale(1.04); }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.frame-inner:hover .gallery-img { transform: scale(1.08); }

.frame-b { aspect-ratio: auto; grid-row: span 2; }
.frame-e { grid-column: span 2; aspect-ratio: 2/1; }
@media (min-width: 720px) { .frame-e { grid-column: span 1; aspect-ratio: 1/1; } }

.gallery-note {
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--maroon-soft);
  opacity: 0.75;
  margin-top: 22px;
}

/* ==========================================================================
   LOCATION / MAP
   ========================================================================== */
.map-embed { width: 100%; aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; margin-bottom: 20px; }

/* ==========================================================================
   RSVP
   ========================================================================== */
.rsvp-grid { display: grid; grid-template-columns: 1fr; gap: 18px; text-align: left; }
@media (min-width: 640px) {
  .rsvp-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1/-1; }
}
.field { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; }
.field span { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.65rem; color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 10px 12px;
  border: 1px solid var(--gold-pale);
  border-radius: 4px;
  background: rgba(255,255,255,0.75);
  color: var(--maroon-deep);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold-light);
  outline-offset: 1px;
}
.rsvp-thanks {
  grid-column: 1/-1;
  text-align: center;
  font-style: italic;
  font-family: var(--font-verse);
  color: var(--leaf);
  font-size: 0.95rem;
  display: none;
  margin: 0;
}
.rsvp-thanks.show { display: block; }
button.btn-map.field-full {
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ashirwad {
  text-align: center;
  padding: var(--section-pad) 24px calc(var(--section-pad) + 40px);
  background: var(--maroon-deep);
  color: var(--ivory);
}
.footer-motif { color: var(--gold-light); font-size: 1.4rem; margin-bottom: 18px; opacity: 0.85; }
.footer-thanks {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 20px;
}
.footer-message {
  font-family: var(--font-verse);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  max-width: 480px;
  margin: 0 auto 26px;
  line-height: 1.6;
  color: var(--ivory-deep);
}
.footer-couple { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-light); margin: 0; }

/* ==========================================================================
   AUDIO TOGGLE
   ========================================================================== */
.audio-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  background: var(--maroon);
  color: var(--gold-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 6px 20px rgba(92,6,18,0.25);
  transition: transform 0.25s ease;
}
.audio-toggle:hover { transform: scale(1.08); }
.audio-toggle.playing i { animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(58,3,12,0.85);
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  background: transparent;
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
}

/* ==========================================================================
   REVEAL BASE STATE (GSAP animates from this — fade + blur reveal)
   ========================================================================== */
[data-reveal], [data-reveal-stagger] {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
}

/* ==========================================================================
   INVITATION COVER (OVERLAY)
   ========================================================================== */
.invitation-cover {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(92,6,18,0.08);
  padding: 20px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cover-card {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 941 / 1672;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(92,6,18,0.2);
  border: 1px solid rgba(184,134,11,0.35);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coverIn 1s cubic-bezier(0.16,1,0.3,1);
}

@keyframes coverIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@media (min-height: 720px) {
  .cover-card { max-width: 380px; }
}

.cover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero-mobile.png');
  background-size: cover;
  background-position: center;
}

.cover-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6% 12% 22%;
  transform: translateY(-28%);
}
.cover-content .eyebrow { margin-bottom: 10px; }
.cover-names { font-size: clamp(1.9rem, 11vw, 2.4rem) !important; margin-bottom: 6px; }
.cover-content .hero-invite { font-size: 0.9rem; margin: 4px 0; }
.cover-content .hero-date { font-size: 0.95rem; }

.cover-card .btn-open-invitation {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}

.btn-open-invitation {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-deep);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(184,134,11,0.25);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.btn-open-invitation:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(184,134,11,0.4);
}
.cover-card .btn-open-invitation:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.03);
}
