/* Design tokens */
:root {
  --sand-50: #FBF5EA;
  --sand-100: #F5E9D4;
  --sand-200: #EDD9B8;
  --cream: #FAF3E7;
  --paper: #F7EEDD;
  --terracotta-700: #9A3A1E;
  --terracotta-600: #B8451F;
  --terracotta-500: #C8502E;
  --coral-500: #E87A5D;
  --sun-500: #E8A84A;
  --sun-300: #F3C76A;
  --teal-900: #132A2D;
  --teal-800: #1F3A3D;
  --teal-700: #2A5458;
  --teal-500: #3E7478;
  --ink: #132A2D;
  --ink-soft: #3D4F50;
  --ink-faint: #6C7C7D;
  --card-gradient: linear-gradient(135deg, #FFF1E0 0%, #FDF8EE 45%, #EFF3E8 100%);
  --card-border: 1px solid rgba(19,42,45,.06);
  --shadow-card: 0 4px 14px -10px rgba(19,42,45,.15);
  --shadow-heavy: 0 8px 24px -16px rgba(19,42,45,.2);
  --orange-gradient: linear-gradient(90deg, #F59E63, #EF7D4E 50%, #F3B05A);
  --btn-gradient: linear-gradient(90deg, #F59E63, #EF7D4E);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: linear-gradient(180deg, #FBF6EC 0%, #F6EEDD 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 300;
  background: var(--teal-900);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}

.skip-link:focus {
  top: 16px;
}

/* Container */
.inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 900px) {
  .inner { padding: 0 48px; }
}

/* Eyebrow */
.eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta-600);
  margin-bottom: 10px;
}

/* Gradient emphasis on em inside headings */
h1 em, h2 em {
  font-style: normal;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Lede */
.lede {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--teal-900);
  margin-top: 14px;
  margin-bottom: 20px;
}

/* Primary button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-gradient);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 16px -8px rgba(239,125,78,.55);
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); filter: saturate(1.1); }
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-sm { font-size: 14px; padding: 10px 18px; }

/* Disabled / coming soon button */
.btn[disabled], .btn-coming-soon {
  background: rgba(19,42,45,.1);
  color: var(--ink-faint);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  transform: none;
  filter: none;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,246,236,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19,42,45,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 900px) {
  .nav-inner { padding: 0 48px; height: 64px; }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-900);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}
.nav-links {
  display: none;
  gap: 28px;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--terracotta-500); }

.hamburger-btn,
.mobile-nav {
  display: none;
}

/* ---- REVENUE BANNER ---- */
.revenue-banner {
  display: flex;
  justify-content: center;
  padding: 12px 22px;
}
.revenue-banner-inner {
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}
.revenue-banner-inner .heart {
  color: var(--terracotta-500);
  margin-right: 6px;
}

/* ---- HERO ---- */
.hero {
  padding: 48px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: start;
    padding: 48px 0 56px;
  }
}
.hero-text { display: flex; flex-direction: column; }
.hero-text h1 {
  font-size: clamp(44px, 9.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--teal-900);
  margin: 4px 0 16px;
}
@media (min-width: 900px) {
  .hero-text h1 { font-size: clamp(54px, 6vw, 84px); }
}
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.hero-meta a { color: var(--terracotta-600); font-weight: 600; }
.hero-meta a:hover { text-decoration: underline; }
.hero-meta .dot { color: var(--ink-faint); }
.hero-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.hero-body p + p { margin-top: 12px; }

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.hero-note {
  font-size: 14px;
  color: var(--ink-faint);
}


/* Hero image card */
.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--teal-800);
}
@media (min-width: 900px) {
  .hero-image-card { height: 620px; aspect-ratio: auto; }
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(19,42,45,.35) 100%);
}
.hero-stamp {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--terracotta-600);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
}
.hero-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.caption-venue {
  font-size: 14px;
  font-weight: 600;
  color: rgb(255,255,255);
}
.caption-date {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255,255,255);
  margin-top: 2px;
}
.caption-coords {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* ---- WHY / CAUSE ---- */
.why {
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 32px 60px;
    padding: 72px 0;
  }
  .why-head { grid-column: 1; grid-row: 1; }
  .why-body { grid-column: 2; grid-row: 1; }
  .stats-row { grid-column: 1 / 3; grid-row: 2; margin-top: 0; }
}
.why-head h2 {
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--teal-900);
}
.why-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.why-body p + p {
  margin-top: 22px;
}
@media (min-width: 900px) {
  .why-body { padding-top: 12px; }
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}
@media (min-width: 600px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); }
}
.stat-card {
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-heavy);
  border-radius: 20px;
  padding: 28px 24px;
}
.stat-value {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--teal-900);
  line-height: 1;
}
.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-900);
  margin-top: 14px;
}
.stat-note {
  font-size: 14px;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* ---- DAY / SCHEDULE ---- */
.day {
  padding: 80px 0;
}
.day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .day-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: start;
    padding: 72px 0;
  }
}
.day-text h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--teal-900);
}

/* Timeline */
.timeline { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0;
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  padding: 16px 20px;
}
.tl-time {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--terracotta-500);
  padding-top: 4px;
}
.tl-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-900);
}
.tl-desc {
  font-size: 14px;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* Day strip images */
.day-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.day-strip img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ---- TIMES SECTION (soup kitchen two-col layout) ---- */
.times-left,
.times-right {
  display: flex;
  flex-direction: column;
}

.times-right {
  gap: 10px;
}

.times-col-heading,
.times-left h2,
.times-right h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--teal-900);
  margin-bottom: 12px;
}

.sched-card {
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-heavy);
  border-radius: 22px;
  padding: 22px 24px;
}

.sched-card .timeline {
  margin-top: 0;
}

.times-cta {
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-heavy);
  border-radius: 22px;
  padding: 32px 36px;
  margin-top: 32px;
}

.times-cta > .eyebrow {
  color: var(--terracotta-600);
  margin-bottom: 12px;
}

.times-cta-body {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.times-cta-text {
  flex: 1;
  min-width: 240px;
}

.times-cta h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 10px;
}

.times-cta-text > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.times-cta .trust-list li {
  color: var(--ink-soft);
  border-bottom-color: rgba(19,42,45,.08);
}

.times-cta .trust-list li::before {
  background: var(--coral-500);
}

.times-cta-action {
  flex-shrink: 0;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 80px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .how-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 100px 0;
  }
}
.how-text h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--teal-900);
}

/* Steps */
.steps { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.step-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 16px;
  color: var(--teal-900);
  line-height: 1.5;
}
.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--btn-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Newsletter card */
.newsletter-card {
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-heavy);
  border-radius: 22px;
  padding: 30px 28px;
}
.newsletter-card h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 12px;
}
.newsletter-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta-600);
  margin-bottom: 12px;
  margin-top: -6px;
}
.card-meta .dot { color: var(--ink-faint); font-weight: 400; }
.card-lede {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 14px;
}

/* ---- TICKETS ---- */
.tickets {
  padding: 80px 0;
}
@media (min-width: 900px) {
  .tickets { padding: 100px 0; }
}
.tickets-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.tickets-intro h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--teal-900);
}
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .ticket-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

/* Ticket card */
.ticket-card {
  position: relative;
  background: var(--card-gradient);
  border: var(--card-border);
  border-radius: 22px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.ticket-card:hover { transform: translateY(-3px); }
.ticket-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.ticket-price {
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 800;
  color: var(--teal-900);
  line-height: 1;
  margin-bottom: 16px;
}
.ticket-price.gradient {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ticket-price .currency {
  font-size: 48%;
  font-weight: 700;
  color: var(--ink-faint);
  vertical-align: super;
}
.ticket-price.gradient .currency {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ticket-card > p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 20px;
}
.ticket-card .btn {
  align-self: stretch;
  text-align: center;
}

/* Featured ticket */
.ticket-featured {
  background: linear-gradient(180deg, #FFF3DE 0%, #FFE4C1 100%);
  border: 1px solid rgba(239,125,78,.35);
  box-shadow: 0 20px 50px -24px rgba(239,125,78,.45);
  transform: translateY(-10px);
  margin-top: 0;
}
.ticket-featured:hover { transform: translateY(-14px); }
.ticket-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--terracotta-600);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(239,125,78,.45);
  white-space: nowrap;
}
@media (max-width: 699px) {
  .ticket-featured { transform: none; }
  .ticket-featured:hover { transform: translateY(-3px); }
  .ticket-ribbon { display: none; }
}

/* ---- FAQ ---- */
.faq-wrap {
  padding: 80px 0;
}
@media (min-width: 900px) {
  .faq-wrap { padding: 100px 0; }
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
  }
}
.faq-col h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--teal-900);
  margin-bottom: 24px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq {
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  padding: 18px 22px;
}
.faq summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--terracotta-500);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq[open] summary::after {
  content: "+";
  transform: rotate(45deg);
}
.faq .ans {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 10px;
}

/* Trust card */
.trust-card {
  background: var(--card-gradient);
  border: var(--card-border);
  box-shadow: var(--shadow-heavy);
  border-radius: 20px;
  padding: 28px;
}
.trust-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 12px;
}
.trust-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.trust-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--teal-900);
  border-bottom: 1px solid rgba(19,42,45,.05);
}
.trust-list li:last-child { border-bottom: none; }
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 2px;
  background: var(--terracotta-500);
  border-radius: 2px;
}
.trust-sources {
  border-top: 1px solid rgba(19,42,45,.08);
  padding-top: 20px;
}
.trust-sources .eyebrow { margin-bottom: 10px; }
.source-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.source-links a {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.45;
  color: var(--terracotta-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.source-links a:hover {
  color: var(--terracotta-500);
}

/* ---- FINAL CALL ---- */
.final {
  padding: 40px 0 80px;
}
@media (min-width: 900px) {
  .final { padding: 60px 0 100px; }
}
.final-card {
  background-image: url('assets/final-wave.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
  padding: 80px 32px 72px;
  text-align: center;
  position: relative;
}
@media (min-width: 900px) {
  .final-card { padding: 110px 48px 100px; }
}
.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,42,45,.15) 0%, rgba(19,42,45,.55) 100%);
}
.final-card > * { position: relative; z-index: 1; }
.final-card .eyebrow {
  color: var(--sun-300);
  margin-bottom: 16px;
}
.final-card h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.final-card h2 em {
  font-style: normal;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-card > p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- VENUE ---- */
.venue-section {
  padding: 0 0 84px;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.venue-copy {
  max-width: 720px;
}

.venue-copy h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--teal-900);
  margin-bottom: 14px;
}

.venue-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 22px;
}

.venue-note {
  font-size: 14px;
  color: var(--ink-faint);
}

/* ---- FOOTER ---- */
.foot {
  border-top: 1px solid rgba(19,42,45,.08);
  padding: 28px 0 40px;
}
.foot-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 0;
}
.foot-sub {
  font-size: 12px;
  color: var(--ink-faint);
  padding-top: 4px;
}

.foot-social {
  justify-content: center;
  padding-top: 10px;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--terracotta-600);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(19,42,45,.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-1px);
  color: var(--terracotta-500);
  background: rgba(255,255,255,.9);
}

/* ---- MOBILE POLISH ---- */
@media (max-width: 899px) {
  .hero-text {
    display: contents;
  }

  .hero-text > .eyebrow {
    order: 1;
  }

  .hero-text > h1 {
    order: 2;
  }

  .hero-media {
    order: 3;
  }

  .hero-text > .hero-meta {
    order: 4;
  }

  .hero-text > .lede {
    order: 5;
  }

  .hero-text > .hero-body {
    order: 6;
  }

  .hero-text > .hero-cta-row {
    order: 7;
  }

  .inner,
  .nav-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-inner {
    height: 58px;
    gap: 12px;
  }

  .nav-logo {
    font-size: 14px;
    gap: 8px;
    min-width: 0;
  }

  .nav-logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn.btn-sm {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
    flex-shrink: 0;
  }

  .mobile-nav summary {
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .hamburger-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(19,42,45,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    flex-shrink: 0;
  }

  .hamburger-btn span {
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background: var(--teal-900);
    border-radius: 999px;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 36px));
    background: rgba(251,246,236,.98);
    border: 1px solid rgba(19,42,45,.08);
    border-radius: 22px;
    box-shadow: 0 18px 40px -24px rgba(19,42,45,.35);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 160;
  }

  .mobile-menu-panel a {
    display: block;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.72);
    color: var(--teal-900);
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-nav:not([open]) .mobile-menu-panel {
    display: none;
  }

  .btn-sm {
    padding: 10px 14px;
    font-size: 13px;
  }

  .revenue-banner {
    padding: 10px 18px 0;
  }

  .revenue-banner-inner {
    border-radius: 20px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero {
    padding: 28px 0 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-text h1 {
    font-size: clamp(42px, 14vw, 58px);
    line-height: 0.96;
    margin-bottom: 12px;
  }

  .hero-meta {
    font-size: 14px;
    gap: 4px 6px;
    margin-bottom: 14px;
  }

  .lede {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hero-body {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-cta-row {
    gap: 12px;
    margin-top: 22px;
    align-items: flex-start;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .hero-note {
    width: 100%;
    font-size: 13px;
  }

  .hero-image-card {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .hero-stamp {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    font-size: 10px;
    padding: 6px 10px;
  }

  .hero-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 12px;
    align-items: flex-end;
  }

  .caption-venue {
    font-size: 13px;
  }

  .caption-date {
    font-size: 16px;
  }

  .caption-coords {
    display: none;
  }

  .why,
  .day,
  .how,
  .tickets,
  .faq-wrap {
    padding: 56px 0;
  }

  .why-head h2,
  .day-text h2,
  .how-text h2,
  .tickets-intro h2,
  .faq-col h2,
  .final-card h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .times-col-heading,
  .times-left h2,
  .times-right h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .why-body p,
  .newsletter-card > p,
  .trust-card > p {
    font-size: 15px;
  }

  .stat-card,
  .newsletter-card,
  .trust-card,
  .ticket-card {
    border-radius: 18px;
  }

  .stat-card,
  .newsletter-card,
  .trust-card,
  .ticket-card,
  .faq,
  .timeline-item,
  .step-card,
  .sched-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .timeline-item {
    grid-template-columns: 68px 1fr;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .tl-time {
    font-size: 10px;
  }

  .tl-label {
    font-size: 15px;
  }

  .tl-desc,
  .faq .ans {
    font-size: 14px;
  }

  .day-strip {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .day-strip img {
    width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow-heavy);
  }

  .step-card {
    gap: 12px;
    font-size: 15px;
  }

  .steps,
  .faq-list,
  .timeline,
  .ticket-grid {
    gap: 12px;
  }

  .newsletter-card h3,
  .trust-card h3 {
    font-size: 26px;
  }

  .sched-card {
    border-radius: 18px;
    padding: 16px 18px;
  }

  .times-cta {
    border-radius: 18px;
    padding: 24px 18px;
    margin-top: 20px;
  }

  .times-cta-body {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .times-cta-action .btn {
    width: 100%;
    text-align: center;
  }

  .times-cta h3 {
    font-size: 22px;
  }

  .tickets-intro {
    margin-bottom: 28px;
  }

  .ticket-card {
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .ticket-price {
    font-size: clamp(42px, 14vw, 56px);
    margin-bottom: 12px;
  }

  .ticket-card > p {
    margin-bottom: 16px;
  }

  .ticket-card .btn {
    width: 100%;
  }

  .final {
    padding: 28px 0 64px;
  }

  .final-card {
    padding: 58px 20px 54px;
    border-radius: 22px;
  }

  .final-card > p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .final-card .btn {
    width: 100%;
    max-width: 320px;
  }

  .venue-section {
    padding: 0 0 56px;
  }

  .venue-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .venue-actions {
    align-items: flex-start;
  }

  .venue-actions .btn {
    width: 100%;
  }


  .foot {
    padding: 24px 0 34px;
  }

  .foot-row,
  .foot-sub {
    justify-content: center;
    text-align: center;
  }
}
