/* ══════════════════════════════════════════════════════════
   Aneta & Lukáš — svatební web
   Design tokens exported from svatba-web.pen
   Breakpoints: desktop (base) · tablet ≤900px · mobile ≤560px
   ══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* colors */
  --bg-cream: #F8F5EC;
  --bg-dark: #26261C;
  --bg-program: #0F0D06;
  --bg-forest: #131E1A;
  --text-dark: #191918;
  --text-body: #4C4242;
  --text-cream: #F8F5EC;
  --text-cream-soft: #D8D5C6;
  --golden-heritage: #B5B28B;
  --golden-hour: #DFE3AF;
  --wood-brown: #4C4242;
  --royal-black: #191918;
  --rule-light: rgba(248, 245, 236, .18);
  /* dress-code palette */
  --champagne-cream: #E2D6C7;
  --mocha-mousse: #988275;
  --dark-chocolate: #4A2A24;
  --sage-garden: #B9B997;
  --olive-grove: #5A632F;
  --forest-green: #313B26;
  /* fonts */
  --font-display: 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-cream);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

.script-accent { font-family: var(--font-script); font-weight: 400; font-size: 42px; line-height: 1.2; }
.script-accent.golden { color: var(--golden-heritage); }
.script-accent.dark { color: var(--wood-brown); }
.script-accent.light { color: var(--golden-hour); font-size: 44px; }
.script-accent.light.small { font-size: 38px; }

/* ── ornament divider ── */
.ornament-divider { display: flex; align-items: center; gap: 14px; }
.ornament-divider .line { width: 90px; height: 1px; background: var(--golden-heritage); }
.ornament-divider .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--golden-hour); }
.ornament-divider.small .line { width: 60px; }
.ornament-divider.small .dot { background: var(--golden-heritage); }
.ornament-divider .diamond { width: 9px; height: 9px; background: var(--golden-heritage); transform: rotate(45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 900px;
  background: url('../assets/hero.webp') center / cover no-repeat;
  display: flex;
  flex-direction: column;
}
.hero-overlay {
  flex: 1;
  background: rgba(28, 21, 4, .5);
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 64px;
}
.nav-monogram { font-family: var(--font-display); font-size: 30px; letter-spacing: 2px; color: var(--text-cream); }
.nav-menu { display: flex; gap: 44px; align-items: center; }
.nav-menu a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--text-cream);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color .2s;
}
.nav-menu a:not(.menu-rsvp):hover { border-bottom-color: var(--text-cream); }
.nav-rsvp-btn {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-cream);
  border: 1px solid var(--text-cream);
  border-radius: 999px;
  padding: 14px 40px;
  transition: background-color .25s, color .25s;
}
.nav-rsvp-btn:hover { background: var(--text-cream); color: var(--text-dark); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; }
.nav-burger span { display: block; width: 26px; height: 1.5px; background: var(--text-cream); transition: transform .25s, opacity .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.menu-extra { display: none; }

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding-bottom: 60px;
  text-align: center;
}
.hero-date { font-family: var(--font-display); font-size: 42px; color: var(--text-cream); }
.hero-names {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--text-cream);
  line-height: 1.1;
}
.hero-subtitle { font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: 5px; color: var(--text-cream-soft); }

/* ═══════════ WELCOME ═══════════ */
.welcome { padding: 130px 0 140px; display: flex; flex-direction: column; align-items: center; gap: 90px; }
.welcome-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 3px;
  line-height: 1.25;
  color: var(--text-dark);
  text-align: center;
  max-width: 880px;
}
.welcome-row { display: flex; gap: 110px; padding: 0 150px; width: 100%; max-width: 1440px; }
.welcome-photo { width: 560px; height: 700px; flex: none; }
.welcome-text-col { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 64px; padding-top: 40px; }
.welcome-perex { max-width: 420px; text-align: center; }
.welcome-photo-small { width: 330px; height: 411px; }

/* ═══════════ VENUE ═══════════ */
.venue {
  padding: 120px 150px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.venue-text-col { width: 480px; display: flex; flex-direction: column; gap: 32px; }
.venue-script { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 40px; color: var(--wood-brown); }
.venue-address {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--text-dark);
  padding-top: 14px;
  text-align: left;
}
.venue-address a:hover { text-decoration: underline; text-underline-offset: 4px; }
.venue-photo { width: 582px; height: 436px; flex: none; }

/* ═══════════ PROGRAM ═══════════ */
.program {
  background: var(--bg-program);
  padding: 130px 80px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 76px;
}
.program-header { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.program-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 58px;
  letter-spacing: 16px;
  color: var(--text-cream);
}
.program-date { font-size: 20px; font-weight: 300; letter-spacing: 2px; color: var(--text-cream-soft); text-align: center; }
.timeline { display: flex; flex-direction: column; align-items: center; }
.timeline-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.timeline-item .time { font-size: 13px; letter-spacing: 5px; color: var(--golden-hour); }
.timeline-item .title { font-family: var(--font-display); font-size: 26px; letter-spacing: 7px; color: var(--text-cream); text-align: center; }
.timeline-item + .timeline-item::before {
  content: '';
  width: 1px;
  height: 44px;
  margin: 20px 0;
  background: rgba(181, 178, 139, .5);
}

/* ═══════════ MENU ═══════════ */
.menu { background: var(--champagne-cream); padding: 120px 100px; display: flex; flex-direction: column; align-items: center; gap: 72px; }
.menu-header { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.menu-heading { font-family: var(--font-display); font-weight: 400; font-size: 52px; letter-spacing: 14px; color: var(--text-dark); }
.menu-venue-line { font-size: 12px; letter-spacing: 3px; text-align: center; }
.menu-body { display: flex; align-items: center; gap: 96px; }
.photo-mat { width: 464px; height: 664px; flex: none; border: 1px solid var(--golden-heritage); padding: 14px; }
.courses { width: 520px; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.course { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.course h4 { font-family: var(--font-script); font-weight: 400; font-size: 32px; color: var(--wood-brown); }
.course p { font-size: 14px; line-height: 1.6; }
.course .course-note { font-size: 12px; font-style: italic; }
.course-separator { width: 36px; height: 1px; background: var(--golden-heritage); }
.drinks-note { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.drinks-note .script-accent { font-size: 38px; }
.drinks-note p:last-child { font-size: 14px; line-height: 1.6; }

/* ═══════════ GIFTS ═══════════ */
.gifts { padding: 120px; display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; }
.gifts-heading { font-family: var(--font-display); font-weight: 500; font-size: 40px; letter-spacing: 10px; color: var(--text-dark); padding-top: 18px; }
.gifts-divider { padding: 36px 0 40px; }
.gifts-divider .line { width: 64px; }
.gifts-body { max-width: 602px; display: flex; flex-direction: column; gap: 20px; }
.gifts-body p { line-height: 1.75; }
.gifts-closing { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 44px; }
.gifts-closing .script-accent { font-size: 34px; }
.gifts-names { font-size: 12px; letter-spacing: 3px; color: var(--golden-heritage); }

/* ═══════════ TRAVEL & STAY ═══════════ */
.travel {
  background: var(--bg-forest);
  color: var(--text-cream-soft);
  padding: 130px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}
.travel-header { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.travel-heading { font-family: var(--font-display); font-weight: 400; font-size: 58px; letter-spacing: 10px; color: var(--text-cream); }
.travel-subline { font-size: 13px; letter-spacing: 4px; }
.travel-split { display: flex; align-items: center; gap: 90px; width: 100%; max-width: 1120px; }
.travel-photo { width: 500px; height: 580px; flex: none; overflow: hidden; }
.directions { flex: 1; display: flex; flex-direction: column; gap: 48px; }
.direction { display: flex; flex-direction: column; gap: 14px; }
.direction-title { font-family: var(--font-display); font-weight: 400; font-size: 20px; letter-spacing: 6px; color: var(--text-cream); }
.travel-rule { border: 0; height: 1px; background: var(--rule-light); }
.btn-outline {
  align-self: flex-start;
  border: 1px solid var(--text-cream-soft);
  border-radius: 999px;
  padding: 18px 46px;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--text-cream);
  transition: background-color .25s, color .25s, border-color .25s;
}
.btn-outline:hover { background: var(--text-cream); border-color: var(--text-cream); color: var(--bg-forest); }
.stay { width: 100%; max-width: 1120px; display: flex; flex-direction: column; }
.stay-header { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.stay-header .script-accent { font-size: 40px; }
.stay-title { font-family: var(--font-display); font-weight: 400; font-size: 30px; letter-spacing: 10px; color: var(--text-cream); }
.stay-note { max-width: 913px; }
.hotel-list { margin-top: 54px; border-top: 1px solid var(--rule-light); }
.hotel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--rule-light);
  transition: background-color .25s;
}
.hotel-chevron { flex: none; color: var(--golden-heritage); opacity: .7; transition: transform .25s, opacity .25s; }
.hotel-row:hover { background: rgba(248, 245, 236, .04); }
.hotel-row:hover .hotel-chevron { transform: translateX(5px); opacity: 1; }
.hotel-name-group { width: 420px; flex: none; }
.hotel-name { font-family: var(--font-display); font-size: 24px; color: var(--text-cream); }
.hotel-location { font-size: 11px; letter-spacing: 3px; color: var(--golden-heritage); margin-top: 6px; }
.hotel-desc { flex: 1; text-align: right; font-size: 15px; line-height: 1.6; }

/* ═══════════ DRESS CODE ═══════════ */
.dress { padding: 130px 120px; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.dress-header { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.dress-heading { font-family: var(--font-display); font-weight: 400; font-size: 46px; letter-spacing: 12px; color: var(--text-dark); }
.dress-note { max-width: 600px; text-align: center; font-size: 14px; line-height: 1.8; }
.palette { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.swatch .circle { width: 76px; height: 76px; border-radius: 50%; border: 1px solid rgba(25, 25, 24, .13); }
.swatch-label { font-size: 11px; letter-spacing: 2px; }

/* ═══════════ RSVP ═══════════ */
.rsvp { background: url('../assets/rsvp-bg.webp') center / cover no-repeat; }
.rsvp-overlay {
  background: rgba(38, 38, 28, .6);
  padding: 110px 24px;
  display: flex;
  justify-content: center;
}
.rsvp-card {
  width: 680px;
  background: var(--bg-cream);
  box-shadow: 0 24px 60px rgba(25, 25, 24, .4);
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.rsvp-head { display: flex; flex-direction: column; align-items: center; gap: 10px; padding-bottom: 10px; text-align: center; }
.rsvp-title { font-family: var(--font-display); font-weight: 400; font-size: 44px; letter-spacing: 6px; color: var(--text-dark); }
.rsvp-sub { font-family: var(--font-display); font-size: 24px; color: var(--wood-brown); }
.name-row { display: flex; gap: 40px; }
.name-row .field { flex: 1; }
.field { display: flex; flex-direction: column; gap: 14px; }
.field > span { font-size: 14px; color: var(--text-dark); }
.field input,
.field textarea {
  border: 0;
  border-bottom: 1px solid var(--wood-brown);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  padding: 2px 0 8px;
  border-radius: 0;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--text-dark); }
.field-food textarea { border: 1px solid var(--wood-brown); min-height: 110px; padding: 12px; resize: vertical; }
.field-attending { border: 0; display: flex; flex-direction: column; gap: 18px; }
.field-attending legend { font-size: 14px; color: var(--text-dark); margin-bottom: 18px; }
.options { display: flex; gap: 36px; }
.option { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.option input { position: absolute; opacity: 0; }
.option .radio { width: 16px; height: 16px; border-radius: 50%; border: 1.2px solid var(--wood-brown); flex: none; }
.option input:checked + .radio { background: radial-gradient(circle, var(--wood-brown) 0 42%, transparent 46%); }
.send-wrap { display: flex; justify-content: center; padding-top: 10px; }
.send-button {
  background: var(--royal-black);
  color: var(--text-cream);
  font-family: var(--font-script);
  font-size: 24px;
  border: 0;
  border-radius: 999px;
  padding: 16px 64px;
  cursor: pointer;
  transition: background-color .25s, box-shadow .25s;
}
.send-button:hover { background: var(--wood-brown); box-shadow: 0 8px 24px rgba(25, 25, 24, .25); }

/* ═══════════ FAQ ═══════════ */
.faq {
  background: var(--bg-forest);
  padding: 130px 24px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.faq-heading { font-family: var(--font-display); font-weight: 400; font-size: 52px; letter-spacing: 4px; color: var(--text-cream); text-align: center; }
.faq-list { width: 780px; max-width: 100%; }
.faq-item { padding: 26px 0; border-bottom: 1px solid rgba(248, 245, 236, .3); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; width: 16px; height: 16px; flex: none; }
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-cream-soft);
  top: 50%; left: 0;
  width: 16px; height: 1.5px;
  transform: translateY(-50%);
}
.faq-toggle::after { transform: translateY(-50%) rotate(90deg); transition: transform .2s; }
.faq-item[open] .faq-toggle::after { transform: translateY(-50%) rotate(0deg); }
.faq-item p { margin-top: 18px; max-width: 640px; font-size: 14px; color: var(--text-cream-soft); }

/* ═══════════ FOOTER ═══════════ */
.footer { padding: 70px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-monogram { font-family: var(--font-script); font-size: 52px; color: var(--text-dark); }
.footer-line { font-family: var(--font-display); font-size: 13px; letter-spacing: 3px; }

/* ══════════════════════════════════════════════════════════
   TABLET ≤ 900px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav { padding: 28px 32px; }
  .nav-menu { gap: 24px; }
  .nav-menu a { font-size: 13px; letter-spacing: 2px; }
  .nav-rsvp-btn { font-size: 16px; padding: 10px 26px; }
  .hero { min-height: 760px; }
  .hero-names { font-size: 72px; letter-spacing: 4px; }
  .hero-date { font-size: 34px; }
  .hero-subtitle { font-size: 14px; letter-spacing: 3px; }

  .welcome { padding: 100px 0; gap: 64px; }
  .welcome-heading { font-size: 38px; padding: 0 40px; }
  .welcome-row { flex-direction: column; align-items: center; gap: 56px; padding: 0 64px; }
  .welcome-photo { width: 100%; max-width: 560px; height: 560px; }
  .welcome-text-col { padding-top: 0; gap: 48px; }

  .venue { flex-direction: column; padding: 100px 64px; gap: 56px; }
  .venue-text-col { width: 100%; max-width: 560px; }
  .venue-photo { width: 100%; max-width: 640px; height: 400px; }

  .program { padding: 100px 48px; gap: 56px; }
  .program-heading { font-size: 42px; letter-spacing: 10px; }
  .program-date { font-size: 15px; }

  .menu { padding: 100px 48px; gap: 56px; }
  .menu-heading { font-size: 40px; letter-spacing: 9px; }
  .menu-body { flex-direction: column; gap: 56px; }
  .photo-mat { width: 100%; max-width: 464px; height: 560px; }
  .courses { width: 100%; max-width: 520px; }

  .gifts { padding: 100px 64px; }
  .gifts-heading { font-size: 32px; letter-spacing: 7px; }

  .travel { padding: 100px 48px; gap: 56px; }
  .travel-heading { font-size: 38px; letter-spacing: 6px; }
  .travel-split { flex-direction: column; gap: 48px; }
  .travel-photo { width: 100%; max-width: 640px; height: 440px; }
  .directions { width: 100%; }
  .stay-title { font-size: 24px; letter-spacing: 6px; }
  .hotel-name-group { width: 280px; }

  .dress { padding: 100px 48px; }
  .dress-heading { font-size: 38px; letter-spacing: 9px; }
  .palette { gap: 36px; }

  .rsvp-overlay { padding: 80px 32px; }
  .rsvp-card { padding: 56px 48px; }

  .faq { padding: 100px 48px 110px; gap: 56px; }
  .faq-heading { font-size: 36px; }
  .faq-list { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE NAV ≤ 700px — hamburger + full-screen menu overlay
   ══════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .nav { position: relative; z-index: 40; }
  .nav-rsvp-btn { display: none; }
  .nav-burger { display: flex; position: relative; z-index: 2; }
  .nav-monogram { position: relative; z-index: 2; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: var(--bg-program);
  }
  .nav-menu.open { display: flex; }
  .nav-menu.open .menu-extra { display: flex; }
  .menu-script { font-family: var(--font-script); font-size: 34px; color: var(--golden-hour); margin-bottom: 8px; }
  .menu-divider { align-items: center; gap: 14px; margin-bottom: 8px; }
  .menu-divider .line { width: 40px; height: 1px; background: var(--golden-heritage); }
  .menu-divider .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--golden-hour); }
  .nav-menu.open a:not(.menu-rsvp) { font-size: 20px; letter-spacing: 4px; }
  .nav-menu a.menu-rsvp {
    display: block;
    margin-top: 8px;
    border: 1px solid var(--text-cream);
    border-radius: 999px;
    padding: 12px 36px;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0;
    color: var(--text-cream);
    transition: background-color .25s, color .25s;
  }
  .nav-menu a.menu-rsvp:hover { background: var(--text-cream); color: var(--text-dark); }
  .menu-footer-line {
    position: absolute;
    bottom: 44px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-cream-soft);
  }
}

/* ══════════════════════════════════════════════════════════
   MOBILE ≤ 560px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 560px) {
  .hero { min-height: 720px; }
  .nav { padding: 24px 20px; }

  .hero-center { gap: 20px; padding: 0 16px 50px; }
  .hero-date { font-size: 30px; }
  .hero-names { font-size: 54px; letter-spacing: 3px; line-height: 1.2; }
  .hero-names-line2 { display: block; }
  .hero-subtitle { font-size: 11px; letter-spacing: 2.5px; }

  .welcome { padding: 80px 0 90px; gap: 56px; }
  .welcome-heading { font-size: 30px; letter-spacing: 1px; padding: 0 24px; }
  .welcome-row { padding: 0 24px; gap: 40px; }
  .welcome-photo { height: 420px; }
  .welcome-text-col { gap: 40px; }
  .welcome-photo-small { width: 280px; height: 349px; }

  .venue { padding: 80px 24px; gap: 40px; }
  .venue-script { font-size: 28px; text-align: center; }
  .venue-text-col { align-items: center; }
  .venue-address { font-size: 11px; letter-spacing: 2px; align-self: stretch; }
  .venue-photo { height: 300px; }

  .program { padding: 80px 24px 90px; gap: 48px; }
  .program-heading { font-size: 32px; letter-spacing: 6px; }
  .program-date { font-size: 11px; letter-spacing: 1px; }
  .timeline-item .title { font-size: 19px; letter-spacing: 4px; }

  .menu { padding: 80px 24px; gap: 48px; }
  .menu-heading { font-size: 30px; letter-spacing: 6px; }
  .menu-venue-line { font-size: 10px; letter-spacing: 1px; }
  .menu-body { gap: 44px; }
  .photo-mat { height: 460px; }
  .drinks-note .script-accent { font-size: 32px; }

  .gifts { padding: 80px 24px; }
  .gifts .script-accent.golden { font-size: 26px; }
  .gifts-heading { font-size: 26px; letter-spacing: 5px; }

  .travel { padding: 80px 24px; gap: 48px; }
  .travel-header .script-accent { font-size: 30px; }
  .travel-heading { font-size: 26px; letter-spacing: 4px; }
  .travel-subline { font-size: 10px; letter-spacing: 1px; }
  .travel-photo { height: 380px; }
  .direction .script-accent { font-size: 30px; }
  .direction-title { font-size: 17px; letter-spacing: 3px; }
  .btn-outline { padding: 14px 34px; font-size: 12px; letter-spacing: 2px; }
  .stay-header .script-accent { font-size: 30px; }
  .stay-title { font-size: 18px; letter-spacing: 3px; }
  .hotel-list { margin-top: 36px; }
  .hotel-row { flex-direction: column; align-items: flex-start; gap: 10px; padding: 24px 4px; position: relative; }
  .hotel-name-group { width: auto; }
  .hotel-desc { text-align: left; }
  .hotel-chevron { position: absolute; right: 4px; top: 38px; }

  .dress { padding: 80px 24px; }
  .dress-header .script-accent { font-size: 30px; }
  .dress-heading { font-size: 28px; letter-spacing: 6px; }
  .palette { gap: 28px 32px; max-width: 340px; }

  .rsvp-overlay { padding: 60px 16px; }
  .rsvp-card { width: 100%; padding: 44px 24px; gap: 32px; }
  .rsvp-title { font-size: 36px; }
  .rsvp-sub { font-size: 19px; }
  .name-row { flex-direction: column; gap: 32px; }
  .options { gap: 24px; flex-wrap: wrap; }

  .faq { padding: 80px 24px 90px; gap: 48px; }
  .faq-heading { font-size: 22px; letter-spacing: 2px; }
  .faq-item summary { font-size: 13px; letter-spacing: 1.5px; text-align: left; }

  .footer { padding: 50px 24px; }
  .footer-monogram { font-size: 38px; }
  .footer-line { font-size: 10px; letter-spacing: 1.5px; }
}

/* ─── RSVP form states ─── */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { margin: 1rem 0 0; text-align: center; font-size: 0.9rem; letter-spacing: 0.02em; }
.form-status.error { color: #a04b3c; }
.send-button:disabled { opacity: 0.6; cursor: default; }
