/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0d0a07;
  --bg-warm: #1a1510;
  --text: #f5f0e8;
  --text-muted: #a09585;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --gold-dark: #8a6d3b;
  --rose: #c47a7a;
  --rose-light: #e8a5a5;
  --blush: #d4a89a;
  --card-bg: rgba(22, 18, 16, 0.85);
  --card-border: rgba(201, 169, 110, 0.15);
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.preloader-content {
  text-align: center;
}

.preloader-rings {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.preloader-ring {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: 50%;
  animation: ringPulse 1.5s ease-in-out infinite;
}

.preloader-ring:first-child {
  left: 10px;
  transform: translateY(-50%);
}

.preloader-ring:last-child {
  right: 10px;
  transform: translateY(-50%);
  animation-delay: 0.3s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(0.9); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold-light);
  letter-spacing: 8px;
  font-weight: 600;
}

.preloader-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 2px;
  display: block;
  margin-top: 8px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 1000;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-light);
}

.nav-logo span {
  font-style: italic;
  color: var(--rose-light);
  margin: 0 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-date {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 300;
}

/* ===== SECTION TAGS & TITLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--text);
}

/* ===== HERO ===== */
.hero-panel {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
}

/* Floating Petals */
.petals-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 10px;
  height: 14px;
  background: radial-gradient(ellipse at 30% 30%, var(--rose-light), var(--rose));
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
  animation-duration: calc(10s + var(--i) * 1.2s);
  animation-delay: calc(var(--i) * 0.7s);
  left: calc(var(--i) * 6.6%);
  top: -20px;
  transform: rotate(calc(var(--i) * 25deg));
  filter: blur(0.5px);
}

.petal:nth-child(even) {
  width: 8px;
  height: 10px;
  background: radial-gradient(ellipse at 30% 30%, var(--gold-light), var(--gold));
  animation-duration: calc(12s + var(--i) * 1s);
}

@keyframes petalFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) translateX(0);
  }
  8% { opacity: 0.7; }
  85% { opacity: 0.3; }
  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(720deg) translateX(80px);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero-ornament {
  color: var(--gold);
  width: 260px;
  margin: 0 auto 16px;
  opacity: 0;
}

.bottom-ornament {
  margin: 16px auto 0;
}

.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  margin-bottom: 8px;
}

.hero-line {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(60px);
}

.hero-name-1,
.hero-name-2 {
  font-size: clamp(52px, 12vw, 120px);
  color: var(--text);
  text-shadow: 0 4px 30px rgba(201, 169, 110, 0.15);
}

.hero-ampersand {
  font-size: clamp(28px, 5vw, 50px);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  line-height: 1.4;
}

.hero-date-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  opacity: 0;
  transform: translateY(20px);
}

.hero-date-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
}

/* Countdown */
.hero-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.countdown-item {
  text-align: center;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  padding: 14px 18px 10px;
  min-width: 72px;
  backdrop-filter: blur(10px);
}

.countdown-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.countdown-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  margin-top: 16px;
  opacity: 0.4;
}

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

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== COUPLE SECTION ===== */
.couple-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  overflow: hidden;
}

.couple-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1478146059778-26028b07395a?w=1920&h=1080&fit=crop') center/cover no-repeat;
  opacity: 0.08;
  filter: blur(2px);
}

.couple-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(13,10,7,0.92) 30%, rgba(13,10,7,0.92) 70%, var(--bg) 100%);
}

.couple-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}

.couple-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
}

.couple-card {
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
}

.couple-photo {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
}

.couple-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: brightness(0.9) contrast(1.05);
}

.photo-frame {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.5;
  animation: frameGlow 3s ease-in-out infinite;
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.2;
}

@keyframes frameGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(201, 169, 110, 0.05); }
  50% { box-shadow: 0 0 25px rgba(201, 169, 110, 0.15); }
}

.couple-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.couple-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 300;
}

.couple-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 320px;
  margin: 0 auto 16px;
}

.couple-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.couple-social a {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.couple-social a:hover {
  opacity: 1;
}

.couple-heart {
  position: relative;
  width: 90px;
  height: 90px;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
}

.couple-heart svg {
  width: 100%;
  height: 100%;
  position: absolute;
  filter: drop-shadow(0 0 10px rgba(196, 122, 122, 0.2));
}

.heart-date {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--rose-light);
  font-weight: 500;
}

.love-quote {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--card-border);
  opacity: 0;
  transform: translateY(30px);
}

.love-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 12px;
}

.love-quote span {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===== EVENT SECTION ===== */
.event-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  overflow: hidden;
}

.event-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1920&h=1080&fit=crop') center/cover no-repeat;
  opacity: 0.06;
  filter: blur(3px);
}

.event-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(13,10,7,0.95) 20%, rgba(13,10,7,0.95) 80%, var(--bg) 100%);
}

.event-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  backdrop-filter: blur(20px);
}

.event-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 0.6s ease;
}

.event-card:hover .event-card-img img {
  transform: scale(1.05);
}

.event-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(22, 18, 16, 0.95) 100%);
}

.event-card-body {
  padding: 32px 36px 40px;
}

.event-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.event-icon svg {
  width: 100%;
  height: 100%;
}

.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gold-light);
}

.event-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.event-detail:last-child {
  margin-bottom: 0;
}

.event-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.event-detail-icon svg {
  width: 100%;
  height: 100%;
}

.event-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text);
}

.event-detail p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Map */
.event-map {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
}

.map-embed {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.3) saturate(0.6) brightness(0.7) hue-rotate(10deg);
}

.map-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.4s;
}

.map-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ===== GALLERY ===== */
.gallery-panel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-warm);
}

.gallery-header {
  position: absolute;
  top: 50px;
  left: 60px;
  z-index: 10;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  padding: 0 60px;
  padding-top: 20px;
  will-change: transform;
}

.gallery-card {
  flex-shrink: 0;
  width: 360px;
  height: 500px;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  border: 1px solid var(--card-border);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-img {
  width: 100%;
  height: 75%;
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.85) saturate(0.9);
}

.gallery-card:hover .card-img img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1);
}

.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,18,16,0.6) 0%, transparent 40%);
  pointer-events: none;
}

.card-img-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  background: rgba(0,0,0,0.5);
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.card-info {
  padding: 18px 22px;
}

.card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.card-info p {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ===== VIDEO ===== */
.video-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  overflow: hidden;
}

.video-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?w=1920&h=1080&fit=crop') center/cover no-repeat;
  opacity: 0.05;
  filter: blur(4px);
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, rgba(13,10,7,0.97) 30%, rgba(13,10,7,0.97) 70%, var(--bg) 100%);
}

.video-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.video-card {
  opacity: 0;
  transform: translateY(50px);
}

.video-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-top: 16px;
  font-weight: 500;
}

.video-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.main-video {
  margin-bottom: 20px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--card-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.video-frame iframe,
.video-frame .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-placeholder:hover { background: linear-gradient(135deg, #222 0%, #333 100%); }
.video-placeholder:hover .vp-play-btn svg { opacity: 1; transform: scale(1.1); }

.vp-inner {
  text-align: center;
  color: var(--gold);
  padding: 20px;
}
.vp-play-btn svg {
  width: 72px;
  height: 72px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  display: block;
  margin: 0 auto 14px;
}
.vp-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gold);
}
.vp-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  opacity: 0.4;
  color: #fff;
}
.vp-hint code {
  background: rgba(255,255,255,0.1);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.7rem;
}

@media (min-width: 769px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .main-video {
    grid-column: 1 / -1;
  }
}

.video-grid .video-card:not(.main-video) .video-frame {
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.footer-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?w=1920&h=800&fit=crop') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(22, 18, 16, 0.97) 20%, rgba(22, 18, 16, 0.97) 100%);
}

.footer-top {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 40px;
  border-top: 1px solid var(--card-border);
}

.footer-ornament {
  width: 250px;
  margin: 0 auto 24px;
  color: var(--gold);
  opacity: 0.5;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.footer-names {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-message {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* Couple photo in footer */
.footer-couple-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 169, 110, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-couple-photo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-couple-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) sepia(0.1);
}

.footer-rsvp {
  margin-top: 10px;
}

.rsvp-btn {
  display: inline-block;
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rsvp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.25);
}

.rsvp-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 1px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-top: 1px solid var(--card-border);
}

.footer-hashtag {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  font-style: italic;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-date { display: none; }

  .couple-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .couple-heart {
    order: -1;
  }

  .couple-photo {
    width: 180px;
    height: 180px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card-img {
    height: 140px;
  }

  .gallery-card {
    width: 280px;
    height: 400px;
  }

  .gallery-header {
    top: 30px;
    left: 30px;
  }

  .gallery-track {
    padding: 0 30px;
    gap: 16px;
  }

  .hero-countdown {
    gap: 8px;
  }

  .countdown-item {
    min-width: 60px;
    padding: 10px 12px 8px;
  }

  .countdown-num {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-couple-photo {
    width: 120px;
    height: 120px;
  }
}
