:root {
  --ink: #171615;
  --paper: #fff8ef;
  --paper-2: #f5efe3;
  --tomato: #cf3f2f;
  --tomato-dark: #9f2d24;
  --teal: #126b68;
  --olive: #72823a;
  --gold: #f0b84f;
  --line: rgba(23, 22, 21, 0.14);
  --shadow: 0 20px 60px rgba(23, 22, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.ad-gate-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 220px minmax(420px, 1fr) 220px auto;
  align-items: center;
  gap: 34px;
  min-height: 154px;
  width: 100%;
  margin: 0;
  padding: 0 max(18px, calc((100vw - 1200px) / 2));
  color: var(--ink);
  background: white;
  border-bottom: 1px solid rgba(23, 22, 21, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 164px;
}

.brand img {
  width: 164px;
  height: 136px;
  object-fit: contain;
}

.main-nav,
.header-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav {
  justify-content: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a {
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a.is-active,
.site-footer a:hover {
  opacity: 1;
  color: var(--tomato);
}

.nav-ticket {
  color: var(--tomato);
}

.nav-home {
  color: var(--tomato);
}

.ticket-button,
.primary-button,
.notify-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: var(--tomato);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(207, 63, 47, 0.28);
}

.ticket-button:hover,
.primary-button:hover,
.notify-form button:hover {
  background: var(--tomato-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
}

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

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher {
  position: relative;
  display: inline-flex;
}

.language-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 35;
  display: none;
  min-width: 98px;
  padding: 22px 0;
  background: white;
  box-shadow: 0 16px 34px rgba(23, 22, 21, 0.1);
  transform: translateX(-50%);
}

.language-switcher.is-open .language-menu {
  display: block;
}

.language-menu a {
  display: block;
  padding: 12px 22px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  color: var(--tomato);
  outline: 0;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 2048 / 745;
  min-height: 0;
  margin-top: 154px;
  padding: 0;
  overflow: hidden;
  color: white;
  background: #111;
}

.ad-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.ad-gate[hidden] {
  display: none;
}

.ad-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.38);
}

.ad-gate-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(500px, 100%);
  padding: 30px 28px 28px;
  border: 1px solid rgba(23, 22, 21, 0.16);
  border-radius: 8px;
  background: white;
  color: #202124;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.ad-gate-card[hidden] {
  display: none;
}

.ad-logo {
  color: #d72823;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.ad-logo span {
  display: inline-block;
  margin-left: 5px;
  padding: 0 5px 1px;
  border-radius: 999px;
  background: white;
  color: #d72823;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.34em;
  line-height: 1;
  vertical-align: middle;
}

.ad-gate-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.ad-gate-card p {
  width: min(360px, 100%);
  margin: 0 auto 8px;
  color: #909090;
  font-size: 16px;
  line-height: 1.25;
}

.ad-watch-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #c9ccd1;
  border-radius: 10px;
  background: white;
  color: #202124;
  text-align: left;
  cursor: pointer;
}

.ad-watch-button:hover,
.ad-watch-button:focus-visible {
  border-color: #2f56a5;
  outline: 0;
}

.ad-watch-button strong,
.ad-watch-button em {
  display: block;
  font-style: normal;
}

.ad-watch-button strong {
  margin-bottom: 3px;
  font-size: 17px;
  font-weight: 800;
}

.ad-watch-button em {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.2;
}

.ad-watch-button i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2f56a5;
}

.ad-watch-button i::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid white;
}

.ad-video-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(1220px, 94vw);
}

.ad-video-panel[hidden] {
  display: none;
}

.ad-video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: white;
  font-size: 18px;
  font-weight: 800;
}

.ad-video-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ad-video-close,
.ad-fullscreen {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid white;
  border-radius: 4px;
  background: white;
  color: #171615;
  font-weight: 800;
  cursor: pointer;
}

.ad-fullscreen {
  background: transparent;
  color: white;
}

.ad-video-close:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.ad-video-frame {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 18px solid #050505;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.ad-video,
.ad-embed-placeholder,
.ad-embed-placeholder iframe {
  width: 100%;
  height: 100%;
}

.ad-video {
  display: block;
  object-fit: contain;
  background: #050505;
}

.ad-embed-placeholder iframe {
  display: block;
  border: 0;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 122px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 900;
}

.secondary-button:hover {
  color: var(--gold);
}

.play-button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(70px, 6vw, 108px);
  height: clamp(70px, 6vw, 108px);
  border: 7px solid white;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 28px solid currentColor;
}

.video-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 150px clamp(20px, 8vw, 150px) 70px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(1210px, 100%);
}

.festival-video {
  display: block;
  width: 100%;
  max-height: 76vh;
  aspect-ratio: 16 / 9;
  border: 18px solid #050505;
  background: #050505;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.video-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: 34px;
  cursor: pointer;
}

body.video-open {
  overflow: hidden;
}

body.route-open {
  overflow: hidden;
}

.section,
.section-band,
.sponsor-announcement {
  padding: clamp(68px, 9vw, 122px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.route-modal {
  position: fixed;
  z-index: 55;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 120px 32px 42px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.route-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.route-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
}

.route-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  max-height: calc(100vh - 170px);
  padding: 20px 22px 24px;
  overflow: auto;
  border: 1px solid rgba(23, 22, 21, 0.12);
  background: white;
  box-shadow: 0 24px 70px rgba(23, 22, 21, 0.14);
}

.route-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.route-modal-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.route-modal-head button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  overflow: hidden;
  border: 1px solid #d6dee7;
  border-radius: 6px;
  background: white;
  color: #202124;
  text-align: left;
}

.route-card-media {
  position: relative;
  aspect-ratio: 16 / 8.4;
  background: #e7e7e7;
  overflow: hidden;
}

.route-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card-body {
  padding: 13px 15px 15px;
}

.route-card-body h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.route-address {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 3px 8px;
  border: 1px solid #dfe3e9;
  border-radius: 8px;
  background: #f3f5f8;
  color: #69717d;
  font-size: 13px;
  font-weight: 800;
}

.route-card-body p {
  margin: 0 0 6px;
  color: #202124;
  font-size: 14px;
  line-height: 1.25;
}

.route-phone {
  color: #606770;
}

.route-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.route-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid #dfe3e9;
  border-radius: 4px;
  color: #2f56a5;
  font-size: 12px;
  font-weight: 800;
}

.route-card-actions a:empty {
  display: none;
}

.route-directions {
  border-color: #f0b84f;
  color: #171615;
  background: #fff7e8;
}

.route-action-icon:empty {
  display: none;
}

.route-directions .route-action-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0b84f;
  color: #171615;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.sponsor-announcement {
  position: relative;
  background: #e8e8df;
  color: var(--ink);
  text-align: center;
}

.sponsor-announcement::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background-image: linear-gradient(90deg, var(--ink) 0 18px, transparent 18px 38px);
  background-size: 38px 3px;
}

.announcement-inner {
  display: grid;
  justify-items: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 54px;
}

.partner-logo {
  display: grid;
  place-items: center;
  justify-items: center;
  width: 2.5cm;
  height: 2.5cm;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 11pt;
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-logo.is-cover {
  overflow: hidden;
}

.partner-logo.is-cover img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.sponsor-announcement h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.announcement-copy {
  max-width: 1280px;
}

.announcement-copy p,
.section-heading p,
.ticket-grid p {
  color: rgba(23, 22, 21, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.announcement-copy p {
  margin-bottom: 20px;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.55;
  color: rgba(23, 22, 21, 0.88);
}

.participants-section {
  padding: 88px clamp(18px, 5vw, 72px) 120px;
  background: white;
  color: #111;
  text-align: center;
}

.participants-inner {
  width: min(1280px, 100%);
}

.participants-section h2 {
  margin-bottom: 28px;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.participants-years {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.participants-year {
  position: relative;
  min-width: 92px;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(23, 22, 21, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(23, 22, 21, 0.64);
  font-family: "Liberation Sans", Arial, sans-serif;
  font-size: 12pt;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(23, 22, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.participants-year:hover,
.participants-year:focus-visible {
  border-color: rgba(119, 127, 43, 0.42);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 22, 21, 0.12);
}

.participants-year.is-active {
  border-color: #777f2b;
  background: #777f2b;
  color: white;
  box-shadow: 0 18px 36px rgba(119, 127, 43, 0.28);
}

.participants-section p {
  margin-bottom: 34px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.participants-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px 34px;
  width: min(1250px, 100%);
  margin: 0 auto;
}

.participant-logo-slot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gold);
  background: white;
  color: #111;
  font-size: 21px;
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
}

.participant-logo-slot img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.participant-website {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  display: block;
  color: #6f6638;
  font-size: 11pt;
  font-weight: 400;
  line-height: 1.2;
  overflow: hidden;
  text-transform: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.participant-action {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding-top: 54px;
  background: rgba(119, 111, 78, 0.72);
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.participant-action::before {
  content: "→";
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}

.participant-logo-slot:hover .participant-action,
.participant-logo-slot:focus-visible .participant-action {
  opacity: 1;
}

@media (min-width: 981px) {
  .section,
  .section-band,
  .sponsor-announcement,
  .participants-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .sponsor-announcement {
    padding-top: 38px;
    padding-bottom: 38px;
    background: #777f2b;
    color: #fff;
  }

  .sponsor-announcement::after {
    display: none;
  }

  .partner-logo {
    color: #111;
  }

  .partner-logos {
    margin-bottom: 30px;
  }

  .participants-section h2,
  .participants-section p,
  .program-inner > h2,
  .section-heading {
    margin-bottom: 22px;
  }

  .participants-logo-grid {
    gap: 24px;
  }

  .program-grid {
    gap: 38px;
  }

  .program-day-main {
    min-height: auto;
    padding: 34px 28px 34px;
  }

  .program-day-main time,
  .program-day-main h3,
  .program-meta,
  .program-session {
    margin-bottom: 10px;
  }

  .sponsor-announcement h2 {
    max-width: 1120px;
    margin-bottom: 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
  }

  .announcement-copy p {
    margin-bottom: 16px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
    color: #fff;
  }

  .announcement-copy a {
    color: #77bfff;
    font-weight: 800;
  }
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.split,
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  max-width: none;
}

.text-link {
  color: var(--tomato);
  font-weight: 900;
  text-transform: uppercase;
}

.program-inner {
  width: min(1180px, 100%);
  text-align: center;
}

.program-kicker {
  margin-bottom: 18px;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-inner > h2 {
  margin-bottom: 38px;
  color: #356f6b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 78px;
  align-items: start;
}

.program-day {
  display: block;
}

.program-day-main {
  min-height: auto;
  padding: 42px 34px;
  border: 1px solid rgba(23, 22, 21, 0.5);
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.program-day-main time {
  display: block;
  margin-bottom: 16px;
  color: #356f6b;
  font-size: 20px;
  font-weight: 900;
}

.program-day-main h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 900;
}

.program-meta,
.program-session {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.program-session strong {
  display: block;
}

.participant-grid p {
  color: rgba(23, 22, 21, 0.65);
  line-height: 1.55;
}

.tinted {
  background: var(--paper-2);
}

.participant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.participant-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.participant-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.participant-grid h3,
.participant-grid p {
  padding: 0 18px;
}

.participant-grid h3 {
  margin-top: 18px;
}

.participant-grid p {
  margin-bottom: 18px;
}

.discover {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: clamp(68px, 9vw, 122px) clamp(18px, 5vw, 72px);
  color: white;
  overflow: hidden;
}

.discover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 107, 104, 0.82), rgba(23, 22, 21, 0.22));
}

.discover-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.discover-content p:not(.section-kicker) {
  font-size: 20px;
  line-height: 1.6;
}

.discover-routes {
  display: none;
}

.discover-route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.28);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.discover-route img {
  position: static;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.light {
  color: white;
}

.discover-content .secondary-button.light {
  color: var(--gold);
}

.ticket-section {
  background: var(--teal);
  color: white;
}

.ticket-section .section-kicker {
  color: var(--gold);
}

.ticket-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.notify-form {
  width: min(470px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.notify-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}

.notify-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify-form input {
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: white;
  background: rgba(0, 0, 0, 0.13);
  font: inherit;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.notify-message {
  display: block;
  min-height: 18px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: white;
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(23, 22, 21, 0.62);
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-identity span {
  font-size: 14px;
  font-weight: 700;
}

.footer-brand {
  width: 94px;
}

.footer-brand img {
  width: 94px;
  height: 84px;
  filter: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 112px;
  }

  .brand,
  .brand img {
    width: 122px;
  }

  .brand img {
    height: 104px;
  }

  .hero {
    margin-top: 112px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .site-header.is-open .header-actions {
    flex-wrap: wrap;
  }

  .ticket-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

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

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

  .brand,
  .brand img {
    width: 96px;
  }

  .brand img {
    height: 82px;
  }

  .hero {
    margin-top: 88px;
  }

  .hero-cta,
  .notify-form div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button,
  .ticket-button,
  .notify-form button {
    width: 100%;
  }

  .program-grid,
  .participant-grid {
    grid-template-columns: 1fr;
  }

  .program-item {
    min-height: 190px;
  }

  .program-item time {
    margin-bottom: 28px;
  }

  .site-footer {
    display: grid;
  }

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

@media (min-width: 981px) {
  main h1,
  main h2,
  main h3,
  .section-kicker,
  .program-kicker,
  .participants-section h2,
  .sponsor-announcement h2,
  .program-day-main time,
  .program-day-main h3,
  .discover-content h2,
  .ticket-section h2 {
    font-size: 13pt;
    font-weight: 700;
    line-height: 1.35;
  }

  main p,
  main small,
  .announcement-copy p,
  .participants-section p,
  .program-meta,
  .program-session,
  .section-heading p,
  .ticket-grid p,
  .discover-content p:not(.section-kicker),
  .notify-form label,
  .notify-form input,
  .notify-form button {
    font-size: 11pt;
    font-weight: 400;
    line-height: 1.6;
  }
}

body,
button,
input,
textarea,
select,
a,
p,
span,
small,
label,
li,
time,
strong {
  font-family: "Liberation Sans", Arial, sans-serif;
  font-size: 11pt;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-kicker,
.program-kicker,
.main-nav a,
.nav-ticket,
.ticket-button,
.primary-button,
.secondary-button,
.language-button,
.participants-section h2,
.sponsor-announcement h2,
.program-day-main time,
.program-day-main h3,
.program-inner > h2,
.participant-logo-slot,
.partner-logo,
.notify-form button,
.site-footer nav a {
  font-family: "Liberation Sans", Arial, sans-serif;
  font-size: 12pt;
  font-weight: 700;
  letter-spacing: 0;
}

.legal-page {
  min-height: 62vh;
  padding: 72px 24px 96px;
  background: #fff;
}

.legal-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin: 0 0 32px;
  color: #171615;
  text-align: center;
}

.legal-copy {
  color: #2b2b2b;
}

.legal-copy p {
  margin: 0 0 18px;
  line-height: 1.55;
  white-space: pre-line;
}
