/* ============================================================
   KHUJESTA & MANJINDER — PREMIUM WEDDING INVITE
   Deep Emerald · Gold · Ivory · Afghan Islamic Aesthetic
   ============================================================ */

:root {
  --g0: #06180F;
  --g1: #0A2317;
  --g2: #0D2B1F;
  --g3: #143D2B;
  --g4: #1A5238;
  --gold: #C9A84C;
  --gold-l: #DFC070;
  --gold-xl: #F0D898;
  --ivory: #F5EDD6;
  --ivory-60: rgba(245,237,214,0.6);
  --ivory-30: rgba(245,237,214,0.3);
  --ivory-10: rgba(245,237,214,0.08);
  --gold-20: rgba(201,168,76,0.2);
  --gold-08: rgba(201,168,76,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --arabic: 'Amiri', serif;
  --nav: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--g1);
  color: var(--ivory);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: var(--sans); }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--g0);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
}
.preloader-inner { text-align: center; }
.preloader-star { width: 60px; height: 60px; margin: 0 auto 16px; }
.star-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawStar 1.8s var(--ease) forwards;
}
.star-dot { opacity: 0; animation: fadeDot 0.3s 1.6s ease forwards; }
@keyframes drawStar { to { stroke-dashoffset: 0; } }
@keyframes fadeDot { to { opacity: 1; } }
.preloader-text {
  font-family: var(--arabic);
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0;
  animation: fadeText 0.5s 1.4s ease forwards;
}
@keyframes fadeText { to { opacity: 1; } }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 4px; height: 4px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; opacity: 0.4; }

/* ── SHARED ── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 32px;
}
.bismillah {
  font-family: var(--arabic);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
}

/* BUTTON */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color 0.35s ease;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--g2); }
.btn-primary span { position: relative; z-index: 1; }
.btn-full { width: 100%; justify-content: center; margin-top: 4px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav);
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.solid {
  background: rgba(6,24,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-20);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px; height: 100%;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--ivory);
}
.logo-heart { width: 16px; height: 14px; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ivory-60);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-rsvp {
  border: 1px solid var(--gold-20);
  padding: 7px 18px;
  color: var(--gold) !important;
  transition: background 0.2s !important;
}
.nav-rsvp:hover { background: var(--gold-08); }
.nav-rsvp::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 6px; margin-left: auto; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--ivory); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--g0);
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: rgba(201,168,76,0.06); top: -100px; right: 0; }
.orb-2 { width: 400px; height: 400px; background: rgba(26,82,56,0.3); bottom: 0; left: -100px; }
.orb-3 { width: 300px; height: 300px; background: rgba(201,168,76,0.04); top: 50%; left: 30%; transform: translate(-50%,-50%); }

.star-pattern {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.7;
}
.star-svg { width: 100%; height: 100%; }

.particles-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-img-wrap {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%; z-index: 1;
  clip-path: inset(0 100% 0 0);
}
.hero-img-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right, var(--g0) 0%, transparent 25%),
    linear-gradient(to top, var(--g0) 0%, transparent 20%),
    linear-gradient(rgba(6,24,15,0.25), rgba(6,24,15,0.25));
}
.hero-img { object-position: center top; }

.hero-content {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto;
  padding: calc(var(--nav) + 80px) 40px 100px;
  width: 100%;
}
.bismillah { margin-bottom: 36px; opacity: 0; transform: translateY(12px); }

.hero-eyebrow {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-30); margin-bottom: 24px;
  opacity: 0; transform: translateY(12px);
}

.hero-names {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px;
}
.hero-name-wrap { overflow: hidden; }
.hero-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300; font-style: italic;
  color: var(--ivory);
  line-height: 0.95;
  transform: translateY(110%);
}
.hero-name.bride { color: var(--gold-l); }
.hero-amp {
  display: block;
  padding: 12px 0;
  opacity: 0;
}
.hero-amp svg { width: 100px; height: 20px; }

.hero-sub {
  font-size: 0.9rem; line-height: 1.9;
  color: var(--ivory-60);
  margin-bottom: 40px; max-width: 340px;
  opacity: 0; transform: translateY(12px);
}

.hero-date {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--gold-20);
  margin-bottom: 56px;
  opacity: 0; transform: translateY(12px);
}
.hero-date-item {
  display: flex; flex-direction: column;
  align-items: center; padding: 18px 28px; gap: 4px;
}
.hero-date-item.center { border-left: 1px solid var(--gold-20); border-right: 1px solid var(--gold-20); }
.hdi-label { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory-30); }
.hdi-val { font-family: var(--serif); font-size: 1rem; color: var(--ivory); font-weight: 400; }
.hdi-val.big { font-size: 2.8rem; line-height: 1; color: var(--gold); }

.hero-date-divider { display: none; }

.hero-scroll {
  display: inline-flex; flex-direction: column;
  align-items: flex-start; gap: 8px;
  opacity: 0;
}
.hs-label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory-30); }
.hs-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hs-dot {
  width: 3px; height: 3px; background: var(--gold);
  border-radius: 50%; position: absolute;
  left: -1px; top: -4px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { opacity: 0.3; }
  100% { transform: translateY(64px); opacity: 0; }
}

/* ── TIMELINE ── */
.timeline-section {
  padding: 140px 40px 120px;
  position: relative; overflow: hidden;
  background: var(--g2);
}
.tl-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.025) 0, rgba(201,168,76,0.025) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.025) 0, rgba(201,168,76,0.025) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.tl-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.tl-header { text-align: center; margin-bottom: 80px; }

.tl-track { position: relative; }
.tl-line-wrap {
  position: absolute; top: 24px; left: 10%; right: 10%; height: 1px;
  background: var(--gold-20); overflow: hidden;
}
.tl-line {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-l));
  transform-origin: left;
  transform: scaleX(0);
}
.tl-events {
  display: flex; justify-content: space-around;
  align-items: flex-start; position: relative;
}
.tl-event {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  opacity: 0; transform: translateY(30px);
  max-width: 240px;
}
.tl-event-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--g2), 0 0 0 5px var(--gold-20);
  position: relative; z-index: 1;
}
.tl-event-time {
  font-family: var(--serif); font-size: 1.6rem;
  color: var(--gold); font-weight: 300;
}
.tl-event-card {
  text-align: center;
  border: 1px solid var(--gold-20);
  padding: 28px 32px;
  background: var(--ivory-10);
  backdrop-filter: blur(8px);
}
.tl-event-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.tl-event-card h3 {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--ivory); margin-bottom: 10px;
}
.tl-event-venue { font-size: 0.82rem; color: var(--ivory-60); line-height: 1.5; }

/* ── CEREMONY SECTIONS ── */
.ceremony-section {
  padding: 140px 40px;
  position: relative; overflow: hidden;
}
.nikah-sec { background: var(--g1); }
.reception-sec { background: var(--g2); }

.cs-geo {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.02) 0, rgba(201,168,76,0.02) 1px, transparent 0, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.02) 0, rgba(201,168,76,0.02) 1px, transparent 0, transparent 40px);
}

.cs-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
  position: relative; z-index: 1;
}
.cs-inner.flip .cs-text { order: 1; }
.cs-inner.flip .cs-photo { order: 2; }

/* Photo side */
.cs-photo {
  position: relative;
  clip-path: inset(100% 0 0 0);
}
.cs-photo-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.cs-photo-frame img { transition: transform 0.8s ease; }
.cs-photo:hover .cs-photo-frame img { transform: scale(1.04); }

.cs-photo-accent {
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
}
.cs-photo-accent-tl {
  top: -12px; left: -12px;
  border-width: 1px 0 0 1px;
}
.cs-photo-accent-br {
  bottom: -12px; right: -12px;
  border-width: 0 1px 1px 0;
}
.cs-label-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--g1);
  border: 1px solid var(--gold-20);
  padding: 12px 20px;
  display: flex; flex-direction: column; gap: 4px;
  backdrop-filter: blur(12px);
}
.cs-label-badge.right { left: auto; right: 28px; }
.cs-label-badge span:first-child {
  font-family: var(--serif);
  font-size: 1.1rem; font-style: italic; font-weight: 300;
  color: var(--ivory);
}
.badge-time {
  font-size: 0.65rem !important; font-style: normal !important;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold) !important;
}

/* Text side */
.cs-text .eyebrow { margin-bottom: 12px; }
.cs-title {
  margin-bottom: 40px;
}
.ct-line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 0.9;
  overflow: hidden;
}
.ct-line.italic { font-style: italic; color: var(--gold-l); }

.cs-detail-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-08);
  opacity: 0; transform: translateX(-20px);
}
.cs-detail-row:first-of-type { border-top: 1px solid var(--gold-08); }
.cs-detail-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--gold); margin-top: 2px;
}
.cs-detail-icon svg { width: 100%; height: 100%; }
.cs-detail-title {
  font-size: 0.92rem; font-weight: 500;
  color: var(--ivory); margin-bottom: 3px;
}
.cs-detail-sub { font-size: 0.82rem; color: var(--ivory-60); line-height: 1.5; }
.cs-map-link {
  display: inline-block; margin-top: 6px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--gold);
  border-bottom: 1px solid var(--gold-20);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.cs-map-link:hover { border-color: var(--gold); }

.cs-quote {
  margin: 36px 0 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  position: relative;
  opacity: 0; transform: translateY(16px);
}
.csq-mark {
  font-family: var(--serif); font-size: 3rem;
  color: var(--gold-20); line-height: 1;
  position: absolute; top: -8px; left: 4px;
  font-weight: 300;
}
.cs-quote p, .cs-quote {
  font-family: var(--serif);
  font-size: 1.05rem; font-style: italic;
  font-weight: 300; color: var(--ivory-60);
  line-height: 1.8;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 120px 0;
  background: var(--g3);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 64px;
}
.gallery-reel {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-reel:active { cursor: grabbing; }
.gallery-reel::-webkit-scrollbar { display: none; }

.gallery-item {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 420px);
  aspect-ratio: 3/4;
  scroll-snap-align: center;
  overflow: hidden;
  position: relative;
  opacity: 0; transform: translateY(40px);
  border: 1px solid var(--gold-20);
}
.gallery-item:nth-child(2) { margin-top: -32px; }
.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,24,15,0.8) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 28px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gi-overlay span {
  font-family: var(--serif);
  font-size: 1.1rem; font-style: italic;
  color: var(--ivory-60);
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-drag-hint {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; padding: 32px 40px 0;
  opacity: 0.5;
}
.gallery-drag-hint svg { width: 40px; height: 14px; }
.gallery-drag-hint span { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-60); }

/* ── RSVP ── */
.rsvp-section {
  padding: 140px 40px;
  background: var(--g1);
  position: relative; overflow: hidden;
}
.rsvp-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(201,168,76,0.02) 0, rgba(201,168,76,0.02) 1px, transparent 0, transparent 30px);
}
.rsvp-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 100px; align-items: start;
  position: relative; z-index: 1;
}
.rsvp-left .eyebrow { margin-bottom: 12px; }
.rsvp-left h2 { margin-bottom: 20px; }
.rsvp-desc { font-size: 0.9rem; color: var(--ivory-60); line-height: 1.8; margin-bottom: 48px; }
.rsvp-desc strong { color: var(--gold); font-weight: 500; }

.rsvp-photo-stack {
  position: relative; height: 260px;
}
.rps { position: absolute; overflow: hidden; border: 1px solid var(--gold-20); }
.rps img { object-position: top; }
.rps-1 { width: 160px; height: 200px; top: 0; left: 0; z-index: 2; }
.rps-2 { width: 140px; height: 180px; top: 40px; left: 100px; z-index: 1; opacity: 0.7; transform: rotate(3deg); }

/* Form */
.rsvp-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
input, textarea {
  background: var(--ivory-10);
  border: 1px solid var(--gold-20);
  padding: 13px 16px;
  color: var(--ivory); font-family: var(--sans); font-size: 0.88rem;
  outline: none; border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
input::placeholder, textarea::placeholder { color: var(--ivory-30); }
input:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); color: var(--gold);
  pointer-events: none; font-size: 0.75rem;
}
select {
  width: 100%;
  background: var(--ivory-10);
  border: 1px solid var(--gold-20);
  padding: 13px 16px;
  color: var(--ivory); font-family: var(--sans); font-size: 0.88rem;
  outline: none; appearance: none; border-radius: 0;
  transition: border-color 0.2s ease;
}
select:focus { border-color: var(--gold); }
select option { background: var(--g2); }
textarea { resize: vertical; min-height: 100px; }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--ivory-60);
  cursor: none; user-select: none;
  text-transform: none; letter-spacing: 0; font-weight: 400;
}
.checkbox-item input[type="checkbox"] { display: none; }
.cb-box {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid var(--gold-20);
  position: relative; transition: border-color 0.2s;
}
.checkbox-item input:checked + .cb-box { border-color: var(--gold); background: var(--gold-08); }
.checkbox-item input:checked + .cb-box::after {
  content: '';
  position: absolute; top: 3px; left: 5px;
  width: 4px; height: 7px;
  border: 1px solid var(--gold);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.form-note {
  text-align: center; font-family: var(--serif);
  font-size: 0.9rem; font-style: italic;
  color: var(--ivory-30); margin-top: 12px;
}

/* ── FOOTER ── */
.footer {
  background: var(--g0);
  border-top: 1px solid var(--gold-20);
  padding: 100px 40px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.footer-geo {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.015) 0, rgba(201,168,76,0.015) 1px, transparent 0, transparent 24px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.015) 0, rgba(201,168,76,0.015) 1px, transparent 0, transparent 24px);
}
.footer-inner { position: relative; z-index: 1; }
.footer-bismillah { margin-bottom: 32px; }
.footer-names {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; font-style: italic;
  color: var(--ivory); margin-bottom: 16px;
}
.fn-heart { width: 32px; height: 28px; }
.footer-date {
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.footer-note { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--ivory-30); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root { --nav: 64px; }
  .cs-inner, .cs-inner.flip { grid-template-columns: 1fr; gap: 60px; }
  .cs-inner.flip .cs-text { order: 2; }
  .cs-inner.flip .cs-photo { order: 1; }
  .cs-photo { clip-path: none !important; }
  .rsvp-inner { grid-template-columns: 1fr; gap: 60px; }
  .rsvp-photo-stack { display: none; }
  .hero-img-wrap { opacity: 0.2; width: 100%; }
  .hero-content { padding-left: 24px; padding-right: 24px; }
  .tl-events { flex-direction: column; align-items: center; gap: 40px; }
  .tl-line-wrap { display: none; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none; position: fixed;
    top: var(--nav); left: 0; right: 0;
    background: rgba(6,24,15,0.98);
    border-bottom: 1px solid var(--gold-20);
    padding: 28px 24px;
    flex-direction: column; gap: 24px;
    text-align: center;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .ceremony-section, .timeline-section, .rsvp-section { padding: 80px 24px; }
  .gallery-section { padding: 80px 0; }
  .footer { padding: 80px 24px 48px; }
  .cursor, .cursor-follower { display: none; }
}
