:root {
  --ink: #16110d;
  --ink-soft: #4a3f37;
  --cream: #F2EDE4;
  --cream-deep: #E4DDD2;
  --paper: #fbf7ef;
  --accent: #8a2a2a;
  --accent-deep: #6b1f1f;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --navy: #0D1B2A;
  --navy-mid: #1A2E42;
  --rule: rgba(22, 17, 13, 0.12);
  --shadow: 0 30px 60px -30px rgba(22, 17, 13, 0.35);
  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.05; font-weight: 400; }
h1 em { font-style: italic; color: var(--gold); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}
.kicker.light { color: var(--gold); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-deep);
  margin: 0 0 1.6rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.brand:hover { text-decoration: none; }
.brand-icon {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
}
.brand-name {
  font-size: 1.7rem;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand-est {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(242, 237, 228, 0.4);
  align-self: flex-end;
  padding-bottom: 2px;
}
.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav-menu a {
  color: rgba(242, 237, 228, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.nav-menu a:hover { color: var(--gold); text-decoration: none; }
.nav-menu .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 1rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-menu .nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 3rem 5rem;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute;
  top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 0.5rem;
}
.hero h1 em { color: var(--gold); }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-style: italic;
  color: rgba(242,237,228,0.5);
  margin-bottom: 1.8rem;
  line-height: 1.2;
}
.hero .lede {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(242,237,228,0.7);
  max-width: 580px;
  margin-top: 0;
  font-weight: 300;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Stats band */
.stats-band {
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2.2rem 2.5rem;
  border-right: 1px solid rgba(13,27,42,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,27,42,0.6);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost {
  background: transparent;
  color: rgba(242,237,228,0.7);
  border-color: rgba(242,237,228,0.25);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

/* Sections */
.section {
  padding: 6rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
.section h2 { margin-bottom: 0.4em; }
.section-lede {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-reverse .col-image { order: -1; }

.col-text p { color: var(--ink-soft); }

.bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.bullets li {
  padding: 0.6rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}
.bullets li:last-child { border-bottom: 1px solid var(--rule); }
.bullets strong { color: var(--ink); font-weight: 600; }

figure { margin: 0; }
.col-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}
figcaption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Format steps */
.format-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.format-step {
  border-top: 2px solid var(--gold);
  padding-top: 1.8rem;
}
.step-time {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.step-body {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .format-steps { grid-template-columns: 1fr; gap: 2rem; }
}

/* Audience */
.section-audience {
  background: var(--navy-mid);
  max-width: 100%;
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.audience-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.section-audience h2 { color: var(--cream); }
.audience-lede {
  font-size: 1.1rem;
  color: rgba(242, 237, 228, 0.7);
  line-height: 1.75;
}

/* Guests */
.guests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.guest-card {
  background: transparent;
  border: none;
  padding-bottom: 1.2rem;
  text-align: center;
  transition: transform 0.2s ease;
}
.guest-card:hover {
  transform: translateY(-3px);
}
.guest-card img {
  width: 140px;
  height: 140px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
  background: var(--cream-deep);
}
.guest-card h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.guest-card .role {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.guest-card .quote {
  margin: 0 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Venue */
.venue-logo {
  margin-top: 1.2rem;
  text-align: center;
}
.venue-logo img {
  max-width: 160px;
  height: auto;
  opacity: 0.85;
}

address {
  font-style: normal;
  color: var(--ink-soft);
  margin: 0.6rem 0 1rem;
}
.link {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.link:hover { text-decoration: none; color: var(--gold-light); }

/* Next dinner */
.section-next { padding-top: 3rem; padding-bottom: 3rem; }
.next-card {
  background: var(--navy-mid);
  color: var(--cream);
  padding: 3.5rem 3rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow);
}
.next-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.next-card > * { position: relative; z-index: 1; }
.next-card h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); }
.next-card p { color: var(--cream-deep); }
.next-guest { font-size: 1.1rem; margin-bottom: 0.4rem; }
.next-guest strong { color: var(--gold); font-style: italic; font-family: var(--serif); }
.next-guest-block {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.next-guest-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid rgba(176, 138, 62, 0.4);
}
.next-guest-bio {
  font-size: 0.92rem;
  color: rgba(236, 226, 207, 0.75);
  margin: 0;
  line-height: 1.55;
}
.next-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 0 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(246, 240, 230, 0.2);
  border-bottom: 1px solid rgba(246, 240, 230, 0.2);
}
.next-details div { margin: 0; }
.next-details dt {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.next-details dd { margin: 0; font-family: var(--serif); font-size: 1.1rem; }

/* RSVP */
.section-rsvp { padding-top: 4rem; }
.rsvp-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.rsvp-inner h2 { text-align: center; }
.rsvp-inner p { color: var(--ink-soft); margin-bottom: 2.5rem; }
.rsvp-form { text-align: left; }
.rsvp-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}
.rsvp-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}
.rsvp-form input,
.rsvp-form textarea {
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
}
.rsvp-form input:focus,
.rsvp-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.rsvp-form button { justify-self: start; margin-top: 0.4rem; }
.form-thanks {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--cream-deep);
  border-radius: 4px;
  color: var(--ink);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
}

/* Ticket card */
.ticket-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1.8rem;
  text-align: left;
  margin-top: 1rem;
  box-shadow: var(--shadow);
}
.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px dashed var(--rule);
}
.ticket-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
}
.ticket-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.ticket-price { text-align: right; }
.ticket-price .amount {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.ticket-price .per {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}
.btn-block { display: block; width: 100%; text-align: center; }
stripe-buy-button { display: block; text-align: center; }
.ticket-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Checkout modal — Stripe-style */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.checkout-modal.open { opacity: 1; }
.checkout-modal[hidden] { display: none; }
.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, 0.55);
  backdrop-filter: blur(4px);
}
.checkout-card {
  position: relative;
  background: #fff;
  width: min(960px, 94vw);
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  color: #1a1f36;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.checkout-modal.open .checkout-card { transform: translateY(0) scale(1); }

.checkout-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  background: transparent;
  border: 0;
  font-size: 28px;
  color: #697386;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
}
.checkout-close:hover { background: rgba(0, 0, 0, 0.05); color: #1a1f36; }

/* Summary side */
.checkout-summary {
  background: linear-gradient(180deg, #fafbfc 0%, #f1f3f6 100%);
  padding: 2.2rem 2rem;
  border-right: 1px solid #e6e8eb;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.merchant {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.merchant-mark {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.75rem;
}
.test-badge {
  margin-left: auto;
  background: #ff9d27;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.summary-label {
  color: #697386;
  font-size: 0.88rem;
  margin: 0 0 0.3rem;
}
.summary-amount {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.summary-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  border-top: 1px solid #e6e8eb;
}
.summary-lines li {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #e6e8eb;
}
.summary-lines li.muted { color: #697386; padding-top: 0; border-bottom: 0; }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1.2rem;
  margin-top: 1rem;
  border-top: 1px solid #e6e8eb;
  font-weight: 600;
  font-size: 1rem;
}

/* Form side */
.checkout-form {
  padding: 2.2rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.checkout-form h2 {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: #1a1f36;
}
.test-hint {
  margin: 0;
  font-size: 0.78rem;
  color: #697386;
  background: #fff8e6;
  border: 1px solid #f3dca4;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
}
.test-hint code {
  font-size: 0.78rem;
  background: rgba(0,0,0,0.05);
  padding: 1px 5px;
  border-radius: 3px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #1a1f36;
  font-weight: 500;
}
.field input,
.field select {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.7rem 0.85rem;
  border: 1px solid #e6e8eb;
  border-radius: 6px;
  background: #fff;
  color: #1a1f36;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus {
  outline: 0;
  border-color: #635bff;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.18);
}
.card-group {
  border: 1px solid #e6e8eb;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
}
.card-group input { border: 0; border-radius: 0; box-shadow: none; }
.card-group input:focus {
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.18);
  position: relative;
  z-index: 1;
}
.card-group > input:first-child { border-bottom: 1px solid #e6e8eb; }
.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-row input:first-child { border-right: 1px solid #e6e8eb; }

.checkout-pay {
  margin-top: 0.6rem;
  background: #635bff;
  color: #fff;
  border: 0;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  transition: background 0.15s ease;
}
.checkout-pay:hover { background: #5048e5; }
.checkout-pay:disabled { cursor: default; opacity: 0.85; }
.pay-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}
.checkout-pay.loading .pay-label { visibility: hidden; }
.checkout-pay.loading .pay-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.powered {
  text-align: center;
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  color: #8898aa;
}
.powered strong {
  color: #635bff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.powered a { color: #8898aa; margin-left: 0.4rem; }

/* Success state */
.checkout-success {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}
.checkout-success h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: #1a1f36;
  margin: 1.2rem 0 0.4rem;
}
.checkout-success p {
  color: #697386;
  max-width: 380px;
  margin: 0 auto 1.6rem;
}
.success-check {
  display: inline-grid;
  place-items: center;
  width: 72px; height: 72px;
  color: #16b364;
}
.success-check svg { width: 100%; height: 100%; }

/* Footer */
.footer {
  background: var(--navy);
  color: var(--cream-deep);
  padding: 3rem 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-icon { color: var(--gold); opacity: 0.7; }
.footer p { margin: 0; color: rgba(242, 237, 228, 0.5); font-size: 0.9rem; }
.footer .small { margin-left: auto; font-size: 0.8rem; color: rgba(242, 237, 228, 0.3); }

/* Responsive */
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav-menu .nav-cta {
    margin-top: 0.8rem;
    text-align: center;
    border-bottom: 0;
  }

  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .hero { padding: 7rem 1.5rem 4rem; }

  .grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-reverse .col-image { order: 0; }

  .guests-grid { grid-template-columns: repeat(2, 1fr); }

  .next-card { padding: 2.2rem 1.6rem; }
  .next-details { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 4.5rem 1.25rem; }
  .footer-inner { gap: 1rem; }
  .footer .small { margin-left: 0; }

  .ticket-row { flex-direction: column; align-items: stretch; }
  .ticket-price { text-align: left; }

  .checkout-card {
    grid-template-columns: 1fr;
    max-height: 100vh;
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
  }
  .checkout-summary {
    padding: 1.6rem 1.4rem 1.2rem;
    border-right: 0;
    border-bottom: 1px solid #e6e8eb;
  }
  .summary-amount { font-size: 1.6rem; margin-bottom: 1rem; }
  .summary-lines { margin-bottom: 0; }
  .checkout-form { padding: 1.6rem 1.4rem; }
  .checkout-success { padding: 3rem 1.4rem; }
}
