/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Stone-sage naturals — no pink */
  --linen:       #e6e3d5;
  --linen-dark:  #d2cfc0;
  --cream:       #eceae0;
  --cream-dark:  #dddacc;
  --offwhite:    #f3f1e8;
  --warm-white:  #f9f8f2;

  /* Greens */
  --sage:        #5c6e58;
  --sage-light:  #7a8f75;
  --sage-dark:   #3e4f3b;
  --sage-mid:    #4a5e46;
  --sage-pale:   #e8ede6;

  /* Browns */
  --bark:        #6b4f3a;
  --bark-mid:    #8a6a52;
  --bark-pale:   #d8d2bf;
  --espresso:    #1e140c;
  --espresso-mid:#2e1f14;

  /* Golds */
  --gold:        #b89b6a;
  --gold-light:  #cdb48a;

  /* Text */
  --text:        #252b18;
  --text-mid:    #535640;
  --text-light:  #888a70;

  /* Kept for backwards compat */
  --charcoal:    #1e140c;
  --charcoal-mid:#2e1f14;

  /* Olive green — nav, footer, page-nav */
  --olive:      #787947;
  --olive-dark: #565731;
  --olive-mid:  rgba(86, 87, 49, 0.96);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Raleway', system-ui, sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--linen);
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--linen-dark); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 3px; }

/* ─── Decal utility ─────────────────────────────────────────── */
.detail-decal {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  opacity: 0.72;
  filter: contrast(1.05);
}
/* Hummingbird gets warm mustard tint to distinguish from the others */
.detail-decal--hummingbird {
  filter: sepia(0.85) saturate(3) hue-rotate(8deg) brightness(0.78);
  opacity: 0.82;
}

/* ─── Nav ──────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#nav.scrolled {
  background: rgba(86, 87, 49, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* White on dark olive nav */
.nav-bunny {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-logo:hover .nav-bunny { transform: scale(1.08); opacity: 1; }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--warm-white); }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 9px 22px !important;
  color: rgba(255,255,255,0.8) !important;
  transition: border-color var(--transition), color var(--transition), background var(--transition) !important;
}
.nav-cta:hover {
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.07) !important;
  color: var(--warm-white) !important;
}

.nav-active { color: var(--warm-white) !important; border-bottom: 1px solid var(--gold-light); padding-bottom: 1px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--warm-white);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(86, 87, 49, 0.98);
  padding: 24px 40px 32px;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── Hero ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--espresso);
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 40%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 7, 2, 0.30) 0%,
    rgba(10, 7, 2, 0.08) 45%,
    rgba(10, 7, 2, 0.68) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--warm-white);
  padding: 140px 24px 100px;
  max-width: 860px;
  width: 100%;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  align-items: flex-end;
  padding: 0 48px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  color: var(--warm-white);
}
.hero-bottom-left {
  text-align: left;
  flex: 1 1 auto;
}
.hero-bottom-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 6px;
  flex: 0 0 auto;
}

.hero-eyebrow-date {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
  font-weight: 400;
}
.hero-eyebrow-venue {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.8);
  font-weight: 400;
  font-family: var(--font-sans);
}

.hero-names {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  color: #fff;
}

.amp { font-style: italic; color: var(--gold-light); }

.hero-name-line {
  display: block;
}
.hero-amp {
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.72em;
}
.hero-amp-solo {
  display: inline;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.72em;
  font-weight: 300;
  margin-right: 8px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.hero-rule {
  width: 44px;
  height: 1px;
  background: var(--gold-light);
  margin: 0 auto 32px;
  opacity: 0.75;
}

/* ─── Countdown band ────────────────────────────────────────── */
.countdown-band {
  background: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 36px 40px;
  flex-wrap: wrap;
}
.countdown-band .btn-primary--dark {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  padding: 12px 40px;
}
.countdown-band .btn-primary--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.cd-block span {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.cd-block label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.cd-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}

.btn-primary {
  display: inline-block;
  padding: 14px 52px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.38);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
}
.btn-primary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ─── Sections ─────────────────────────────────────────────── */
.section { padding: 112px 40px; }
.section-linen     { background: var(--linen); }
.section-cream     { background: var(--cream); }
.section-offwhite  { background: var(--offwhite); }
.section-bark-pale { background: var(--bark-pale); }
.section-sage-pale { background: var(--sage-pale); }
.section-dark      { background: var(--olive-dark); }
.section-sage      { background: var(--sage-dark); }
.section-sage-mid  { background: var(--sage-mid); }

.container { max-width: 1200px; margin: 0 auto; }
.container--narrow { max-width: 740px; }

.section-header { margin-bottom: 64px; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-label {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bark-mid);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.section-title.light { color: var(--warm-white); }

.section-intro {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 48px;
}
.section-intro.light { color: rgba(255,255,255,0.55); }

/* ─── Inner page hero ─── light/linen default ───────────────── */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  background: var(--bark-pale);
}
.page-hero--dark {
  background: var(--olive-dark);
}
.page-hero--linen { background: var(--bark-pale); }

.page-hero-content { max-width: 640px; margin: 0 auto; }

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.page-hero--dark .page-hero-title { color: var(--warm-white); }
.page-hero--dark .section-label   { color: var(--gold-light); }

.page-hero-sub {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-hero--dark .page-hero-sub { color: rgba(255,255,255,0.5); }

/* ─── Scrapbook photos ───────────────────────────────────────── */
.scrapbook-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding: 8px 0 4px;
}
.scrapbook-photo {
  background: #fff;
  padding: 8px 8px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
  width: 140px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scrapbook-photo:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 2;
  position: relative;
}
.scrapbook-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.scrapbook-photo--tilt-left  { transform: rotate(-3deg); }
.scrapbook-photo--tilt-right { transform: rotate(2.5deg); }
.scrapbook-photo--tilt-slight { transform: rotate(-1.5deg); }
.scrapbook-photo--tilt-right2 { transform: rotate(4deg); }

/* ─── Itinerary divider ──────────────────────────────────────── */
.itinerary-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 64px 0;
  background: var(--bark-pale);
  border-top: 1px solid var(--linen-dark);
  border-bottom: 1px solid var(--linen-dark);
}
.itinerary-divider img {
  width: 56px;
  height: auto;
  filter: contrast(1.05);
}
.itinerary-divider--hummingbird {
  filter: sepia(0.85) saturate(3) hue-rotate(8deg) brightness(0.78) !important;
  opacity: 0.82 !important;
}

/* ─── Itinerary ─────────────────────────────────────────────── */
.itinerary-day-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  margin: 8px 0 36px;
}
.itinerary-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--linen-dark);
}
.itinerary-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--linen-dark);
}
.itinerary-time {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  white-space: nowrap;
  min-width: 160px;
}
.itinerary-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 4px;
}
.itinerary-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.page-placeholder {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  line-height: 1.85;
  padding: 40px 0;
}

/* ─── Page nav strip ────────────────────────────────────────── */
.page-nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--linen-dark);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.page-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  border-right: 1px solid var(--cream-dark);
  transition: background var(--transition);
}
.page-nav-item:last-child { border-right: none; }
.page-nav-item:hover { background: rgba(107,79,58,0.07); }
.page-nav-item--cta { background: var(--gold); }
.page-nav-item--cta:hover { background: var(--gold-light); }

.page-nav-label {
  font-size: 0.59rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
}
.page-nav-item:hover .page-nav-label { color: var(--text); }
.page-nav-item--cta .page-nav-label,
.page-nav-item--cta:hover .page-nav-label { color: var(--warm-white); font-weight: 500; }

/* ─── Details ──────────────────────────────────────────────── */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen-dark);
  border: 1px solid var(--linen-dark);
}
.details-grid--four { grid-template-columns: repeat(4, 1fr); }

.detail-card {
  background: var(--offwhite);
  padding: 44px 36px;
  transition: background var(--transition);
}
.detail-card:hover { background: var(--warm-white); }

.detail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.detail-rule {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}

.detail-card p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2px;
}
.detail-note {
  color: var(--text-light) !important;
  font-size: 0.79rem !important;
  margin-top: 10px !important;
  line-height: 1.65 !important;
}
.attire-note {
  font-style: italic !important;
  opacity: 0.7 !important;
  margin-top: 14px !important;
}

/* ─── Registry ──────────────────────────────────────────────── */
.registry-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.registry-card {
  background: var(--warm-white);
  border: 1px solid var(--linen-dark);
  padding: 44px 48px;
  text-align: center;
  min-width: 260px;
  max-width: 340px;
  flex: 1;
}
.registry-decal {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  opacity: 0.72;
  filter: contrast(1.05);
}
.registry-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}
.registry-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.detail-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.detail-link:hover { color: var(--sage-dark); border-color: var(--sage-dark); }

/* ─── Photo Break ───────────────────────────────────────────── */
.photo-break {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  height: 400px;
  gap: 3px;
}
.photo-break-img {
  background-size: cover;
  background-position: center;
  transition: filter 0.5s ease;
}
.photo-break-img:hover { filter: brightness(1.06); }

/* ─── Venue feature grid ────────────────────────────────────── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen-dark);
  border: 1px solid var(--linen-dark);
  margin-bottom: 64px;
}
.venue-feature {
  background: var(--offwhite);
  padding: 40px 32px;
  transition: background var(--transition);
}
.venue-feature:hover { background: var(--warm-white); }
.venue-feature h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.venue-feature p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.venue-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--linen-dark);
  border: 1px solid var(--linen-dark);
}
.venue-info-block {
  background: var(--cream);
  padding: 48px 40px;
}
.venue-info-block h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}
.venue-info-block p, .venue-info-block li {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 6px;
}
.venue-info-block ul { list-style: none; }
.venue-info-block li::before {
  content: '—';
  margin-right: 8px;
  color: var(--gold);
}
.venue-map-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.venue-map-link:hover { color: var(--sage-dark); border-color: var(--sage-dark); }

/* ─── Story ─────────────────────────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.story-photo { position: relative; }
.story-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.story-scrapbook {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 8px 16px;
  position: sticky;
  top: 80px;
}
.story-scrapbook .scrapbook-photo {
  width: 100% !important;
  max-width: 240px;
  margin-bottom: -28px;
}
.story-scrapbook .scrapbook-photo:last-child {
  margin-bottom: 0;
}
.story-scrapbook .scrapbook-photo img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.story-photo-stamp {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 64px;
  height: 64px;
  background: var(--espresso-mid);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stamp-bunny {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* timeline — light background */
.timeline { max-width: 600px; }
.timeline-item { display: flex; gap: 0; }
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}
.timeline-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  flex-shrink: 0;
  margin-top: 7px;
}
.timeline-dot--final { background: var(--gold); width: 11px; height: 11px; }
.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 56px;
  background: linear-gradient(to bottom, rgba(184,155,106,0.4), rgba(184,155,106,0.05));
  margin-top: 8px;
}
.timeline-content { padding-bottom: 96px; padding-left: 8px; }
.timeline-item--final .timeline-content { padding-bottom: 0; }

.timeline-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.timeline-item--final .timeline-content p {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

/* ─── Gallery ───────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 6px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  background: var(--linen-dark);
}
.gallery-item--tall,
.gallery-item--wide { /* natural size, no special treatment needed */ }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ─── RSVP event details ─────────────────────────────────────── */
.rsvp-event-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}
.rsvp-detail-item {
  display: block;
  padding: 0;
  background: transparent;
  border: none;
}
.rsvp-detail-label { display: none; }
.rsvp-detail-value {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.6;
}
.rsvp-detail-item:last-child .rsvp-detail-value {
  font-style: italic;
  color: var(--bark);
}

/* ─── RSVP forms ────────────────────────────────────────────── */
/* Light variant — used on linen/cream backgrounds */
.rsvp-form {
  background: var(--offwhite);
  border: 1px solid var(--linen-dark);
  padding: 56px 60px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark-mid);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--linen-dark);
  padding: 11px 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select option { background: var(--offwhite); color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }

.radio-group { display: flex; gap: 16px; padding-top: 4px; }
.radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 1px solid var(--linen-dark);
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.75rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--text-mid) !important;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  background: transparent;
}
.radio-label:has(input:checked) {
  border-color: var(--olive);
  background: var(--olive);
  color: #fff !important;
}
.radio-label input[type="radio"] {
  display: none;
}

.btn-submit {
  width: 100%;
  padding: 17px;
  background: var(--olive-dark);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 10px;
}
.btn-submit:hover { background: var(--bark); }

.form-success {
  display: none;
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(92,110,88,0.3);
  color: var(--sage-dark);
  font-size: 0.88rem;
  line-height: 1.75;
  font-style: italic;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--olive-dark);
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bunny {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.footer-names {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 20px;
}
.footer-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.3;
}
.footer-date {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── Btn secondary ─────────────────────────────────────────── */
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--warm-white);
  border-color: var(--sage);
}

/* ─── Reveal on scroll ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.mobile-prefix { display: none; }
.footer-names-break { display: none; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid--four { grid-template-columns: repeat(2, 1fr); }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-info-row { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 280px 1fr; gap: 52px; }
  .page-nav { grid-template-columns: repeat(4, 1fr); }
  .page-nav-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 18px 24px; }
  .photo-break { height: 240px; }
  .section-header { margin-bottom: 44px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Story */
  .story-layout { grid-template-columns: 1fr; gap: 44px; }
  .story-photo img { aspect-ratio: 4/3; }
  .story-scrapbook { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 0; }
  .story-scrapbook .scrapbook-photo { width: calc(50% - 16px) !important; max-width: 200px; margin-bottom: 0; }

  /* Gallery */
  .gallery-grid { columns: 2; }

  /* RSVP */
  .rsvp-form { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Venue */
  .venue-grid { grid-template-columns: 1fr; }
  .venue-info-block { padding: 36px 24px; }

  /* Itinerary */
  .itinerary-item { gap: 16px; }
  .itinerary-divider { gap: 24px; padding: 40px 24px; }
  .itinerary-divider img { width: 44px; }

  /* Stay */
  .container--narrow { padding: 0 4px; }

  /* Page hero */
  .page-hero { padding: 120px 24px 60px; }
  .page-hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }

  /* Hero */
  .hero-bottom { padding: 0 24px 48px; }
  .countdown-band { gap: 32px; padding: 28px 24px; }
}

@media (max-width: 540px) {
  .section { padding: 60px 20px; }
  .details-grid { grid-template-columns: 1fr; }
  .details-grid--four { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; gap: 10px; }
  .photo-break { grid-template-columns: 1fr 1fr; height: 200px; }
  .photo-break-img:last-child { display: none; }
  .gallery-grid { columns: 1; }
  .page-nav { grid-template-columns: repeat(2, 1fr); }
  .registry-cards { flex-direction: column; align-items: center; }
  .registry-card { max-width: 100%; }

  /* Hero — mobile */
  .footer-names-break { display: inline; }
  .detail-card p { font-size: 1rem; }
  .detail-card h3 { font-size: 1.6rem; }
  .detail-note { font-size: 0.88rem !important; }
  .hero-names { font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.1; }
  .cd-block { padding: 0 10px; }
  .cd-block span { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .cd-block label { font-size: 0.52rem; letter-spacing: 0.18em; }
  .hero-bottom { padding: 0 20px 40px; }
  .countdown-band { flex-direction: column; gap: 20px; padding: 28px 20px; }

  /* RSVP */
  .rsvp-detail-value { font-size: 0.88rem; }
  .mobile-prefix { font-style: normal; color: var(--text-light); }
  .section-header { margin-bottom: 16px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Itinerary */
  .itinerary-item { flex-direction: column; gap: 6px; padding: 18px 0; }
  .itinerary-time { min-width: unset; }
  .itinerary-divider { gap: 16px; }
  .itinerary-divider img { width: 36px; }

  /* Story scrapbook — single column on very small screens */
  .story-scrapbook .scrapbook-photo { width: 80% !important; max-width: 260px; }

  /* Venue */
  .venue-info-block { padding: 28px 20px; }

  /* Stay cards */
  div[style*="border:1px solid var(--gold)"],
  div[style*="border:1px solid var(--linen-dark)"] { padding: 28px 20px !important; }

  /* Page hero */
  .page-hero { padding: 110px 20px 50px; }
  .page-hero-title { font-size: clamp(2rem, 11vw, 3.2rem); }
  .page-hero-sub { font-size: 0.84rem; }
  .section-header { margin-bottom: 36px; }
}
