:root {
  --black: #06164d;
  --ink: #111a3f;
  --yellow: #d71920;
  --yellow-dark: #001f5b;
  --white: #ffffff;
  --paper: #f4f7fb;
  --line: rgba(6, 22, 77, 0.16);
  --shadow: 0 22px 60px rgba(0, 31, 91, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.locked {
  overflow: hidden;
}

body.locked .site-header,
body.locked main,
body.locked .site-footer {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
  background: #000;
}

body.locked .password-gate {
  display: grid;
}

.password-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(100%, 360px);
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.password-card .gate-error {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  color: #fff;
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(6, 22, 77, 0.96);
  color: var(--white);
  border-bottom: 4px solid var(--yellow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.brand-logo {
  display: block;
  width: 92px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border: 2px solid var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  flex: 1;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yellow);
}

.nav-cta,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid transparent;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary,
button {
  color: var(--white);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--black);
}

.button.secondary {
  color: var(--white);
  background: rgba(11, 11, 11, 0.78);
  border-color: var(--yellow);
  box-shadow: 6px 6px 0 var(--yellow);
}

.full-button {
  width: 100%;
}

.nav-cta:hover,
.button:hover,
button:hover {
  transform: translate(-2px, -2px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(52px, 8vw, 92px) clamp(20px, 6vw, 78px) 110px;
  color: var(--white);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 22, 77, 0.92) 0%, rgba(6, 22, 77, 0.68) 38%, rgba(6, 22, 77, 0.2) 78%),
    linear-gradient(0deg, rgba(6, 22, 77, 0.76), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-logo {
  display: block;
  width: min(100%, 520px);
  margin: 0 0 22px;
  background: var(--white);
  border: 4px solid var(--white);
  box-shadow: 8px 8px 0 var(--yellow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--yellow-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(72px, 12vw, 150px);
}

h2 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 86px);
}

h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.event-strip {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 28px;
  left: clamp(18px, 5vw, 70px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 2px solid var(--yellow);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.event-strip span {
  min-height: 88px;
  padding: 16px;
  color: var(--white);
  background: var(--black);
  font-weight: 800;
  text-transform: uppercase;
}

.event-strip strong {
  display: block;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.event-strip .price-cut {
  font-family: Inter, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.65);
  text-decoration-line: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--yellow);
}

.band,
.split-section,
.hall-section,
.registration-hero,
.registration-embed,
.travel,
.site-footer {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 78px);
}

.band {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.light h2 {
  color: var(--white);
}

.intro-grid,
.schedule-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.schedule-grid article,
details {
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 7px 7px 0 var(--yellow);
}

.intro-grid h3,
.schedule-grid h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

.intro-grid p,
.schedule-grid p,
.register-panel p,
.travel p,
.yellow-card p,
.hall-details p,
details p {
  margin: 0;
  color: #4b4b4b;
  font-weight: 600;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.split-section.reverse {
  background: var(--paper);
}

.registration-lite {
  align-items: start;
}

.registration-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.68)),
    url("daytona-pier-ocean.jpeg") center / cover;
  border-bottom: 5px solid var(--yellow);
}

.registration-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(56px, 10vw, 118px);
}

.registration-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 800;
}

.registration-embed {
  background: var(--paper);
}

.registration-embed iframe {
  display: block;
  width: 100%;
  min-height: 1450px;
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 10px 10px 0 var(--yellow);
}

.embed-fallback {
  display: grid;
  gap: 14px;
  justify-items: start;
  margin-top: 22px;
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--black);
}

.embed-fallback p {
  margin: 0;
  color: #4b4b4b;
  font-weight: 800;
}

#exhibit .register-panel {
  grid-column: 1 / -1;
}

.register-panel p {
  max-width: 690px;
  margin-top: 18px;
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}

.steps span {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  height: 36px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.signup-card {
  padding: clamp(22px, 4vw, 34px);
  background: var(--black);
  color: var(--white);
  border: 5px solid var(--yellow);
  box-shadow: var(--shadow);
}

.form-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.form-top h3 {
  font-size: 38px;
}

.form-top span {
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.attendee-type,
.registration-price,
.selected-booth {
  display: grid;
  gap: 6px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.attendee-type span,
.registration-price span,
.selected-booth span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.attendee-type strong,
.registration-price strong,
.selected-booth strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.registration-price s {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--black);
  background: var(--white);
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
}

input:focus,
select:focus {
  outline: 3px solid var(--yellow);
}

.fine-print {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hall-section {
  background: var(--black);
  color: var(--white);
}

.hall-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: stretch;
}

.hall-board {
  background: var(--white);
  border: 4px solid var(--yellow);
  box-shadow: var(--shadow);
}

.hall-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(14, minmax(38px, 1fr));
  grid-template-rows: 34px repeat(19, 34px);
  gap: 6px;
  min-width: 860px;
  padding: 18px 18px 30px 104px;
  background:
    linear-gradient(90deg, transparent 0 91px, var(--black) 91px 95px, transparent 95px),
    linear-gradient(180deg, transparent 0 92%, var(--black) 92% calc(92% + 4px), transparent calc(92% + 4px));
}

.concessions {
  position: absolute;
  left: 28px;
  top: 50%;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}

.map-title,
.map-entrance,
.walkway,
.booth {
  display: grid;
  place-items: center;
  color: var(--black);
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid var(--black);
}

.map-title {
  grid-column: 1 / -1;
  grid-row: 1;
  background: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.map-entrance {
  grid-column: 1 / span 4;
  grid-row: 19 / span 2;
  align-content: center;
  background: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
  font-size: 12px;
  line-height: 1.1;
}

.walkway {
  min-height: 20px;
  background: repeating-linear-gradient(
    90deg,
    rgba(11, 11, 11, 0.12) 0 8px,
    transparent 8px 18px
  );
  border: 0;
}

.booth {
  min-height: 34px;
  padding: 4px;
  line-height: 1;
}

.b-10 {
  background: #8fe7e4;
}

.b-20 {
  background: #ffd874;
}

.b-30 {
  background: #f3bd82;
}

.b-40 {
  background: #bfd0b6;
}

.b-60 {
  background: #ff747c;
}

.b-70 {
  background: #edc1c0;
}

.b-90 {
  background: #e8b0b5;
}

.map-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 15px 18px 18px;
  color: var(--black);
  border-top: 3px solid var(--black);
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-legend i {
  display: inline-block;
  width: 22px;
  height: 16px;
  flex: 0 0 22px;
  border: 2px solid var(--black);
}

.hall-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 28px;
  background: #191919;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.hall-details h3 {
  font-size: 44px;
}

.hall-details p {
  color: rgba(255, 255, 255, 0.76);
}

.hall-details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.price-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--black);
}

.price-grid strong,
.price-grid span {
  display: block;
  overflow-wrap: anywhere;
}

.price-grid span {
  margin-top: 5px;
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.price-grid s {
  margin-right: 8px;
  color: #777;
  font-size: 14px;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--yellow-dark);
}

.price-grid button,
.price-grid .booth-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: 2px;
  padding: 0 14px;
  color: var(--black);
  background: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
}

.exhibitor-note {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
}

.yellow-card {
  padding: clamp(26px, 5vw, 42px);
  background: var(--yellow);
  border: 3px solid var(--black);
  box-shadow: 10px 10px 0 var(--black);
}

.yellow-card p {
  margin-top: 16px;
  color: var(--black);
  font-size: 18px;
}

.yellow-card a {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 4px solid var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.sponsorship-section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 78px);
  color: var(--white);
  background: var(--black);
}

.sponsorship-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.sponsor-package-grid,
.sponsor-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sponsor-package,
.sponsor-list-grid article {
  padding: 20px;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--yellow);
}

.sponsor-package.featured {
  grid-column: 1 / -1;
  color: var(--black);
  background: var(--yellow);
  border-color: var(--white);
}

.sponsor-package span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-package h3,
.sponsor-list-grid h3 {
  font-size: 34px;
}

.sponsor-package strong {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.sponsor-package p {
  margin: 6px 0 12px;
  color: #444;
  font-weight: 900;
}

.sponsor-package ul,
.sponsor-list-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #333;
  font-weight: 750;
}

.sponsor-list-grid {
  margin-top: 14px;
}

.sponsor-list-grid article {
  background: #f7f7f7;
}

.sponsor-form {
  position: sticky;
  top: 98px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: #151515;
  border: 5px solid var(--yellow);
  box-shadow: var(--shadow);
}

.pie-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 78px);
  background: var(--paper);
}

.pie-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 700;
}

.pie-card {
  display: block;
  border: 5px solid var(--black);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--yellow);
  overflow: hidden;
}

.pie-card img {
  display: block;
  width: 100%;
  height: clamp(520px, 58vw, 720px);
  object-fit: cover;
}

.family-section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 78px);
  background: var(--white);
}

.family-card {
  max-width: 980px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--black);
  background: var(--yellow);
  border: 4px solid var(--black);
  box-shadow: 10px 10px 0 var(--black);
}

.family-card h3 {
  font-size: clamp(34px, 5vw, 56px);
}

.family-card p {
  max-width: 860px;
  margin: 16px 0 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.competition-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 78px);
  color: var(--white);
  background: var(--black);
}

.competition-section.fun-section {
  grid-template-columns: minmax(0, 1fr);
}

.competition-section.fun-section .competition-copy {
  max-width: 1080px;
}

.competition-section.fun-section .competition-copy p {
  max-width: 940px;
}

.competition-copy .eyebrow {
  color: var(--yellow);
}

.competition-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 700;
}

.competition-copy strong {
  color: var(--yellow);
}

.booking-panel {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 78px);
  background: var(--black);
}

.booking-card {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: #151515;
  border: 5px solid var(--yellow);
  box-shadow: var(--shadow);
}

.booking-card .form-top {
  align-items: center;
}

.booking-card .icon-close {
  width: 42px;
  min-height: 42px;
  padding: 0;
  color: var(--black);
  background: var(--yellow);
  box-shadow: none;
  font-size: 18px;
}

.schedule-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.schedule-grid time {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 9px;
  color: var(--black);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.things-section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 78px);
  background: var(--yellow);
}

.things-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  max-width: 1040px;
  padding: clamp(26px, 5vw, 48px);
  color: var(--black);
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 10px 10px 0 var(--black);
}

.things-card h2 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 86px);
}

.things-card p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #343434;
  font-size: 18px;
  font-weight: 800;
}

.things-card .button {
  margin-top: 26px;
}

.race-card {
  overflow: hidden;
  margin: 0;
  background: var(--black);
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--yellow);
}

.race-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.race-card figcaption {
  padding: 12px 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  min-height: 520px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.55)),
    url("daytona-pier-ocean.jpeg") center / cover;
}

.travel p {
  max-width: 690px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.venue-card {
  padding: 30px;
  color: var(--black);
  background: var(--yellow);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.venue-card span,
.venue-card strong,
.venue-card p {
  display: block;
}

.venue-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-card strong {
  margin: 8px 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
}

.venue-card p {
  margin: 8px 0 0;
  color: var(--black);
}

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

details {
  box-shadow: none;
}

summary {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

details p {
  margin-top: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--black);
  border-top: 4px solid var(--yellow);
}

.site-footer strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.site-footer p a {
  color: var(--yellow);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

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

  .event-strip,
  .intro-grid,
  .split-section,
  .hall-wrap,
  .pie-section,
  .pie-card,
  .competition-section,
  .sponsorship-wrap,
  .schedule-grid,
  .things-card,
  .travel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: clamp(42px, 8vw, 72px);
  }

  .hero-content {
    padding-top: clamp(36px, 7vw, 62px);
  }

  .event-strip {
    position: relative;
    inset: auto;
    margin-top: 34px;
  }

  .hall-board {
    overflow-x: auto;
  }

  .hall-map {
    min-width: 820px;
  }

  .map-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 0;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    width: 100%;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 0;
    font-size: 11px;
    text-align: center;
  }

  .main-nav a {
    display: grid;
    place-items: center;
    min-height: 34px;
    padding: 5px 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-cta {
    width: 100%;
    min-height: 40px;
  }

  .hero {
    padding: 34px 16px 36px;
  }

  .hero-content {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  h3 {
    font-size: clamp(27px, 9vw, 36px);
  }

  .hero-copy {
    margin: 18px 0 22px;
    font-size: 17px;
  }

  .button,
  button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
    box-shadow: 4px 4px 0 var(--black);
  }

  .event-strip {
    margin-top: 26px;
  }

  .event-strip span {
    min-height: 0;
    padding: 13px;
  }

  .event-strip strong {
    font-size: 30px;
  }

  .event-strip .price-cut {
    font-size: 23px;
  }

  .hero-actions,
  .button,
  button,
  .site-footer {
    width: 100%;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-grid div {
    padding: 14px;
  }

  .sponsor-package-grid,
  .sponsor-list-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-form {
    position: static;
  }

  .pie-card img {
    min-height: 260px;
  }

  .hall-map {
    min-width: 760px;
    grid-template-columns: repeat(14, 42px);
    padding-left: 88px;
  }

  .concessions {
    left: 16px;
    font-size: 23px;
  }

  .map-legend {
    grid-template-columns: 1fr;
  }
}
