/* ===== T & J Wedding Site — Shared Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Warm palette — ivory, stone, charcoal */
  --bg-dark: #1e1b17;
  --bg-medium: #f5f0e8;
  --bg-warm: #e8e0d4;
  --bg-cream: #faf7f2;
  --text-dark: #2c2620;
  --text-white: #faf7f2;
  --text-body: #4a4339;
  --text-light: #6b6358;
  --text-muted: #9a9185;
  --accent: #8a7e70;
  --accent-light: #c4b9ab;
  --font-main: 'Jura', sans-serif;
  --max-width: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Typography Scale --- */
h1 {
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1.15;
}

h2 {
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.2;
}

h3 {
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.3;
}

p, .body-text {
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--text-body);
}

.subtitle {
  font-weight: 300;
  /* kept light for contrast with heavier body */
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gutter);
  background: rgba(30, 27, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links .rsvp-btn {
  border: 1px solid var(--accent-light);
  padding: 0.5rem 1.5rem;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.nav-links .rsvp-btn:hover {
  border-color: var(--text-white);
  background: var(--text-white);
  color: var(--bg-dark);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-white);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-dark { background: var(--bg-dark); color: var(--text-white); }
.section-dark p, .section-dark .body-text { color: #c8c0b6; }
.section-cream { background: var(--bg-cream); color: var(--text-dark); }
.section-medium { background: var(--bg-medium); color: var(--text-dark); }
.section-warm { background: var(--bg-warm); color: var(--text-dark); }
.section-warm p, .section-warm .body-text { color: var(--text-body); }
.section-warm .subtitle { color: var(--text-light); }

.text-center { text-align: center; }

.divider {
  width: 100%;
  height: 1px;
  background: var(--accent-light);
  margin: 2rem 0;
}

.section-dark .divider { background: rgba(255,255,255,0.15); }
.section-warm .divider { background: rgba(0,0,0,0.1); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--text-dark);
  color: var(--bg-cream);
}

/* Light button for dark sections */
.btn-light {
  border-color: var(--text-white);
  color: var(--text-white);
}

.btn-light:hover {
  background: var(--text-white);
  color: var(--bg-dark);
}

.btn-dark {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-dark:hover {
  background: var(--text-dark);
  color: var(--text-white);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 4rem;
}

.hero-text {
  padding: var(--gutter);
  padding-left: clamp(2rem, 6vw, 5rem);
}

.hero-date {
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-top: 1.5rem;
}

.hero-venue {
  font-weight: 300;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.5rem;
}

.hero-image {
  height: 100vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Intro Section --- */
.intro {
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) var(--gutter);
}

.intro h2 {
  font-weight: 400;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  letter-spacing: 0.25em;
  line-height: 2;
  color: var(--text-light);
}

.intro strong {
  font-weight: 600;
  color: var(--text-dark);
}

.section-dark .intro h2 { color: #c8c0b6; }
.section-dark .intro strong { color: var(--text-white); }

/* --- Schedule Section --- */
.schedule-header {
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--accent-light);
}

.section-dark .schedule-header { border-bottom-color: rgba(255,255,255,0.12); }

.schedule-event {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  padding: 2rem 0;
  align-items: start;
}

.schedule-event p {
  margin: 0;
}

/* Separator line only on the right column (event details side) */
.schedule-event .event-details {
  padding-top: 0;
}

.schedule-event + .schedule-event .event-details {
  border-top: 1px solid var(--accent-light);
  padding-top: 2rem;
}

.schedule-event + .schedule-event .schedule-day {
  padding-top: 2rem;
}
.schedule-event + .schedule-event .schedule-date {
  padding-top: 0;
}

.section-dark .schedule-event + .schedule-event .event-details {
  border-top-color: rgba(255,255,255,0.12);
}

.schedule-day {
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.2rem 0;
}

.schedule-date {
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin: 0;
}

.event-name {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.event-time {
  font-weight: 400;
  color: var(--text-muted);
}

.event-detail {
  font-weight: 400;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  color: var(--text-light);
  margin-top: 0.4rem;
}

.event-attire {
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--text-muted);
  margin-top: 0.6rem;
  font-style: italic;
}

/* --- Full-width Image Section --- */
.full-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.full-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Countdown section needs a fixed height since it has overlay content */
.full-image--fixed {
  height: 80vh;
}

.full-image--fixed img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Saturn photo — shown as-is, tweak filter here if needed */
.saturn-img {
  /* filter: sepia(0.25) brightness(1.1) saturate(0.85); */
}

.full-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  text-align: center;
  padding: var(--gutter);
}

.full-image-overlay--warm {
  background: rgba(30, 27, 23, 0.7);
}

.full-image-overlay h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.full-image-overlay p {
  color: rgba(250, 247, 242, 0.85);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
}

.full-image-overlay .countdown-number {
  color: var(--text-white);
}

.full-image-overlay .countdown-label {
  color: rgba(250, 247, 242, 0.7);
}

/* --- Travel Page Grid --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.travel-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.25em;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.travel-subhead {
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.hotel-card {
  border: 1px solid var(--accent-light);
  padding: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.section-dark .hotel-card { border-color: rgba(255,255,255,0.1); }

.hotel-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}

.hotel-detail {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.hotel-detail strong {
  color: var(--text-dark);
}

.section-dark .hotel-detail strong { color: var(--text-white); }
.section-dark .hotel-detail { color: #c8c0b6; }
.section-dark .hotel-note { color: #9a9185; }

.hotel-note {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.hotel-card--featured {
  border: 2px solid var(--text-dark);
  position: relative;
}

.hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hotel-address-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 1px;
  transition: all 0.3s ease;
}

.hotel-address-link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

.airbnb-section {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg-medium);
  border-left: 3px solid var(--accent);
}

/* --- FAQ Layout --- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

/* --- FAQ Split Layout (photo left, content right) --- */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.faq-split-image {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
}
.faq-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.faq-split-content {
  padding: clamp(8rem, 10vw, 10rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 6vw, 6rem);
  background: var(--bg-cream);
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--accent-light);
}

.section-dark .faq-item { border-bottom-color: rgba(255,255,255,0.12); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--text-dark); }
.section-dark .faq-question:hover { color: var(--text-white); }
.section-dark .faq-question { color: #c8c0b6; }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.8;
}

/* --- RSVP Form --- */
.rsvp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.rsvp-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group label .required { color: var(--accent); }
.section-warm .form-group label { color: var(--text-light); }

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-cream);
  border: 1px solid var(--accent-light);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  letter-spacing: 0.04em;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4540' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-section-label {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent-light);
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

/* --- Things to Do: Sub-nav --- */
.guide-subnav {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--accent-light);
  padding: 1rem 0;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}

.guide-subnav.stuck {
  position: sticky;
  top: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.subnav-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.subnav-track::-webkit-scrollbar { display: none; }

.subnav-btn {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 1px solid transparent;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.subnav-btn:hover {
  color: var(--text-dark);
}

.subnav-btn.active {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

/* --- Things to Do: Category headings --- */
.guide-category {
  margin-bottom: 1rem;
}

.guide-category-title {
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  padding-top: 2rem;
}

.guide-category-intro {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

/* --- Things to Do: Cards --- */
.guide-card {
  border-bottom: 1px solid var(--accent-light);
}

.guide-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8rem 0;
  cursor: pointer;
  gap: 1rem;
}

.guide-card-info {
  flex: 1;
}

.guide-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--bg-dark);
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.6rem;
  border-radius: 1px;
}

.guide-card-name {
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.guide-card-tagline {
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--text-light);
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-transform: none;
}

.guide-card-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  padding-top: 0.3rem;
}

.guide-card.open .guide-card-toggle {
  transform: rotate(45deg);
}

.guide-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
}

.guide-card.open .guide-card-body {
  max-height: 600px;
  padding-bottom: 2rem;
}

.guide-card-body p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-body);
}

.guide-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.guide-card-meta span {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.guide-card-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.guide-card-link:hover {
  border-bottom-color: var(--text-dark);
}

.guide-card-address {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 1px;
  transition: all 0.3s ease;
}

.guide-card-address:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* --- Things to Do: Inline Links --- */
.guide-card-body a.inline-link {
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  transition: border-color 0.3s ease;
}

.guide-card-body a.inline-link:hover {
  border-bottom-color: var(--text-dark);
}

/* --- Things to Do: Map --- */
.guide-map-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--accent-light);
}

.guide-map-container iframe {
  width: 100%;
  border-radius: 2px;
}

.guide-map-note {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--text-light);
  margin-top: 1.2rem;
  font-style: italic;
  font-weight: 300;
}

/* --- Registry --- */
.registry-content {
  max-width: 700px;
}

.registry-content h2 {
  margin-bottom: 2rem;
}

.registry-content p {
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

/* --- Registry Split Layout --- */
.registry-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.registry-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 6vw, 6rem);
}

.registry-split-image {
  overflow: hidden;
}

.registry-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* --- Richardson Split Layout --- */
.richardson-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3rem;
  border: 2px solid var(--text-dark);
  overflow: hidden;
}

.richardson-split-image {
  overflow: hidden;
  min-height: 400px;
}

.richardson-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.richardson-split-info {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Footer --- */
.footer {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  text-align: center;
  background: var(--bg-dark);
  border-top: none;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--text-white);
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 2rem;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.footer-detail {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* --- Countdown --- */
.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.countdown-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* --- Page Load Transition --- */
body {
  animation: pageIn 0.5s ease both;
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Card Hover Effects --- */
.hotel-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.guide-card-header {
  transition: padding-left 0.3s ease;
}

.guide-card-header:hover {
  padding-left: 0.5rem;
}

.guide-card-header:hover .guide-card-name {
  color: var(--text-dark);
}

.guide-card-header:hover .guide-card-toggle {
  color: var(--text-dark);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger children slightly */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  /* --- Mobile Nav --- */
  .nav-links { display: none; }
  .nav-toggle { display: block; z-index: 101; }

  /* When menu is open, expand the entire nav to fullscreen */
  .nav:has(.nav-links.open) {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1e1b17;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 100;
  }

  .nav:has(.nav-links.open) .nav-logo {
    position: absolute;
    top: 1.2rem;
    left: var(--gutter);
  }

  .nav:has(.nav-links.open) .nav-toggle {
    position: absolute;
    top: 1.2rem;
    right: var(--gutter);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  .nav-links.open a {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--text-white);
    opacity: 0.85;
  }
  .nav-links.open a:hover,
  .nav-links.open a.active {
    opacity: 1;
  }
  .nav-links.open .rsvp-btn {
    margin-top: 1rem;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--accent-light);
    opacity: 1;
  }

  /* --- Hero --- */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 8rem 2rem 3rem;
    text-align: center;
  }
  .hero-image { height: 60vh; }

  /* --- Schedule: stacked on mobile --- */
  .schedule-event {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2rem 0;
  }

  /* On mobile, reset the right-column-only separator to a full-width one */
  .schedule-event + .schedule-event .event-details {
    border-top: none;
    padding-top: 0;
  }
  .schedule-event + .schedule-event .schedule-day {
    padding-top: 0;
  }
  .schedule-event + .schedule-event .schedule-date {
    padding-top: 0;
  }
  .schedule-event + .schedule-event {
    border-top: 1px solid var(--accent-light);
    padding-top: 2rem;
  }

  .schedule-date {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-bottom: 1.2rem;
  }

  /* --- Saturn Club / Countdown overlay --- */
  .full-image--fixed {
    height: 65vh;
  }

  .full-image-overlay {
    padding: 2rem 1.5rem;
    justify-content: center;
  }

  .full-image-overlay h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
    margin-bottom: 1rem;
  }

  .full-image-overlay p {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    max-width: 90%;
  }

  .full-image-overlay .btn {
    margin-top: 1.2rem;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
  }

  .countdown {
    gap: 1rem;
    margin: 1rem 0;
  }

  .countdown-number {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  /* --- Two column layouts --- */
  .two-col { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: 1fr; }

  /* --- RSVP Form --- */
  .rsvp-header { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* --- Things to Do: mobile --- */
  .subnav-track {
    gap: 0.3rem;
  }
  .subnav-btn {
    font-size: 0.7rem;
    padding: 0.45rem 1rem;
  }
  .guide-card-name {
    font-size: 1rem;
  }

  /* --- FAQs: stack heading above accordions --- */
  .faq-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* --- FAQ Split: stack on mobile --- */
  .faq-split {
    grid-template-columns: 1fr;
  }
  .faq-split-image {
    position: relative;
    height: auto;
    max-height: 50vh;
  }
  .faq-split-content {
    padding: clamp(3rem, 8vw, 5rem) var(--gutter);
  }

  /* --- Registry: stack on mobile --- */
  .registry-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .registry-split-text {
    padding: clamp(3rem, 8vw, 5rem) var(--gutter);
    order: 2;
  }
  .registry-split-image {
    order: 1;
    max-height: 55vh;
  }

  /* --- Richardson: stack on mobile --- */
  .richardson-split {
    grid-template-columns: 1fr;
  }
  .richardson-split-image {
    min-height: 250px;
    max-height: 45vh;
  }

  /* --- Footer: tighter on mobile --- */
  .footer-nav {
    gap: 1rem 1.8rem;
  }
  .footer-nav a {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  h1 { letter-spacing: 0.2em; }
  h2 { letter-spacing: 0.15em; }

  .full-image-overlay h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.8rem);
    letter-spacing: 0.1em;
  }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-light);
  z-index: 10001;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* --- Link Underline Draw-In Animation --- */
.nav-links a:not(.rsvp-btn),
.footer-nav a {
  position: relative;
}

.nav-links a:not(.rsvp-btn)::after,
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-links a:not(.rsvp-btn):hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

/* --- Magnetic Button Subtle Shift --- */
.btn,
.nav-links .rsvp-btn {
  transition: all 0.3s ease, transform 0.15s ease;
}
