:root {
  --ivory: #FCF6E4;
  --linen: #F1E8CE;
  --border: #DCC9A0;
  --espresso: #445A45;
  --brown: #6B4F3A;
  --gold: #CCB57A;
  --gold-dark: #A3915F;
  --green: #7A9E7E;
  --green-dark: #445A45;
  --cream: #FCF6E4;
  --gold-light: #CCB57A;
  --muted-cream: #D6CDAE;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 1000;
  background: var(--espresso);
  color: var(--ivory);
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  background: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--espresso);
}

a { color: var(--brown); }
a:hover { color: var(--gold-dark); }

::placeholder { font-family: 'Jost', sans-serif; }

img { max-width: 100%; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; margin: 0; }

em { font-style: italic; color: var(--brown); }
strong, b { font-weight: 700; }

/* ---------- Header / nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.header-bar {
  height: 3px;
  background: var(--green);
}

.header-inner {
  background: rgba(250, 246, 240, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 34px;
  flex-shrink: 0;
}
.logo-link img { height: 100%; width: auto; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  color: var(--brown);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.site-nav a:hover { color: var(--green-dark); }

.site-nav a.active {
  color: var(--green-dark);
  border-bottom: 1px solid var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.page-body { padding-top: 64px; }

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 8px 24px 24px;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
}

/* ---------- Section helpers ---------- */

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 400;
  margin-bottom: 16px;
}

.page-header {
  padding: 100px 64px 0;
  max-width: 1000px;
  margin: 0 auto;
}
.page-header.narrow { max-width: 900px; }
.page-header.wide { max-width: 1080px; }

.page-title {
  font-size: clamp(36px, 4vw, 54px);
  margin: 0 0 4px;
}

.leaf-divider {
  width: 130px;
  height: auto;
  margin: 0 0 24px;
  opacity: 0.85;
  display: block;
}
.leaf-divider.center { margin-left: auto; margin-right: auto; }

.lede {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--brown);
}

/* ---------- Placeholders (elegant, drop-in ready) ---------- */

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--linen);
  border: 1.5px dashed var(--gold);
  color: var(--brown);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px;
}

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

/* ---------- Home ---------- */

.hero-photo-wrap { overflow: hidden; }
.hero-photo { width: 100%; height: 64vh; display: block; }

.hero-banner {
  background: var(--espresso);
  padding: 48px 64px;
  text-align: center;
}
.hero-logo { width: min(260px, 60vw); height: auto; margin: 0 0 26px; }
.hero-meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

.quote-section {
  background: var(--ivory);
  padding: 100px 64px;
  text-align: center;
}
.quote-text {
  max-width: 640px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.6;
  color: var(--brown);
}

.tiles-section {
  background: var(--linen);
  padding: 90px 64px 100px;
}
.tiles-heading { text-align: center; margin-bottom: 56px; }
.tiles-heading h2 { font-size: clamp(30px, 3.4vw, 44px); }

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tile {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: var(--ivory);
  overflow: hidden;
}
.tile-image { height: 180px; width: 100%; }
.tile-body { padding: 20px; }
.tile-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--espresso); margin-bottom: 6px; }
.tile-desc { font-size: 12px; color: var(--brown); line-height: 1.6; }

@media (max-width: 900px) {
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Our Story ---------- */

.story-section {
  padding: 110px 64px 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.story-title-block { text-align: center; margin-bottom: 64px; }

.story-proposal {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}
.story-proposal-photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--linen);
}
.story-proposal-photo img { width: 100%; height: 100%; object-fit: contain; display: block; background: var(--linen); }

.coming-soon-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.story-proposal-copy p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  color: var(--brown);
  margin: 0;
}

.story-columns {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}
.story-columns h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--espresso);
  margin-bottom: 16px;
}
.story-copy p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--espresso);
  margin: 0 0 18px;
}
.story-copy p:last-child { margin-bottom: 0; }

.story-photo-col {
  position: sticky;
  top: 84px;
}
.story-photo-col img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(107, 79, 58, 0.14);
}

@media (max-width: 1000px) {
  .story-columns { grid-template-columns: 1fr 220px 1fr; gap: 32px; }
}

@media (max-width: 800px) {
  .story-proposal { grid-template-columns: 1fr; }
  .story-columns { grid-template-columns: 1fr; }
  .story-photo-col { position: static; }
  .story-photo-col img { max-width: 320px; margin: 0 auto; }
}

/* ---------- Weekend ---------- */

.weekend-intro { padding-bottom: 40px; }
.weekend-intro p { white-space: pre-line; }

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 64px 100px;
  position: relative;
}
.timeline-rail {
  position: absolute;
  left: 228px;
  top: 22px;
  bottom: 360px;
  width: 1px;
  background: var(--border);
}
.timeline-list { list-style: none; padding: 0; margin: 0; }
.timeline-day {
  margin-bottom: 64px;
  position: relative;
}
.timeline-head {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 48px;
  align-items: center;
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: 164px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.timeline-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--brown);
  text-align: right;
}
.timeline-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; margin: 0; }
.timeline-body { margin-left: 188px; margin-top: 20px; }
.timeline-content-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
}
.timeline-desc { font-size: 14px; line-height: 1.85; color: var(--espresso); margin: 0 0 16px; }
.timeline-details {
  background: var(--linen);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--espresso);
  white-space: pre-line;
}
.timeline-note { font-size: 12px; font-style: italic; color: var(--brown); margin: 10px 0 0; }
.timeline-reception { font-size: 13px; color: var(--brown); margin: 14px 0 0; }
.timeline-doodle { width: 300px; height: 300px; object-fit: contain; display: block; }
.timeline-photo { height: 170px; width: 100%; }

@media (max-width: 760px) {
  .timeline-rail { display: none; }
  .timeline-head { grid-template-columns: 1fr; row-gap: 6px; }
  .timeline-date { text-align: left; }
  .timeline-dot { display: none; }
  .timeline-body { margin-left: 0; }
  .timeline-content-row { grid-template-columns: 1fr; }
}

.closing-quote {
  background: var(--espresso);
  padding: 80px 64px;
  text-align: center;
}
.closing-quote p {
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.7;
  color: var(--gold-light);
}

/* ---------- Travel ---------- */

.travel-section { padding: 100px 64px 40px; max-width: 1000px; margin: 0 auto; position: relative; }
.travel-lede { margin-bottom: 64px; max-width: 560px; }
.travel-hero-doodle {
  position: absolute;
  top: 128px;
  right: 64px;
  width: 180px;
  height: 180px;
  object-fit: contain;
}

@media (max-width: 800px) {
  .travel-lede { max-width: none; }
  .travel-hero-doodle {
    position: static;
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto 32px;
  }
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.section-heading-row img { width: 180px; height: 180px; object-fit: contain; }
.section-heading-row .doodle-inline { width: 120px; height: 70px; }
.section-heading-row .doodle-sm { width: 110px; height: 110px; }
.section-heading-row h2 { font-size: 28px; }

.airport-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 64px; list-style: none; padding: 0; }
.airport-card { background: var(--linen); padding: 22px 26px; }
.airport-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--espresso); margin-bottom: 8px; }
.airport-desc { font-size: 13px; line-height: 1.7; color: var(--brown); }

.note-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 100px; list-style: none; padding: 0; }
.note-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.note-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; }
.note-row p { font-size: 13px; line-height: 1.75; color: var(--espresso); margin: 0; }

/* ---------- Stay ---------- */

.stay-section { padding: 100px 64px 40px; max-width: 1080px; margin: 0 auto; }
.stay-lede { margin-bottom: 64px; max-width: none; }
.stay-sub-eyebrow {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brown); margin-bottom: 16px;
}

.host-hotel-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 400;
  color: var(--espresso);
  margin: 0 0 24px;
}

.host-hotel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 100px;
}
.host-hotel img { width: 100%; height: 360px; object-fit: contain; display: block; }
.host-hotel h2 { font-size: 30px; margin: 0 0 4px; }
.host-hotel-brand {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); margin-bottom: 20px;
}
.host-hotel p { font-size: 13px; line-height: 1.8; color: var(--espresso); white-space: pre-line; margin: 0 0 20px; }
.host-hotel-link {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}

.host-hotel-cta {
  display: inline-block;
  background: var(--espresso);
  color: var(--ivory);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 34px;
  margin-top: 6px;
}
.host-hotel-cta:hover { background: #3d372b; color: var(--ivory); }

.hotels-lede { max-width: none; font-size: 13px; line-height: 1.8; color: var(--brown); margin-bottom: 48px; }

.hotels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 56px; list-style: none; padding: 0; }
.hotels-grid.last { margin-bottom: 100px; }
.hotel-card { background: var(--linen); padding: 26px; }
.hotel-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--espresso); margin-bottom: 10px; }
.hotel-card p { font-size: 13px; line-height: 1.75; color: var(--brown); margin: 0 0 14px; }
.hotel-link { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--brown); }

.subheading { font-size: 22px; margin: 0 0 20px; }
.subheading-note { font-size: 13px; color: var(--brown); margin: 0 0 20px; }

@media (max-width: 800px) {
  .host-hotel { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
}

/* ---------- Explore ---------- */

.explore-intro { padding: 100px 64px 0; max-width: 720px; margin: 0 auto; text-align: center; }
.explore-intro p { font-size: 15px; line-height: 1.9; color: var(--brown); margin: 0 0 18px; }
.explore-intro p:last-child { margin-bottom: 0; }

.chapter-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 56px 64px 0;
  max-width: 900px;
  margin: 0 auto;
}
.chapter-nav a {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  border: 1px solid var(--border);
  padding: 12px 22px;
}
.chapter-nav a:hover { color: var(--green-dark); border-color: var(--green); }

.chapter { padding: 40px 64px 20px; max-width: 1080px; margin: 0 auto; }
.chapter-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.chapter-title { font-size: clamp(32px, 3.6vw, 48px); margin: 0 0 24px; }
.chapter-lede { font-size: 14px; line-height: 1.9; color: var(--brown); max-width: 640px; margin-bottom: 64px; }

.chapter h3.subheading { margin-top: 8px; }

.doodle-sm { width: 110px; height: 110px; object-fit: contain; flex-shrink: 0; }
.doodle-inline { width: 120px; height: 70px; object-fit: contain; flex-shrink: 0; }

.flow-list { display: flex; flex-direction: column; gap: 30px; margin-bottom: 80px; list-style: none; padding: 0; }
.flow-item h4 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: 21px; color: var(--brown); margin: 0 0 8px; }
.flow-item h4::after { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); margin-top: 8px; }
.flow-item p { font-size: 13.5px; line-height: 1.85; color: var(--espresso); margin: 0; max-width: 680px; }
.flow-feature { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.flow-feature .doodle-inline { margin-top: 6px; }
.flow-feature .flow-copy { flex: 1; }

.accent-text { color: var(--gold-dark); font-weight: 400; }
.eat-col-label { font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); margin: 0 0 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); font-family: 'Cormorant Garamond', serif; font-weight: 500; }

.eat-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.eat-list { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; margin: 0; }

.feature-block { margin-bottom: 40px; }
.feature-block-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--espresso); margin-bottom: 10px; }

.feature-row { display: flex; align-items: center; gap: 32px; margin-bottom: 40px; }
.feature-row .feature-copy { flex: 1; }

@media (max-width: 800px) {
  .card-grid { grid-template-columns: 1fr; }
  .eat-columns { grid-template-columns: 1fr; }
  .feature-row { flex-direction: column; }
}

/* ---------- What to Wear ---------- */

.wear-section { padding: 100px 64px 40px; max-width: 900px; margin: 0 auto; }
.wear-dress-code {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px; color: var(--brown); margin-bottom: 32px;
}
.wear-intro { font-size: 14px; line-height: 1.9; color: var(--brown); max-width: 620px; margin-bottom: 48px; }

.swatches { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.swatch { width: 34px; height: 34px; border-radius: 50%; }

.wear-body { font-size: 14px; line-height: 1.9; color: var(--espresso); max-width: 640px; white-space: pre-line; margin-bottom: 32px; }

.wear-callout {
  background: var(--linen); padding: 22px 26px; border-left: 2px solid var(--gold); margin-bottom: 40px; max-width: 640px;
}
.wear-callout p { font-size: 13px; line-height: 1.8; color: var(--espresso); margin: 0; }

.wear-footnote { font-size: 13px; line-height: 1.8; color: var(--brown); max-width: 640px; margin-bottom: 80px; }

.wear-inspo-heading { font-size: 26px; margin: 0 0 10px; }
.wear-inspo-note { font-size: 13px; color: var(--brown); margin: 0 0 32px; }
.wear-inspo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 100px; }
.wear-inspo-grid .placeholder { height: 220px; }

@media (max-width: 700px) {
  .wear-inspo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Registry ---------- */

.registry-section { padding: 110px 64px 140px; max-width: 720px; margin: 0 auto; text-align: center; }
.registry-body {
  font-size: 14px; line-height: 2; color: var(--espresso); white-space: pre-line; text-align: left; margin-bottom: 44px;
}
.registry-callout { background: var(--linen); padding: 32px; }
.registry-callout-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brown); }

/* ---------- FAQ ---------- */

.faq-section { padding: 100px 64px 140px; max-width: 820px; margin: 0 auto; }
.faq-sub { font-size: 14px; color: var(--brown); margin-bottom: 56px; }

.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left;
  font-family: inherit;
}
.faq-question-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--espresso); }
.faq-icon { font-size: 20px; color: var(--brown); flex-shrink: 0; }
.faq-answer { padding: 0 0 28px; max-width: 680px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 13.5px; line-height: 1.85; color: var(--brown); white-space: pre-line; margin: 0 0 12px; }
.faq-answer a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }

/* ---------- RSVP ---------- */

.rsvp-section { padding: 100px 64px 140px; max-width: 640px; margin: 0 auto; }
.rsvp-banner { background: var(--linen); padding: 18px 22px; font-size: 13px; line-height: 1.7; color: var(--brown); margin-bottom: 40px; }

.rsvp-form { display: flex; flex-direction: column; gap: 22px; }
.rsvp-fields-wrap { position: relative; }
.rsvp-fieldset {
  display: flex; flex-direction: column; gap: 22px;
  border: none; margin: 0; padding: 0; min-width: 0;
}
.rsvp-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(252, 246, 228, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(107, 79, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.rsvp-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--espresso);
  max-width: 300px;
  margin: 0;
}
.rsvp-form label { display: flex; flex-direction: column; gap: 8px; }
.rsvp-form .field-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); }
.rsvp-form input[type="text"],
.rsvp-form select {
  border: none; border-bottom: 1px solid var(--border); background: transparent; padding: 10px 2px;
  font-size: 15px; font-family: 'Jost', sans-serif; color: var(--espresso);
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  border-radius: 0;
}
.rsvp-form textarea {
  border: 1px solid var(--border); background: transparent; padding: 12px;
  font-size: 14px; font-family: 'Jost', sans-serif; color: var(--espresso); resize: vertical;
}
.rsvp-form input[type="text"]:focus-visible,
.rsvp-form select:focus-visible,
.rsvp-form textarea:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}
.rsvp-submit {
  margin-top: 12px; background: var(--espresso); color: var(--ivory); border: none; padding: 16px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
}
.rsvp-submit:hover { background: #3d372b; }
.rsvp-submit:disabled {
  background: var(--border); color: var(--brown); cursor: not-allowed;
}
.rsvp-submit:disabled:hover { background: var(--border); }

/* ---------- Gallery ---------- */

.gallery-section { padding: 100px 64px 140px; max-width: 1200px; margin: 0 auto; }
.gallery-title-block { text-align: center; margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  background: var(--linen);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(68, 90, 69, 0.94);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.gallery-lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-cream);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { font-size: 26px; padding: 8px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--espresso);
  padding: 56px 64px;
  text-align: center;
}
.footer-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 14px;
}
.footer-names .amp { font-style: italic; color: var(--gold); }
.footer-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-cream);
}

@media (max-width: 640px) {
  .header-inner { padding: 0 20px; }
  .page-header, .story-section, .travel-section, .stay-section, .wear-section, .faq-section, .rsvp-section, .timeline, .registry-section, .explore-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .tiles-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-banner, .quote-section, .tiles-section, .closing-quote { padding-left: 24px; padding-right: 24px; }
}
