/* ============================================================
   Jackson Square Capital Charity Golf Tournament
   Visual system: forest green / cream / antique gold
   Type: Cormorant Garamond (display) + Inter (text)
   ============================================================ */

:root {
  --green-900: #0d2e22;
  --green-800: #133d2d;
  --green-700: #1a5a44;
  --green-50:  #e9f0ec;
  --cream:     #f6f1e4;
  --cream-2:   #faf6ec;
  --paper:     #fbf9f3;
  --ink:       #0b1610;
  --ink-2:     #1f2823;
  --muted:     #4f5854;
  --gold:      #b5985a;
  --gold-2:    #c9ad6f;
  --line:      rgba(15, 26, 20, 0.12);
  --line-light:rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 2px 12px rgba(15,26,20,0.06);
  --shadow-md: 0 8px 30px rgba(15,26,20,0.10);
  --shadow-lg: 0 20px 60px rgba(15,26,20,0.16);
  --radius:    4px;
  --radius-lg: 8px;
  --maxw:      1240px;
  --pad:       clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
}
p { color: var(--ink-2); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.display.light { color: var(--cream); }
.display .italic { font-style: italic; font-weight: 500; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--gold-2); }

.lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 20px;
}

.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 10px auto 0;
}
.section-sub.light { color: rgba(246,241,228,0.72); }

.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 14px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--green-800);
  color: var(--cream);
}
.btn-primary:hover { background: var(--green-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--green-800);
  border: 1px solid var(--green-800);
}
.btn-secondary:hover { background: var(--green-800); color: var(--cream); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(246,241,228,0.4);
}
.btn-ghost:hover { background: rgba(246,241,228,0.08); border-color: var(--cream); }

.btn-ghost-light {
  color: var(--cream);
  border: 1px solid rgba(246,241,228,0.32);
}
.btn-ghost-light:hover { background: rgba(246,241,228,0.06); border-color: var(--cream); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 46, 34, 0);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(13, 46, 34, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: height 0.3s ease, filter 0.3s ease;
}
.nav.scrolled .brand-logo {
  height: 44px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-2); }
.nav-cta { font-size: 12px; padding: 11px 22px; }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--pad) 24px;
  background: rgba(13, 46, 34, 0.98);
  backdrop-filter: blur(8px);
}
.nav-mobile a {
  color: var(--cream);
  padding: 14px 0;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile .btn { margin-top: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,29,21,0.72) 0%, rgba(8,29,21,0.48) 35%, rgba(8,29,21,0.78) 78%, rgba(8,29,21,0.92) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.12) 45%, rgba(0,0,0,0) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--pad) 120px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 36px;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.3);
}
.hero-eyebrow,
.hero-meta .meta-value,
.hero-meta .meta-label {
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; font-weight: 500; color: var(--gold-2); }

.hero-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0 28px;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 44px;
}
.meta-item .meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,241,228,0.6);
  margin-bottom: 4px;
}
.meta-item .meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(246,241,228,0.2);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(246,241,228,0.6);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold-2));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============ BENEFICIARY BAR ============ */
.benefit-bar {
  background: var(--green-900);
  color: var(--cream);
  border-top: 1px solid rgba(181,152,90,0.3);
  border-bottom: 1px solid rgba(181,152,90,0.3);
}
.benefit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px var(--pad);
  flex-wrap: wrap;
  text-align: center;
}
.benefit-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,241,228,0.6);
}
.benefit-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-2);
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
a.benefit-name:hover {
  color: var(--cream);
  border-bottom-color: var(--gold-2);
}
.benefit-and {
  color: rgba(246,241,228,0.45);
  font-size: 18px;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section-dark {
  background: var(--green-900);
  color: var(--cream);
}
.section-dark p { color: rgba(246,241,228,0.78); }
.section-cream { background: var(--cream); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ============ ABOUT ============ */
.about-left .display { max-width: 520px; }
.about-right p { margin: 0 0 18px; }

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  line-height: 1.45;
}

/* ============ CHARITIES ============ */
.charity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.charity-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-light);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.3s;
}
.charity-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.charity-card:hover .charity-link {
  gap: 16px;
  color: var(--cream);
}
.charity-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.charity-logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}
.charity-logo {
  width: 64px; height: 64px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 10px;
}
.charity-stanbridge {
  border-radius: 8px;
  height: 56px;
  width: 80px;
  padding: 6px 10px;
}
.charity-logo svg { width: 100%; height: 100%; }
.charity-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  color: var(--cream);
}
.charity-blurb {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px;
  color: rgba(246,241,228,0.88);
}
.charity-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 0.25s, color 0.25s;
}
.charity-link .arrow { transition: transform 0.25s; }

/* ============ SCHEDULE ============ */
.schedule-grid { align-items: start; }
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 18px 0;
  position: relative;
  align-items: start;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 106px;
  top: 28px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline .time {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-800);
  padding-top: 4px;
  text-align: right;
}
.timeline .event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.timeline .event-sub {
  font-size: 15px;
  color: var(--ink-2);
}

.card-included {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--green-900);
}
.card-title + h3 { margin-top: 32px; }
.card-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.check-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 15px;
  border-bottom: 1px dashed var(--line);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.check-list.light li {
  color: rgba(246,241,228,0.84);
  border-bottom-color: rgba(255,255,255,0.1);
}

/* ============ VENUE ============ */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.venue-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.venue-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.venue-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px 0 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.meta-value-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 0.25s;
}
.link-arrow:hover { gap: 16px; }

/* ============ TICKETS ============ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ticket-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.ticket-card:hover {
  border-color: var(--green-800);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ticket-card.featured {
  background: var(--green-900);
  color: var(--cream);
  border-color: var(--gold);
  transform: scale(1.02);
}
.ticket-card.featured .check-list li { color: rgba(246,241,228,0.84); border-bottom-color: rgba(255,255,255,0.12); }
.ticket-card.featured .ticket-name,
.ticket-card.featured .ticket-price { color: var(--cream); }
.ticket-card.featured .ticket-price .currency { color: var(--gold-2); }
.featured-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.ticket-head {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.ticket-card.featured .ticket-head { border-bottom-color: rgba(255,255,255,0.15); }
.ticket-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.ticket-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
}
.ticket-card .check-list { margin-bottom: 32px; flex: 1; }

/* ============ SPONSOR TIERS ============ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-light);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.tier-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.tier-card.tier-platinum {
  background: linear-gradient(160deg, rgba(181,152,90,0.18), rgba(181,152,90,0.04));
  border-color: var(--gold);
}
.tier-rank {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1;
}
.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}
.tier-card .check-list { flex: 1; margin-bottom: 28px; }
.tier-small .tier-name { font-size: 28px; }
.tier-small .tier-price { font-size: 22px; }

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--green-800);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item[open] summary { color: var(--green-800); }
.faq-item p {
  padding: 0 40px 24px 0;
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact-copy .display { margin-bottom: 20px; }
.contact-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--green-800);
  margin: 18px 0 0;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:first-child { padding-top: 0; }
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 600;
  color: var(--green-900);
  display: inline-block;
  word-break: break-word;
  transition: color 0.2s;
}
.contact-value:hover { color: var(--gold); }
.contact-card .btn { margin-top: 28px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--green-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(181,152,90,0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(26,90,68,0.4), transparent 60%);
}
.final-inner {
  position: relative;
  text-align: center;
  padding: clamp(80px, 10vw, 130px) var(--pad);
}
.final-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 24px;
}
.final-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 40px;
  color: var(--cream);
}
.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: #081d15;
  color: rgba(246,241,228,0.7);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
}
.footer-tag {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(246,241,228,0.55);
  margin-top: 2px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}
.footer-contact a {
  font-size: 14px;
  color: rgba(246,241,228,0.78);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-2); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(246,241,228,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.disclaimer {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(246,241,228,0.5);
  max-width: 640px;
  margin: 0;
}
.copyright {
  font-size: 12px;
  color: rgba(246,241,228,0.5);
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .grid-2,
  .venue-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .ticket-grid,
  .tier-grid,
  .charity-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top { gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .ticket-card.featured { transform: none; }
  .venue-media img { height: 380px; }
  .quick-stats { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .nav-mobile[hidden] { display: none; }
  .brand-logo { height: 34px; }
  .hero-content { padding-top: 120px; padding-bottom: 100px; }
  .hero-meta { gap: 18px; }
  .meta-divider { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }
  .timeline::before { left: 90px; }
  .timeline li { grid-template-columns: 80px 1fr; gap: 24px; }
  .timeline li::before { left: 86px; }
  .venue-meta { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .contact-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .benefit-inner { gap: 10px; }
  .benefit-and { display: none; }
  .ticket-card, .tier-card, .charity-card { padding: 32px 22px; }
  .tier-name { font-size: 30px; }
  .tier-price { font-size: 24px; }
  .ticket-price { font-size: 40px; }
  .hero-title { letter-spacing: -0.02em; }
  .hero-eyebrow { letter-spacing: 0.28em; }
  .display { font-size: clamp(32px, 8vw, 44px); }
  .contact-card { padding: 28px 22px; }
  .footer { padding: 60px 0 32px; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 14px; }
}

html, body { overflow-x: hidden; }
