/* ============================================
   SOMALI WEEK MN — Shared styles
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette — Somali flag blue + cream + gold */
  --blue-deep: #0B2654;     /* nav, dark sections */
  --blue: #4189DD;          /* Somali flag blue */
  --blue-mid: #2D6BBE;
  --blue-light: #BFD8F3;
  --blue-pale: #EEF4FC;
  --gold: #D4A23A;          /* primary accent */
  --gold-dark: #A37A21;
  --gold-light: #ECC974;
  --gold-pale: #F6E6B7;
  --red: #C53030;           /* Somali accent red */
  --ink: #0A0E18;
  --ink-soft: #1A2030;
  --cream: #FAF6EE;
  --cream-warm: #F4ECD9;
  --paper: #FFFCF4;
  --muted: #6B6F7B;
  --line: rgba(11,38,84,0.12);
  --line-light: rgba(11,38,84,0.06);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ---------- TYPE ---------- */
.display, h1, h2, h3 { font-family: 'Archivo Black', sans-serif; letter-spacing: -0.01em; line-height: 0.95; }
.italic-display { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; letter-spacing: -0.01em; }
.script { font-family: 'Caveat', cursive; font-weight: 700; letter-spacing: 0; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-deep);
}

/* ---------- UTILITY BAR ---------- */
.util-bar {
  background: var(--blue-deep); color: #fff; font-size: 12px;
  letter-spacing: 0.06em;
}
.util-inner {
  max-width: 1480px; margin: 0 auto; padding: 10px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.util-left { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.util-left b { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.util-left .dot { opacity: 0.4; }
.util-right { display: flex; gap: 18px; align-items: center; }
.util-right a { color: rgba(255,255,255,0.85); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.util-right a:hover { color: var(--gold-light); }
.util-socials { display: flex; gap: 12px; align-items: center; line-height: 0; }
.util-socials a { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; line-height: 0; flex: 0 0 24px; }
.util-socials svg { width: 14px; height: 14px; display: block; fill: rgba(255,255,255,0.85); transition: fill .15s; }
.util-socials a:hover svg { fill: var(--gold-light); }

/* ---------- NAV ---------- */
nav.main-nav {
  position: sticky; top: 0; z-index: 90;
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1480px; margin: 0 auto; padding: 10px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: #fff; }
.nav-logo-mark {
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue-deep);
  display: grid; place-items: center; position: relative;
  border: 2px solid var(--gold);
}
.nav-logo-mark::after {
  content: '★'; color: #fff; font-size: 22px; line-height: 1;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.05;
}
.nav-logo-text .l1 { font-family: 'Archivo Black', sans-serif; font-size: 17px; letter-spacing: -0.005em; color: #fff; }
.nav-logo-text .l2 { font-family: 'Caveat', cursive; font-size: 17px; color: var(--gold-light); margin-top: -2px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.82); text-decoration: none; position: relative; padding: 4px 0;
  transition: color .15s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold-light); transition: width .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex; gap: 4px; align-items: center;
  padding: 4px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 30px rgba(11,38,84,0.08);
}
.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger:hover { border-color: var(--gold-light); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; text-decoration: none; transition: all .2s;
  border: none; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn-blue { background: var(--blue-deep); color: #fff; }
.btn-blue:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--paper); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--blue-deep); padding: 10px 0; letter-spacing: 0.16em; }
.btn-ghost:hover { color: var(--gold-dark); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.main-nav .nav-cta .btn {
  min-height: 36px; padding: 9px 14px; border: 0;
  border-radius: 999px; background: transparent; color: var(--blue-deep);
  font-size: 11px; letter-spacing: 0.08em;
}
.main-nav .nav-cta .btn-outline-dark:hover {
  background: var(--blue-pale); color: var(--blue-deep);
  transform: none;
}
.main-nav .nav-cta .btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ink); box-shadow: 0 8px 18px rgba(212,162,58,0.24);
}
.main-nav .nav-cta .btn-primary:hover {
  background: var(--blue-deep); color: #fff;
  box-shadow: 0 10px 22px rgba(11,38,84,0.22);
}

/* ---------- SECTION SCAFFOLD ---------- */
section { padding: 110px 0; position: relative; }
.container { max-width: 1480px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 36px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(44px, 5.4vw, 88px); line-height: 0.95;
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: 18px;
}
.section-title em {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  color: var(--blue-deep); letter-spacing: -0.01em;
}
.section-title .script {
  font-family: 'Caveat', cursive; font-weight: 700; font-style: normal;
  color: var(--gold-dark); font-size: 0.9em;
}
.section-sub {
  font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 580px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--blue-deep); color: rgba(255,255,255,0.7);
  padding: 90px 0 32px; position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 50%, var(--red) 100%);
}
footer .footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  display: block;
}
footer .footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(4, minmax(140px, 1fr));
  gap: 44px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer .footer-brand {
  min-width: 0;
}
.footer-brand .nav-logo-text .l1 { color: #fff; }
.footer-brand .nav-logo-text .l2 { color: var(--gold-light); }
.footer-brand .nav-logo-mark { border-color: var(--gold); }
.footer-brand p {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6);
  margin-top: 22px; max-width: 320px;
}
footer .footer-col {
  min-width: 0;
}
footer .footer-col-title {
  font-family: 'Archivo Black', sans-serif; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
footer .footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; margin-bottom: 12px; transition: color .15s;
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-newsletter input {
  width: 100%; padding: 12px 14px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 2px;
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter button {
  width: 100%; padding: 12px; background: var(--gold); color: var(--ink);
  border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background .15s;
}
.footer-newsletter button:hover { background: var(--gold-light); }
footer .footer-bottom {
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
footer .footer-bottom div { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
footer .footer-bottom .gold { color: var(--gold-light); }
.footer-socials { display: flex; gap: 12px; align-items: center; line-height: 0; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center; transition: background .15s;
  line-height: 0; flex: 0 0 34px;
}
.footer-socials a:hover { background: var(--gold); }
.footer-socials svg { width: 14px; height: 14px; display: block; fill: rgba(255,255,255,0.8); }
.footer-socials a:hover svg { fill: var(--ink); }

@media (max-width: 1100px) {
  footer .footer-top {
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(150px, 1fr));
    gap: 34px;
  }
}

@media (max-width: 760px) {
  footer {
    padding: 70px 0 28px;
  }
  footer .footer-inner {
    padding: 0 22px;
  }
  footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
    text-align: left;
  }
  footer .footer-brand {
    grid-column: 1 / -1;
  }
  footer .footer-brand p {
    max-width: 100%;
  }
  footer .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  footer .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--gold); overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--gold-dark); border-bottom: 1px solid var(--gold-dark);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap; animation: tickerScroll 50s linear infinite;
}
.ticker-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); padding: 0 30px; flex-shrink: 0;
}
.ticker-dot { color: var(--blue-deep); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative; padding: 110px 0 90px;
  background: var(--blue-deep); color: #fff; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 30%, rgba(65,137,221,0.35) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(212,162,58,0.18) 0%, transparent 50%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .crumbs {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.page-hero .crumbs a { color: var(--gold-light); text-decoration: none; }
.page-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(52px, 7vw, 120px); line-height: 0.92; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-hero h1 em {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500;
  color: var(--gold-light); letter-spacing: -0.01em;
}
.page-hero .script {
  font-family: 'Caveat', cursive; font-weight: 700; font-style: normal;
  color: var(--gold-light); font-size: 0.7em; display: block; margin-top: 8px;
}
.page-hero p.lede {
  font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 640px;
}

/* ---------- TWEAKS HOOK ---------- */
[data-tweak-hidden="true"] { display: none !important; }

/* Live Lake Street booth map shared by home and vendor pages */
.map-sec.live-map-sec,
.map-section.live-map-sec {
  background: var(--blue-deep, #0B2654);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.map-sec.live-map-sec::before,
.map-section.live-map-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.live-map-sec .map-section-inner,
.live-map-sec .container { position: relative; z-index: 1; }
.live-map-sec .section-title { color: #fff; }
.live-map-sec .section-title em { color: var(--gold-light, #ECC974); }
.live-map-sec .section-eyebrow { color: var(--gold-light, #ECC974); }
.live-map-sec .section-eyebrow::before { background: var(--gold, #D4A23A); }
.live-map-sec .section-sub,
.live-map-sec .map-head p { color: rgba(255,255,255,0.75); }
.live-map-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.live-map-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.live-map-tabs .pub-ev-tab { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.04); }
.live-map-tabs .pub-ev-tab.active { background: var(--gold, #D4A23A); border-color: var(--gold, #D4A23A); color: #0A0E18; }
.live-map-stats { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.live-lake-st {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}
.live-lake-st-label {
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}
.live-lake-map { position: relative; padding: 58px 0 26px; min-height: 360px; }
.live-side-note { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 10px; }
.live-side-note.south { margin: 10px 0 0; }
.live-booth-row { display: flex; gap: 10px; align-items: center; min-height: 82px; overflow-x: auto; padding: 4px 2px 8px; scrollbar-color: rgba(255,255,255,0.28) transparent; }
.live-booth-row .tc {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  color: #0A0E18;
  gap: 0;
  justify-content: center;
}
.live-booth-row .tc:hover { transform: translateY(-4px) scale(1.04); }
.live-booth-row .tc .tcico,
.live-booth-row .tc .tcsta { display: none; }
.live-booth-row .tc .tcnum { color: inherit; font-size: 10px; letter-spacing: 0.08em; }
.live-booth-row .tc .tcnam { max-width: 50px; color: inherit; font-size: 7px; margin-top: 2px; }
.live-booth-row .tc .tc-tables { position: absolute; left: 5px; right: 5px; bottom: 5px; justify-content: center; }
.live-booth-row .tc .tc-table { width: 18px; height: 12px; line-height: 10px; font-size: 7px; background: rgba(255,255,255,0.55); border-color: rgba(0,0,0,0.2); color: #0A0E18; }
.live-booth-row .tc .tc-table.held { background: #FCA5A5; border-color: #DC2626; }
.live-booth-row .tc .tc-table.mine { background: #ECC974; border-color: #D4A23A; }
.live-booth-row .tc.avail-vendor,
.live-booth-row .tc.avail-community,
.live-booth-row .tc.partial { background: #D4A23A; border-color: #ECC974; }
.live-booth-row .tc.avail-sponsor { background: #ECC974; border-color: #F6E6B7; }
.live-booth-row .tc.full-tent,
.live-booth-row .tc.vendor.full-tent,
.live-booth-row .tc.sponsor.full-tent,
.live-booth-row .tc.community.full-tent { background: #6B7280; color: #fff; border-color: rgba(255,255,255,0.25); }
.live-booth-row .tc.pending.full-tent { background: #F59E0B; color: #111827; }
.live-booth-row .tc.vip,
.live-booth-row .tc.avail-reserved { background: #C53030; color: #fff; border-color: #FCA5A5; }
.live-booth-row .tc.stage-c { background: #4189DD; color: #fff; border-color: #BFD8F3; width: 82px; min-width: 82px; }
.live-street-band {
  height: 84px;
  margin: 10px 0;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 22px;
}
.live-street-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px dashed rgba(255,255,255,0.32);
}
.live-street-band strong { font-family: 'Archivo Black', sans-serif; font-size: 14px; color: rgba(255,255,255,0.45); letter-spacing: 0.14em; z-index: 1; }
.live-cross-labels { display: flex; justify-content: space-between; font-family: 'Archivo Black', sans-serif; font-size: 12px; color: rgba(255,255,255,0.62); letter-spacing: 0.08em; margin-bottom: 10px; }
.live-map-sec .booth-legend { display: flex; gap: 24px; margin-top: 20px; font-size: 12px; flex-wrap: wrap; }
.live-map-sec .booth-legend .item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.72); }
.live-map-sec .booth-legend .sw { width: 16px; height: 16px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.25); }
@media (max-width: 760px) {
  .map-sec.live-map-sec, .map-section.live-map-sec { padding: 72px 0; }
  .live-lake-st { padding: 22px 16px; }
  .live-lake-map { min-height: 310px; padding-top: 50px; }
  .live-booth-row { gap: 8px; }
  .live-booth-row .tc { width: 52px; min-width: 52px; height: 54px; }
}
.live-booth-row .tc {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.live-booth-row .tcnum,
.live-booth-row .tcico,
.live-booth-row .tcnam,
.live-booth-row .tcsta { pointer-events: none; }
.live-booth-row .tc-tables { display: flex; gap: 3px; }
.live-map-sec .map-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .live-map-sec .map-head { grid-template-columns: 1fr; gap: 20px; }
}

/* Use the official uploaded logo instead of the mockup star mark */
.nav-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid var(--gold);
  display: block;
}
img.nav-logo-mark::after { content: none; }

/* Guest gate for live booth maps */
.live-lake-st { position: relative; }
.live-lake-st.live-map-locked .live-lake-map,
.live-lake-st.live-map-locked .booth-legend,
.live-lake-st.live-map-locked .price-grid,
.live-lake-st.live-map-locked .reserve-btn {
  filter: blur(2.5px);
  opacity: 0.58;
  pointer-events: none;
  user-select: none;
}
.map-login-gate {
  display: none;
  position: absolute;
  inset: 24px;
  z-index: 8;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.live-lake-st.live-map-locked .map-login-gate { display: flex; }
.map-login-gate-card {
  max-width: 460px;
  background: rgba(255,252,244,0.96);
  color: var(--ink, #0A0E18);
  border: 1px solid rgba(212,162,58,0.42);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  border-radius: 6px;
  padding: 28px;
}
.map-login-gate-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--blue-deep, #0B2654);
}
.map-login-gate-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted, #6B6F7B);
  margin-bottom: 18px;
}
.map-login-gate-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.portal-reservation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.portal-reservation-card {
  margin: 0;
}

.portal-reservation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.portal-reservation-sub {
  margin: 8px 0 14px;
  color: var(--g500);
  font-size: 12px;
}

.portal-booth-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  color: var(--g600);
  font-size: 13px;
}

.portal-booth-list {
  display: grid;
  gap: 8px;
}

.portal-booth-line {
  display: grid;
  gap: 2px;
  border: 1px solid var(--g200);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
}

.portal-booth-line strong {
  color: var(--navy);
}

.portal-booth-line span {
  color: var(--g500);
}

.volunteer-form input,
.volunteer-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
}

.volunteer-form input::placeholder,
.volunteer-form textarea::placeholder {
  color: rgba(255,255,255,0.58);
}

.volunteer-form input:focus,
.volunteer-form textarea:focus {
  border-color: var(--gold);
}

@media (max-width: 640px) {
  .map-login-gate { inset: 12px; padding: 12px; }
  .map-login-gate-card { padding: 22px 18px; }
}

/* ---------- Responsive hardening ---------- */
img, svg, video, canvas {
  max-width: 100%;
}

input, select, textarea, button {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .util-inner {
    align-items: flex-start;
  }

  .nav-inner {
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-logo {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 8px 10px;
  }

  .nav-cta {
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .nav-hamburger {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav .nav-links {
    display: none !important;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(255,255,255,0.14);
    background: var(--blue-deep);
    border-radius: 0 0 8px 8px;
  }

  .main-nav .nav-links.mobile-open {
    display: flex !important;
  }

  .main-nav .nav-links a {
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    white-space: normal;
    color: rgba(255,255,255,0.86);
    border-radius: 4px;
  }

  .main-nav .nav-links a::after {
    display: none;
  }

  .main-nav .nav-links a:hover,
  .main-nav .nav-links a.active {
    color: var(--gold-light);
    background: rgba(255,255,255,0.08);
  }

  .main-nav .nav-cta {
    display: none;
    position: static;
    order: 4;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-left: 0;
    padding: 0 12px 12px;
    background: var(--blue-deep);
    border: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
  }

  .main-nav.mobile-menu-open .nav-cta {
    display: grid;
  }

  .main-nav .nav-cta .btn {
    width: 100%;
    justify-content: center;
    border-color: rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.06);
  }

  .main-nav .nav-cta .btn-primary {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }

  .main-nav .nav-cta .btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
  }

  .main-nav .nav-cta .btn-primary:hover {
    background: var(--gold-light);
    color: var(--ink);
  }

  section {
    padding: 72px 0;
  }

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

  .util-inner {
    gap: 8px;
  }

  .util-left {
    gap: 10px;
  }

  .util-right {
    display: none;
  }

  .nav-inner {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .nav-logo-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .nav-logo-text .l1 {
    font-size: 14px;
  }

  .nav-logo-text .l2 {
    font-size: 15px;
  }

  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    gap: 10px;
    flex-wrap: wrap;
  }

  .section-eyebrow::before {
    width: 26px;
  }

  .section-title,
  .page-hero h1 {
    font-size: clamp(34px, 12vw, 52px);
    line-height: 1;
  }

  .section-sub,
  .page-hero p.lede {
    font-size: 15px;
  }

  .page-hero {
    padding: 72px 0 64px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .newsletter-form,
  .form-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .filter-bar {
    position: static;
  }

  .filter-inner {
    padding-left: 18px;
    padding-right: 18px;
    gap: 12px;
  }

  .filter-search {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .event-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .event-row-date {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
    padding: 0 0 12px !important;
    flex-direction: row !important;
    gap: 10px;
    align-items: baseline !important;
  }

  .event-row-date .day {
    font-size: 42px !important;
  }

  .event-row-img {
    width: 100%;
  }

  .event-row-body {
    padding: 0 !important;
  }

  .event-row-name {
    font-size: 24px !important;
  }

  .event-row-cta {
    align-items: stretch !important;
  }

  .v-stats-grid,
  .tiers-grid,
  .perks-grid,
  .timeline,
  .reach-grid,
  .pkg-grid,
  .lower-grid,
  .test-grid,
  .cta-grid,
  .wall-row.title,
  .wall-row.platinum,
  .wall-row.gold,
  .wall-row.silver,
  .wall-row.community {
    grid-template-columns: 1fr !important;
  }

  .v-stat,
  .reach-cell {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-light);
    padding: 24px 18px;
  }

  .tier-card,
  .pkg,
  .form-card,
  .cta-contact,
  .test-card {
    padding: 24px 20px;
  }

  .form-grid,
  .form-row,
  .map-head,
  .map-grid {
    grid-template-columns: 1fr !important;
  }

  .lake-st,
  .live-lake-st {
    padding: 22px 14px;
    overflow-x: auto;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(5"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:1.4fr"],
  [style*="grid-template-columns: 1.4fr"] {
    grid-template-columns: 1fr !important;
  }

  .footer-socials {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .nav-cta {
    grid-template-columns: 1fr;
  }

  .util-left span:not(:first-child),
  .util-left .dot {
    display: none;
  }

  footer .footer-inner,
  .container,
  .container-narrow {
    padding-left: 16px;
    padding-right: 16px;
  }
}
