/* ═══════════════════════════════════════════════════════════════
   Sammy's Bar Mitzvah — Stylesheet
   Brand: Sunset Fire palette · Midsummer Night · August 22 2026
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --crimson:      #6B0E05;
  --sunset-red:   #9E1F10;
  --burnt-orange: #C83A18;
  --amber:        #D96818;
  --gold:         #EAAC2C;
  --dusk-blue:    #5AABD8;
  --sky:          #A4CCEA;
  --mauve:        #9B6878;

  --dark:         #0E0606;
  --dark-mid:     #1A0808;
  --ivory:        #FDF5F0;
  --ivory-mid:    #F4E8DF;
  --ivory-dark:   #EDD9CE;
  --white:        #FFFFFF;

  --text:         #1A0805;
  --text-mid:     #5A3020;
  --text-light:   #9B7060;
  --text-muted:   #C4A898;

  --gradient-logo: linear-gradient(180deg, #6B0E05 0%, #9E1F10 18%, #C83A18 42%, #D96818 68%, #E09028 85%, #EAAC2C 100%);
  --gradient-btn:  linear-gradient(135deg, #C83A18 0%, #D96818 50%, #EAAC2C 100%);

  --radius:       12px;
  --shadow:       0 4px 24px rgba(14,6,6,0.12);
  --shadow-lg:    0 8px 40px rgba(14,6,6,0.20);

  --max-w:        1020px;
  --section-pad:  88px 24px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography helpers ────────────────────────────────────────── */
.serif       { font-family: 'Cormorant Garamond', Georgia, serif; }
.serif-italic{ font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dusk-blue);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.1;
}
.gradient-text {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section-center { text-align: center; }
.section-header { margin-bottom: 52px; }
.section-header .eyebrow { margin-bottom: 10px; }
.section-header .section-title { margin-bottom: 14px; }
.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
}
.section-center .section-header p,
.section-header.section-center p { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,58,24,0.4);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(200,58,24,0.55); }

.btn-ghost {
  background: transparent;
  color: var(--burnt-orange);
  border: 1.5px solid var(--burnt-orange);
}
.btn-ghost:hover { background: rgba(200,58,24,0.06); }

.btn-dark {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-dark:hover { background: rgba(255,255,255,0.2); }

/* ── Logo image ─────────────────────────────────────────────────── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.hero-logo-img {
  height: 220px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,0.5));
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.7;
}

.rsvp-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

/* ── Navigation ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(14,6,6,0.92);
  backdrop-filter: blur(12px);
  padding: 12px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo svg { height: 42px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; }

/* ── Hero ───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(175deg, #0E0606 0%, #1C0808 40%, #280C0A 70%, #1A0D10 100%);
  overflow: hidden;
  text-align: center;
}

#stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Horizon glow */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(200,58,24,0.14) 0%, rgba(217,104,24,0.06) 50%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-monogram { margin-bottom: 8px; display: flex; justify-content: center; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(164,206,234,0.7);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
}
.hero-title em {
  font-style: italic;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 200px;
}
.hero-divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.15); }
.hero-divider-star { color: var(--gold); font-size: 14px; opacity: 0.7; }

.hero-date {
  font-size: 13px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.3);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; opacity: 0.35; display: block; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Hero forest / campfire scene ─────────────────────────── */
.hero-forest {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: clamp(240px, 32vh, 380px);
  z-index: 1;
  pointer-events: none;
  background: url('/forest-scene.jpg') center bottom / 100% auto no-repeat;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 30%, black 60%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 30%, black 60%);
}

/* ── Section divider ─────────────────────────────────────────────── */
.floral-divider {
  height: 48px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.divider-ornament {
  width: 100%;
  max-width: 480px;
  height: 20px;
  display: block;
}

/* ── Gem divider (used on main page sections) ────────────────────── */
.gem-divider {
  display: flex; align-items: center; gap: 16px;
  max-width: 480px; margin: 0 auto; width: 100%;
}
.gem-divider-line { flex: 1; height: 1px; }
.gem-divider-line:first-child { background: linear-gradient(to right, transparent, rgba(184,92,56,0.28)); }
.gem-divider-line:last-child  { background: linear-gradient(to right, rgba(184,92,56,0.28), transparent); }
.gem-divider-gem  { font-size: 10px; color: var(--burnt-orange); opacity: 0.65; flex-shrink: 0; line-height: 1; }

/* ── Event Details ──────────────────────────────────────────────── */
#details { background: var(--ivory); }
#details .section-header { margin-bottom: 40px; }

.event-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.event-card {
  width: 100%;
  text-align: center;
  padding: 44px 24px;
  position: relative;
}

.event-card + .event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ivory-dark), transparent);
}

.event-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(184,92,56,0.08);
  border: 1px solid rgba(184,92,56,0.16);
  margin: 0 auto 16px;
  color: var(--burnt-orange);
}
.event-icon svg { width: 22px; height: 22px; }
.event-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.event-time {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.event-venue {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.event-address {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.event-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}
.event-detail {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* ── About Sammy ───────────────────────────────────────────────── */
#about { background: var(--ivory-mid); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--crimson) 0%, var(--burnt-orange) 55%, var(--gold) 100%);
  display: flex;
  align-items: stretch;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-photo-art {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.about-photo-art::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  pointer-events: none;
}
.photo-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 18vw, 160px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
  margin-bottom: 12px;
}
.photo-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.photo-ornament-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.photo-ornament-star {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
}
.photo-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

.about-text .eyebrow { margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--dark);
}
.about-text h2 span { display: block; }
.about-text p {
  font-size: 15.5px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.torah-badge {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--ivory-dark);
  box-shadow: var(--shadow);
}
.torah-badge-icon { font-size: 24px; }
.torah-badge-text { font-size: 13px; color: var(--text-mid); line-height: 1.4; }
.torah-badge-text strong { display: block; color: var(--dark); font-size: 14px; margin-bottom: 2px; }

/* ── RSVP ───────────────────────────────────────────────────────── */
#rsvp {
  background: linear-gradient(160deg, #1A0808 0%, #280C0A 50%, #1C0D12 100%);
  position: relative;
  overflow: hidden;
}
#rsvp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='600' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='80' cy='60' r='1' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='200' cy='30' r='1.4' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='350' cy='80' r='0.8' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='480' cy='20' r='1.2' fill='rgba(255,255,255,0.25)'/%3E%3Ccircle cx='560' cy='100' r='1' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='30' cy='200' r='0.9' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='150' cy='180' r='1.3' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='420' cy='160' r='1.1' fill='rgba(255,255,255,0.28)'/%3E%3Ccircle cx='520' cy='220' r='0.7' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") repeat;
  opacity: 0.6;
  pointer-events: none;
}

#rsvp .section-header .eyebrow { color: var(--sky); }
#rsvp .section-header .section-title { color: #fff; }
#rsvp .section-header p { color: rgba(255,255,255,0.5); }

.rsvp-wrap {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.rsvp-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 44px 48px;
  backdrop-filter: blur(8px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burnt-orange);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: #1A0808; color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Attending radio toggle */
.attend-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.attend-option { display: none; }
.attend-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
  user-select: none;
}
.attend-label:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.attend-option:checked + .attend-label {
  border-color: var(--burnt-orange);
  background: rgba(200,58,24,0.15);
  color: #fff;
}
.attend-option#attend-yes:checked + .attend-label { border-color: var(--gold); background: rgba(234,172,44,0.12); }
.attend-option#attend-no:checked  + .attend-label { border-color: var(--mauve); background: rgba(155,104,120,0.15); }

/* Conditional fields */
#attending-details { display: none; }
#attending-details.visible { display: block; }

.form-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 24px 0;
}

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 14px; }

/* Success / Error states */
.rsvp-success, .rsvp-error { display: none; text-align: center; padding: 48px 24px; }
.rsvp-success.visible, .rsvp-error.visible { display: block; }
.rsvp-success-icon { font-size: 52px; margin-bottom: 20px; }
.rsvp-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}
.rsvp-success p { color: rgba(255,255,255,0.55); font-size: 15px; }
.rsvp-error p { color: var(--gold); font-size: 14px; margin-top: 12px; }

/* RSVP closed message */
.rsvp-closed {
  text-align: center;
  padding: 56px 24px;
}
.rsvp-closed-icon {
  font-size: 44px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}
.rsvp-closed h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* RSVP personal link box */
.rsvp-link-box {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.rsvp-link-icon {
  font-size: 44px;
  margin-bottom: 20px;
  color: var(--gold);
  opacity: 0.7;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  line-height: 1;
}
.rsvp-link-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.rsvp-link-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
}
.rsvp-link-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 28px 0;
}
.rsvp-link-contact {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.rsvp-link-contact a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Travel & Logistics ─────────────────────────────────────────── */
#travel { background: var(--ivory); }

.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.travel-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--ivory-dark);
  transition: border-color 0.2s;
}
.travel-card:hover { border-left-color: var(--burnt-orange); }

.travel-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(184,92,56,0.08);
  border: 1px solid rgba(184,92,56,0.16);
  margin: 0 auto 16px;
  color: var(--burnt-orange);
}
.travel-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.travel-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.travel-card a { color: var(--burnt-orange); text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--dark-mid);
  padding: 56px 24px;
  text-align: center;
}
.footer-monogram { margin: 0 auto 20px; }
.footer-monogram svg { height: 64px; width: auto; }

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer-date {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }

  .nav-links { display: none; }

  .hero-title { font-size: 40px; }

  .event-cards    { padding: 0 8px; }
  .about-grid     { grid-template-columns: 1fr; }
  .about-photo    { aspect-ratio: 3/2; max-height: 260px; }
  .travel-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .rsvp-form      { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
