:root {
  --navy: #1a2744;
  --navy-mid: #243160;
  --navy-light: #2e3d78;
  --lilac: #b8a5d4;
  --lilac-light: #d5c8ea;
  --lilac-pale: #ede8f5;
  --silver: #c0c8d8;
  --silver-light: #dde3ed;
  --silver-pale: #f0f3f8;
  --white: #ffffff;
  --cream: #faf8f5;
  --pearl: #f5f0e8;
  --gold: #c9a96e;
  --light-blue: #b5defcea;
  --sage-green: #a3bd9a;
  --plum: #453663;
  --text-dark: #1a2744;
  --text-mid: #4a5580;
  --text-light: #7a86aa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 165, 212, 0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}
.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--lilac-light);
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo span { color: var(--silver); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; margin: 0 0.2rem; }
.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--silver-light);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 2px;
  transition: all 0.25s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--lilac-light); background: rgba(184,165,212,0.1); }
.nav-links a.active { color: var(--lilac-light); }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--silver-light); transition: all 0.3s; }

/* ─── PAGES ─── */
.page { display: none; padding-top: 64px; min-height: 100vh; }
.page.active { display: block; }

/* ─── HOME HERO ─── */
#home-page {
  background: var(--lilac-pale);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 560px 1fr 560px;
  align-items: stretch;
  background: var(--lilac-pale);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Full-height photo panels flush to screen edges */
.hero-photo-left,
.hero-photo-right {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 480px;
}
.hero-photo-left { border-right: 1px solid rgba(184,165,212,0.3); }
.hero-photo-right { border-left: 1px solid rgba(184,165,212,0.3); }

.home-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(145deg, rgba(26,39,68,0.10), rgba(184,165,212,0.28));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184,165,212,0.35);
}
.home-photo-placeholder.tall { aspect-ratio: 2/3; height: auto; }
.home-photo-placeholder .img-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(74,85,128,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  line-height: 1.5;
}

.hero-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4.5rem, 11vw, 9rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-ampersand {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4rem, 9vw, 8rem);
  color: var(--lilac);
  display: inline;
}
.pearl-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.8rem 0;
}
.pearl-divider .line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lilac), transparent);
}
.pearl-divider .pearl {
  width: 7px; height: 7px;
  background: radial-gradient(circle at 35% 35%, var(--white), var(--silver));
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.pearl-divider .pearl-sm {
  width: 5px; height: 5px;
  background: radial-gradient(circle at 35% 35%, var(--white), var(--silver));
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.hero-date {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--navy-mid);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero-venue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}
.hero-countdown {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--lilac);
  text-transform: uppercase;
}
.countdown-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--lilac);
  align-self: flex-start;
  padding-top: 0.3rem;
}
.hero-btn {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--white);
  background: var(--navy);
  padding: 1.1rem 3.2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--navy);
  margin-bottom: 3rem;
}
.hero-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── RIBBON DIVIDER ── */
.ribbon-image-divider {
  position: relative;
  width: 100%;  
  height: 32px;
  overflow: visible;
  line-height: 0;
  background-color: var(--lilac-pale);
  background-image: url("attachments/navy_ribbon.png");
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto 300px;
}
.ribbon-image-divider + .section {
  padding-top: 9rem;
}
.ribbon-image-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 24px);
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background-image: url("attachments/bow.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 2;
}
.ribbon-img {
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: center;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

/* ── HOME DETAILS SECTION ── */
.home-details-section {
  background: var(--lilac-pale);
  padding: 9rem 2rem 4rem;
}
.home-details-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── GENERAL SECTIONS ─── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-inner-wide { max-width: 1100px; margin: 0 auto; }
.section-bg-white { background: var(--white); }
.section-bg-cream { background: var(--cream); }
.section-bg-pearl { background: var(--pearl); position: relative; overflow: hidden; }
.section-bg-navy { background: var(--navy); }
.section-bg-lilac-pale { background: var(--lilac-pale); }
.section-bg-silver-pale { background: var(--silver-pale); }

.section-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--lilac);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--navy-mid); }
.section-text {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.ribbon-divider {
  position: relative;
  text-align: center;
  margin: 2.5rem 0;
}
.ribbon-divider::before, .ribbon-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 60px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lilac));
}
.ribbon-divider::before { left: 0; }
.ribbon-divider::after { right: 0; background: linear-gradient(to left, transparent, var(--lilac)); }
.ribbon-divider span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--lilac);
  background: inherit;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* ─── INFO CARDS ─── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto 0;
}
.info-card {
  background: var(--cream);
  border: 1px solid var(--silver-light);
  padding: 2.4rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,39,68,0.08); }
.info-card-lg { padding: 3rem 2.2rem; }
.info-card-icon { font-size: 2.6rem; margin-bottom: 1.1rem; display: block; }
.info-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.info-card-text { font-size: 1.05rem; font-weight: 300; color: var(--text-mid); line-height: 1.9; }

/* ─── PAGE HEADER ─── */
.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--lilac);
}
.page-header-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--lilac);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}
.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.page-header-title em { font-style: italic; color: var(--lilac-light); }
.page-header-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--silver-light);
  font-size: 1.1rem;
}

/* ─── STORY ─── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.story-image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184,165,212,0.35);
  border-radius: 2px;
}
.story-image-placeholder .img-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(213, 200, 234, 0.5);
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}
.story-text-block { padding: 1rem 0; }
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--lilac);
}

/* ─── COUPLE CARDS ─── */
.couple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.couple-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.couple-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lilac), var(--silver), var(--lilac));
}
.couple-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lilac), var(--silver), var(--lilac));
}
.couple-initial {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--lilac);
}
.couple-initial span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--lilac-light);
  font-style: italic;
}
.couple-name { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; color: var(--navy); margin-bottom: 0.3rem; }
.couple-role { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--lilac); text-transform: uppercase; margin-bottom: 1rem; }
.couple-bio { font-weight: 300; font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.pearl-row { display: flex; justify-content: center; gap: 6px; margin: 1rem 0; }
.pearl-dot { width: 6px; height: 6px; background: radial-gradient(circle at 35% 35%, #fff, var(--silver)); border-radius: 50%; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }

/* ─── EVENTS / TIMELINE ─── */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--lilac), var(--silver), var(--lilac), transparent);
  transform: translateX(-50%);
}
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 3rem; align-items: center; }
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; padding-right: 2.5rem; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; padding-left: 2.5rem; }
.timeline-dot { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.timeline-dot-inner { width: 16px; height: 16px; background: radial-gradient(circle at 35% 35%, var(--white), var(--silver)); border-radius: 50%; border: 2px solid var(--lilac); box-shadow: 0 2px 8px rgba(184,165,212,0.4); }
.timeline-card { background: var(--white); border: 1px solid var(--silver-light); padding: 1.8rem; position: relative; }
.timeline-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--lilac)); }
.timeline-time { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--lilac); text-transform: uppercase; margin-bottom: 0.4rem; }
.timeline-event-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--navy); margin-bottom: 0.3rem; }
.timeline-venue { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-mid); font-size: 1rem; margin-bottom: 0.8rem; }
.timeline-desc { font-weight: 300; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.schedule-day { background: var(--white); border: 1px solid var(--silver-light); overflow: hidden; }
.schedule-day-header { background: var(--navy); padding: 1.2rem 1.5rem; position: relative; }
.schedule-day-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lilac), var(--silver), var(--lilac)); }
.schedule-day-name { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.25em; color: var(--lilac); text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.schedule-day-date { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); font-weight: 300; }
.schedule-items { padding: 1rem 1.5rem; }
.schedule-item { display: flex; gap: 1rem; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px solid var(--silver-pale); }
.schedule-item:last-child { border-bottom: none; }
.schedule-item-time { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--lilac); min-width: 58px; padding-top: 2px; }
.schedule-item-info { flex: 1; }
.schedule-item-name { font-weight: 400; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.15rem; }
.schedule-item-venue { font-size: 0.8rem; font-weight: 300; color: var(--text-light); }

/* ─── PHOTOS PAGE ─── */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 2rem; }
.photo-placeholder { aspect-ratio: 1; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s; }
.photo-placeholder:nth-child(4n) { aspect-ratio: 2/1; grid-column: span 2; }
.photo-placeholder:nth-child(7n) { aspect-ratio: 1/2; grid-row: span 2; }
.photo-placeholder:hover { transform: scale(1.02); }
.photo-placeholder::before { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(184,165,212,0.3); }
.photo-placeholder .label { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(213,200,234,0.5); font-size: 0.9rem; text-align: center; padding: 1rem; }
.photo-category-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.photo-tab { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.15em; color: var(--text-mid); padding: 0.5rem 1.2rem; border: 1px solid var(--silver-light); text-transform: uppercase; cursor: pointer; transition: all 0.2s; background: var(--white); }
.photo-tab.active, .photo-tab:hover { background: var(--navy); color: var(--lilac-light); border-color: var(--navy); }
.upload-box { border: 2px dashed var(--silver-light); padding: 3rem; text-align: center; margin-top: 2rem; }
.upload-box p { font-weight: 300; color: var(--text-light); margin-bottom: 1rem; }

/* ─── DRESS CODE ─── */
.dress-palette { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.dress-swatch { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.swatch-circle { width: 70px; height: 70px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.swatch-label { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--text-mid); text-transform: uppercase; text-align: center; }
.dress-formality { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.25em; color: var(--navy); background: var(--lilac-light); padding: 0.6rem 2rem; margin: 1rem 0; text-transform: uppercase; }
.dress-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.dress-card { background: var(--white); border: 1px solid var(--silver-light); padding: 2rem; position: relative; }
.dress-card-icon { width: 50px; height: 50px; background: var(--lilac-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; }
.dress-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.8rem; }
.dress-list { list-style: none; }
.dress-list li { font-size: 0.9rem; font-weight: 300; color: var(--text-mid); padding: 0.4rem 0; border-bottom: 1px solid var(--silver-pale); display: flex; align-items: center; gap: 0.6rem; }
.dress-list li::before { content: ''; width: 4px; height: 4px; background: var(--lilac); border-radius: 50%; flex-shrink: 0; }
.avoid-card { background: #fff5f5; border: 1px solid #f0d0d0; padding: 1.5rem 2rem; margin-top: 2rem; }
.avoid-title { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em; color: #c0704e; text-transform: uppercase; margin-bottom: 0.8rem; }
.avoid-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.avoid-tag { font-size: 0.8rem; font-weight: 300; color: #c0704e; background: #fde8e0; padding: 0.3rem 0.8rem; border-radius: 1px; }
.dress-note-box { background: var(--lilac-pale); border-left: 3px solid var(--lilac); padding: 1.5rem 2rem; margin-top: 2rem; }
.dress-note-box p { font-weight: 300; font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }
.dress-note-box strong { color: var(--navy); font-weight: 400; }

/* ─── INSPO COLLAGE ─── */
.inspo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-top: 2rem;
}
.inspo-cell { overflow: hidden; position: relative; border-radius: 2px; }
.inspo-tall { grid-row: span 1; grid-column: span 1; }
.inspo-stack { display: flex; flex-direction: column; gap: 10px; grid-column: span 1; }
.inspo-half { flex: 1; }
.inspo-third { grid-column: span 1; }
.inspo-wide { grid-column: span 2; }
.inspo-tall2 { grid-column: span 1; grid-row: span 1; }
.inspo-placeholder {
  width: 100%; height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, rgba(26,39,68,0.12), rgba(184,165,212,0.25));
  border: 1px solid rgba(184,165,212,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: pointer;
}
.inspo-placeholder:hover { transform: scale(1.02); }
.inspo-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inspo-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(74,85,128,0.55);
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
}
.inspo-half .inspo-placeholder { min-height: 140px; }
.inspo-wide .inspo-placeholder { min-height: 180px; }

/* ─── FAQ PAGE ─── */
.faq-item { border-bottom: 1px solid var(--silver-light); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; cursor: pointer; transition: background 0.2s; gap: 1rem; }
.faq-question:hover { background: var(--lilac-pale); }
.faq-q-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--navy); font-weight: 400; flex: 1; }
.faq-toggle { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.faq-toggle svg { transition: transform 0.3s; }
.faq-item.open .faq-toggle { background: var(--lilac); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 2rem 1.5rem; font-weight: 300; font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.faq-categories { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.faq-cat-btn { font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.15em; color: var(--text-mid); padding: 0.4rem 1rem; border: 1px solid var(--silver-light); text-transform: uppercase; cursor: pointer; transition: all 0.2s; background: var(--white); }
.faq-cat-btn.active, .faq-cat-btn:hover { background: var(--navy); color: var(--lilac-light); border-color: var(--navy); }

/* ─── REGISTRY ─── */
.registry-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.registry-card { background: var(--white); border: 1px solid var(--silver-light); padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.registry-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(26,39,68,0.1); }
.registry-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lilac), var(--silver), var(--lilac)); }
.registry-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.8rem; }
.registry-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.5rem; }
.registry-desc { font-weight: 300; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.registry-btn { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.18em; color: var(--white); background: var(--navy); padding: 0.75rem 2rem; text-decoration: none; text-transform: uppercase; cursor: pointer; border: none; transition: background 0.25s; }
.registry-btn:hover { background: var(--navy-light); }
.registry-note { background: var(--pearl); border: 1px solid var(--silver-light); padding: 2rem; text-align: center; margin-top: 3rem; }
.registry-note p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: var(--text-mid); line-height: 1.7; }
.registry-note strong { color: var(--navy); font-style: normal; }
.honeymoon-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 3rem 2rem; text-align: center; margin-top: 0; margin-bottom: 2rem; position: relative; overflow: hidden; }
.honeymoon-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; color: var(--lilac-light); margin-bottom: 0.8rem; }
.honeymoon-text { font-weight: 300; color: var(--silver-light); max-width: 550px; margin: 0 auto 1.5rem; line-height: 1.8; font-size: 0.95rem; }
.honeymoon-btn { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--navy); background: var(--lilac-light); padding: 0.8rem 2.2rem; text-decoration: none; text-transform: uppercase; cursor: pointer; border: none; transition: background 0.25s; }
.honeymoon-btn:hover { background: var(--white); }

/* ─── RSVP ─── */
.rsvp-container { max-width: 700px; margin: 0 auto; }
.rsvp-form-card { background: var(--white); border: 1px solid var(--silver-light); padding: 3rem; position: relative; }
.rsvp-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--lilac), var(--silver), var(--lilac), var(--navy)); }
.rsvp-form-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--lilac), var(--silver), var(--lilac), var(--navy)); }
.form-group { margin-bottom: 1.8rem; }
.form-label { display: block; font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--navy); text-transform: uppercase; margin-bottom: 0.6rem; }
.form-input, .form-select, .form-textarea { width: 100%; border: 1px solid var(--silver-light); padding: 0.8rem 1rem; font-family: 'Lato', sans-serif; font-weight: 300; font-size: 0.95rem; color: var(--text-dark); background: var(--cream); transition: border-color 0.2s; outline: none; border-radius: 0; appearance: none; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--lilac); background: var(--white); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-weight: 300; font-size: 0.95rem; color: var(--text-mid); }
.radio-label input { accent-color: var(--navy); width: 16px; height: 16px; }
.form-check-group { display: flex; flex-direction: column; gap: 0.6rem; }
.check-label { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-weight: 300; font-size: 0.9rem; color: var(--text-mid); }
.check-label input { accent-color: var(--navy); width: 15px; height: 15px; }
.form-submit { width: 100%; font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.25em; color: var(--white); background: var(--navy); padding: 1.1rem; border: none; text-transform: uppercase; cursor: pointer; transition: background 0.25s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--navy-light); }
.rsvp-deadline { text-align: center; margin-top: 2rem; padding: 1.2rem; background: var(--lilac-pale); border: 1px solid var(--lilac-light); }
.rsvp-deadline p { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--navy); font-size: 1rem; }
.rsvp-deadline strong { font-style: normal; }
.form-note { font-size: 0.82rem; font-weight: 300; color: var(--text-light); margin-top: 0.4rem; }
.rsvp-success { display: none; text-align: center; padding: 4rem 2rem; }
.rsvp-success.show { display: block; }
.rsvp-success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--lilac-pale); border: 2px solid var(--lilac); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
.rsvp-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--navy); margin-bottom: 0.8rem; }
.rsvp-success p { font-weight: 300; color: var(--text-mid); line-height: 1.7; }
.guest-counter { display: flex; align-items: center; gap: 0.8rem; }
.counter-btn { width: 32px; height: 32px; border: 1px solid var(--silver-light); background: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; color: var(--navy); transition: background 0.2s; flex-shrink: 0; }
.counter-btn:hover { background: var(--lilac-pale); }
.counter-display { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--navy); min-width: 30px; text-align: center; }

/* ─── TRAVEL ─── */
.hotel-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.hotel-card { background: var(--white); border: 1px solid var(--silver-light); overflow: hidden; transition: transform 0.3s; }
.hotel-card:hover { transform: translateY(-2px); }
.hotel-card-img { height: 160px; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); display: flex; align-items: center; justify-content: center; position: relative; }
.hotel-card-img .img-icon { font-size: 2.5rem; opacity: 0.4; }
.hotel-tier { position: absolute; top: 12px; right: 12px; font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.15em; color: var(--navy); background: var(--lilac-light); padding: 0.25rem 0.7rem; text-transform: uppercase; }
.hotel-card-body { padding: 1.5rem; }
.hotel-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: 0.3rem; }
.hotel-distance { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.12em; color: var(--lilac); text-transform: uppercase; margin-bottom: 0.8rem; }
.hotel-desc { font-weight: 300; font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.2rem; }
.hotel-rate { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; }
.hotel-rate em { font-style: normal; font-size: 0.75rem; color: var(--text-light); margin-left: 0.3rem; }
.hotel-book-btn { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--white); background: var(--navy); padding: 0.6rem 1.5rem; text-decoration: none; text-transform: uppercase; cursor: pointer; border: none; transition: background 0.2s; }
.hotel-book-btn:hover { background: var(--navy-light); }
.transport-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.transport-card { background: var(--white); border: 1px solid var(--silver-light); padding: 1.5rem; text-align: center; }
.transport-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.transport-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.transport-desc { font-size: 0.85rem; font-weight: 300; color: var(--text-light); line-height: 1.6; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--lilac), var(--silver), var(--lilac), var(--navy));
}
.footer-names {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: var(--lilac-light);
  margin-bottom: 0.5rem;
}
.footer-date { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.3em; color: var(--silver); text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-link { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.12em; color: var(--silver-light); text-decoration: none; text-transform: uppercase; opacity: 0.7; cursor: pointer; transition: opacity 0.2s; }
.footer-link:hover { opacity: 1; color: var(--lilac-light); }
.footer-note { font-weight: 300; font-size: 0.82rem; color: rgba(192,200,216,0.5); }

/* ─── UTILS ─── */
.text-center { text-align: center; }
.btn-outline { display: inline-block; font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--navy); border: 1px solid var(--navy); padding: 0.75rem 2rem; text-decoration: none; text-transform: uppercase; cursor: pointer; background: transparent; transition: all 0.25s; }
.btn-outline:hover { background: var(--navy); color: var(--lilac-light); }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.8s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.15s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.3s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.45s; opacity: 0; }
.fade-in-delay-4 { animation-delay: 0.6s; opacity: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .hero-section { grid-template-columns: 360px 1fr 360px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-photo-left { display: none; }
  .hero-photo-right { display: none; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1rem; gap: 0; border-top: 1px solid rgba(184,165,212,0.2); }
  .nav-links.show { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .story-grid { grid-template-columns: 1fr; }
  .couple-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; padding-right: 0; padding-left: 1.5rem; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
  .timeline-item:nth-child(odd) .timeline-spacer,
  .timeline-item:nth-child(even) .timeline-spacer { display: none; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-placeholder:nth-child(4n) { aspect-ratio: 1; grid-column: span 1; }
  .photo-placeholder:nth-child(7n) { aspect-ratio: 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .rsvp-form-card { padding: 2rem 1.5rem; }
  .countdown-sep { display: none; }
  .inspo-collage { grid-template-columns: 1fr 1fr; }
  .inspo-wide { grid-column: span 2; }
}