/* ============================================
   David & Shriya — Wedding
   Palette: Sunset beach proposal — lavender sky,
   golden hour, ocean teal, warm sand, blush
   ============================================ */

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

:root {
  /* Sunset palette from the proposal photos */
  --black: #0c0a14;
  --ink: #161228;
  --charcoal: #221a38;
  /* Sunset golds */
  --gold: #e8a832;
  --gold-bright: #f5c042;
  --gold-muted: #c89428;
  --gold-pale: #fce8a8;
  /* Sky colors */
  --lavender: #c4a8d8;
  --mauve: #a888c0;
  --sky-blue: #88b8e8;
  --sky-pink: #e8a0b8;
  /* Ocean & nature */
  --teal: #4ecdc4;
  --ocean: #5ab8c8;
  --coral: #f0885a;
  --blush: #e8a090;
  --rose: #e87ea1;
  /* Warm neutrals */
  --cream: #fef9f0;
  --cream-warm: #fdf0e0;
  --cream-dark: #f0dcc0;
  --sand: #d4b896;
  --sand-dark: #b89870;
  /* Text */
  --text: #1a1428;
  --text-sec: #584870;
  --text-light: #8878a0;
  --text-on-dark: #f0e8f8;
  --text-muted-dk: #9888b0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient canvas */
#ambientCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Film grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(232, 168, 50, 0.06) 0%,
    rgba(196, 168, 216, 0.03) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  line-height: 1.12;
}

h2 em { font-style: italic; font-weight: 300; }

.devanagari {
  font-family: 'Noto Serif Devanagari', serif;
  font-weight: 400;
}

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

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

/* --- Tags --- */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
  font-weight: 400;
}

.tag-light {
  color: var(--gold);
  opacity: 0.7;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav.scrolled {
  background: rgba(254, 249, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--cream);
  transition: color 0.5s ease;
}

.nav.scrolled .nav-logo { color: var(--text); }

.nav-logo-amp {
  font-style: italic;
  color: var(--gold);
  margin: 0 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(254, 249, 240, 0.6);
  transition: all 0.3s ease;
}

.nav.scrolled .nav-links a { color: var(--text-sec); }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid rgba(232, 168, 50, 0.5);
  padding: 8px 24px !important;
  color: var(--gold) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(232, 168, 50, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span { background: var(--text); }

/* --- Hero with Photo --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Portrait photo — couple is at bottom of frame */
  object-position: center 85%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(12, 10, 20, 0.35) 0%,
      rgba(12, 10, 20, 0.15) 40%,
      rgba(12, 10, 20, 0.25) 70%,
      rgba(12, 10, 20, 0.6) 100%),
    radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, rgba(12, 10, 20, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 40px 32px;
  max-width: 720px;
}

.hero-sanskrit {
  font-size: 0.95rem;
  color: var(--gold-bright);
  letter-spacing: 6px;
  opacity: 0.7;
  margin-bottom: 36px;
}

.hero-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

.hero-name {
  font-family: 'Cormorant', serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 8px;
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 8px 0;
}

.hero-divider-line {
  width: 48px;
  height: 1px;
  background: var(--gold-bright);
  opacity: 0.5;
}

.hero-divider-word {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  opacity: 1;
  letter-spacing: 3px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-date-block { margin-bottom: 44px; }

.hero-date-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0;
}

.hdo-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
}

.hdo-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  transform: rotate(45deg);
  opacity: 0.6;
}

.hero-date-text {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  margin-bottom: 60px;
  border: 1px solid rgba(232, 168, 50, 0.5);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 168, 50, 0.35);
}

.hero-btn svg { transition: transform 0.3s ease; }
.hero-btn:hover svg { transform: translateX(4px); }

.hero-bottom {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-track {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-thumb {
  width: 1px;
  height: 16px;
  background: var(--gold-bright);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(-16px); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: translateY(40px); opacity: 0; }
}

/* --- Staggered entrance --- */
.anim-in {
  opacity: 0;
  transform: translateY(24px);
  animation: animIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: calc(var(--d) * 0.14s + 0.3s);
}

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

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--cream);
  border-top: 1px solid rgba(232, 168, 50, 0.15);
  border-bottom: 1px solid rgba(232, 168, 50, 0.15);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--mauve);
  letter-spacing: 2px;
  opacity: 0.7;
}

.marquee-dot {
  width: 5px !important;
  height: 5px !important;
  background: var(--gold) !important;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5 !important;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Sections --- */
.section {
  padding: 140px 0;
  position: relative;
}

.section-ink {
  background: var(--ink);
  color: var(--text-on-dark);
  background-image:
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(196, 168, 216, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(232, 168, 50, 0.03) 0%, transparent 50%);
}

.section-warm {
  background: var(--cream-warm);
  background-image:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(232, 168, 50, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(196, 168, 216, 0.05) 0%, transparent 60%);
}

/* --- Split Header --- */
.split-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.split-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--text);
  letter-spacing: 0.5px;
}

.split-header-light h2 { color: var(--cream); }

.split-header-right p {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.9;
}

.split-header-light .split-header-right p { color: var(--text-muted-dk); }

/* --- Couple Mosaic --- */
.couple-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.mosaic-card { position: relative; }
.mosaic-right { margin-top: 80px; }

.mosaic-img {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
}

.mosaic-photo {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Shriya — face in upper third, golden backlight */
.mosaic-left .mosaic-photo {
  object-position: center 15%;
}

/* David — reaching toward camera, face slightly below center */
.mosaic-right .mosaic-photo {
  object-position: center 25%;
}

.mosaic-card:hover .mosaic-photo {
  transform: scale(1.03);
}

.mosaic-img-border {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(232, 168, 50, 0.2);
  pointer-events: none;
}

.mosaic-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 6px;
}

.mosaic-info h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 10px;
}

.mosaic-info h3 em {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  vertical-align: middle;
}

.mosaic-info p {
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.85;
}

/* --- Story Feature Photo --- */
.story-feature {
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
}

.story-feature img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
  /* Portrait photo — show full image */
}

.story-feature-border {
  display: none;
}

/* --- Story Proposal Photo --- */
.story-proposal {
  margin-top: 80px;
  text-align: center;
}

.story-proposal img {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: block;
  /* Landscape photo — shows in full */
}

/* --- Photo Band --- */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--cream-dark);
}

.photo-band-item {
  overflow: hidden;
  aspect-ratio: 3/4;
}

/* Landscape photos get centered */
.photo-band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

/* Ring detail — ring is in center */
.photo-band-item:nth-child(1) img {
  object-position: center 40%;
}

/* Celebration — landscape, show center */
.photo-band-item:nth-child(2) img {
  object-position: center 30%;
}

/* Ring hands — landscape, ring in center */
.photo-band-item:nth-child(3) img {
  object-position: center center;
}

.photo-band-item:hover img {
  transform: scale(1.05);
}

/* --- Horizontal Timeline --- */
.h-timeline {
  position: relative;
  padding-top: 32px;
}

.h-timeline-line {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--lavender), transparent);
  opacity: 0.35;
}

.h-timeline-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.h-timeline-dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.h-timeline-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.h-timeline-item h4 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

.h-timeline-item p {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.8;
}

/* --- Event Cards --- */
.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.event-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232, 168, 50, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.event-card:hover::before { opacity: 1; }

.event-card:hover {
  border-left-color: var(--accent);
  transform: translateY(-4px);
}

.event-card-main {
  background: rgba(232, 168, 50, 0.04);
  border-left: 2px solid var(--gold);
}

.event-card-num {
  font-family: 'Cormorant', serif;
  font-size: 0.85rem;
  color: var(--gold-muted);
  opacity: 0.4;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.event-card-icon {
  color: var(--accent, var(--gold));
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

.event-card h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.event-card-meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted-dk);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.event-card > p:not(.event-card-meta) {
  font-size: 0.85rem;
  color: rgba(240, 232, 248, 0.6);
  line-height: 1.75;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.event-card-attire {
  font-size: 0.75rem;
  color: var(--text-on-dark);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.event-card-attire span {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, var(--gold-muted));
  margin-right: 8px;
  opacity: 0.7;
}

/* --- Gift Section with Background Photo --- */
.section-gift {
  padding: 140px 0;
  position: relative;
  background: var(--cream);
}

.gift-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 60px;
  position: relative;
}

.gift-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gift-corner {
  position: absolute;
  width: 32px;
  height: 32px;
}

.gift-corner::before,
.gift-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
  opacity: 0.5;
}

.gift-tl { top: 0; left: 0; }
.gift-tl::before { top: 0; left: 0; width: 32px; height: 1px; }
.gift-tl::after { top: 0; left: 0; width: 1px; height: 32px; }

.gift-tr { top: 0; right: 0; }
.gift-tr::before { top: 0; right: 0; width: 32px; height: 1px; }
.gift-tr::after { top: 0; right: 0; width: 1px; height: 32px; }

.gift-bl { bottom: 0; left: 0; }
.gift-bl::before { bottom: 0; left: 0; width: 32px; height: 1px; }
.gift-bl::after { bottom: 0; left: 0; width: 1px; height: 32px; }

.gift-br { bottom: 0; right: 0; }
.gift-br::before { bottom: 0; right: 0; width: 32px; height: 1px; }
.gift-br::after { bottom: 0; right: 0; width: 1px; height: 32px; }

.gift-sanskrit {
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.gift-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text);
  margin-bottom: 16px;
}

.gift-block > p {
  font-size: 0.92rem;
  color: var(--text-sec);
  line-height: 1.9;
}

.gift-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--sand-dark) !important;
  letter-spacing: 0.5px;
}

/* --- Payment Methods --- */
.gift-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.gift-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.gift-method:hover {
  border-color: var(--gold);
  background: rgba(232, 168, 50, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 50, 0.08);
}

.gift-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gift-method:hover .gift-icon {
  opacity: 1;
}

.gift-method-name {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

.gift-method-handle {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

@media (max-width: 500px) {
  .gift-methods {
    grid-template-columns: 1fr;
  }
  .gift-block {
    padding: 48px 24px;
  }
}

/* --- Travel --- */
.travel-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--text);
  margin-bottom: 60px;
}

.travel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-dark);
}

.travel-card {
  padding: 44px 36px;
  background: var(--cream);
  position: relative;
  transition: all 0.4s ease;
}

.travel-card:hover { background: var(--cream-warm); }

.travel-card-accent {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  opacity: 0.6;
  margin-bottom: 20px;
}

.travel-card-tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}

.travel-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
}

.travel-card p {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.85;
}

/* --- FAQ --- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--text);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  padding: 24px 0;
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-item summary:hover { color: var(--gold-muted); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s ease;
}

.faq-plus::before { width: 14px; height: 1px; top: 50%; left: 0; }
.faq-plus::after { width: 1px; height: 14px; left: 50%; top: 0; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); }

.faq-item p {
  padding: 0 0 24px;
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.9;
}

/* --- RSVP --- */
.rsvp-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.rsvp-left h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 40px;
}

.rsvp-hindi { margin-top: 32px; }

.rsvp-hindi .devanagari {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1.8;
  margin-bottom: 4px;
}

.rsvp-eng {
  font-size: 0.78rem;
  color: var(--text-muted-dk);
  letter-spacing: 1px;
}

.rsvp-form { max-width: 100%; }
.form-group { margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted-dk);
  margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  background: transparent;
  border-radius: 0;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.15); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--ink); color: var(--cream); }

.radio-group { display: flex; gap: 20px; }

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-on-dark);
  opacity: 0.6;
}

.radio-label input { accent-color: var(--gold); width: 14px; height: 14px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: flex; cursor: pointer; }
.chip input { display: none; }

.chip span {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted-dk);
  transition: all 0.3s ease;
}

.chip input:checked + span {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(232, 168, 50, 0.1);
  box-shadow: 0 0 16px rgba(232, 168, 50, 0.15);
}

.chip span:hover {
  border-color: rgba(232, 168, 50, 0.3);
  color: var(--text-on-dark);
}

.btn-submit {
  width: 100%;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 192, 66, 0.3);
}

.btn-submit svg { transition: transform 0.3s ease; }
.btn-submit:hover svg { transform: translateX(4px); }

/* --- Footer with Photo --- */
.footer {
  position: relative;
  text-align: center;
  padding: 120px 32px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Both of you looking out — upper bodies are the focus */
  object-position: center 20%;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(12, 10, 20, 0.7) 0%,
    rgba(12, 10, 20, 0.5) 50%,
    rgba(12, 10, 20, 0.8) 100%);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-names {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  color: var(--gold-bright);
  letter-spacing: 5px;
  margin-bottom: 8px;
}

.footer-hashtag {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.footer-note {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

/* --- RSVP CTA (homepage) --- */
.rsvp-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.rsvp-cta h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 24px;
}

.rsvp-cta .rsvp-hindi {
  margin-bottom: 40px;
}

.rsvp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rsvp-cta-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 192, 66, 0.3);
  color: var(--black);
}

.rsvp-cta-btn svg {
  transition: transform 0.3s ease;
}

.rsvp-cta-btn:hover svg {
  transform: translateX(4px);
}

/* --- Scroll Reveal (JS) --- */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* --- Responsive --- */
@media (max-width: 900px) {
  .split-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .mosaic-right { margin-top: 0; }

  .h-timeline-items {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .h-timeline-line { display: none; }

  .event-cards { grid-template-columns: 1fr; }

  .faq-layout,
  .rsvp-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .photo-band { grid-template-columns: 1fr; }
  .photo-band-item { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254, 249, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
  }

  .nav-links.active { display: flex; }
  .nav-links a { color: var(--text-sec) !important; }

  .section { padding: 96px 0; }
  .travel-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gift-block { padding: 48px 32px; }
}
