/* ════════════════════════════════════════════════════════
   BAILEY & COLLEEN — 09.21.26
   Shared stylesheet for all pages.
   ════════════════════════════════════════════════════════ */

:root {
  --charcoal: #2A2A2A;
  --dark: #1A1A1A;
  --text: #3A3A3A;
  --muted: #8A8578;
  --light: #B8B0A4;
  --line: #E0DCD6;
  --bg: #FAFAF8;
  --sage: #8BAA8B;
  --sage-light: #B5CDB5;
  --nav-h: 58px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.gate-locked { overflow: hidden; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════ NAV ═══════ */
.nav {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav-inner {
  width: 100%; max-width: 900px;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--charcoal); text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s ease;
}
.nav-links {
  display: flex; align-items: center; gap: 26px;
  list-style: none;
}
.nav-links a {
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 300; color: var(--muted); text-decoration: none;
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--charcoal); border-bottom-color: var(--sage); }
.nav-links a[aria-current="page"] { color: var(--charcoal); border-bottom-color: var(--sage); }

.nav-toggle {
  display: none;
  background: transparent; border: none; cursor: pointer;
  padding: 8px; margin-right: -8px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1px;
  background: var(--charcoal); margin: 4px 0;
  transition: background 0.4s ease, transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Transparent nav over the homepage hero */
body.home .nav {
  position: fixed; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
body.home .nav .nav-mark { color: rgba(255, 255, 255, 0.92); }
body.home .nav .nav-links a { color: rgba(255, 255, 255, 0.7); }
body.home .nav .nav-links a:hover,
body.home .nav .nav-links a[aria-current="page"] { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
body.home .nav .nav-toggle span { background: rgba(255, 255, 255, 0.92); }

body.home .nav.scrolled {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
body.home .nav.scrolled .nav-mark { color: var(--charcoal); }
body.home .nav.scrolled .nav-links a { color: var(--muted); }
body.home .nav.scrolled .nav-links a:hover,
body.home .nav.scrolled .nav-links a[aria-current="page"] { color: var(--charcoal); border-bottom-color: var(--sage); }
body.home .nav.scrolled .nav-toggle span { background: var(--charcoal); }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li { width: 100%; border-top: 1px solid var(--line); }
  .nav-links li:first-child { border-top: none; }
  .nav-links a {
    display: block; padding: 17px 28px;
    border-bottom: none; color: var(--muted) !important;
    letter-spacing: 3.5px;
  }
  .nav-links a[aria-current="page"] { color: var(--charcoal) !important; }
  body.home .nav .nav-links a { color: var(--muted) !important; }
}

/* Page top spacing for non-home pages (sticky nav already occupies flow) */
.page-head {
  max-width: 620px; margin: 0 auto;
  padding: 72px 28px 0; text-align: center;
}
.page-head .s-label { margin-bottom: 10px; }
.page-head .page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 44px); font-weight: 300;
  color: var(--charcoal); letter-spacing: 0.02em; line-height: 1.15;
}
.page-head .page-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; color: var(--light);
  line-height: 1.7; margin-top: 14px;
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  /* Fallback colour keeps the white hero text readable if the photo is slow or missing */
  background-color: #4A4A46;
  /* 📷 HERO PHOTO — swap this URL for one of your own images
     (e.g. url('hero.jpg') once the file is in the Netlify folder) */
  background-image:
    linear-gradient(to bottom,
      rgba(26,26,26,0.15) 0%,
      rgba(26,26,26,0.05) 40%,
      rgba(26,26,26,0.4) 100%),
    url('https://images.unsplash.com/photo-1521747116042-5a810fda9664?w=1600&q=80');
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}
.hero-content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 28px 80px; max-width: 700px; margin: 0 auto; text-align: center;
}
.hero-date {
  font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
  font-weight: 300; color: rgba(255,255,255,0.7); margin-bottom: 16px;
  opacity: 0; animation: fade-up 0.8s ease-out 0.3s forwards;
}
.hero-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 10vw, 80px); font-weight: 300;
  letter-spacing: 0.04em; color: white; line-height: 1.1; margin-bottom: 20px;
  opacity: 0; animation: fade-up 0.8s ease-out 0.5s forwards;
}
.hero-location {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 300; color: rgba(255,255,255,0.6);
  opacity: 0; animation: fade-up 0.8s ease-out 0.7s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════ DETAILS ═══════ */
.details {
  max-width: 520px; margin: 0 auto; padding: 80px 28px 60px; text-align: center;
}
.d-when {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--charcoal); margin-bottom: 6px;
}
.d-time {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 300; color: var(--muted); margin-bottom: 32px;
}
.d-divider { width: 40px; height: 1px; background: var(--sage); margin: 0 auto 32px; }
.d-where-label {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--light); margin-bottom: 8px;
}
.d-where {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 6px;
}
.d-address {
  font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 4px;
}
.d-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic; color: var(--light);
}
.facts {
  display: flex; justify-content: center; gap: 40px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.fact { text-align: center; }
.fact-label {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--light); margin-bottom: 4px;
}
.fact-value {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 400; color: var(--charcoal);
}

/* ═══════ SHARED SECTION SHELLS ═══════ */
.section-narrow {
  max-width: 440px; margin: 0 auto; padding: 60px 28px; text-align: center;
}
.section-mid {
  max-width: 520px; margin: 0 auto; padding: 72px 28px;
}
.rule-top { border-top: 1px solid var(--line); }

.s-label {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--sage); margin-bottom: 8px; text-align: center;
}
.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--charcoal);
  text-align: center; margin-bottom: 12px;
}
.s-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-style: italic; color: var(--light);
  text-align: center; line-height: 1.6; margin-bottom: 40px;
}

/* ═══════ HOME PAGE LINK CARDS ═══════ */
.home-links {
  max-width: 620px; margin: 0 auto; padding: 0 28px 80px;
}
.home-links-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.home-link {
  background: var(--bg);
  padding: 30px 24px; text-align: center; text-decoration: none;
  display: flex; flex-direction: column; justify-content: center;
  transition: background 0.3s ease;
}
.home-link:hover { background: #fff; }
.home-link .hl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--charcoal); margin-bottom: 6px;
}
.home-link .hl-desc {
  font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 300; color: var(--light);
}
@media (max-width: 520px) {
  .home-links-grid { grid-template-columns: 1fr; }
}

/* ═══════ OUR STORY — TIMELINE ═══════ */
.tl {
  max-width: 900px; margin: 0 auto;
  padding: 60px 28px 90px; position: relative;
}
.tl-rail {
  position: absolute; left: 50%; top: 60px; bottom: 90px;
  width: 1px; background: var(--line); transform: translateX(-0.5px);
}
.tl-entry {
  position: relative;
  width: calc(50% - 44px); margin-bottom: 58px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tl-entry.in { opacity: 1; transform: none; }
.tl-entry:nth-child(odd)  { margin-left: 0; text-align: right; }
.tl-entry:nth-child(even) { margin-left: calc(50% + 44px); text-align: left; }
.tl-entry::before {
  content: ''; position: absolute; top: 4px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--sage);
}
.tl-entry:nth-child(odd)::before  { right: -48px; }
.tl-entry:nth-child(even)::before { left: -48px; }
.tl-entry.major::before { background: var(--sage); }

.tl-date {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sage); margin-bottom: 8px;
}
.tl-date .aside {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic; text-transform: none;
  letter-spacing: 2px; color: var(--light);
}
.tl-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; line-height: 1.75; color: var(--text);
}
.tl-photo { margin-top: 16px; }
.tl-photo figure {
  margin: 0; position: relative; overflow: hidden;
}
.tl-photo img {
  width: 100%; display: block;
  object-fit: cover; object-position: center;
  background: var(--line); transition: transform 0.6s ease;
  aspect-ratio: 4 / 3;                 /* landscape default */
}
/* Portrait shots keep their shape instead of being cropped to landscape */
.tl-photo figure.portrait img { aspect-ratio: 3 / 4; }
/* One very tall shot — cropped gently, biased upward to keep faces */
.tl-photo figure.tall img { aspect-ratio: 2 / 3; object-position: center 20%; }
.tl-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 38px 18px 16px;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.5) 55%, rgba(26,26,26,0) 100%);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic; line-height: 1.5;
  text-align: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .tl-photo figure:hover figcaption,
  .tl-photo figure:focus-within figcaption { opacity: 1; transform: translateY(0); }
  .tl-photo figure:hover img { transform: scale(1.03); }
}
@media (hover: none) {
  .tl-photo figcaption { opacity: 1; transform: none; }
}
.tl-ph {
  width: 100%; aspect-ratio: 4 / 3;
  border: 1px dashed var(--light);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--light); line-height: 2;
}

@media (prefers-reduced-motion: reduce) {
  .tl-entry { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 820px) {
  .tl-rail { left: 5px; }
  .tl-entry,
  .tl-entry:nth-child(odd),
  .tl-entry:nth-child(even) {
    width: auto; margin-left: 34px; text-align: left;
  }
  .tl-entry:nth-child(odd)::before,
  .tl-entry:nth-child(even)::before { left: -34px; right: auto; }
}

/* ═══════ RSVP SECTION ═══════ */
.rsvp {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rsvp-inner {
  max-width: 440px; margin: 0 auto; padding: 72px 28px;
}

/* Form fields */
.field { margin-bottom: 28px; }
.field label {
  display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px; font-weight: 400;
}
.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%; padding: 12px 0;
  border: none; border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--charcoal);
  outline: none; transition: border-color 0.3s;
  border-radius: 0; -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--sage);
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--light); font-style: italic;
}
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B8B0A4' fill='none' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
}
.field textarea {
  resize: none; height: 60px; font-size: 16px; line-height: 1.6;
}

/* Toggle buttons */
.toggle-row { display: flex; }
.toggle-opt { flex: 1; position: relative; }
.toggle-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.toggle-opt .tl {
  display: block; text-align: center; padding: 14px 8px;
  border: 1px solid var(--line);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 300; color: var(--muted); cursor: pointer; transition: all 0.25s;
}
.toggle-opt:first-child .tl { border-right: none; }
.toggle-opt input:checked + .tl {
  background: var(--charcoal); border-color: var(--charcoal);
  color: white; font-weight: 400;
}
.toggle-opt input:focus-visible + .tl { outline: 2px solid var(--sage); outline-offset: 2px; }

.btn {
  display: block; width: 100%; padding: 16px;
  border: 1px solid var(--charcoal); background: transparent;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--charcoal); cursor: pointer; transition: all 0.3s; margin-top: 8px;
}
.btn:hover { background: var(--charcoal); color: white; }
.btn:disabled { opacity: 0.5; cursor: default; }

/* ═══════ NAME LOOKUP STEP ═══════ */
.lookup-step { text-align: center; }
.lookup-input-wrap {
  display: flex; gap: 0; max-width: 360px; margin: 0 auto;
}
.lookup-input-wrap input {
  flex: 1; padding: 14px 16px;
  border: 1px solid var(--line); border-right: none;
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  color: var(--charcoal); outline: none; background: transparent;
  border-radius: 0; -webkit-appearance: none;
}
.lookup-input-wrap input:focus { border-color: var(--sage); }
.lookup-input-wrap input::placeholder { color: var(--light); font-style: italic; }
.lookup-input-wrap button {
  padding: 14px 24px;
  border: 1px solid var(--charcoal); background: var(--charcoal);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: white; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.lookup-input-wrap button:hover { background: var(--dark); }

/* Duplicate picker */
.duplicate-picker {
  display: none; margin-top: 24px; text-align: center;
}
.duplicate-picker p {
  font-size: 13px; color: var(--muted); margin-bottom: 16px; font-weight: 300;
}
.dup-option {
  display: inline-block; padding: 12px 24px; margin: 4px;
  border: 1px solid var(--line); background: transparent;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  color: var(--charcoal); cursor: pointer; transition: all 0.2s;
}
.dup-option:hover { border-color: var(--sage); color: var(--sage); }

/* Welcome greeting */
.welcome-msg {
  display: none; text-align: center; margin-bottom: 36px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.welcome-msg .greeting {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; color: var(--charcoal); margin-bottom: 4px;
}
.welcome-msg .greeting-sub {
  font-size: 11px; letter-spacing: 2px; color: var(--light); font-weight: 300;
}

/* RSVP form — hidden until lookup */
.rsvp-form { display: none; }

/* ═══════ RSVP NOTICE (replaces the old form) ═══════ */
.rsvp-note { text-align: center; }
.rsvp-note .rn-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--text);
  line-height: 1.7; margin-bottom: 32px;
}
.rsvp-note .rn-contact {
  display: inline-block;
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  font-weight: 400; color: var(--charcoal); text-decoration: none;
  border: 1px solid var(--line); padding: 15px 32px;
  transition: border-color 0.3s, color 0.3s;
}
.rsvp-note .rn-contact:hover { border-color: var(--sage); color: var(--sage); }
.rsvp-note .rn-divider {
  width: 40px; height: 1px; background: var(--sage); margin: 36px auto;
}
.rsvp-note .rn-fine {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-style: italic; color: var(--light);
  line-height: 1.7;
}

/* Dinner block */
.dinner-block {
  display: none;
  border-left: 2px solid var(--sage-light);
  padding: 24px 0 24px 24px;
  margin: 4px 0 28px;
}
.dinner-block.visible { display: block; }
.dinner-block .db-title {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage); margin-bottom: 4px;
}
.dinner-block .db-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic; color: var(--muted);
  margin-bottom: 20px; line-height: 1.6;
}

/* Success */
.rsvp-success {
  display: none; text-align: center; padding: 40px 0 20px;
}
.rsvp-success .ok {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--charcoal); margin-bottom: 12px;
}
.rsvp-success p {
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8;
}

/* ═══════ REGISTRY ═══════ */
.registry-intro {
  max-width: 520px; margin: 0 auto; padding: 8px 28px 0; text-align: center;
}
.registry-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; color: var(--light);
  line-height: 1.75;
}
.fund-list {
  max-width: 560px; margin: 0 auto; padding: 48px 28px 0;
}
.fund {
  border: 1px solid var(--line); background: #fff;
  padding: 30px 28px; margin-bottom: 18px;
}
.fund-head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 10px; flex-wrap: wrap;
}
.fund-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px; font-weight: 400; color: var(--charcoal);
}
.fund-tag {
  font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sage); border: 1px solid var(--sage-light);
  padding: 3px 8px;
}
.fund-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 20px;
}
.fund-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.registry-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 4px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
  color: var(--charcoal); background: transparent;
  border: 1px solid var(--line); cursor: pointer;
  text-decoration: none; transition: all 0.3s ease;
}
.registry-btn:hover { border-color: var(--sage); color: var(--sage); }
.registry-note {
  max-width: 520px; margin: 0 auto; padding: 32px 28px 80px;
  text-align: center;
}

.registry-note p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic; color: var(--light); line-height: 1.7;
}

/* ═══════ ITINERARY ═══════ */
.itinerary-days {
  max-width: 400px; margin: 0 auto; text-align: left;
}
.itin-day { margin-bottom: 32px; }
.itin-day:last-child { margin-bottom: 0; }
.itin-day-label {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sage); margin-bottom: 4px;
}
.itin-day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--charcoal); margin-bottom: 16px;
}
.itin-item {
  display: flex; gap: 16px; margin-bottom: 12px; align-items: baseline;
}
.itin-time {
  font-size: 11px; letter-spacing: 1px;
  font-weight: 400; color: var(--charcoal);
  white-space: nowrap; min-width: 90px; text-align: right;
}
.itin-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; color: var(--muted); line-height: 1.5;
}
.itin-desc a, .itin-desc .sub-link {
  color: var(--sage); text-decoration: none;
  border-bottom: 1px solid var(--sage-light);
}
.itin-desc .fine {
  font-size: 15px; color: var(--light);
}
.itin-tbd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; color: var(--light); line-height: 1.5;
}
.itin-divider {
  width: 30px; height: 1px; background: var(--line); margin: 28px 0;
}

/* ═══════ FAQ ═══════ */
.faq {
  max-width: 520px; margin: 0 auto; padding: 72px 28px;
  border-top: 1px solid var(--line);
}
.faq-item { margin-bottom: 32px; }
.faq-q {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 400; color: var(--charcoal); margin-bottom: 8px;
}
.faq-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; color: var(--muted);
  line-height: 1.7;
}
.faq-a a {
  color: var(--sage); text-decoration: none;
  border-bottom: 1px solid var(--sage-light);
}
.faq-a a:hover { color: var(--charcoal); }
.faq-list {
  list-style: none; margin: 14px 0 14px;
}
.faq-list li {
  position: relative; padding-left: 18px; margin-bottom: 10px;
  line-height: 1.65;
}
.faq-list li:last-child { margin-bottom: 0; }
.faq-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.68em;
  width: 6px; height: 1px; background: var(--sage);
}
.faq-a strong {
  font-weight: 500; color: var(--charcoal);
}
.faq-divider {
  width: 30px; height: 1px; background: var(--line); margin: 32px 0;
}

/* ═══════ RECOMMENDATIONS ═══════ */
.recs {
  max-width: 520px; margin: 0 auto; padding: 40px 28px 72px;
}
.recs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px;
  margin-top: 8px;
}
.rec-icon { font-size: 20px; margin-bottom: 6px; }
.rec-name {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 400; color: var(--charcoal); margin-bottom: 4px;
}
.rec-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 400; color: var(--muted); line-height: 1.6;
}
.rec-desc a {
  color: var(--sage); text-decoration: none;
  border-bottom: 1px solid var(--sage-light);
}
.rec-desc a:hover { color: var(--charcoal); }
@media (max-width: 480px) {
  .recs-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════ FOOTER ═══════ */
.footer-photos { border-top: 1px solid var(--line); }
.footer-photos img { width: 100%; display: block; }
.footer-photo-divider { height: 1px; background: var(--line); }
.footer-text-bar {
  text-align: center;
  padding: 24px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 300; color: var(--light);
}
.site-footer {
  border-top: 1px solid var(--line);
  text-align: center; padding: 32px 28px;
}
.site-footer .sf-links {
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.site-footer .sf-links a {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 300; color: var(--muted); text-decoration: none;
}
.site-footer .sf-links a:hover { color: var(--sage); }
.site-footer .sf-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--light); letter-spacing: 0.05em;
}

/* ═══════ PASSWORD GATE ═══════ */
.pw-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.pw-gate.hidden { display: none; }
html.unlocked .pw-gate { display: none; }
.pw-inner {
  text-align: center; padding: 28px; max-width: 360px; width: 100%;
}
.pw-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--charcoal);
  margin-bottom: 6px; letter-spacing: 0.03em;
}
.pw-date {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 300; color: var(--light); margin-bottom: 40px;
}
.pw-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.pw-input-wrap { display: flex; gap: 0; }
.pw-input-wrap input {
  flex: 1; padding: 14px 16px;
  border: 1px solid var(--line); border-right: none;
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  color: var(--charcoal); outline: none; background: transparent;
  border-radius: 0; -webkit-appearance: none;
}
.pw-input-wrap input:focus { border-color: var(--sage); }
.pw-input-wrap input::placeholder { color: var(--light); font-style: italic; }
.pw-input-wrap button {
  padding: 14px 24px;
  border: 1px solid var(--charcoal); background: var(--charcoal);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: white; cursor: pointer; transition: all 0.2s;
}
.pw-input-wrap button:hover { background: var(--dark); }
.pw-error {
  font-size: 12px; color: #C45; margin-top: 12px;
  font-weight: 300; min-height: 20px;
}
.pw-hint {
  font-size: 11px; color: var(--light); margin-top: 24px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 480px) {
  .hero-content { padding-bottom: 60px; }
  .facts { gap: 24px; }
  .lookup-input-wrap { flex-direction: column; }
  .lookup-input-wrap input { border-right: 1px solid var(--line); border-bottom: none; }
  .lookup-input-wrap button { border-top: none; }
  .pw-input-wrap { flex-direction: column; }
  .pw-input-wrap input { border-right: 1px solid var(--line); border-bottom: none; }
  .pw-input-wrap button { border-top: none; }
  .nav-inner { padding: 0 20px; }
}

/* ═══════ RSVP STATUS CHECK ═══════ */
.rsvp-check {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.check-inner {
  max-width: 440px; margin: 0 auto; padding: 64px 28px 56px;
  text-align: center;
}
.check-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; color: var(--charcoal);
  margin-bottom: 10px;
}
.check-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-style: italic; color: var(--light);
  line-height: 1.6; margin-bottom: 28px;
}
.check-result { display: none; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.check-result .cr-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; margin-bottom: 8px;
}
.check-result .cr-names { margin-bottom: 12px; }
.check-result .cr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; line-height: 1.3;
  color: var(--sage);
}
.check-result.ok .cr-sub { color: var(--text); font-size: 14px; }
.check-result .cr-sub {
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8;
}
.check-result .cr-sub a {
  color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--sage-light);
}
.check-result.ok .cr-head { color: var(--sage); }
.check-result.miss .cr-head { color: var(--charcoal); }
