/* ============================================================
   SOL Y MAR — Theresa & Juan Manuel — Wedding Website Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;1,9..144,200;1,9..144,300;1,9..144,400&family=Inter:wght@400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:          #FDFCFA;
  --surface:     #F0E6D3;
  --primary:     #3D4828;
  --accent:      #B8583C;
  --text:        #1A1A1A;
  --muted:       #6B7B7B;
  --border:      #E0D8CC;
  --white:       #FFFFFF;
  --font-display: 'Fraunces', serif;
  --font-body:    'Inter', sans-serif;
  --max-width:   1200px;
  --margin-h:    clamp(24px, 6vw, 100px);
  --radius:      8px;
  --radius-sm:   3px;
  --section-gap: clamp(120px, 14vw, 200px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-feature-settings: "liga" 1, "kern" 1;
}

html { scroll-behavior: smooth; }

/* --- Placeholder styling --- */
::placeholder {
  color: var(--muted);
  opacity: 0.55;
  font-size: 16px;
}

/* --- Focus visible (accessibility + style) --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
:focus:not(:focus-visible) { outline: none; }

/* --- Selection color --- */
::selection {
  background: rgba(184, 88, 60, 0.18);
  color: var(--primary);
}

/* --- Page entry fade-in --- */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-header,
.hero-fullbleed {
  animation: pageFadeIn 0.55s ease both;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 1.0;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.02em;
  color: var(--white);
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  font-variation-settings: 'opsz' 72;
  letter-spacing: -0.01em;
  color: var(--text);
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  font-variation-settings: 'opsz' 72;
  color: var(--text);
}

.script {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.25;
  font-variation-settings: 'opsz' 72;
  color: var(--accent);
}

.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 62ch;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Buttons --- */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 200ms;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent); }
.btn-primary:focus { outline: none; box-shadow: 0 0 0 3px rgba(212,120,90,0.3); }

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  transition: all 200ms;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline:focus { outline: none; box-shadow: 0 0 0 3px rgba(212,120,90,0.2); }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* --- Wave Divider --- */
.wave-divider {
  display: block;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  /* prevent subpixel gap on mobile */
  margin-bottom: -1px;
  position: relative;
}
.wave-divider svg {
  display: block;
  /* extend slightly beyond bounds to kill edge artifacts */
  width: calc(100% + 4px);
  margin-left: -2px;
  height: 80px;
  shape-rendering: geometricPrecision;
}
.wave-divider--tall svg { height: 80px; }

/* --- Page header with photo --- */
.page-header--photo {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header-text {
  padding: clamp(60px,8vw,120px) var(--margin-h) 40px;
  text-align: center;
}
.page-header-text .label { display: block; margin-bottom: 16px; }
.page-header-photo {
  width: 100%;
  max-width: 680px;
  padding: 0 var(--margin-h) 0;
  margin-bottom: 0;
}
.page-header-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: sepia(6%) brightness(0.97);
  border-radius: var(--radius);
}

/* --- Diagonal Section --- */
.diagonal-section {
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  padding: 140px var(--margin-h);
  margin: -50px 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--margin-h);
  height: 64px;
  max-width: calc(var(--max-width) + 2 * var(--margin-h));
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: 22px;
  font-variation-settings: 'opsz' 72;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 200ms;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 250ms ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active {
  color: var(--primary);
  border-bottom: 1.5px solid var(--accent);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--primary);
  transition: all 200ms;
}

/* Mobile panel */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px var(--margin-h);
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile.open { transform: translateX(0); }

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: var(--margin-h);
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.nav-mobile-links a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.4;
  font-variation-settings: 'opsz' 72;
  color: var(--text);
  transition: color 200ms;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: var(--accent); }

.nav-mobile-logo {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: 18px;
  font-variation-settings: 'opsz' 72;
  color: var(--accent);
  margin-bottom: 40px;
}

/* ============================================================
   HERO (index.html)
   ============================================================ */
.hero {
  display: flex;
  height: 100svh;
  overflow: hidden;
}

.hero-left {
  width: 48%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(40px, 5vw, 80px) 0 var(--margin-h);
  flex-shrink: 0;
}

.hero-left h1 { color: var(--white); }

.hero-hairline {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 24px 0;
  border: none;
}

.hero-left .label {
  color: rgba(255, 255, 255, 0.6);
}

.hero-left .script {
  font-size: 28px;
  margin-top: 16px;
  color: var(--accent);
}

.hero-right {
  width: 52%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #C4A035 0%, #8B6520 45%, #5A4010 100%);
}

.hero-right img {
  position: absolute;
  inset: 0;
  object-position: center center;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-section {
  background: var(--bg);
  padding: 60px var(--margin-h);
  text-align: center;
}

.countdown-section .label {
  display: block;
  margin-bottom: 32px;
}

.countdown-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
  text-align: center;
  min-width: 100px;
  flex: 0 0 auto;
}

.countdown-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1;
  font-variation-settings: 'opsz' 144;
  color: var(--primary);
  display: block;
}

.countdown-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section {
  background: var(--white);
  padding: var(--section-gap) var(--margin-h);
  text-align: center;
}

.welcome-inner {
  max-width: 560px;
  margin: 0 auto;
}

.welcome-inner h2 { margin-bottom: 20px; }
.welcome-inner .script { margin-bottom: 24px; }
.welcome-inner p { margin: 0 auto 32px; }

.welcome-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   DESTINATION STRIP
   ============================================================ */
.destination-section {
  background: var(--primary);
  color: var(--white);
}

.destination-section .label {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 16px;
}

.destination-section h2 {
  color: var(--white);
  margin-bottom: 60px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.destination-item {
  position: relative;
}

.destination-letter {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  font-variation-settings: 'opsz' 72;
  color: rgba(255, 255, 255, 0.07);
  margin-bottom: 16px;
  user-select: none;
}

.destination-item .label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: block;
}

.destination-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 28ch;
}

/* ============================================================
   EDITORIAL STRIP
   ============================================================ */
.editorial-section {
  background: var(--surface);
  padding: 100px var(--margin-h);
}

.editorial-section > .label {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

.editorial-row {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  transition: all 200ms;
}
.editorial-row:last-child { border-bottom: 1px solid var(--border); }
.editorial-row:hover h3 { color: var(--accent); }
.editorial-row:hover .editorial-arrow { transform: translateX(4px); }

.editorial-num {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  font-variation-settings: 'opsz' 72;
  color: rgba(26, 26, 26, 0.07);
  margin-right: 32px;
  flex-shrink: 0;
  width: 80px;
}

.editorial-content {
  flex: 1;
}
.editorial-content .label { margin-bottom: 6px; display: block; }
.editorial-content h3 {
  font-weight: 400;
  font-variation-settings: 'opsz' 36;
  transition: color 200ms;
}

.editorial-arrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  color: var(--accent);
  transition: transform 200ms;
  flex-shrink: 0;
  margin-left: 24px;
}

/* ============================================================
   PAGE HEADER (shared)
   ============================================================ */
.page-header {
  background: var(--surface);
  padding: 80px var(--margin-h) 60px;
}

.page-header .label {
  display: block;
  margin-bottom: 16px;
}

.page-header p {
  margin-top: 16px;
  max-width: 60ch;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-slider-wrapper {
  background: var(--bg);
  padding-top: 40px;
  position: relative;
}

.story-slider-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  padding: 0 var(--margin-h) 20px;
}

.story-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.story-slider::-webkit-scrollbar { display: none; }

.story-slide {
  min-width: 85vw;
  scroll-snap-align: start;
  display: flex;
  align-items: stretch;
}

.slide-photo {
  width: 45%;
  flex-shrink: 0;
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.slide-photo img {
  position: absolute;
  inset: 0;
}

.slide-photo-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #C4A035 0%, #5A4010 100%);
}

.slide-content {
  width: 55%;
  padding: 80px clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content.surface-bg {
  background: var(--surface);
}

.slide-hairline {
  width: 48px;
  height: 1px;
  background: var(--border);
  border: none;
  margin: 20px 0;
}

.slide-content .label { margin-bottom: 4px; }
.slide-content h2 { margin-top: 12px; margin-bottom: 20px; }
.slide-content p { max-width: 48ch; }

.slide-meta {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}

/* Story progress */
.story-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 24px 0 60px;
}

.progress-line {
  width: 40px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  transition: background 300ms;
}
.progress-line.active { background: var(--accent); }

/* Story bottom quote */
.story-quote {
  background: var(--white);
  padding: 100px var(--margin-h);
  text-align: center;
}
.story-quote .label { margin-top: 20px; display: block; }

/* ============================================================
   PROGRAM PAGE
   ============================================================ */
.program-grid {
  background: var(--bg);
  padding: var(--section-gap) var(--margin-h);
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--accent);
  position: relative;
  padding: 28px 32px 28px 28px;
  overflow: hidden;
}

.event-bg-hour {
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  font-variation-settings: 'opsz' 144;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.event-card .label {
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.event-card h3 { color: var(--primary); }

.event-card p {
  font-size: 14px;
  margin-top: 6px;
  max-width: none;
}

/* Dress code box */
.dress-code-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 56px 64px;
  margin: 60px auto;
  max-width: 800px;
}

.dress-code-box .label {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

.dress-code-box h3 {
  text-align: center;
  margin: 16px 0 32px;
}

.dress-code-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
  border: none;
}

.dress-code-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
  align-items: start;
}

.dress-code-rule {
  background: var(--border);
  align-self: stretch;
}

.dress-col .label {
  display: block;
  margin-bottom: 12px;
}

.dress-col p { font-size: 15px; max-width: none; }

/* ============================================================
   STAY PAGE
   ============================================================ */
.filter-tabs {
  background: var(--bg);
  padding: 40px var(--margin-h) 0;
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.filter-tab {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  transition: all 200ms;
  margin-bottom: -1px;
}
.filter-tab.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}
.filter-tab:hover { color: var(--accent); }
.filter-tab:focus { outline: none; }

.hotel-grid-section {
  background: var(--bg);
  padding: 40px var(--margin-h) var(--section-gap);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hotel-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 200ms;
}
.hotel-card:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
.hotel-card.hidden { display: none; }

.hotel-photo {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: sepia(5%) brightness(0.92);
}

.hotel-content { padding: 28px 32px; }

.hotel-stars {
  color: var(--accent);
  font-size: 14px;
  margin: 4px 0 8px;
  display: block;
}

.hotel-distance {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 4px;
}

.hotel-price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 16px;
}

.hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.hotel-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  background: var(--surface);
  border-radius: 100px;
  padding: 4px 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hotel-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Shuttle box */
.shuttle-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  margin: 0 var(--margin-h) var(--section-gap);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.shuttle-box .label {
  display: block;
  margin-bottom: 16px;
}

.shuttle-box p { max-width: none; }

/* ============================================================
   REGISTRY PAGE
   ============================================================ */
.registry-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) var(--margin-h);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.registry-photo {
  border-radius: var(--radius);
  height: 600px;
  overflow: hidden;
  background: linear-gradient(175deg, #4A6B5A 0%, #1C3A3A 100%);
  filter: sepia(6%) brightness(0.92);
  position: relative;
}

.registry-photo img {
  position: absolute;
  inset: 0;
  object-position: center 20%;
}

.registry-content { padding-top: 40px; }

.registry-content .label { display: block; margin-bottom: 16px; }
.registry-content h2 { margin-bottom: 20px; }
.registry-content > p { margin-bottom: 40px; }

.registry-items { }

.registry-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.registry-item:first-child { border-top: 1px solid var(--border); }

.registry-item h3 {
  color: var(--primary);
  font-variation-settings: 'opsz' 36;
  margin-bottom: 8px;
}

.registry-item p {
  font-size: 14px;
  margin-bottom: 16px;
  max-width: none;
}

/* ============================================================
   TRAVEL PAGE
   ============================================================ */
.travel-tabs {
  background: var(--bg);
  padding: 0 var(--margin-h);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
}

.travel-tab {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0 18px;
  border-bottom: 2px solid transparent;
  transition: all 200ms;
  margin-bottom: -1px;
}
.travel-tab.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}
.travel-tab:hover { color: var(--accent); }
.travel-tab:focus { outline: none; }

.travel-panels {
  background: var(--bg);
  padding: 60px var(--margin-h) var(--section-gap);
  min-height: 400px;
}

.travel-panel { display: none; }
.travel-panel.active { display: block; }

/* Steps */
.travel-steps { display: flex; flex-direction: column; gap: 32px; max-width: 680px; }

.travel-step { display: flex; gap: 24px; align-items: flex-start; }

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content .label { display: block; margin-bottom: 8px; }
.step-content p { font-size: 15px; max-width: none; }

/* Around cards */
.around-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
}

.around-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 24px;
}

.around-card h3 { margin-bottom: 8px; font-size: 17px; }
.around-card p { font-size: 16px; max-width: none; }

/* What to do */
.todo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
}

.todo-item h3 { margin-bottom: 8px; font-size: 17px; }
.todo-item .label { display: block; margin-bottom: 8px; }
.todo-item p { font-size: 16px; max-width: none; }

/* Weather */
.weather-content { max-width: 600px; }
.weather-content h3 { margin-bottom: 16px; }
.weather-content > p { margin-bottom: 32px; }

.packing-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.packing-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.packing-item::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* Map placeholder */
.map-placeholder {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px var(--margin-h);
}

.map-placeholder .label { margin-bottom: 4px; }
.map-placeholder small {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) var(--margin-h);
  columns: 2;
  column-gap: 24px;
}

.faq-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 32px;
  break-inside: avoid;
  margin-bottom: 24px;
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-toggle {
  font-size: 18px;
  color: var(--accent);
  display: none;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 200ms;
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}

/* ============================================================
   PARTY PAGE
   ============================================================ */
.bridesmaids-section {
  background: var(--surface);
  padding: 60px var(--margin-h) 80px;
}

.bridesmaids-section .label {
  color: var(--primary);
  display: block;
  margin-bottom: 40px;
}

.groomsmen-section {
  background: var(--primary);
  padding: 60px var(--margin-h) 80px;
}

.groomsmen-section .label {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 40px;
}

.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.party-member {}

.party-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 300ms;
}

.party-photo img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.party-photo-placeholder {
  position: absolute;
  inset: 0;
}

.party-member:hover .party-photo {
  transform: scale(1.02);
  outline: 2px solid var(--accent);
}

.party-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  font-variation-settings: 'opsz' 36;
  color: var(--primary);
  text-align: center;
  margin-top: 16px;
}

.party-name-light {
  color: var(--white);
}

.party-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

.party-role-light {
  color: rgba(255, 255, 255, 0.6);
}

.party-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

.party-note-light {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   MOMENTS PAGE
   ============================================================ */
/* Carousel */
.carousel-section {
  position: relative;
  overflow: hidden;
  height: 75vh;
  background: #111;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active { opacity: 1; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-slide-fallback {
  width: 100%;
  height: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28, 58, 58, 0.45);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: background 200ms;
}
.carousel-arrow:hover { background: rgba(28, 58, 58, 0.7); }
.carousel-arrow:focus { outline: none; }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 20px 0;
  background: var(--bg);
}

.carousel-progress-line {
  width: 40px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.carousel-progress-line.active {
  background: var(--border);
}

.carousel-progress-fill {
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
}

.carousel-progress-line.active .carousel-progress-fill {
  animation: progress-fill 4.5s linear forwards;
}

@keyframes progress-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Gallery masonry */
.gallery-section {
  background: var(--bg);
  padding: var(--section-gap) var(--margin-h);
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 300ms;
}
.gallery-item:hover { transform: scale(1.01); }

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-item-placeholder {
  width: 100%;
  display: block;
}

/* Lightbox */
dialog#lightbox[open] {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

dialog#lightbox::backdrop {
  background: rgba(253, 252, 250, 0.96);
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  color: var(--primary);
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  padding: 8px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   RSVP PAGE
   ============================================================ */
.rsvp-page {
  min-height: 100svh;
  background: radial-gradient(ellipse at 60% 40%, #2A5A4A 0%, #1C3A3A 60%, #0E2020 100%);
  padding: 80px var(--margin-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rsvp-header { text-align: center; margin-bottom: 0; }

.rsvp-header .script { color: var(--accent); margin-bottom: 8px; }

.rsvp-header h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  font-variation-settings: 'opsz' 72;
  color: var(--white);
  margin-bottom: 16px;
}

.rsvp-header .label {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.rsvp-card {
  max-width: 540px;
  width: 100%;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  padding: 56px 48px;
}

.rsvp-step { display: none; }
.rsvp-step.active { display: block; }

/* Form elements */
.form-group { margin-bottom: 0; }
.form-group .label { display: block; margin-bottom: 8px; }

.form-input {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color 200ms, box-shadow 200ms;
  margin-top: 8px;
  display: block;
}
.form-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 120, 90, 0.12);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.name-error {
  color: #C05050;
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.rsvp-question {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  margin-bottom: 28px;
}

.rsvp-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rsvp-textarea-wrap { margin-bottom: 20px; }
.rsvp-textarea-wrap .rsvp-question { margin-bottom: 20px; }

.rsvp-skip {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 12px;
  width: 100%;
  text-align: center;
  display: block;
}

.rsvp-confirm-rule {
  width: 48px;
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0 auto 32px;
}

.rsvp-confirm .script { text-align: center; display: block; }
.rsvp-confirm p { text-align: center; margin: 16px auto; }
.rsvp-confirm .label { display: block; text-align: center; margin-top: 24px; }

.rsvp-registry-links {
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}

.rsvp-registry-links a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Group step buttons */
.group-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.group-btns .btn-primary,
.group-btns .btn-outline { flex: 1; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  padding: 60px var(--margin-h) 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-size: 32px;
  font-variation-settings: 'opsz' 72;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.footer-date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 40px;
}

.footer-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 200ms;
}
.footer-links a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-hashtag {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .destination-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .party-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .todo-grid { grid-template-columns: repeat(2, 1fr); }
  .around-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .registry-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .registry-photo { height: 400px; }
  .program-cards { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: 1fr; }
  .dress-code-cols {
    grid-template-columns: 1fr;
  }
  .dress-code-rule { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero stacks */
  .hero {
    flex-direction: column-reverse;
    height: 100svh;
  }
  .hero-right {
    width: 100%;
    height: 40vh;
    min-height: 200px;
  }
  .hero-left {
    width: 100%;
    flex: 1;
    padding: clamp(32px, 5vw, 60px) var(--margin-h);
    justify-content: center;
  }

  /* Story slider → vertical stack */
  .story-slider {
    display: block;
    overflow-x: visible;
  }
  .story-slide {
    min-width: 100%;
    flex-direction: column;
  }
  .slide-photo {
    width: 100%;
    height: 40vh;
    min-height: 240px;
    position: relative;
  }
  .slide-content { width: 100%; padding: 40px var(--margin-h); }
  .story-slider-nav { display: none; }

  /* Destination */
  .destination-grid { grid-template-columns: 1fr; }

  /* Editorial */
  .editorial-num { width: 50px; font-size: 44px; }

  /* FAQ */
  .faq-grid {
    columns: 1;
    padding: 60px var(--margin-h);
  }
  .faq-toggle { display: flex; }
  .faq-answer { display: none; }
  .faq-card.open .faq-answer { display: block; }
  .faq-card.open .faq-toggle { transform: rotate(45deg); }

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

  /* Party */
  .party-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Travel */
  .travel-tabs { overflow-x: auto; scrollbar-width: none; }
  .travel-tabs::-webkit-scrollbar { display: none; }
  .around-grid, .todo-grid { grid-template-columns: 1fr; }

  /* Dress code */
  .dress-code-box { padding: 40px 28px; }

  /* RSVP */
  .rsvp-card { padding: 40px 28px; }

  /* Filter tabs */
  .filter-tabs { overflow-x: auto; scrollbar-width: none; gap: 16px; }
  .filter-tabs::-webkit-scrollbar { display: none; }

  /* Countdown */
  .countdown-card { min-width: 70px; padding: 24px 16px; }

  /* Shuttle */
  .shuttle-box { margin-left: var(--margin-h); margin-right: var(--margin-h); padding: 32px 24px; }

  /* Footer */
  .footer-links { gap: 16px; }

  /* Packing */
  .packing-cols { grid-template-columns: 1fr; }

  /* Group btns */
  .group-btns { flex-direction: column; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hotel-btns { flex-direction: column; }
  .hotel-btns .btn-primary,
  .hotel-btns .btn-outline { text-align: center; }
  .welcome-ctas { flex-direction: column; align-items: center; }
  .party-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SUPPLEMENT — Additional classes for all pages
   ============================================================ */

/* PAGE HEADER (shared across inner pages) */
.page-header {
  background: var(--surface);
  padding: 80px var(--margin-h) 60px;
  text-align: center;
}
.page-header .label { display: block; margin-bottom: 12px; }
.page-header h2 { color: var(--text); }
.page-header p { margin: 12px auto 0; color: var(--muted); max-width: 520px; }

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px var(--margin-h) 0;
  background: var(--bg);
}
.story-btn { padding: 10px 20px; font-size: 16px; }

.story-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: var(--bg);
}
.story-slider::-webkit-scrollbar { display: none; }

.story-slide {
  min-width: 85vw;
  scroll-snap-align: start;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
.story-slide--alt { background: var(--surface); flex-direction: row-reverse; }
.story-slide--alt .story-content { background: var(--surface); }

.story-photo {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(175deg, #D4C5A9 0%, #A08060 60%, #7A5A3C 100%);
  min-height: 560px;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(6%) brightness(0.95);
}

.story-content {
  width: 55%;
  padding: clamp(48px,8vw,100px) clamp(32px,5vw,80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.story-content .label { display: block; margin-bottom: 16px; }
.story-rule {
  width: 48px;
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 24px;
}
.story-content h2 { margin-bottom: 20px; }
.story-content p { margin-bottom: 16px; }
.story-date {
  font: 400 13px/1 var(--font-body);
  color: var(--muted);
  margin-top: 8px;
}

.story-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px var(--margin-h);
  background: var(--bg);
}
.progress-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--border);
  transition: background 300ms;
}
.progress-line.active { background: var(--accent); }

.story-quote-section {
  background: var(--white);
  padding: 100px var(--margin-h);
  text-align: center;
}

/* ============================================================
   PROGRAM PAGE
   ============================================================ */
.events-section {
  background: var(--bg);
  padding: 40px var(--margin-h) var(--section-gap);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.events-grid {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}
.event-card {
  background: transparent;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border);
  box-shadow: none;
  padding: 28px 0;
  position: relative;
  overflow: visible;
}
.event-card:last-child { border-bottom: 1px solid var(--border); }
.event-time-bg { display: none !important; }
.event-card .label { display: block; margin-bottom: 10px; color: var(--accent); }
.event-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 300;
  font-variation-settings: 'opsz' 72;
}
.event-card p { font-size: 15px; max-width: none; }

.dresscode-section {
  background: var(--bg);
  padding: 0 var(--margin-h) var(--section-gap);
}
.dresscode-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 56px 64px;
  max-width: 800px;
  margin: 0 auto;
}
.dresscode-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}
.dresscode-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.dresscode-col .label { display: block; margin-bottom: 12px; }

/* ============================================================
   STAY PAGE
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 24px;
  padding: 40px var(--margin-h) 0;
  background: var(--bg);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 10px;
  font: 500 11px/1 var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 200ms;
}
.filter-tab.active { color: var(--primary); border-bottom-color: var(--accent); }
.filter-tab:hover { color: var(--accent); }

.hotels-section {
  background: var(--bg);
  padding: 40px var(--margin-h) var(--section-gap);
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hotel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 300ms;
}
.hotel-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.hotel-card.hidden { display: none; }
.hotel-photo {
  height: 200px;
  overflow: hidden;
}
.hotel-photo img { width: 100%; height: 100%; object-fit: cover; filter: sepia(5%) brightness(0.92); }
.hotel-content { padding: 28px 32px; }
.hotel-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 6px; }
.hotel-header h3 { font-size: 18px; color: var(--primary); }
.hotel-stars { color: var(--accent); font-size: 15px; white-space: nowrap; }
.hotel-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.hotel-tag {
  font: 500 10px/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--surface);
  border-radius: 100px;
  padding: 5px 12px;
  color: var(--muted);
}
.hotel-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.hotel-ctas .btn-primary, .hotel-ctas .btn-outline { padding: 12px 20px; font-size: 13px; }

.shuttle-section { padding: 0 var(--margin-h) var(--section-gap); background: var(--bg); }
.shuttle-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
}
.shuttle-box .label { display: block; margin-bottom: 12px; }
.shuttle-box p { max-width: none; }

/* ============================================================
   REGISTRY PAGE
   ============================================================ */
.registry-section {
  padding: var(--section-gap) var(--margin-h);
  background: var(--bg);
}
.registry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.registry-photo {
  height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(175deg, #4A6B5A 0%, #1C3A3A 100%);
}
.registry-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: sepia(6%) brightness(0.92); }
.registry-content { padding-top: 20px; }
.registry-content .label { display: block; margin-bottom: 16px; }
.registry-content h2 { margin-bottom: 20px; }
.registry-content > p { margin-bottom: 40px; color: var(--muted); }
.registry-items { display: flex; flex-direction: column; }
.registry-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.registry-item h3 {
  font-variation-settings: 'opsz' 36;
  color: var(--primary);
  margin-bottom: 8px;
}
.registry-item p { font-size: 16px; max-width: none; }
.registry-item .btn-primary { margin-top: 16px; }

/* ============================================================
   TRAVEL PAGE
   ============================================================ */
.travel-tabs-nav {
  display: flex;
  gap: 0;
  padding: 0 var(--margin-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.travel-tabs-nav::-webkit-scrollbar { display: none; }
.travel-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 20px 24px;
  font: 500 11px/1 var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 200ms;
  margin-bottom: -1px;
}
.travel-tab.active { color: var(--primary); border-bottom-color: var(--accent); }
.travel-tab:hover { color: var(--accent); }

.travel-panels { background: var(--bg); padding: 60px var(--margin-h) var(--section-gap); }
.travel-panel { display: none; }
.travel-panel.active { display: block; }

.travel-steps { display: flex; flex-direction: column; gap: 32px; max-width: 680px; margin: 0 auto; }
.travel-step { display: flex; gap: 24px; align-items: flex-start; }
.step-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 16px/1 var(--font-body);
  color: var(--primary);
}
.step-content .label { display: block; margin-bottom: 8px; }
.step-content p { max-width: none; }

.around-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--max-width); margin: 0 auto; }
.around-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}
a.around-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.around-card .label { display: block; margin-bottom: 10px; }
.around-card p { font-size: 16px; max-width: none; }

.todo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--max-width); margin: 0 auto; }
.todo-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--border); }
.todo-photo { height: 160px; }
.todo-card .label { display: block; margin: 16px 16px 6px; }
.todo-card h3 { padding: 0 16px; margin-bottom: 8px; font-size: 17px; }
.todo-card p { padding: 0 16px 16px; font-size: 16px; max-width: none; }

.weather-content { max-width: 640px; margin: 0 auto; }
.packing-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
.packing-col .label { display: block; margin-bottom: 16px; }
.packing-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.packing-col li { font: 400 15px/1.6 var(--font-body); color: var(--muted); padding-left: 16px; position: relative; }
.packing-col li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 360px;
  margin: 0 var(--margin-h) var(--section-gap);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { background: var(--bg); padding: 56px var(--margin-h) var(--section-gap); }
.page-header--photo + .faq-section { padding-top: 48px; }

/* Two-column editorial layout: questions left, photo right */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.faq-questions {
  display: flex;
  flex-direction: column;
}
.faq-photo {
  position: sticky;
  top: 88px;
}
.faq-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.faq-grid {
  columns: 2;
  column-gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  break-inside: avoid;
}
.faq-question {
  font: 500 16px/1.5 var(--font-body);
  color: var(--primary);
  margin-bottom: 12px;
  cursor: pointer;
}
.faq-answer {
  font: 400 15px/1.8 var(--font-body);
  color: var(--muted);
}

/* ============================================================
   WEDDING PARTY PAGE
   ============================================================ */
.party-section { }
.party-section--light { background: var(--surface); padding: 60px var(--margin-h) 80px; }
.party-section--dark { background: var(--primary); padding: 60px var(--margin-h) 80px; }
.party-section-inner .label { display: block; margin-bottom: 36px; }
.party-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.party-member { text-align: center; }
.party-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 300ms, box-shadow 300ms;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.party-photo img { width: 100%; height: 100%; object-fit: cover; }
.party-member:hover .party-photo { transform: scale(1.02); box-shadow: 0 0 0 2px var(--accent); }
.party-photo--dark { background: linear-gradient(175deg, #3A4828, #1A2210); }
.party-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  font-variation-settings: 'opsz' 36;
  color: var(--primary);
  margin-top: 16px;
}
.party-name--light { color: var(--white); }
.party-role { display: block; margin-top: 4px; }
.party-role--light { color: rgba(255,255,255,0.6); }
.party-note {
  display: block;
  font: 400 italic 13px/1.5 var(--font-body);
  color: var(--muted);
  margin-top: 6px;
}
.party-note--light { color: rgba(255,255,255,0.5); }

/* ============================================================
   MOMENTS / GALLERY PAGE
   ============================================================ */
.carousel-section {
  position: relative;
  height: 75vh;
  overflow: hidden;
  background: #111;
}
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; }
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(28,58,58,0.45);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
  z-index: 2;
}
.carousel-prev:hover, .carousel-next:hover { background: rgba(28,58,58,0.75); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px var(--margin-h);
  background: var(--bg);
}
.carousel-progress-line {
  width: 40px;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.carousel-progress-line.active { background: var(--border); }
.carousel-progress-fill {
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
}
.carousel-progress-line.active .carousel-progress-fill {
  animation: progress-fill 4.5s linear forwards;
}
@keyframes progress-fill { to { transform: scaleX(1); } }

.gallery-section { background: var(--bg); padding: 40px var(--margin-h) var(--section-gap); }
.gallery-grid {
  columns: 3;
  column-gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 300ms;
  background: var(--surface);
}
.gallery-item:hover { transform: scale(1.01); }
.gallery-item img { width: 100%; height: auto; display: block; }

/* Lightbox */
#lightbox[open] {
  border: none;
  background: rgba(253,252,250,0.97);
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  padding: 0;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox::backdrop { background: rgba(253,252,250,0.97); }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font: 500 22px/1 var(--font-body);
  color: var(--text);
  cursor: pointer;
  z-index: 10;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font: 500 28px/1 var(--font-body);
  color: var(--primary);
  cursor: pointer;
  padding: 12px;
  z-index: 10;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   RSVP PAGE
   ============================================================ */
.rsvp-page {
  background: #0D1208;
  min-height: 100svh;
}
.rsvp-bg-image {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.rsvp-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rsvp-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(8, 13, 5, 0.70);
}
.rsvp-main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px var(--margin-h) 80px;
}
.rsvp-header { text-align: center; margin-bottom: 0; }
.rsvp-header .script { display: block; }
.rsvp-couple-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px,4vw,48px);
  font-variation-settings: 'opsz' 72;
  color: var(--white);
  margin-top: 8px;
}
.rsvp-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  padding: 56px 48px;
  width: 100%;
  max-width: 540px;
  margin-top: 40px;
}
.rsvp-step { display: none; }
.rsvp-input {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  font: 400 16px/1 var(--font-body);
  margin-top: 8px;
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  color: var(--text);
  background: var(--white);
}
.rsvp-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,120,90,0.12);
}
.rsvp-error {
  color: #C05050;
  font: 400 13px/1.5 var(--font-body);
  margin-top: 8px;
}
.rsvp-btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  display: block;
  padding: 16px;
}
.rsvp-attend-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.rsvp-question {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}
.rsvp-textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  font: 400 15px/1.6 var(--font-body);
  color: var(--text);
  resize: vertical;
  outline: none;
  margin-top: 16px;
  transition: border-color 200ms;
}
.rsvp-textarea:focus { border-color: var(--accent); }
.rsvp-skip-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font: 400 13px/1 var(--font-body);
  margin-top: 12px;
  width: 100%;
  text-align: center;
  display: block;
}

/* Home hero nav — transparent over image, solid on scroll */
.nav--hero {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(8,13,5,0.0);
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background 350ms ease, border-color 350ms ease, backdrop-filter 350ms ease;
}
.nav--hero .nav-logo { color: var(--white); }
.nav--hero .nav-links a { color: rgba(255,255,255,0.80); }
.nav--hero .nav-links a:hover { color: var(--white); }
.nav--hero .nav-links a.active { color: var(--white); border-bottom-color: rgba(255,255,255,0.6); }
.nav--hero .nav-hamburger span { background: var(--white); }

.nav--hero.nav--scrolled {
  background: rgba(253,252,250,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav--hero.nav--scrolled .nav-logo { color: var(--accent); }
.nav--hero.nav--scrolled .nav-links a { color: var(--muted); }
.nav--hero.nav--scrolled .nav-links a:hover { color: var(--accent); }
.nav--hero.nav--scrolled .nav-links a.active { color: var(--primary); border-bottom-color: var(--accent); }
.nav--hero.nav--scrolled .nav-hamburger span { background: var(--primary); }

/* RSVP nav overrides */
.nav--transparent {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(8,13,5,0.40);
  border-bottom-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo--light { color: var(--accent) !important; }
.nav-links--light a { color: rgba(255,255,255,0.65); }
.nav-links--light a:hover { color: var(--white); }
.nav-links--light a.active { color: var(--white); border-bottom-color: var(--accent); }
.nav-hamburger--light span { background: var(--white); }

/* ============================================================
   HERO — FULL BLEED IMAGE
   ============================================================ */
.hero-fullbleed {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -64px; /* pull up behind fixed nav */
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.42) 55%,
    rgba(0,0,0,0.62) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 var(--margin-h);
}
.hero-label {
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.28em;
}
.hero-hairline {
  width: 60px;
  border: none;
  border-top: 0.5px solid rgba(255,255,255,0.5);
  margin: 0;
}
.btn-hero {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 44px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.8);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 220ms, border-color 220ms;
  border-radius: var(--radius-sm);
}
.btn-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 20px;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PAGE HEADER (shared)
   ============================================================ */
.page-header {
  text-align: center;
  padding: clamp(56px, 7vw, 96px) var(--margin-h) clamp(40px, 5vw, 72px);
  background: var(--bg);
}
.page-header .label { display: block; margin-bottom: 16px; }
.page-header h2 { margin: 0 auto; }

/* ============================================================
   STORY — EDITORIAL ALTERNATING BLOCKS
   ============================================================ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: 0 var(--margin-h);
  gap: 64px;
  align-items: center;
}
.story-block--alt { direction: rtl; }
.story-block--alt > * { direction: ltr; }

.story-block-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.story-block-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(6%) brightness(0.97);
  transition: transform 600ms ease;
}
.story-block:hover .story-block-photo img { transform: scale(1.03); }

.story-block-content { padding: 8px 0; }
.story-block-content .label { display: block; margin-bottom: 16px; }

.story-rule {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0 0 24px;
  width: 48px;
}
.story-block-content h2 { margin-bottom: 20px; }
.story-block-content p + p { margin-top: 14px; }

.story-date {
  display: block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  font-variation-settings: 'opsz' 36;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.story-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin: 0 auto clamp(60px, 8vw, 100px);
}
.story-quote-section {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) var(--margin-h);
  background: var(--surface);
}

/* Second story block photo — show top, crop bottom */
.story-block--alt .story-block-photo img {
  object-position: 50% 10%;
}

/* Program page editorial photo */
.program-photo-moment {
  background: var(--bg);
  padding: 0 var(--margin-h) clamp(32px, 4vw, 48px);
}
.program-photo-inner {
  max-width: 680px;
  margin: 0 auto;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
}
.program-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  filter: sepia(6%) brightness(0.97);
}

/* Q&A page photo banner */
.qa-photo-banner {
  height: 380px;
  overflow: hidden;
  background: var(--surface);
}
.qa-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: sepia(6%) brightness(0.97);
}

@media (max-width: 760px) {
  .story-block {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .story-block--alt { direction: ltr; }
  .story-block-photo { aspect-ratio: 3/2; }
  .program-photo-inner { height: 320px; }
  .qa-photo-banner { height: 260px; }
}

/* ============================================================
   RESPONSIVE SUPPLEMENTS
   ============================================================ */
@media (max-width: 900px) {
  .story-slide { min-width: 100vw; }
  .story-photo { min-height: 400px; }
  .events-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .faq-grid { columns: 1; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-photo { position: static; order: -1; }
  .faq-photo img { max-height: 420px; object-fit: cover; }
  .party-grid { grid-template-columns: repeat(2, 1fr); }
  .around-cards { grid-template-columns: 1fr; }
  .todo-grid { grid-template-columns: 1fr; }
  .packing-list { grid-template-columns: 1fr; gap: 24px; }
  .registry-grid { grid-template-columns: 1fr; }
  .registry-photo { height: 340px; }
  .dresscode-cols { grid-template-columns: 1fr; }
  .dresscode-divider { display: none; }
}

@media (max-width: 640px) {
  .story-slide { flex-direction: column; min-width: 100vw; }
  .story-photo { width: 100%; min-height: 40vh; }
  .story-content { width: 100%; }
  .story-controls { justify-content: center; }
  .gallery-grid { columns: 2; }
  .party-grid { grid-template-columns: repeat(2, 1fr); }
  .rsvp-card { padding: 40px 24px; }
  .carousel-section { height: 50vh; }
  .dresscode-box { padding: 40px 28px; }
}

@media (max-width: 420px) {
  .gallery-grid { columns: 1; }
  .party-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   21ST-DEV POLISH LAYER
   ============================================================ */

/* Scroll margin so anchors never hide behind fixed nav */
section, .page-header {
  scroll-margin-top: 72px;
}

/* Crisper image rendering everywhere */
img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Footer links — animated underline on hover */
.footer-links a {
  position: relative;
  transition: color 200ms;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 250ms ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::after { width: 100%; }

/* Countdown numbers — tabular figures for stable width */
.countdown-number {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* Event time background number — more opacity so it reads at all */
.event-time-bg {
  opacity: 0.055;
  user-select: none;
  pointer-events: none;
}

/* FAQ cards in two-column layout get slightly less horizontal padding */
.faq-layout .faq-card {
  padding: 28px;
}

/* Subtle warm tint on hotel placeholder images */
.hotel-photo > div,
.hotel-photo [style*="background"] {
  position: relative;
}
.hotel-photo > div::after,
.hotel-photo [style*="background"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(29, 36, 18, 0.55));
  pointer-events: none;
}

/* RSVP input — slightly taller touch target */
.rsvp-input {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Party member italic note — slightly larger, more readable */
.party-note,
.party-note--light {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 6px;
  display: block;
}
