:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F0DDB4;
  --gold-wash: #FAF3E4;
  --cognac: #8B4513;
  --cognac-light: #A0522D;
  --saddle: #6B3A2A;
  --copper: #C4744A;
  --cream: #FDF6EC;
  --cream-deep: #F5EBDA;
  --text-dark: #2E2A26;
  --text-mid: #5C554D;
  --text-light: #8A8279;
  --text-faint: #AEA89F;
  --border: rgba(139,69,19,0.10);
  --border-light: rgba(139,69,19,0.06);
  --shadow-sm: 0 1px 3px rgba(46,42,38,0.06);
  --shadow-md: 0 4px 16px rgba(46,42,38,0.08);
  --shadow-lg: 0 8px 32px rgba(46,42,38,0.10);
  --shadow-warm: 0 4px 20px rgba(184,134,11,0.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
}

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

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

.site-wrapper { max-width: 1280px; margin: 0 auto; min-height: 100vh; overflow: hidden; }

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 68px;
  background: rgba(253,246,236,0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.7; }

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-link:hover { color: var(--cognac); }
.nav-link.active { color: var(--cognac); font-weight: 500; border-bottom-color: var(--gold); }

.nav-link.cta {
  background: var(--cognac);
  color: var(--cream);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  border-bottom: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-link.cta:hover { background: var(--saddle); transform: translateY(-1px); }
.nav-link.cta.active { border-bottom: none; }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; animation: pageIn 0.5s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 32px 48px;
}

.hero-image-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--copper);
  box-shadow: 0 4px 24px rgba(139,69,19,0.12);
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  top: 24px;
  left: 48px;
  z-index: 2;
}
.hero-logo {
  height: 140px;
  width: auto;
  border-radius: 8px;
}
.hero-bus-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
.hero-bus-label span {
  background: rgba(253,246,236,0.88);
  backdrop-filter: blur(8px);
  padding: 10px 28px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-light);
  border: 1px dashed rgba(139,69,19,0.18);
  letter-spacing: 0.2px;
}

/* ===== SECTIONS ===== */
.section-wrapper { padding: 72px 48px; }
.section-wrapper.narrow { max-width: 840px; margin: 0 auto; }
.section-wrapper.warm-bg { background: var(--cream-deep); }
.section-wrapper--title-only { text-align: center; }
.section-wrapper--continued { padding-top: 0; }

.section-divider {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--cognac);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-title--xl { font-size: 38px; }

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
}
.section-subtitle.center { margin: 0 auto; text-align: center; }

/* ===== CARDS ===== */
.card-grid { display: grid; gap: 20px; margin-top: 28px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }

.card-img {
  height: 160px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-faint); font-weight: 300;
  letter-spacing: 0.3px;
}

.card-body { padding: 22px; }
.card-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 8px; color: var(--text-dark); }
.card-desc { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--cognac);
  color: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.4px;
}
.btn:hover { background: var(--saddle); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cognac);
  color: var(--cognac);
}
.btn-outline:hover { background: var(--gold-wash); border-color: var(--cognac); }

/* ===== PHOTO PLACEHOLDERS ===== */
.photo-placeholder {
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--gold-wash) 100%);
  border: 1.5px dashed rgba(139,69,19,0.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  font-size: 12px; text-align: center; line-height: 1.5;
  padding: 16px; font-weight: 300; letter-spacing: 0.3px;
}

/* ===== WHAT WE BRING ===== */
.bring-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }

.bring-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bring-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }

.bring-img {
  height: 150px;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--gold-wash) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-faint); font-weight: 300;
  text-align: center; line-height: 1.4; padding: 12px;
}

.bring-body { padding: 20px; }
.bring-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 6px; color: var(--text-dark); }
.bring-desc { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

.bring-full {
  grid-column: 1 / -1;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bring-full:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }

/* ===== HOW IT WORKS ===== */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }

.how-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.25s;
}
.how-card:hover { box-shadow: var(--shadow-warm); }

.how-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin: 16px 0 8px; color: var(--text-dark); }
.how-desc { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.75; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 40px; margin-top: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cognac), var(--gold-light), var(--gold));
  border-radius: 1px;
}

.chapter { position: relative; margin-bottom: 56px; }
.chapter:last-child { margin-bottom: 0; }

.ch-dot {
  position: absolute;
  left: -36px; top: 28px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cognac);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--border);
}
.chapter:last-child .ch-dot { background: var(--gold); }

.ch-year {
  font-size: 11px; font-weight: 600;
  color: var(--cognac);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 4px;
}

.ch-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  margin-bottom: 14px; color: var(--text-dark);
}

.ch-body { display: grid; grid-template-columns: 1fr 240px; gap: 24px; align-items: start; }
.ch-body.reverse { grid-template-columns: 240px 1fr; }

.ch-text {
  font-size: 14px; font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  background: var(--cream-deep);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.ch-text .prompt {
  display: block;
  font-style: normal; font-weight: 600;
  font-size: 11px; color: var(--cognac);
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* ===== QUOTE ===== */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin: 48px 0;
  background: var(--cream-deep);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: 22px; font-style: italic;
  color: var(--text-mid); line-height: 1.6; font-weight: 400;
}

.quote-attr {
  font-family: var(--font-body);
  font-size: 13px; color: var(--text-light);
  margin-top: 12px; font-style: normal; font-weight: 400;
}

/* ===== GALLERY ===== */
.gallery-section { margin-bottom: 48px; }
.gallery-grid { display: grid; gap: 12px; margin-top: 16px; }
.gallery-grid.g3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid.g2 { grid-template-columns: repeat(2, 1fr); }

.gallery-item { border-radius: var(--radius-md); overflow: hidden; transition: transform 0.25s; }
.gallery-item:hover { transform: scale(1.02); }

.gallery-cat { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.gallery-cat-sub { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }

.video-placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--gold-wash) 100%);
  border: 1.5px dashed rgba(139,69,19,0.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); font-size: 12px;
}

.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(107,58,42,0.8);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}
.play-btn:hover { transform: scale(1.08); background: rgba(107,58,42,0.9); }

.play-tri {
  width: 0; height: 0;
  border-left: 16px solid var(--cream);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.empty-state {
  border: 2px dashed rgba(139,69,19,0.14);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  background: var(--cream-deep);
}

.empty-title { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; color: var(--text-mid); font-weight: 500; }
.empty-desc { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.7; max-width: 440px; margin: 0 auto; }

/* ===== FAQ ===== */
.faq-category {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  color: var(--cognac);
  letter-spacing: 3px; text-transform: uppercase;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-pale);
  display: inline-block;
}
.faq-category:first-of-type { margin-top: 28px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }

.faq-q { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.faq-q-text { font-size: 14px; font-weight: 500; color: var(--text-dark); }

.faq-toggle {
  font-size: 20px; color: var(--text-faint);
  transition: transform 0.25s ease, color 0.2s;
  user-select: none; font-weight: 300;
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-a-inner {
  padding: 0 20px 16px;
  font-size: 14px; font-weight: 300;
  color: var(--text-light);
  font-style: italic; line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--cognac); }
.faq-item.open .faq-a { max-height: 120px; }
.faq-item.open { border-color: var(--gold-light); }

/* ===== FORM ===== */
.form-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin-top: 36px; }

.form-group-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  color: var(--cognac);
  letter-spacing: 3px; text-transform: uppercase;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-pale);
  display: inline-block;
}
.form-group-label:first-of-type { margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }

.field-label {
  font-size: 13px; font-weight: 500;
  margin-bottom: 7px;
  display: flex; align-items: center; gap: 4px;
  color: var(--text-dark);
}

.required { color: var(--cognac-light); font-size: 13px; }

.field-input, .field-select {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--font-body); font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.field-input::placeholder { color: var(--text-faint); font-weight: 300; }
.field-input:focus, .field-select:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(184,134,11,0.10); }

.field-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--font-body); font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  min-height: 88px; resize: vertical; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-textarea::placeholder { color: var(--text-faint); font-weight: 300; }
.field-textarea:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(184,134,11,0.10); }

.field-hint { font-size: 12px; font-weight: 300; color: var(--text-faint); margin-top: 5px; }

.sidebar-card {
  background: var(--cream-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-card-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.sidebar-card-text { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

.privacy-note { font-size: 12px; font-weight: 300; color: var(--text-faint); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ===== VENUES ===== */
.venue-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.venue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }

.venue-img {
  height: 130px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-faint); font-weight: 300;
}

.venue-info { padding: 16px 20px; }
.venue-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 4px; color: var(--text-dark); }
.venue-loc { font-size: 12px; font-weight: 300; color: var(--text-mid); }

/* ===== CUSTOM NOTE ===== */
.custom-note {
  text-align: center;
  padding: 24px 32px;
  margin-top: 28px;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.custom-note p {
  font-family: var(--font-accent);
  font-size: 17px; color: var(--text-mid);
  line-height: 1.7; font-style: italic; font-weight: 400;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 72px 48px;
  border-top: 1px solid var(--border-light);
  background: var(--cream-deep);
}
.cta-section .section-title { margin-bottom: 10px; }
.cta-section .section-subtitle { margin: 0 auto 24px; text-align: center; }

/* ===== FOOTER ===== */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 48px;
  border-top: 1px solid var(--border);
  font-size: 12px; font-weight: 300; color: var(--text-light);
  background: var(--cream);
}

.footer-links { display: flex; gap: 20px; }
.footer-link { color: var(--text-light); cursor: pointer; transition: color 0.2s; font-weight: 400; }
.footer-link:hover { color: var(--gold); }

/* ===== THANK YOU ===== */
.thankyou-wrapper { text-align: center; padding: 120px 48px; }
.thankyou-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px; color: var(--cognac);
}

/* ===== LINK STYLES ===== */
.text-link {
  font-size: 14px; color: var(--cognac); font-weight: 500;
  cursor: pointer; transition: opacity 0.2s; letter-spacing: 0.2px;
}
.text-link:hover { opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; flex-direction: column; gap: 12px; height: auto; }
  .nav-links { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .section-wrapper { padding: 48px 24px; }
  .card-grid.cols-3, .bring-grid { grid-template-columns: 1fr; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ch-body, .ch-body.reverse { grid-template-columns: 1fr; }
  .bring-full { grid-template-columns: 1fr; }
  .hero { height: 380px; }
  .gallery-grid.g3 { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 26px; }
}

.proto-badge {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--cognac);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 500;
  z-index: 200; letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}
