/* =====================================================
   PARTY INVITATION — style.css
   ===================================================== */

/* =====================================================
   SPLASH SCREEN
   ===================================================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 110% 110% at 50% 50%, #193326 0%, #080f0b 100%);
  cursor: pointer;
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), visibility .7s;
  will-change: opacity;
  /* Prevent body scroll while splash is up */
  overflow: hidden;
}

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

.splash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(200, 169, 110, 0.15) 0%, transparent 80%);
  opacity: 0;
  animation: splashGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes splashGlow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}


/* Body */
.splash-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

@keyframes splashBorderIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.splash-border {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200, 169, 110, .25);
  border-radius: 20px;
  pointer-events: none;
  animation: splashBorderIn 1.5s cubic-bezier(.16, 1, .3, 1) both, borderPulse 4s ease-in-out infinite alternate 1.5s;
}

@keyframes borderPulse {
  0% {
    box-shadow: inset 0 0 0 rgba(200, 169, 110, 0);
    border-color: rgba(200, 169, 110, .25);
  }

  100% {
    box-shadow: inset 0 0 30px rgba(200, 169, 110, .15);
    border-color: rgba(200, 169, 110, .5);
  }
}

.splash-icon {
  margin-bottom: 12px;
  animation: fadeUpS .8s .1s cubic-bezier(.16, 1, .3, 1) both;
}

.splash-icon svg {
  animation: slowSpin 18s linear infinite;
}

@keyframes slowSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.splash-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 300;
  animation: fadeUpS .8s .2s cubic-bezier(.16, 1, .3, 1) both;
}

.splash-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(38px, 12vw, 68px);
  color: #fff;
  text-shadow: 0 2px 32px rgba(200, 169, 110, .45);
  margin-bottom: 16px;
  animation: fadeUpS .8s .3s cubic-bezier(.16, 1, .3, 1) both;
}

.splash-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, .6), transparent);
  margin: 0 auto 20px;
  animation: fadeUpS .8s .4s cubic-bezier(.16, 1, .3, 1) both;
}

.splash-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(11px, 3vw, 14px);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, .85);
  font-weight: 300;
  margin-bottom: 32px;
  animation: fadeUpS .8s .5s cubic-bezier(.16, 1, .3, 1) both;
}

.splash-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid rgba(200, 169, 110, .55);
  border-radius: 50px;
  background: rgba(200, 169, 110, .08);
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(10px, 3vw, 12px);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #e8c98e;
  font-weight: 400;
  animation: fadeUpS .8s .6s cubic-bezier(.16, 1, .3, 1) both, ctaPulse 2.4s 1.2s ease-in-out infinite;
  cursor: pointer;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 169, 110, .35);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(200, 169, 110, 0);
  }
}

.splash-cta-icon {
  width: 10px;
  height: 10px;
  opacity: .8;
}

.splash-music-note {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, .4);
  font-weight: 300;
  margin-top: 24px;
  animation: fadeUpS .8s .7s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes fadeUpS {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/* Flash on tap */
.splash.tapped::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(200, 169, 110, .12);
  animation: tapFlash .35s forwards;
  pointer-events: none;
}

@keyframes tapFlash {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  pointer-events: none;
}

address {
  font-style: normal;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ── Security: text protection ── */
/* Applied to named classes only — map iframe is unaffected (cross-origin) */
.splash,
.splash-body,
.splash-heading,
.splash-sub,
.splash-eyebrow,
.splash-cta,
.arch-frame,
.eyebrow,
.script-title,
.divider,
.date-block,
.date-main,
.date-sub,
.time-pill,
.section-label,
.venue-name,
.venue-address,
.countdown-wrap,
.cd-num,
.cd-lbl,
.cd-sep,
.footer-note,
.site-footer,
.site-footer__text,
.gold-name {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ---- Tokens ---- */
:root {
  --deep: #0a1a12;
  --card: #162b1f;
  --card2: #0f2018;
  --gold: #c8a96e;
  --gold-l: #e8c98e;
  --gold-d: rgba(200, 169, 110, .4);
  --white: #fff;
  --muted: rgba(255, 255, 255, .52);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---- Base ---- */
html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  font-family: 'Josefin Sans', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 60px;
  position: relative;
}

/* ---- BG gradient ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 8%, rgba(200, 169, 110, .13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 75% at 88% 92%, rgba(61, 102, 81, .38) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #13271c 0%, var(--deep) 100%);
}

/* =====================================================
   MUSIC PILL
   ===================================================== */
.music-pill {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  z-index: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(10, 26, 18, .92);
  border: 1px solid rgba(200, 169, 110, .48);
  border-radius: 50px;
  color: var(--gold-l);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 300;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .55s;
  white-space: nowrap;
  pointer-events: none;
}

.music-pill.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.music-pill.gone {
  transform: translateX(-50%) translateY(-60px);
  opacity: 0;
  pointer-events: none;
}

/* =====================================================
   PARTICLES
   ===================================================== */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
  will-change: transform, opacity;
}

.particle.star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--gold-l);
  border-radius: 0;
}

.particle.twinkle {
  background: var(--white);
  border-radius: 50%;
  animation: twinkleAnim ease-in-out infinite;
}

@keyframes twinkleAnim {

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

  50% {
    opacity: .6;
    transform: scale(1.1);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(110vh) scale(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: .35;
  }

  90% {
    opacity: .12;
  }

  100% {
    transform: translateY(-10vh) scale(1) rotate(360deg);
    opacity: 0;
  }
}

/* =====================================================
   CONFETTI
   ===================================================== */
#confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}

/* =====================================================
   CARD
   ===================================================== */
.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  animation: fadeUp .9s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

/* ---- Arch Frame ---- */
.arch-frame {
  position: relative;
  background: linear-gradient(155deg, var(--card) 0%, var(--card2) 100%);
  border-radius: 24px;
  padding: 52px 44px 48px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(200, 169, 110, .26),
    0 0 0 6px rgba(200, 169, 110, .055),
    0 36px 90px rgba(0, 0, 0, .62),
    inset 0 1px 0 rgba(255, 255, 255, .065);
  transition: box-shadow .4s;
}

.arch-frame:hover {
  box-shadow:
    0 0 0 1px rgba(200, 169, 110, .44),
    0 0 0 10px rgba(200, 169, 110, .07),
    0 56px 110px rgba(0, 0, 0, .7),
    inset 0 1px 0 rgba(255, 255, 255, .09);
}

/* Inner ring */
.arch-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  border: 1px solid rgba(200, 169, 110, .16);
  pointer-events: none;
  z-index: 0;
}

/* Top gold bar */
.arch-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 4px 4px;
  z-index: 0;
}

/* ---- Shimmer ---- */
.shimmer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(200, 169, 110, .07) 50%, transparent 70%);
  animation: shimmerFade 9s ease-in-out infinite alternate;
}

@keyframes shimmerFade {
  0% {
    opacity: .25;
  }

  100% {
    opacity: 1;
  }
}

/* =====================================================
   FLORALS
   ===================================================== */
.floral {
  position: absolute;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 3;
}

.floral-tr svg,
.floral-br svg {
  transform: scaleX(-1);
}

.floral-tl {
  top: -14px;
  left: -18px;
  transform-origin: top left;
  animation: swayL 12s ease-in-out infinite;
}

.floral-tr {
  top: -14px;
  right: -18px;
  transform-origin: top right;
  animation: swayR 12s ease-in-out infinite reverse;
}

.floral-bl {
  bottom: -6px;
  left: -8px;
  transform-origin: bottom left;
  animation: swayL 14s ease-in-out infinite .8s;
}

.floral-br {
  bottom: -6px;
  right: -8px;
  transform-origin: bottom right;
  animation: swayR 14s ease-in-out infinite reverse .8s;
}

@keyframes swayL {

  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }

  50% {
    transform: rotate(-3deg) translateY(-5px);
  }
}

@keyframes swayR {

  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateY(-5px);
  }
}

/* =====================================================
   CARD CONTENT
   ===================================================== */
.card-content {
  position: relative;
  z-index: 1;
}



/* Eyebrow */
.eyebrow {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: .38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp .7s .3s var(--ease) forwards;
}

/* Title */
.script-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(40px, 11vw, 60px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 28px rgba(200, 169, 110, .28);
  opacity: 0;
  animation: fadeUp .7s .42s var(--ease) forwards;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  max-width: 140px;
  opacity: 0;
  animation: fadeUp .7s .55s var(--ease) forwards;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-d), transparent);
}

/* Date */
.date-block {
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .7s .65s var(--ease) forwards;
}

.date-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 9.5vw, 50px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .1em;
  line-height: 1;
}

.date-main sup {
  font-size: .44em;
  vertical-align: super;
  color: var(--gold-l);
}

.date-sub {
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--gold-l);
  font-weight: 400;
  margin-top: 8px;
  text-transform: uppercase;
}

/* Time pill */
.time-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 7px 16px;
  border: 1px solid rgba(200, 169, 110, .38);
  border-radius: 50px;
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--gold-l);
  font-weight: 300;
  text-transform: uppercase;
  background: rgba(200, 169, 110, .07);
}

.badge {
  font-size: 7.5px;
  letter-spacing: .14em;
  color: var(--deep);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

/* =====================================================
   COUNTDOWN
   ===================================================== */
.countdown-wrap {
  margin: 22px 0;
  opacity: 0;
  animation: fadeUp .7s .78s var(--ease) forwards;
}

.section-label {
  font-size: 8.5px;
  letter-spacing: .44em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 300;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 6.5vw, 36px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  min-width: 46px;
  text-align: center;
  background: rgba(200, 169, 110, .07);
  border: 1px solid rgba(200, 169, 110, .18);
  border-radius: 7px;
  padding: 6px 7px;
  position: relative;
}

.cd-num::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(200, 169, 110, .18);
}

.cd-num.flip {
  animation: flipNum .3s var(--ease);
}

@keyframes flipNum {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.cd-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold-d);
  line-height: 1;
  padding-top: 5px;
}

.cd-lbl {
  font-size: 7.5px;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
}

/* =====================================================
   VENUE
   ===================================================== */
.venue-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 169, 110, .13);
  opacity: 0;
  animation: fadeUp .7s .9s var(--ease) forwards;
}

.venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 5vw, 27px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-style: italic;
}

.venue-address {
  font-size: 10.5px;
  letter-spacing: .11em;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 200;
  text-transform: uppercase;
}

/* Map */
.map-wrap {
  position: relative;
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, .2);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .48);
  transition: border-color .3s;
  pointer-events: auto !important;
  user-select: auto !important;
  -webkit-user-select: auto !important;
  -webkit-touch-callout: default !important;
}

.map-wrap:hover {
  border-color: rgba(200, 169, 110, .44);
}



.map-iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
  z-index: 0;
}

/* Map button */
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, #a07840 100%);
  color: var(--deep);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(200, 169, 110, .26);
  transition: transform .28s var(--ease), box-shadow .28s;
  position: relative;
  overflow: hidden;
}

.map-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.map-btn:hover::after {
  transform: translateX(100%);
}

.map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(200, 169, 110, .48);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-note {
  margin-top: 30px;
  font-size: 9px;
  letter-spacing: .26em;
  color: rgba(255, 255, 255, .22);
  text-transform: uppercase;
  text-align: center;
  animation: fadeUp .7s 1.05s var(--ease) both;
  -webkit-user-select: none;
  user-select: none;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin-top: 24px;
  text-align: center;
  animation: fadeUp .7s 1.15s var(--ease) both;
  -webkit-user-select: none;
  user-select: none;
}

.site-footer__text {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(200, 169, 110, .12);
  border-radius: 50px;
  background: rgba(22, 43, 31, .5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: .25em;
  color: rgba(255, 255, 255, .32);
  text-transform: uppercase;
  font-weight: 300;
}

.gold-name {
  color: var(--gold-l);
  font-weight: 400;
  letter-spacing: .28em;
}

/* =====================================================
   REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE ≤ 600px (Tablet)
   ===================================================== */
@media (max-width: 600px) {
  body {
    padding: 24px 10px 48px;
  }

  .arch-frame {
    border-radius: 20px;
    padding: 56px 18px 38px;
  }

  .arch-frame::before {
    border-radius: 14px;
  }

  /* Florals — scaled & anchored perfectly */
  .floral-tl {
    top: -10px;
    left: -14px;
    transform-origin: top left;
    animation: swayLt 12s ease-in-out infinite;
  }

  .floral-tr {
    top: -10px;
    right: -14px;
    transform-origin: top right;
    animation: swayRt 12s ease-in-out infinite reverse;
  }

  .floral-bl {
    bottom: -4px;
    left: -6px;
    transform-origin: bottom left;
    animation: swayLt 14s ease-in-out infinite .8s;
  }

  .floral-br {
    bottom: -4px;
    right: -6px;
    transform-origin: bottom right;
    animation: swayRt 14s ease-in-out infinite reverse .8s;
  }

  @keyframes swayLt {

    0%,
    100% {
      transform: scale(.6) rotate(-6deg) translateY(0);
    }

    50% {
      transform: scale(.6) rotate(-2deg) translateY(-4px);
    }
  }

  @keyframes swayRt {

    0%,
    100% {
      transform: scale(.6) rotate(6deg) translateY(0);
    }

    50% {
      transform: scale(.6) rotate(2deg) translateY(-4px);
    }
  }

  .countdown {
    gap: 8px;
  }

  .cd-num {
    min-width: 40px;
  }

  .cd-sep {
    font-size: 20px;
  }
}

/* =====================================================
   RESPONSIVE ≤ 430px (Mobile)
   ===================================================== */
@media (max-width: 430px) {
  body {
    padding: 12px 6px 36px;
  }

  .arch-frame {
    border-radius: 16px;
    /* generous top padding — keeps all text BELOW the floral corners */
    padding: 58px 12px 28px;
  }

  .arch-frame::before {
    border-radius: 10px;
  }

  /* Florals — tiny scale, anchored perfectly */
  .floral-tl {
    top: -4px;
    left: -6px;
    transform-origin: top left;
    animation: swayLm 12s ease-in-out infinite;
  }

  .floral-tr {
    top: -4px;
    right: -6px;
    transform-origin: top right;
    animation: swayRm 12s ease-in-out infinite reverse;
  }

  .floral-bl {
    bottom: -2px;
    left: -4px;
    transform-origin: bottom left;
    animation: swayLm 14s ease-in-out infinite .8s;
    display: block;
  }

  .floral-br {
    bottom: -2px;
    right: -4px;
    transform-origin: bottom right;
    animation: swayRm 14s ease-in-out infinite reverse .8s;
    display: block;
  }

  @keyframes swayLm {

    0%,
    100% {
      transform: scale(.34) rotate(-6deg) translateY(0);
    }

    50% {
      transform: scale(.34) rotate(-2deg) translateY(-3px);
    }
  }

  @keyframes swayRm {

    0%,
    100% {
      transform: scale(.34) rotate(6deg) translateY(0);
    }

    50% {
      transform: scale(.34) rotate(2deg) translateY(-3px);
    }
  }

  .eyebrow {
    font-size: 8.5px;
    letter-spacing: .28em;
    margin-bottom: 6px;
  }

  .script-title {
    font-size: clamp(34px, 11vw, 50px);
    margin-bottom: 16px;
  }

  .date-main {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .date-sub {
    font-size: 13px;
    letter-spacing: .25em;
  }

  .time-pill {
    font-size: 8.5px;
    padding: 6px 10px;
    letter-spacing: .09em;
    gap: 5px;
  }

  .badge {
    font-size: 7px;
    padding: 2px 6px;
  }

  .section-label {
    font-size: 7.5px;
    letter-spacing: .36em;
  }

  .countdown {
    gap: 4px;
  }

  .cd-num {
    min-width: 30px;
    font-size: clamp(17px, 5.2vw, 24px);
    padding: 4px 4px;
    border-radius: 5px;
  }

  .cd-sep {
    font-size: 14px;
    padding-top: 2px;
  }

  .cd-lbl {
    font-size: 6px;
    letter-spacing: .12em;
  }

  .venue-name {
    font-size: clamp(16px, 4.8vw, 22px);
    margin-bottom: 8px;
  }

  .venue-address {
    font-size: 9px;
    letter-spacing: .07em;
    line-height: 1.8;
  }

  .map-iframe {
    height: 160px;
  }

  .map-btn {
    padding: 9px 16px;
    font-size: 8px;
    letter-spacing: .18em;
    margin-top: 14px;
  }

  .footer-note {
    font-size: 8px;
    letter-spacing: .14em;
    margin-top: 20px;
  }

  .site-footer {
    margin-top: 22px;
  }

  .site-footer__text {
    font-size: 9px;
    padding: 8px 12px;
    letter-spacing: .11em;
  }

  .music-pill {
    font-size: 9px;
    padding: 7px 14px;
    top: 10px;
  }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 900px) {
  .card {
    max-width: 560px;
  }

  .arch-frame {
    padding: 64px 60px 56px;
  }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
