/* ==========================================================================
   TOKENS — Dark Maroon / Crimson / Ivory  (rashid-salma theme)
   ========================================================================== */
:root {
  --bg:           #030001;
  --panel:        rgba(42, 6, 10, 0.82);
  --panel-soft:   rgba(20, 3, 6, 0.90);
  --gold:         #C8393A;          /* crimson accent  */
  --gold-soft:    #F5EBE6;          /* ivory headings  */
  --text:         #F0E4E0;          /* body text       */
  --muted:        #C4909A;          /* secondary text  */
  --line:         rgba(200, 57, 58, 0.40);  /* borders  */

  /* legacy aliases kept so existing selectors still compile */
  --card:         rgba(42, 6, 10, 0.82);
  --card-border:  rgba(200, 57, 58, 0.40);
  --ink:          #F0E4E0;
  --ink-soft:     #C4909A;
  --ink-faint:    #C4909A;
  --accent:       #C8393A;
  --accent-deep:  #9a1a20;
  --accent-pale:  rgba(200, 57, 58, 0.30);
  --cream:        rgba(200, 57, 58, 0.20);
  --gold-bright:  #e05050;

  --font-display: 'Great Vibes', cursive;
  --font-eyebrow: 'Cinzel', serif;
  --font-body:    'Lora', serif;
  --font-sub:     'Cormorant Garamond', serif;
  --font-arabic:  'Amiri', serif;

  --section-pad: clamp(72px, 12vw, 128px);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
a     { color: inherit; text-decoration: none; }
button { font: inherit; }

body {
  background:
    radial-gradient(circle at 20% 15%, rgba(230, 33, 23, 0.10), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(168, 67, 80, 0.12), transparent 34%),
    linear-gradient(180deg, #080002 0%, #030001 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  min-width: 320px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ==========================================================================
   SPLASH OVERLAY
   ========================================================================== */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 50% 40%, rgba(230, 33, 23, 0.10), transparent 34%),
    linear-gradient(145deg, #040000, #1a0306 45%, #050001);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-card {
  position: relative;
  background: linear-gradient(rgba(12, 2, 3, 0.92), rgba(12, 2, 3, 0.92)),
              repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(230, 33, 23, 0.03) 19px);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(44px, 8vw, 68px) clamp(32px, 7vw, 56px);
  max-width: 440px;
  width: calc(100% - 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72), inset 0 0 70px rgba(230, 33, 23, 0.07);
  animation: splashCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes splashCardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-sprig {
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.7;
}

.splash-bismillah {
  font-family: var(--font-arabic);
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  color: var(--gold-soft);
  direction: rtl;
  line-height: 1.6;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}

.splash-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.splash-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 4.2rem);
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(245, 235, 230, 0.20);
}

.splash-amp {
  font-family: var(--font-sub);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
}

.splash-tagline {
  font-family: var(--font-eyebrow);
  font-size: clamp(0.58rem, 2vw, 0.68rem);
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.splash-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #F5EBE6;
  border: 1px solid rgba(200, 57, 58, 0.60);
  background: linear-gradient(135deg, #9a1a20, #C8393A, #7a0e14);
  box-shadow: 0 0 24px rgba(230, 33, 23, 0.28);
  border-radius: 0;
  padding: 15px 34px;
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.splash-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 33, 23, 0.35);
}

.splash-btn:active { transform: translateY(0); }

/* ==========================================================================
   FALLING FLOWERS
   ========================================================================== */
.flower-field {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.flower {
  position: absolute;
  top: -80px;
  opacity: 0;
  will-change: transform, opacity;
  animation: flowerFall linear infinite;
}

.flower svg {
  display: block;
  animation: flowerSpin linear infinite;
}

@keyframes flowerFall {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  5%   { opacity: 0.4; }
  90%  { opacity: 0.25; }
  100% { transform: translateY(115vh) translateX(var(--drift)); opacity: 0; }
}

@keyframes flowerSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ==========================================================================
   GLYPH DIVIDER
   ========================================================================== */
.glyph-divider {
  display: block;
  width: 148px;
  height: 18px;
  color: var(--gold);
  margin: 0 auto 22px;
  opacity: 0.70;
}

.glyph-divider.small {
  width: 118px;
  margin-bottom: 28px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(3, 0, 1, 0.60) 0%,
      rgba(3, 0, 1, 0.30) 40%,
      rgba(3, 0, 1, 0.62) 80%,
      #030001 100%),
    radial-gradient(ellipse at 50% 60%, rgba(230, 33, 23, 0.12) 0%, transparent 55%),
    url('rashid.png') no-repeat center center;
  background-size: cover;
}

/* Corner brackets */
.hero-corner {
  position: absolute;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-color: var(--gold);
  opacity: 0.80;
}
.hero-corner--tl { top: 20px; left: 20px;   border-top: 1px solid; border-left: 1px solid; }
.hero-corner--tr { top: 20px; right: 20px;  border-top: 1px solid; border-right: 1px solid; }
.hero-corner--bl { bottom: 20px; left: 20px;  border-bottom: 1px solid; border-left: 1px solid; }
.hero-corner--br { bottom: 20px; right: 20px; border-bottom: 1px solid; border-right: 1px solid; }

/* Ambient shimmer particles */
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle, rgba(245, 235, 230, 0.80) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(200, 57, 58, 0.45)  0 1px, transparent 2px);
  background-size: 120px 120px, 180px 180px;
  animation: heroParticles 38s linear infinite;
}

@keyframes heroParticles {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 220px -520px, -340px -680px; }
}

.hero-sprig {
  position: absolute;
  width: 92px;
  height: 154px;
  color: rgba(200, 57, 58, 0.40);
  opacity: 0.5;
  z-index: 2;
}

.hero-sprig--left  { top: 6%;    left: -18px;  transform: rotate(-8deg); }
.hero-sprig--right { bottom: 4%; right: -18px; transform: rotate(172deg); }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

/* ── Hero text ── */
.bismillah-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.3rem, 4.4vw, 1.9rem);
  color: var(--gold-soft);
  direction: rtl;
  margin-bottom: 8px;
  animation: fadeUp 1s ease 0.1s both;
}

.bismillah-en {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-bottom: 26px;
  animation: fadeUp 1s ease 0.2s both;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  animation: fadeUp 1s ease 0.3s both;
}

.names { animation: fadeUp 1s ease 0.4s both; }

.name-block { display: block; }

.name-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.6rem, 10vw, 6.4rem);
  line-height: 1.0;
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(245, 235, 230, 0.20);
}

.parent-text {
  display: block;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.names .amp {
  display: block;
  font-family: var(--font-sub);
  font-style: italic;
  color: #ffffff;
  font-size: clamp(1.4rem, 3.8vw, 2.2rem);
  margin: 6px 0;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.30);
}

.hero-date {
  margin-top: 28px;
  animation: fadeUp 1s ease 0.5s both;
}

.date-en {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  display: inline-block;
  min-width: 260px;
}

.date-hijri {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollLine 1.8s ease-in-out infinite;
}

.scroll-cue p {
  font-family: var(--font-eyebrow);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ==========================================================================
   INVITE NOTE
   ========================================================================== */
.invite-note {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 90px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.invite-note p {
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
}

/* ==========================================================================
   SHARED SECTION STYLES
   ========================================================================== */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  color: var(--gold-soft);
  margin-bottom: 50px;
  text-shadow: 0 0 18px rgba(245, 235, 230, 0.15);
  line-height: 1.0;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   OCCASION CARDS
   ========================================================================== */
.occasion-card,
.venue-card {
  position: relative;
  background: linear-gradient(145deg, var(--panel), rgba(6, 1, 2, 0.86));
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 44px clamp(20px, 6vw, 56px);
  max-width: 560px;
  margin: 0 auto;
  box-shadow: inset 0 0 70px rgba(230, 33, 23, 0.04), 0 30px 80px rgba(0, 0, 0, 0.42);
}

.occasion-event-title {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.card-corner-sprig {
  position: absolute;
  top: -20px;
  right: 14px;
  width: 30px;
  height: 50px;
  color: var(--gold);
  opacity: 0.50;
  transform: rotate(18deg);
}

.occasion-row {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 6px 0;
}

.occasion-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(20, 3, 6, 0.65);
}

.occasion-label {
  font-family: var(--font-eyebrow);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.occasion-value {
  font-family: var(--font-sub);
  font-size: 22px;
  color: var(--gold-soft);
}

.occasion-venue-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
  font-style: italic;
}

.occasion-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

/* ==========================================================================
   COUNTDOWN
   ========================================================================== */
.countdown-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 2.4vw, 20px);
}

.count-box {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(100px, 22vw, 140px);
  min-height: 142px;
  padding: 22px 8px;
  background: rgba(20, 3, 6, 0.65);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 30px rgba(230, 33, 23, 0.04);
}

.count-box::before,
.count-box::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
  font-size: 12px;
}

.count-box::before { top: -8px;    left: -6px; }
.count-box::after  { bottom: -10px; right: -6px; }

.count-num {
  display: block;
  font-family: var(--font-sub);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1;
}

.count-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-eyebrow);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ==========================================================================
   VENUE
   ========================================================================== */
.venue-name {
  font-family: var(--font-sub);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 600;
}

.venue-address {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(200, 57, 58, 0.60);
  color: #F5EBE6;
  background: linear-gradient(135deg, #9a1a20, #C8393A, #7a0e14);
  text-decoration: none;
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 0 20px rgba(230, 33, 23, 0.22);
}

.maps-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 33, 23, 0.30);
}

.venue-map {
  width: 100%;
  height: 240px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.72) sepia(0.28);
}

/* ==========================================================================
   RSVP
   ========================================================================== */
.rsvp-card {
  position: relative;
  background: linear-gradient(145deg, var(--panel), rgba(6, 1, 2, 0.86));
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 48px clamp(24px, 6vw, 60px);
  max-width: 580px;
  margin: 0 auto;
  box-shadow: inset 0 0 70px rgba(230, 33, 23, 0.04), 0 30px 80px rgba(0, 0, 0, 0.42);
  text-align: left;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rsvp-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.rsvp-field:first-child { margin-bottom: 20px; }

.rsvp-label {
  font-family: var(--font-eyebrow);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.rsvp-toggle {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.toggle-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(20, 3, 6, 0.65);
  color: var(--muted);
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.10em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
}

.toggle-btn.active {
  background: linear-gradient(135deg, #9a1a20, #C8393A, #7a0e14);
  color: #F5EBE6;
  border-color: rgba(200, 57, 58, 0.60);
  box-shadow: 0 0 20px rgba(230, 33, 23, 0.25);
}

.toggle-btn:not(.active):hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.rsvp-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(3, 0, 1, 0.70);
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.rsvp-input::placeholder { color: rgba(196, 144, 154, 0.50); }

.rsvp-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 57, 58, 0.15);
}

.rsvp-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.rsvp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 28px;
  background: linear-gradient(135deg, #9a1a20, #C8393A, #7a0e14);
  color: #F5EBE6;
  border: 1px solid rgba(200, 57, 58, 0.60);
  border-radius: 0;
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.18s ease, box-shadow 0.22s ease, opacity 0.2s ease;
  box-shadow: 0 0 24px rgba(230, 33, 23, 0.28);
}

.rsvp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(230, 33, 23, 0.35);
}

.rsvp-submit:active  { transform: translateY(0); }
.rsvp-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.rsvp-success {
  text-align: center;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--gold);
}

.rsvp-success-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(245, 235, 230, 0.20);
}

.rsvp-success-sub {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 380px;
}

/* ==========================================================================
   FLOATING MUSIC BUTTON
   ========================================================================== */
.music-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(42, 6, 10, 0.92);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(230, 33, 23, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.6s,
              background-color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.music-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.music-btn:hover {
  background: rgba(230, 33, 23, 0.18);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 25px rgba(230, 33, 23, 0.40);
  transform: scale(1.08);
}

.music-btn:active { transform: scale(0.96); }

.music-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  pointer-events: none;
}

.music-ring.spinning {
  border-top-color: var(--gold);
  border-right-color: rgba(200, 57, 58, 0.30);
  animation: spinRing 2.4s linear infinite;
}

@keyframes spinRing { to { transform: rotate(360deg); } }

/* ==========================================================================
   THANK YOU
   ========================================================================== */
.thankyou {
  padding-bottom: 120px;
  background: linear-gradient(180deg, transparent, rgba(230, 33, 23, 0.06));
}

.thankyou-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 26px;
}

.thankyou-names {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(245, 235, 230, 0.20);
  line-height: 1.1;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 480px) {
  .occasion-row { gap: 14px; }
  .hero-sprig   { width: 64px; height: 108px; opacity: 0.30; }
  .rsvp-toggle  { flex-direction: column; }
  .toggle-btn   { min-width: unset; }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   COUPLES IMAGE SECTION
   ========================================================================== */
.couples-section {
  padding-bottom: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.couples-img-container {
  border: 1px solid var(--line);
  padding: 12px;
  background: linear-gradient(145deg, var(--panel), rgba(6, 1, 2, 0.86));
  box-shadow: inset 0 0 70px rgba(230, 33, 23, 0.04), 0 30px 80px rgba(0, 0, 0, 0.42);
}

.couples-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(0.95) brightness(0.92);
}
