/* ═══════════════════════════════════════════════
   SOFIA & NIKITA — WEDDING INVITATION
   Cinematic, luxurious, romantic design
═══════════════════════════════════════════════ */

:root {
  --rose: #D4A5A5;
  --rose-light: #FDE8E0;
  --rose-deep: #B87878;
  --rose-glow: rgba(212,165,165,0.4);
  --sage: #9CAF88;
  --sage-deep: #6B8A5A;
  --forest: #2D5F2D;
  --gold: #C9B037;
  --gold-light: #E8D070;
  --gold-dark: #A08C20;
  --gold-glow: rgba(201,176,55,0.35);
  --ivory: #FFFFF0;
  --ivory-warm: #FDF6EC;
  --ivory-deep: #F5EDD0;
  --lavender: #C8B8D4;
  --dark: #1a1510;
  --dark-warm: #2A1F1A;
  --dark-card: #241c15;
  --text: #4A3728;
  --text-light: #6B5242;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--rose), var(--gold)); border-radius: 4px; }
::selection { background: rgba(201,176,55,0.3); color: var(--ivory); }

/* ══════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner { text-align: center; position: relative; }
.loader__ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,176,55,0.15);
  border-top-color: var(--gold);
  animation: spin 1.2s linear infinite;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.loader__ring--2 {
  width: 90px; height: 90px;
  border-top-color: var(--rose);
  animation-direction: reverse;
  animation-duration: 1.8s;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.loader__monogram {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  line-height: 120px;
}
.loader__monogram span { color: var(--rose-light); font-size: 1.5rem; margin: 0 2px; }
.loader__text {
  margin-top: 76px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253,232,224,0.4);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ══════════════════════════════════════
   CURSOR GLOW (desktop)
══════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,176,55,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  display: none;
}
@media (hover: hover) {
  .cursor-glow { display: block; }
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100svh;
  z-index: 1;
  pointer-events: none;
}
.hero__frame {
  position: absolute;
  inset: 20px;
  z-index: 3;
  pointer-events: none;
}
.hero__frame-corner {
  position: absolute;
  width: clamp(100px, 18vw, 200px);
  height: clamp(100px, 18vw, 200px);
  opacity: 0;
  animation: fadeCorner 1.5s ease forwards;
}
.hero__frame-corner--tl { top: 0; left: 0; animation-delay: 1.2s; }
.hero__frame-corner--tr { top: 0; right: 0; animation-delay: 1.4s; }
.hero__frame-corner--bl { bottom: 0; left: 0; animation-delay: 1.6s; }
.hero__frame-corner--br { bottom: 0; right: 0; animation-delay: 1.8s; }
@keyframes fadeCorner {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 40px 24px;
  will-change: transform;
}
.anim-item {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.anim-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(253,232,224,0.55);
  margin-bottom: 28px;
}
.hero__line-deco {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}
.hero__name {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 400;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 35%, var(--gold) 55%, #fff 80%, var(--gold-light) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShift 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 30px rgba(201,176,55,0.3));
  position: relative;
}
@keyframes goldShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero__name--second { margin-top: 0; }
.hero__amp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 40px;
  margin: 2px 0;
  animation: floatSoft 4s ease-in-out infinite;
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hero__ornament {
  width: 100%;
  max-width: 400px;
  margin: 20px auto 28px;
}
.hero__ornament svg { width: 100%; }
.hero__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}
.hero__date-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.08em;
}
.hero__date-month {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--rose-light);
  letter-spacing: 0.1em;
}
.hero__date-dot {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.6;
}
.hero__weekday {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(201,176,55,0.55);
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(253,232,224,0.4);
  transition: color 0.4s ease;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50px; left: 0;
  width: 1px; height: 50px;
  background: var(--gold-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100px); opacity: 0; }
}
.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about {
  position: relative;
  padding: 140px 0;
  background: var(--ivory-warm);
  overflow: hidden;
  text-align: center;
}
.about__bg-flora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.flora {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.flora--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: floatBlob 20s ease-in-out infinite;
}
.flora--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  animation: floatBlob 25s ease-in-out infinite reverse;
}
.flora--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: floatBlob 18s ease-in-out infinite 5s;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.about__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about__icon {
  width: 90px;
  margin: 0 auto 28px;
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.about__title { margin-bottom: 16px; }
.about__title-script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.about__divider {
  width: 200px;
  margin: 0 auto 40px;
}
.about__quote {
  position: relative;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(253,232,224,0.5) 0%, rgba(245,237,208,0.4) 100%);
  border-radius: 32px;
  border: 1px solid rgba(212,165,165,0.2);
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(74,55,40,0.06);
}
.about__quote-mark {
  font-family: var(--font-script);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
}
.about__quote-mark--open { top: 10px; left: 24px; }
.about__quote-mark--close { bottom: -10px; right: 24px; }
.about__text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 14px;
}
.about__text:last-of-type { margin-bottom: 0; }
.about__text--glow {
  color: var(--rose-deep);
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
}
.about__couple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
}
.about__name-block { text-align: center; }
.about__name-script {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  display: block;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__name-role {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}
.about__heart-wrap {
  position: relative;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__heart-pulse {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-glow);
  animation: heartPulseRing 2s ease-in-out infinite;
}
@keyframes heartPulseRing {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}
.about__heart-icon {
  font-size: 1.6rem;
  color: var(--rose);
  animation: heartbeat 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
  60% { transform: scale(1); }
}

/* ══════════════════════════════════════
   PHOTO SHOWCASE — single cinematic photo
══════════════════════════════════════ */
.photo-showcase {
  position: relative;
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}
.photo-showcase__inner {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 24px;
}
.photo-showcase__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(201,176,55,0.2);
  box-shadow:
    0 20px 70px rgba(0,0,0,0.4),
    0 0 80px rgba(201,176,55,0.06);
  transition: all 0.6s var(--ease);
}
.photo-showcase__frame:hover {
  border-color: rgba(201,176,55,0.4);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    0 0 100px rgba(201,176,55,0.1);
  transform: translateY(-4px);
}
.photo-showcase__img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.photo-showcase__frame:hover .photo-showcase__img {
  transform: scale(1.03);
}

/* Decorative corners */
.photo-showcase__corner {
  position: absolute;
  width: 40px; height: 40px;
  z-index: 2;
  pointer-events: none;
}
.photo-showcase__corner::before,
.photo-showcase__corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.photo-showcase__frame:hover .photo-showcase__corner::before,
.photo-showcase__frame:hover .photo-showcase__corner::after {
  opacity: 0.7;
}
.photo-showcase__corner::before { width: 24px; height: 1.5px; }
.photo-showcase__corner::after { width: 1.5px; height: 24px; }
.photo-showcase__corner--tl { top: 12px; left: 12px; }
.photo-showcase__corner--tl::before { top: 0; left: 0; }
.photo-showcase__corner--tl::after { top: 0; left: 0; }
.photo-showcase__corner--tr { top: 12px; right: 12px; }
.photo-showcase__corner--tr::before { top: 0; right: 0; }
.photo-showcase__corner--tr::after { top: 0; right: 0; }
.photo-showcase__corner--bl { bottom: 12px; left: 12px; }
.photo-showcase__corner--bl::before { bottom: 0; left: 0; }
.photo-showcase__corner--bl::after { bottom: 0; left: 0; }
.photo-showcase__corner--br { bottom: 12px; right: 12px; }
.photo-showcase__corner--br::before { bottom: 0; right: 0; }
.photo-showcase__corner--br::after { bottom: 0; right: 0; }

.photo-showcase__caption {
  margin-top: 28px;
}
.photo-showcase__ornament {
  width: 180px;
  margin: 0 auto 14px;
  display: block;
}
.photo-showcase__text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: rgba(201,176,55,0.4);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   COUNTDOWN SECTION
══════════════════════════════════════ */
.countdown {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.countdown__parallax-bg {
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,165,165,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(156,175,136,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(201,176,55,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #1a2a15 0%, #1a1510 40%, #1a1510 100%);
  z-index: 0;
  will-change: transform;
}
.countdown__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.countdown .container { z-index: 2; }
.countdown__top { margin-bottom: 48px; }
.countdown__label-top {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(253,232,224,0.4);
  margin-bottom: 8px;
}
.countdown__heading {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--ivory);
  font-weight: 400;
  background: linear-gradient(135deg, #fff, var(--gold-light), var(--gold), #fff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShift 8s ease-in-out infinite;
}
.countdown__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.countdown__card {
  position: relative;
  width: clamp(80px, 18vw, 150px);
  padding: clamp(20px, 3vw, 36px) 8px;
  background: rgba(255,255,245,0.04);
  border: 1px solid rgba(201,176,55,0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.countdown__card:hover {
  border-color: rgba(201,176,55,0.35);
  box-shadow: 0 0 40px rgba(201,176,55,0.1);
}
.countdown__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(201,176,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.countdown__value {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.countdown__value--accent { color: var(--gold-light); }
.countdown__value.tick {
  animation: numTick 0.35s var(--ease-spring);
}
@keyframes numTick {
  0% { transform: translateY(-10px) scale(1.1); opacity: 0.5; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.countdown__unit {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253,232,224,0.45);
  margin-top: 10px;
}
.countdown__separator {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(201,176,55,0.3);
  font-weight: 300;
  animation: separatorPulse 1s ease-in-out infinite;
  align-self: flex-start;
  padding-top: clamp(20px, 3vw, 36px);
}
@keyframes separatorPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.countdown__date {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(253,232,224,0.45);
  letter-spacing: 0.15em;
}

/* ══════════════════════════════════════
   EVENT SECTIONS (ZAGS, BANQUET, DRINKS, DAY2)
══════════════════════════════════════ */
.event-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.event-section--light {
  background: var(--ivory-warm);
}
.event-section--dark {
  background: var(--dark);
}

/* EVENT CARD — Glass morphism */
.event-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  background: linear-gradient(135deg, rgba(253,232,224,0.5) 0%, rgba(245,237,208,0.4) 100%);
  border-radius: 32px;
  border: 1px solid rgba(212,165,165,0.2);
  box-shadow: 0 20px 60px rgba(74,55,40,0.06);
  position: relative;
  backdrop-filter: blur(10px);
}
.event-card--dark {
  background: linear-gradient(135deg, rgba(255,255,245,0.04) 0%, rgba(201,176,55,0.03) 100%);
  border-color: rgba(201,176,55,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  color: var(--ivory);
}

/* Icon with glow */
.event-card__icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  background: rgba(201,176,55,0.08);
  border: 1px solid rgba(201,176,55,0.2);
  animation: floatSoft 6s ease-in-out infinite;
  position: relative;
}
.event-card--dark .event-card__icon {
  background: rgba(201,176,55,0.1);
  border-color: rgba(201,176,55,0.25);
}
.event-card__icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,176,55,0.15) 0%, transparent 70%);
  animation: heartPulseRing 3s ease-in-out infinite;
}

.event-card__title {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.event-card__title--zags {
  font-family: 'Playfair Display', var(--font-heading), serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
  filter: drop-shadow(0 2px 12px rgba(201,176,55,0.2));
}
.event-card__title-zags {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.event-card__divider {
  width: 200px;
  margin: 0 auto 24px;
}

/* ── HERO TIME — the big prominent time display ── */
.event-card__hero-time {
  margin: 8px auto 28px;
}
.event-card__hero-time-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201,176,55,0.06), rgba(212,165,165,0.06));
  border: 1px solid rgba(201,176,55,0.2);
  position: relative;
}
.event-card__hero-time-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,176,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.event-card__hero-time-date {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 4px;
}
.event-card--dark .event-card__hero-time-date {
  color: var(--rose-light);
}
.event-card__hero-time-num {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(201,176,55,0.3));
  animation: timeGlow 3s ease-in-out infinite;
}
@keyframes timeGlow {
  0%, 100% { filter: drop-shadow(0 2px 20px rgba(201,176,55,0.3)); }
  50% { filter: drop-shadow(0 4px 35px rgba(201,176,55,0.55)); }
}
.event-card__hero-time-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.event-card--dark .event-card__hero-time-label {
  color: rgba(253,232,224,0.45);
}
.event-card__hero-time--dark .event-card__hero-time-inner {
  background: linear-gradient(135deg, rgba(201,176,55,0.08), rgba(255,255,245,0.03));
  border-color: rgba(201,176,55,0.2);
}

/* ── LOCATION BLOCK — prominent address display ── */
.event-card__location-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 28px;
  margin: 0 auto 24px;
  max-width: 480px;
  border-radius: 16px;
  background: rgba(212,165,165,0.06);
  border: 1px solid rgba(212,165,165,0.12);
  transition: all 0.4s var(--ease);
}
.event-card__location-block:hover {
  border-color: rgba(212,165,165,0.3);
  box-shadow: 0 4px 20px rgba(212,165,165,0.08);
}
.event-card__location-block--dark {
  background: rgba(255,255,245,0.03);
  border-color: rgba(201,176,55,0.12);
}
.event-card__location-block--dark:hover {
  border-color: rgba(201,176,55,0.3);
  box-shadow: 0 4px 20px rgba(201,176,55,0.08);
}
.event-card__location-pin {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(212,165,165,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  font-size: 1.1rem;
}
.event-card__location-block--dark .event-card__location-pin {
  background: rgba(201,176,55,0.1);
  color: var(--gold);
}
.event-card__location-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.event-card__location-name {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--text);
}
.event-card--dark .event-card__location-name {
  color: var(--ivory);
}
.event-card__location-addr {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-top: 2px;
}
.event-card--dark .event-card__location-addr {
  color: rgba(253,232,224,0.5);
}

.event-card__note {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 32px;
}
.event-card__note strong {
  color: var(--gold);
  font-weight: 500;
}
.event-card--dark .event-card__note {
  color: rgba(253,232,224,0.55);
}

/* ── SCHEDULE CARDS — for banquet timeline ── */
.schedule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
}
.schedule-card {
  padding: 24px 14px;
  border-radius: 20px;
  background: rgba(255,255,245,0.04);
  border: 1px solid rgba(201,176,55,0.1);
  text-align: center;
  transition: all 0.4s var(--ease);
}
.schedule-card:hover {
  border-color: rgba(201,176,55,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,176,55,0.08);
}
.schedule-card--accent {
  border-color: rgba(201,176,55,0.25);
  background: rgba(201,176,55,0.06);
}
.schedule-card__time {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(201,176,55,0.2));
}
.schedule-card__icon {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 8px;
}
.schedule-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 6px;
}
.schedule-card__desc {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(253,232,224,0.45);
  line-height: 1.5;
}

/* ── PREFERENCE BLOCKS — visual intro for drinks/transport ── */
.pref-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.pref-block {
  padding: 24px 16px;
  border-radius: 20px;
  background: rgba(201,176,55,0.04);
  border: 1px solid rgba(201,176,55,0.12);
  text-align: center;
  transition: all 0.4s var(--ease);
}
.pref-block:hover {
  border-color: rgba(201,176,55,0.25);
  box-shadow: 0 4px 20px rgba(201,176,55,0.06);
  transform: translateY(-2px);
}
.pref-block__icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(201,176,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}
.pref-block__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.pref-block__text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
}

/* ══════════════════════════════════════
   MINI FORMS
══════════════════════════════════════ */
.mini-form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,165,165,0.15);
  text-align: left;
}
.mini-form--dark {
  border-top-color: rgba(201,176,55,0.12);
}

.mini-form__heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 24px;
  color: rgba(253,232,224,0.7);
}

/* Section labels inside forms */
.mini-form__section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}
.mini-form__section-label i {
  color: var(--gold);
  font-size: 1rem;
}
.mini-form--dark .mini-form__section-label {
  color: rgba(253,232,224,0.7);
}

.mini-form__field {
  margin-bottom: 20px;
}
.mini-form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.mini-form--dark .mini-form__label {
  color: rgba(253,232,224,0.65);
}
.mini-form__optional {
  font-weight: 300;
  font-style: italic;
  opacity: 0.6;
  font-size: 0.8rem;
}

.mini-form__input,
.mini-form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255,255,245,0.6);
  border: 1px solid rgba(212,165,165,0.2);
  border-radius: 14px;
  outline: none;
  transition: all 0.3s var(--ease);
}
.mini-form__input:focus,
.mini-form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,176,55,0.12);
}

.mini-form--dark .mini-form__input,
.mini-form--dark .mini-form__textarea {
  background: rgba(255,255,245,0.05);
  border-color: rgba(201,176,55,0.15);
  color: var(--ivory);
}
.mini-form--dark .mini-form__input:focus,
.mini-form--dark .mini-form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,176,55,0.15);
}
.mini-form--dark .mini-form__input::placeholder,
.mini-form--dark .mini-form__textarea::placeholder {
  color: rgba(253,232,224,0.3);
}

.mini-form__textarea {
  resize: vertical;
  min-height: 60px;
}

/* Radio buttons */
.mini-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.mini-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s ease;
}
.mini-form--dark .mini-form__radio {
  color: rgba(253,232,224,0.7);
}
.mini-form__radio input[type="radio"] {
  display: none;
}
.mini-form__radio-custom {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(201,176,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  position: relative;
}
.mini-form__radio-custom::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--ease-spring);
}
.mini-form__radio input[type="radio"]:checked ~ .mini-form__radio-custom {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201,176,55,0.2);
}
.mini-form__radio input[type="radio"]:checked ~ .mini-form__radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

/* Card-style radio buttons (for transport) */
.mini-form__radio--card {
  flex: 1;
  min-width: 140px;
}
.mini-form__radio--card .mini-form__radio-custom { display: none; }
.mini-form__radio-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(201,176,55,0.04);
  border: 1.5px solid rgba(201,176,55,0.12);
  transition: all 0.3s var(--ease);
  width: 100%;
  text-align: center;
}
.mini-form__radio-card-inner i {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.mini-form__radio-card-inner span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
}
.mini-form__radio--card input[type="radio"]:checked ~ .mini-form__radio-card-inner {
  border-color: var(--gold);
  background: rgba(201,176,55,0.1);
  box-shadow: 0 4px 20px rgba(201,176,55,0.12);
  transform: translateY(-2px);
}
.mini-form__radio--card input[type="radio"]:checked ~ .mini-form__radio-card-inner i {
  opacity: 1;
  transform: scale(1.15);
}
.mini-form__radio-card-inner:hover {
  border-color: rgba(201,176,55,0.25);
  background: rgba(201,176,55,0.06);
}

/* Submit button */
.mini-form__submit {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.mini-form__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mini-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,176,55,0.3);
}
.mini-form__submit:hover::before {
  opacity: 1;
}
.mini-form__submit:active {
  transform: translateY(0);
}
.mini-form__submit i {
  margin-right: 8px;
}

.mini-form__success {
  text-align: center;
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-deep);
  animation: fadeInUp 0.6s var(--ease-out);
}
.mini-form__success i {
  color: var(--sage);
  margin-right: 8px;
  font-size: 1.3rem;
}
.mini-form--dark .mini-form__success {
  color: var(--sage);
}

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

.mini-form__divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,176,55,0.2), transparent);
  margin: 28px 0;
}

/* ══════════════════════════════════════
   SAVE THE DATE SECTION
══════════════════════════════════════ */
.savedate {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
  background: var(--dark);
}
.savedate__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.savedate__inner {
  position: relative;
  z-index: 2;
}
.savedate__pre {
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(253,232,224,0.4);
  margin-bottom: 28px;
}
.savedate__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.savedate__day {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 4px 40px rgba(201,176,55,0.2));
}
.savedate__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.savedate__month {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--rose-light);
  line-height: 1.1;
}
.savedate__year {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: rgba(253,232,224,0.5);
  line-height: 1.1;
}
.savedate__ornament {
  width: 300px;
  max-width: 80%;
  margin: 0 auto 32px;
}
.savedate__text {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(253,232,224,0.65);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 24px;
}
/* .savedate__hashtag removed */

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  position: relative;
  padding: 60px 0 40px;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}
.footer__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.footer__inner { position: relative; z-index: 1; }
.footer__monogram {
  font-family: var(--font-script);
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin-bottom: 12px;
}
.footer__love {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(253,232,224,0.6);
  margin-bottom: 6px;
}
.footer__love span { color: var(--rose-light); }
.footer__date {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: rgba(201,176,55,0.4);
  margin-bottom: 16px;
}
.footer__divider {
  width: 200px;
  margin: 0 auto 16px;
}
.footer__copy {
  font-size: 0.65rem;
  color: rgba(253,232,224,0.2);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero__frame { inset: 12px; }
  .hero__overline { gap: 10px; font-size: 0.6rem; }
  .hero__line-deco { width: 30px; }
  .hero__ornament { max-width: 280px; }

  .about { padding: 100px 0; }
  .about__quote { padding: 28px 24px; }
  .about__quote-mark { display: none; }
  .about__couple { gap: 20px; }

  .photo-showcase { padding: 60px 0; }
  .photo-showcase__frame { border-radius: 18px; }

  .countdown { padding: 90px 0; }
  .countdown__separator { display: none; }
  .countdown__grid { gap: 10px; }

  .event-section { padding: 80px 0; }
  .event-card { padding: 40px 24px; }

  .schedule-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .schedule-card { padding: 18px 10px; }
  .schedule-card__time { font-size: 1.4rem; }
  .schedule-card__desc { font-size: 0.72rem; }

  .pref-blocks { gap: 10px; }
  .pref-block { padding: 18px 12px; }

  .mini-form__radios { flex-direction: column; gap: 12px; }
  .mini-form__radio--card { min-width: 100%; }
  .mini-form__radio-card-inner { flex-direction: row; padding: 14px 18px; }

  .savedate { padding: 100px 0; }
  .savedate__date { gap: 14px; }
}

@media (max-width: 480px) {
  .hero__name { font-size: clamp(2.8rem, 16vw, 4.5rem); }
  .hero__date { gap: 8px; }

  .photo-showcase__inner { padding: 0 16px; }
  .photo-showcase__frame { border-radius: 16px; }
  .photo-showcase__corner { width: 30px; height: 30px; }
  .photo-showcase__corner::before { width: 18px; }
  .photo-showcase__corner::after { height: 18px; }

  .countdown__card { width: 72px; padding: 18px 6px; border-radius: 14px; }
  .countdown__value { font-size: 1.8rem; }

  .event-card { padding: 32px 18px; border-radius: 24px; }

  .event-card__hero-time-inner { padding: 16px 32px; }
  .event-card__hero-time-num { font-size: clamp(2.8rem, 12vw, 4rem); }

  .event-card__location-block { padding: 12px 18px; gap: 10px; }
  .event-card__location-pin { width: 36px; height: 36px; font-size: 0.9rem; }

  .schedule-cards { grid-template-columns: 1fr; gap: 10px; }
  .schedule-card { padding: 16px 14px; display: flex; align-items: center; gap: 14px; text-align: left; }
  .schedule-card__time { margin-bottom: 0; font-size: 1.5rem; flex-shrink: 0; width: 60px; }
  .schedule-card__icon { margin-bottom: 0; display: none; }
  .schedule-card__title { font-size: 0.9rem; margin-bottom: 2px; }
  .schedule-card__desc { font-size: 0.75rem; }

  .pref-blocks { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pref-block { padding: 16px 10px; }
  .pref-block__icon { width: 40px; height: 40px; font-size: 1rem; }
}
