/* ============================================
   Neesha & Anthony Wedding
   Sari-inspired palette + Bungalow clubhouse vibe
   Funky, warm, not tacky
   ============================================ */

:root {
  /* Sari-inspired palette — crimson, gold, silver, rose */
  --crimson: #B22234;
  --crimson-dark: #8C1A28;
  --crimson-soft: #D4525F;
  --marigold: #E8A317;
  --marigold-light: #F2C94C;
  --gold: #C5A255;
  --gold-light: #D4B978;
  --gold-shimmer: #E8D5A3;
  --silver: #A8A9AD;
  --silver-light: #C8C9CC;
  --silver-shimmer: #E0E1E3;
  --rose-gold: #C98C6C;
  --rose-pink: #D4878F;
  --blush: #F5E6DA;
  --ivory: #FBF8F4;
  --warm-white: #FEFCF9;
  --charcoal: #1A1A1A;
  --charcoal-mid: #3A3A3A;
  --charcoal-light: #6A6A6A;
  --sage: #7B8E6F;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Space Grotesk', -apple-system, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Layout */
  --container: 1080px;
  --container-wide: 1320px;
  --section-pad: 120px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Layout --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--container-wide); }
.section { padding: var(--section-pad) 0; position: relative; }

.section__header { text-align: center; margin-bottom: 56px; }
.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}
.section__subtitle {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn--primary {
  background: var(--crimson);
  color: #fff;
}
.btn--primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: var(--radius);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn--sm { padding: 10px 20px; font-size: 0.78rem; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  transition: color 0.3s;
}
.nav--scrolled .nav__logo { color: var(--charcoal); }
.nav__links { display: flex; list-style: none; gap: 32px; }
.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav--scrolled .nav__link { color: var(--charcoal-light); }
.nav--scrolled .nav__link:hover { color: var(--charcoal); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav--scrolled .nav__toggle span { background: var(--charcoal); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,26,26,0.3) 0%,
    rgba(26,26,26,0.15) 40%,
    rgba(26,26,26,0.5) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 8px 20px;
  border: 1.5px solid var(--gold-shimmer);
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 20px;
}
.hero__name { display: inline-block; }
.hero__amp {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.4em;
  color: #fff;
  margin: 4px 0;
}
.hero__venue {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  opacity: 0.85;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(12px); }
}

/* ============================
   ENGAGED SECTION
   ============================ */
.engaged {
  background: var(--blush);
  padding: var(--section-pad) 0;
}
.engaged__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.engaged__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.engaged__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.engaged__text .section__title {
  text-align: left;
  margin-bottom: 16px;
}
.engaged__text .section__label {
  text-align: left;
}
.engaged__desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
}

/* ============================
   OUR STORY — Visual Timeline
   ============================ */
.story { background: var(--ivory); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

/* Vertical center line */
.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--silver-light), var(--gold), var(--crimson));
  transform: translateX(-50%);
  z-index: 0;
}

/* Each chapter */
.timeline__chapter {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  z-index: 1;
}
.timeline__chapter:last-child {
  margin-bottom: 0;
}

/* Dot on the line */
.timeline__marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--silver);
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--silver);
}
.timeline__dot--accent {
  background: var(--crimson);
  box-shadow: 0 0 0 2px var(--crimson);
  width: 18px;
  height: 18px;
}
.timeline__dot--final {
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold);
  width: 22px;
  height: 22px;
}

/* Content card */
.timeline__content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 42%;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.timeline__content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* Right-aligned chapters */
.timeline__chapter--right .timeline__content {
  margin-left: auto;
  margin-right: calc(50% + 40px);
  flex-direction: row;
}

/* Left-aligned chapters */
.timeline__chapter--left .timeline__content {
  margin-left: calc(50% + 40px);
  flex-direction: row-reverse;
}
.timeline__chapter--left .timeline__text {
  text-align: right;
}

/* Center finale */
.timeline__chapter--center {
  justify-content: center;
  text-align: center;
}
.timeline__finale {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: #fff;
  padding: 32px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 32px;
}
.timeline__finale .timeline__date {
  color: var(--gold-light);
}
.timeline__finale .timeline__place {
  color: #fff;
  font-size: 1.3rem;
}
.timeline__finale .timeline__desc {
  color: rgba(255,255,255,0.7);
}

/* Photo */
.timeline__photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.timeline__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Text */
.timeline__text {
  padding: 20px 24px 20px 0;
  flex: 1;
}
.timeline__chapter--left .timeline__text {
  padding: 20px 0 20px 24px;
}
.timeline__date {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 4px;
}
.timeline__place {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.timeline__desc {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}

/* ============================
   EVENT DETAILS
   ============================ */
.details { background: var(--warm-white); }

.details__timeline {
  max-width: 620px;
  margin: 0 auto 48px;
  position: relative;
}
.details__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 68px;
  width: 2px;
  height: 100%;
  background: var(--blush);
  border-radius: 2px;
}
.details__event {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 20px 0;
  position: relative;
}
.details__event::before {
  content: '';
  position: absolute;
  left: 63px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--ivory);
  z-index: 1;
}
.details__event--last::before {
  background: var(--gold);
}
.details__time {
  flex-shrink: 0;
  width: 48px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal-light);
  text-align: right;
  padding-top: 2px;
}
.details__info {
  padding-left: 24px;
}
.details__info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.details__info p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.details__venue-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 48px;
}
.details__venue-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.details__venue-info p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.details__venue-card .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.details__venue-card .btn--outline:hover {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}
.details__dress { text-align: right; }
.details__dress-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.details__dress-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.details__dress-note {
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 4px;
  font-style: italic;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.countdown__item { text-align: center; }
.countdown__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}
.countdown__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 4px;
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  padding-bottom: 18px;
}

/* ============================
   RSVP
   ============================ */
.rsvp { background: var(--blush); }
.rsvp__form { max-width: 640px; margin: 0 auto; }
.rsvp__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.rsvp__field { display: flex; flex-direction: column; }
.rsvp__field--full { margin-bottom: 20px; }
.rsvp__field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 6px;
}
.rsvp__field input,
.rsvp__field select,
.rsvp__field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--warm-white);
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.rsvp__field input:focus,
.rsvp__field select:focus,
.rsvp__field textarea:focus {
  outline: none;
  border-color: var(--crimson);
}
.rsvp__field input::placeholder,
.rsvp__field textarea::placeholder {
  color: rgba(0,0,0,0.25);
}
.rsvp__field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236A6A6A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.rsvp__field textarea { resize: vertical; min-height: 90px; }
.rsvp__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px;
  font-size: 0.9rem;
}
.rsvp__success {
  text-align: center;
  padding: 48px 24px;
}
.rsvp__success h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--crimson);
  margin-bottom: 8px;
}
.rsvp__success p { color: var(--charcoal-light); }

/* ============================
   PHOTO WALL
   ============================ */
.photos { background: var(--ivory); }
.photos__wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.photos__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  perspective: 800px;
}
.photos__card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
  transform-style: preserve-3d;
}
.photos__item:hover .photos__card {
  transform: rotateY(180deg);
}
.photos__card-front,
.photos__card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.photos__card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.photos__card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.photos__card-back--marigold {
  background: linear-gradient(135deg, var(--marigold), #C78A10);
}
.photos__card-back--gold {
  background: linear-gradient(135deg, var(--gold), #A8873E);
}
.photos__card-back--orange {
  background: linear-gradient(135deg, var(--rose-gold), #B07050);
}
.photos__card-back--pink {
  background: linear-gradient(135deg, var(--rose-pink), #B8606A);
}
.photos__card-back--blush {
  background: linear-gradient(135deg, #D4878F, #C06878);
}
.photos__card-back--coral {
  background: linear-gradient(135deg, #E07858, #C45A3C);
}
.photos__card-back--berry {
  background: linear-gradient(135deg, #A03050, #7E2040);
}
.photos__card-back p {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.lightbox[hidden] { display: none; }
.lightbox.is-active { opacity: 1; pointer-events: all; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 1;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }
.lightbox__close { top: 20px; right: 28px; font-size: 2.5rem; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox__content { max-width: 90vw; max-height: 85vh; }
.lightbox__img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }

/* ============================
   TRAVEL
   ============================ */
.travel { background: var(--warm-white); }
.travel__callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
  border-left: 4px solid var(--gold);
}
.travel__callout-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}
.travel__callout-text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.travel__callout-text p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}
.travel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.travel__card {
  background: var(--blush);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
}
.travel__card--full { grid-column: span 2; }
.travel__card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(0,0,0,0.06);
}
.travel__hotel { margin-bottom: 24px; }
.travel__hotel:last-child { margin-bottom: 0; }
.travel__hotel h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.travel__hotel p { font-size: 0.88rem; color: var(--charcoal-light); margin-bottom: 2px; }
.travel__note { margin: 6px 0 12px !important; }
.travel__info { margin-bottom: 20px; }
.travel__info:last-child { margin-bottom: 0; }
.travel__info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--crimson);
  margin-bottom: 2px;
}
.travel__info p { font-size: 0.88rem; color: var(--charcoal-light); }
.travel__recs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.travel__rec h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 2px;
}
.travel__rec p { font-size: 0.82rem; color: var(--charcoal-light); }

/* ============================
   REGISTRY
   ============================ */
.registry { background: var(--blush); }

/* Honeymoon Fund */
.honeymoon {
  max-width: 880px;
  margin: 0 auto;
}
.honeymoon__header {
  text-align: center;
  margin-bottom: 36px;
}
.honeymoon__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.honeymoon__subtitle {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}
.honeymoon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.honeymoon__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
  position: relative;
}
.honeymoon__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  border-color: var(--gold);
}
.honeymoon__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.honeymoon__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.3;
}
.honeymoon__desc {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}
.honeymoon__price {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(197, 162, 85, 0.1);
  padding: 5px 14px;
  border-radius: 50px;
}

/* Traditional Registry */
.registry__traditional {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.registry__divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 32px;
}
.registry__divider::before,
.registry__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
.registry__divider span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-light);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.registry__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  width: 100%;
}
.registry__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.registry__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.registry__card p { font-size: 0.85rem; color: var(--charcoal-light); }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--crimson-dark);
  color: #fff;
  padding: 72px 0 36px;
  position: relative;
}
.footer__content { text-align: center; }
.footer__names {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.footer__date {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}
.footer__contact {
  font-size: 0.82rem;
  opacity: 0.4;
}
.footer__contact a {
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 3px;
}
.footer__top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.footer__top:hover {
  background: var(--gold-light);
  transform: translateX(-50%) translateY(-2px);
}

/* ============================
   INDIAN MOTIF ACCENTS
   ============================ */
.motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.motif__svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Engaged section — large paisleys flanking */
.engaged { position: relative; overflow: hidden; }
.motif--engaged-left {
  top: 5%;
  left: -30px;
  width: 140px;
  height: 220px;
  color: var(--crimson);
  opacity: 0.12;
  transform: rotate(12deg);
}
.motif--engaged-right {
  bottom: 5%;
  right: -25px;
  width: 120px;
  height: 190px;
  color: var(--gold);
  opacity: 0.14;
  transform: rotate(-18deg) scaleX(-1);
}

/* Story section */
.story { position: relative; overflow: hidden; }
.motif--story-diamond {
  top: 20px;
  right: -40px;
  width: 180px;
  height: 180px;
  color: var(--crimson);
  opacity: 0.07;
}
.motif--story-buti {
  bottom: 60px;
  left: 20px;
  width: 50px;
  height: 50px;
  color: var(--gold);
  opacity: 0.2;
}

/* Details section — lotus + mandalas and butis */
.details { position: relative; overflow: hidden; }
.motif--details-lotus {
  top: 30px;
  left: -20px;
  width: 180px;
  height: 120px;
  color: var(--crimson);
  opacity: 0.09;
}
.motif--details-diamond-1 {
  top: 15%;
  right: -50px;
  width: 200px;
  height: 200px;
  color: var(--gold);
  opacity: 0.08;
}
.motif--details-diamond-2 {
  bottom: 10%;
  left: -30px;
  width: 140px;
  height: 140px;
  color: var(--silver);
  opacity: 0.07;
}
.motif--details-buti-1 {
  top: 12%;
  right: 60px;
  width: 40px;
  height: 40px;
  color: var(--crimson);
  opacity: 0.15;
}
.motif--details-buti-2 {
  top: 55%;
  left: 40px;
  width: 35px;
  height: 35px;
  color: var(--gold);
  opacity: 0.18;
}
.motif--details-buti-3 {
  bottom: 15%;
  right: 80px;
  width: 30px;
  height: 30px;
  color: var(--silver);
  opacity: 0.14;
}

/* RSVP section */
.rsvp { position: relative; overflow: hidden; }
.motif--rsvp-paisley {
  top: 8%;
  right: -20px;
  width: 140px;
  height: 220px;
  color: var(--crimson);
  opacity: 0.09;
  transform: rotate(-20deg);
}
.motif--rsvp-buti-1 {
  bottom: 15%;
  left: 30px;
  width: 45px;
  height: 45px;
  color: var(--gold);
  opacity: 0.16;
}
.motif--rsvp-buti-2 {
  top: 35%;
  left: 10px;
  width: 35px;
  height: 35px;
  color: var(--crimson);
  opacity: 0.12;
}

/* Footer motif border — repeating geometric pattern inspired by sari border */
.footer { position: relative; }
.footer__motif-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--silver) 25%,
    var(--gold) 50%,
    var(--silver) 75%,
    var(--gold) 100%
  );
  opacity: 0.7;
}

/* Section divider accents — subtle sari-border-inspired lines */
.engaged::after,
.story::after,
.rsvp::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 20%,
    var(--silver) 50%,
    var(--gold) 80%,
    transparent 100%
  );
  opacity: 0.35;
}

/* ============================
   TRAVEL RECS — THREE COLUMN LAYOUT
   ============================ */
.travel__recs--three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.travel__rec-group {}
.travel__rec-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(0,0,0,0.06);
}
.travel__rec-group .travel__rec {
  margin-bottom: 16px;
}
.travel__rec-group .travel__rec:last-child {
  margin-bottom: 0;
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  :root { --section-pad: 96px; }
  .engaged__layout { gap: 40px; }
  .timeline__content { width: 44%; }
  .timeline__photo { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  /* Nav mobile */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    gap: 0;
    background: var(--ivory);
    padding: 100px 36px 40px;
    transition: right 0.4s var(--ease);
    box-shadow: -8px 0 32px rgba(0,0,0,0.08);
  }
  .nav__links.is-open { right: 0; }
  .nav__links .nav__link {
    color: var(--charcoal);
    font-size: 0.88rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: block;
  }
  .nav__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
  .nav__toggle.is-active span { background: var(--charcoal) !important; }

  /* Engaged */
  .engaged__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .engaged__photo { max-width: 360px; margin: 0 auto; }
  .engaged__text .section__title,
  .engaged__text .section__label { text-align: center; }
  .engaged__desc { text-align: center; }

  /* Details */
  .details__venue-card {
    flex-direction: column;
    gap: 24px;
    padding: 32px 28px;
    text-align: center;
  }
  .details__dress { text-align: center; }

  /* RSVP */
  .rsvp__row { grid-template-columns: 1fr; gap: 16px; }

  /* Timeline — stack on mobile */
  .timeline__line { left: 20px; }
  .timeline__marker { left: 20px; }
  .timeline__content {
    width: 100%;
    margin-left: 50px !important;
    margin-right: 0 !important;
    flex-direction: row !important;
  }
  .timeline__chapter--left .timeline__text {
    text-align: left;
    padding: 20px 24px 20px 0;
  }
  .timeline__photo { width: 140px; height: 140px; }
  .timeline__chapter { margin-bottom: 40px; }
  .timeline__finale { margin-left: 50px; }

  /* Photos */
  .photos__wall { grid-template-columns: repeat(3, 1fr); gap: 5px; }

  /* Travel */
  .travel__grid { grid-template-columns: 1fr; }
  .travel__card--full { grid-column: span 1; }
  .travel__recs { grid-template-columns: repeat(2, 1fr); }
  .travel__recs--three-col { grid-template-columns: 1fr; gap: 28px; }

  /* Motifs — scale down on tablet */
  .motif { opacity: 0.06 !important; }

  /* Registry */
  .honeymoon__grid { grid-template-columns: repeat(2, 1fr); }

  /* Countdown */
  .countdown { gap: 10px; }
  .countdown__sep { font-size: 1.5rem; padding-bottom: 14px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .section__header { margin-bottom: 36px; }
  .photos__wall { grid-template-columns: repeat(2, 1fr); }
  .travel__recs { grid-template-columns: 1fr; }
  .travel__recs--three-col { grid-template-columns: 1fr; }
  /* Hide motifs on small screens */
  .motif { display: none; }
  .details__timeline::before { left: 54px; }
  .details__event::before { left: 49px; }
  .details__time { width: 36px; font-size: 0.72rem; }
  .countdown { flex-wrap: wrap; gap: 12px; }
}
