:root {
  --bg: #f5f0e8;
  --surface: rgba(255, 249, 240, 0.82);
  --surface-strong: #fffaf2;
  --ink: #1e2416;
  --muted: #5e6754;
  --line: rgba(30, 36, 22, 0.12);
  --forest: #1f4d3a;
  --forest-deep: #163729;
  --clay: #bd5f2d;
  --gold: #c89b3c;
  --shadow: 0 24px 60px rgba(27, 37, 22, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 77, 58, 0.16), transparent 30%),
    linear-gradient(180deg, #f9f4ec 0%, #efe7da 100%);
}

body.has-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  pointer-events: none;
  opacity: 0.3;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 3rem;
  container-type: inline-size;
}

.page-main {
  padding-top: 2rem;
}

.merch-page-main {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 2rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(43, 44, 31, 0.08);
   isolation: isolate;
 }

 .topbar::before {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: inherit;
  background:
    linear-gradient(rgba(255, 250, 242, 0.82), rgba(255, 250, 242, 0.82)),
    url("assets/images/banner.png") center / cover no-repeat;
   transform: scaleX(-1);
   transform-origin: center;
   z-index: 0;
   pointer-events: none;
 }

 .topbar > * {
   position: relative;
   z-index: 1;
}

.topbar-center-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(10.8rem + 10px);
  height: calc(10.8rem + 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, calc(-50% + 0.15rem));
  pointer-events: auto;
  text-decoration: none;
  z-index: 5;
  transition: transform 180ms ease;
}

.topbar-center-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 42%;
  height: 4px;
  border-radius: 999px;
  background: rgba(31, 77, 58, 0.62);
  box-shadow: 0 2px 8px rgba(22, 55, 41, 0.22);
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
}

.topbar-center-mark.is-current::after {
  transform: translateX(-50%) scaleX(1);
}

.topbar-center-mark img {
  width: 130%;
  height: 130%;
  max-width: none;
  object-fit: contain;
  transform: translateY(0.85rem);
  filter: drop-shadow(0 8px 14px rgba(30, 36, 22, 0.2));
}

.topbar-center-mark:hover,
.topbar-center-mark:focus-visible {
  transform: translate(-50%, calc(-50% - 2px + 0.15rem)) scale(1.035);
}

.topbar[data-active-section="concert"] {
  background:
    linear-gradient(rgba(255, 250, 242, 0.82), rgba(255, 250, 242, 0.82)),
    url("assets/images/fest.png") center / cover no-repeat;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
}

.brand-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.42rem 1.12rem;
  background: rgba(31, 77, 58, 0.06);
  border: 1px solid rgba(30, 36, 22, 0.08);
  border-radius: 999px;
}

.brand-selector-link {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.brand-selector-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.98rem;
  width: 62%;
  height: 4px;
  border-radius: 999px;
  background: rgba(31, 77, 58, 0.62);
  box-shadow: 0 2px 8px rgba(22, 55, 41, 0.22);
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
}

.brand-selector-link.is-current::after {
  transform: translateX(-50%) scaleX(1);
}

.brand-stage-button {
  display: inline-flex;
  flex: 0 0 auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(rgba(255, 250, 242, 0.34), rgba(255, 250, 242, 0.34)),
    url("assets/images/filed-and-stage.png") center / 88% no-repeat,
    rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 28px rgba(30, 36, 22, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-stage-button:hover,
.brand-stage-button:focus-visible {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 16px 34px rgba(30, 36, 22, 0.24);
}

.brand-deer-button {
  display: none;
  flex: 0 0 auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(rgba(255, 250, 242, 0.34), rgba(255, 250, 242, 0.34)),
    url("assets/images/tranparent-deer.png") center / 84% no-repeat,
    rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 28px rgba(30, 36, 22, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-deer-button:hover,
.brand-deer-button:focus-visible {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 16px 34px rgba(30, 36, 22, 0.24);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest), var(--forest-deep));
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 12px 28px rgba(22, 55, 41, 0.22);
  transition: width 180ms ease, height 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.brand-mark {
  background-image: url("assets/images/orange world deer expo text logo.png");
  background-size: 62%;
  background-color: rgba(255, 250, 242, 0.9);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 16px 34px rgba(22, 55, 41, 0.24);
}

.site-nav {
  display: grid;
  gap: 0.8rem;
  justify-items: stretch;
  flex: 1 1 auto;
  margin-left: 0;
  position: relative;
  z-index: 4;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.site-footer h2,
h1,
h2,
h3,
summary,
.landing-headline {
  font-family: "Bricolage Grotesque", sans-serif;
}

.brand-copy span,
.site-nav a,
.eyebrow,
.card-tag {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-nav-primary,
.site-nav-sections,
.site-nav-secondary,
.site-subnav {
  display: flex;
  align-items: center;
}

.site-nav-primary {
  width: 100%;
  display: flex;
  position: relative;
  min-height: 3rem;
  align-items: center;
}

.site-nav-primary-left,
.site-nav-primary-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.site-nav-primary-left {
  position: absolute;
  right: calc(50% + 5.5rem);
  top: 50%;
  transform: translateY(-50%);
}

.site-nav-primary-right {
  flex: 1 1 auto;
}

.site-nav-primary-right-links {
  position: absolute;
  left: calc(50% + 5.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.site-nav-primary-ticket {
  margin-left: auto;
}



.site-nav-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-inline: 0.2rem;
}

.site-nav-divider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(30, 36, 22, 0.16));
}

.site-nav-sections {
  gap: 0.35rem;
  margin-right: 0.35rem;
  padding: 0.25rem;
  background: rgba(31, 77, 58, 0.06);
  border: 1px solid rgba(30, 36, 22, 0.08);
  border-radius: 999px;
}

.site-nav-secondary {
  width: 100%;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.site-nav a,
.site-nav-trigger {
  color: var(--muted);
}

.site-nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a.is-current,
.site-nav-trigger.is-current {
  color: var(--ink);
}

.site-nav a.is-current:not(.nav-cta),
.site-nav-trigger.is-current {
  text-decoration: underline;
  text-decoration-color: rgba(31, 77, 58, 0.45);
  text-underline-offset: 0.35rem;
}

.site-nav-trigger.is-current {
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-trigger:hover,
.site-nav-trigger:focus-visible {
  color: var(--ink);
}

.site-subnav {
  gap: 0.45rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
  padding: 0.7rem 0.85rem;
  overflow-x: auto;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

@media (min-width: 781px) {
  .site-nav-primary-left {
    gap: 0.5rem;
    right: calc(50% + 12.5rem);
  }

  .site-nav-primary-right-links {
    left: calc(50% - 1.5rem);
    gap: 0.5rem;
  }

  .site-nav-primary-left > a,
  .site-nav-primary-right-links > a {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
  }

  .site-nav-secondary {
    padding-left: 0;
    width: auto;
    margin-left: -0.65rem;
  }

  .site-subnav {
    width: max-content;
    max-width: 100%;
  }

  .site-subnav[data-nav-panel="expo"] {
    gap: 0.18rem;
    padding-inline: 0.55rem;
  }

  .site-subnav[data-nav-panel="expo"] a {
    padding-inline: 0.45rem;
  }
}

@container (max-width: 1120px) and (min-width: 1031px) {
  .site-nav-primary-left {
    right: calc(50% + 11.75rem);
  }

  .site-nav-primary-right-links {
    left: calc(50% - 1.75rem);
  }

  .site-nav-secondary {
    padding-left: 0;
    margin-left: -0.45rem;
  }
}

@container (max-width: 1030px) {
  .brand-selector-link-mobile-only {
    display: inline-flex;
  }

  .topbar-center-mark {
    display: none;
  }

  .topbar {
    position: relative;
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-selector {
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.28rem 0.3rem 0.92rem;
    max-width: calc(100% - 10.5rem);
  }

  .brand-deer-button,
  .brand-stage-button,
  .brand-mark {
    width: clamp(3.95rem, 18vw, 5rem);
    height: clamp(3.95rem, 18vw, 5rem);
  }

  .menu-toggle {
    display: inline-block;
    margin-left: 0;
  }

  .topbar-mobile-actions {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    bottom: 1rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-left: 0;
    min-height: auto;
  }

  .topbar-mobile-ticket {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }

  .topbar-mobile-ticket > a {
    min-width: clamp(7.75rem, 24vw, 9.5rem);
  }

  .site-nav-divider {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    justify-items: stretch;
    margin-left: 0;
    padding: 1rem;
    background: rgba(255, 250, 242, 0.96);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(20, 24, 15, 0.12);
  }

  .site-nav-primary,
  .site-nav-sections,
  .site-nav-secondary,
  .site-subnav {
    align-items: stretch;
  }

  .site-nav-primary {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .site-nav-primary-left,
  .site-nav-primary-right {
    position: static;
    transform: none;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .site-nav-primary-right-links,
  .site-nav-primary-ticket {
    position: static;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    margin: 0;
    gap: 0.75rem;
  }

  .site-nav-primary-left > a,
  .site-nav-primary-right-links > a,
  .site-nav-primary-ticket > a,
  .site-nav-trigger {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

  .site-nav-primary-ticket {
    display: none;
  }

  .site-nav-secondary {
    justify-content: flex-start;
    margin-top: 0.2rem;
    padding: 0;
  }

  .site-subnav {
    justify-content: flex-start;
    margin-top: 0.2rem;
    padding: 0.55rem;
    border-radius: 20px;
  }

  .site-nav.is-open {
    display: grid;
  }
}

.site-subnav[hidden] {
  display: none;
}

.site-subnav a {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.site-subnav a:hover,
.site-subnav a:focus-visible,
.site-subnav a.is-current {
  background: rgba(31, 77, 58, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--clay), #cf7c35);
  color: #fff9f2;
  box-shadow: 0 18px 34px rgba(189, 95, 45, 0.28);
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.is-current {
  color: #fff9f2;
}

.button-secondary {
  background: rgba(255, 250, 242, 0.65);
  color: var(--ink);
  border-color: rgba(30, 36, 22, 0.12);
}

.button:hover,
.nav-cta:hover,
.button:focus-visible,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 77, 58, 0.08);
}

.topbar-mobile-actions,
.topbar-mobile-ticket {
  display: none;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

@container (max-width: 1030px) {
  .menu-toggle {
    display: inline-block;
    margin-left: 0;
  }

  .topbar-mobile-actions {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    bottom: 1rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-left: 0;
    min-height: auto;
  }

  .topbar-mobile-ticket {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }

  .topbar-mobile-ticket > a {
    min-width: clamp(7.75rem, 24vw, 9.5rem);
  }
}

.hero,
.page-hero,
.section,
.site-footer,
.stats-strip {
  position: relative;
  z-index: 1;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
  padding: 2.5rem 0 2rem;
}

.page-hero-single {
  grid-template-columns: 1fr;
}

.page-hero-copy,
.page-hero-visual,
.page-card,
.media-panel,
.cta-banner {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
}

.page-hero-copy,
.page-card,
.media-panel,
.cta-banner {
  padding: 1.6rem;
}

.page-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.faq-page .page-hero-copy,
.faq-page .page-hero-visual {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

.faq-page .page-hero-copy {
  padding: 0;
}

.faq-page .page-hero-visual {
  overflow: visible;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--forest);
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-badges span,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.page-hero-visual {
  display: grid;
  gap: 1rem;
  padding: 0;
  overflow: hidden;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.hero-visual-note {
  padding: 1.2rem 1.4rem 1.5rem;
  display: grid;
}

.hero-visual-note h3 {
  margin-bottom: 0.3rem;
}

.hero-visual-offer {
  font-weight: 700;
  text-align: center;
}

.hero-visual-note .button {
  justify-self: end;
}

.hall-panel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 2.5rem;
  padding: 1.35rem 1rem 0;
}

.hall-panel-shell {
  width: min(1380px, calc(100vw - 1.5rem));
  margin: 0 auto;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.24), transparent 26%),
    radial-gradient(circle at right center, rgba(31, 77, 58, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.94) 0%, rgba(243, 234, 220, 0.94) 100%);
  box-shadow: 0 28px 70px rgba(20, 28, 19, 0.14);
  backdrop-filter: blur(18px);
}

.hall-panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hall-panel-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
}

.hall-panel-copy .lead {
  max-width: 68ch;
}

.hall-panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 1 clamp(15rem, 24vw, 22rem);
  min-width: 0;
}

.hall-tab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hall-tab-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.7rem;
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.hall-tab {
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hall-tab:hover,
.hall-tab:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(22, 55, 41, 0.12);
}

.hall-tab.is-active {
  background: linear-gradient(135deg, var(--forest) 0%, #275f47 100%);
  color: #fff7ed;
  box-shadow: 0 16px 28px rgba(22, 55, 41, 0.2);
}

.hall-map-stage {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.hall-map-stage-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.15rem;
}

.hall-map-stage-body,
.hall-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: 1rem;
  min-height: 0;
  align-items: stretch;
}

.hall-map-stage-header,
.hall-modal-header,
.hall-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hall-map-stage-header h3,
.hall-modal-header h2,
.hall-map-tooltip h3 {
  margin: 0;
}

.hall-map-stage-header h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.hall-map-stage-tools {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.hall-map-search {
  position: relative;
  flex: 1 1 24rem;
  max-width: 30rem;
}

.hall-map-search-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hall-map-search-input::placeholder {
  color: rgba(30, 36, 22, 0.48);
}

.hall-map-search-input:hover,
.hall-map-search-input:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(31, 77, 58, 0.34);
  box-shadow: 0 0 0 4px rgba(31, 77, 58, 0.08);
  outline: none;
}

.hall-map-search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 0.35rem;
  max-height: min(24rem, 60vh);
  padding: 0.5rem;
  overflow-y: auto;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(246, 239, 229, 0.98) 100%);
  box-shadow: 0 24px 50px rgba(18, 23, 16, 0.18);
}

.hall-map-search-results[hidden] {
  display: none;
}

.hall-map-search-result,
.hall-map-search-empty {
  display: grid;
  gap: 0.22rem;
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 18px;
}

.hall-map-search-result {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.58);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.hall-map-search-result:hover,
.hall-map-search-result:focus-visible,
.hall-map-search-result.is-active {
  transform: translateY(-1px);
  border-color: rgba(31, 77, 58, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 24px rgba(22, 55, 41, 0.12);
  outline: none;
}

.hall-map-search-result__title {
  color: var(--forest-deep);
  font-size: 0.97rem;
  font-weight: 700;
}

.hall-map-search-result__meta,
.hall-map-search-empty {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hall-map-search-empty {
  border: 1px dashed rgba(31, 77, 58, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

.hall-map-interactive {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(22rem, 58vw, 44rem);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.hall-map-interactive svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}
.hall-map-interactive [data-tipso-title] rect,
.hall-map-interactive [data-tipso-title] circle,
.hall-map-interactive [data-tipso-title] polygon,
.hall-map-interactive [data-tipso-title] path {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(35, 31, 32, 0.9);
  stroke-width: 1.1px;
  vector-effect: non-scaling-stroke;
}

.hall-map-interactive [data-tipso-title] text {
  fill: #231f20;
}

.hall-modal-shell {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 90;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(0.75rem, 2vh, 1.25rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hall-modal-shell[hidden] {
  display: none;
}

.hall-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 19, 11, 0.72);
  backdrop-filter: blur(12px);
}

.hall-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
  width: min(98vw, 1680px);
  max-width: 100%;
  padding: 1.25rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.18), transparent 20%),
    linear-gradient(180deg, #fffaf2 0%, #f3ecdf 100%);
  box-shadow: 0 40px 90px rgba(14, 18, 12, 0.4);
  transform: translateY(18px) scale(0.985);
  transition: transform 180ms ease;
}

.hall-modal-shell.is-open .hall-modal-panel {
  transform: translateY(0) scale(1);
}

.hall-modal-close {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 77, 58, 0.12);
  color: var(--forest-deep);
  font-size: 1.7rem;
  cursor: pointer;
}

.hall-map-interactive {
  overflow: auto;
  align-items: start;
  height: clamp(30rem, 78vh, 58rem);
  max-height: calc(100vh - 11rem);
  border-radius: 28px;
  border: 1px solid rgba(31, 77, 58, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(246, 239, 229, 0.94) 100%);
}

.hall-map-stage-body .hall-map-interactive {
  height: clamp(28rem, 64vw, 50rem);
  max-height: none;
}

.hall-map-tooltip {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 0;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.96);
  border: 1px solid rgba(31, 77, 58, 0.12);
  overflow: auto;
}

.hall-map-tooltip-label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hall-map-tooltip-copy {
  color: var(--muted);
}

.hall-map-tooltip-copy p + p {
  margin-top: 0.6rem;
}

.hall-map-detail-grid {
  display: grid;
  gap: 0.75rem;
}

.hall-map-detail-item {
  display: grid;
  gap: 0.28rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(31, 77, 58, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.hall-map-detail-item__label {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hall-map-detail-item__value {
  color: var(--forest-deep);
  font-size: 0.98rem;
  line-height: 1.45;
}

.hall-map-detail-item__value strong {
  color: inherit;
}

.hall-map-hover-card {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(246, 239, 229, 0.98) 100%);
  box-shadow: 0 24px 50px rgba(18, 23, 16, 0.18);
  backdrop-filter: blur(14px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 0) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 120ms ease,
    transform 120ms ease,
    visibility 120ms ease;
}

.hall-map-hover-card.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.hall-map-hover-card__eyebrow,
.hall-map-hover-card__meta,
.hall-map-hover-card__title {
  margin: 0;
}

.hall-map-hover-card__eyebrow {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hall-map-hover-card__title {
  margin-top: 0.32rem;
  color: var(--forest-deep);
  font-size: 1.02rem;
  line-height: 1.25;
}

.hall-map-hover-card__meta {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hall-map-interactive [data-tipso-title] {
  cursor: pointer;
  outline: none;
}

.hall-map-selection-marker {
  display: none;
  pointer-events: none;
}

.hall-map-selection-marker.is-visible {
  display: block;
}

.hall-map-selection-marker__arrow,
.hall-map-selection-marker__head,
.hall-map-selection-marker__ring {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hall-map-selection-marker__arrow--primary,
.hall-map-selection-marker__head--primary,
.hall-map-selection-marker__ring--primary {
  stroke: #b5562c;
  stroke-width: 4px;
}

.hall-map-selection-marker__label {
  fill: #6f2d12;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  paint-order: stroke;
  stroke: rgba(255, 250, 242, 0.86);
  stroke-width: 1.25px;
  font-style: italic;
}

.hall-map-interactive [data-tipso-title].is-pinned rect,
.hall-map-interactive [data-tipso-title].is-pinned circle,
.hall-map-interactive [data-tipso-title].is-pinned polygon,
.hall-map-interactive [data-tipso-title].is-pinned path {
  fill: #f2d44f !important;
  stroke: var(--clay);
  stroke-width: 2px;
  filter: drop-shadow(0 0 8px rgba(200, 155, 60, 0.42));
}

.hall-map-interactive [data-tipso-title].is-active rect,
.hall-map-interactive [data-tipso-title].is-active circle,
.hall-map-interactive [data-tipso-title].is-active polygon,
.hall-map-interactive [data-tipso-title].is-active path,
.hall-map-interactive [data-tipso-title]:focus rect,
.hall-map-interactive [data-tipso-title]:focus circle,
.hall-map-interactive [data-tipso-title]:focus polygon,
.hall-map-interactive [data-tipso-title]:focus path,
.hall-map-interactive [data-tipso-title]:hover rect,
.hall-map-interactive [data-tipso-title]:hover circle,
.hall-map-interactive [data-tipso-title]:hover polygon,
.hall-map-interactive [data-tipso-title]:hover path {
  stroke: var(--clay);
  stroke-width: 2px;
  filter: drop-shadow(0 0 8px rgba(189, 95, 45, 0.28));
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
  min-height: calc(100vh - 7rem);
  padding: 4rem 0 2rem;
}

.landing-selector {
  padding: 1rem 0 5rem;
}

.landing-intro {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.landing-kicker,
.landing-subheadline {
  width: auto;
  max-width: none;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
}

.landing-kicker {
  margin: 0.3rem auto 0.45rem;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.1;
  font-weight: 700;
}

.landing-headline {
  width: auto;
  max-width: none;
  font-size: min(3.4vw, 2.2rem);
  line-height: 1.08;
  white-space: nowrap;
  text-align: center;
  margin: 0.6rem auto 1rem;
  margin-left: auto;
  margin-right: auto;
}

.landing-selector h1.landing-headline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.landing-headline-line,
.landing-headline-separator {
  display: inline;
}

.expo-headline-line {
  display: inline;
}

.expo-headline-line:not(:last-child)::after {
  content: " • ";
}

.landing-subheadline {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.2;
  font-weight: 600;
}

.landing-intro-cta {
  margin-top: 1rem;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.landing-map-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 240, 0.55);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(248, 241, 230, 0.96));
  box-shadow:
    0 22px 56px rgba(20, 24, 15, 0.16),
    0 0 0 1px rgba(255, 249, 240, 0.35);
}

.landing-map-panel img {
  width: 100%;
  height: auto;
}

.landing-panel {
  --landing-accent: rgba(200, 155, 60, 0.92);
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: grid;
  min-height: 34rem;
  padding: 2rem;
  border: 1px solid rgba(255, 249, 240, 0.26);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(13, 20, 15, 0.12), rgba(13, 20, 15, 0.76)),
    var(--landing-image) center / cover no-repeat;
  box-shadow:
    0 22px 56px rgba(20, 24, 15, 0.24),
    0 0 0 1px rgba(255, 249, 240, 0.08),
    0 0 34px color-mix(in srgb, var(--landing-accent) 24%, transparent);
  isolation: isolate;
  cursor: pointer;
  will-change: transform, box-shadow;
  touch-action: manipulation;
  transform-origin: center center;
  transition: transform 90ms ease-out, box-shadow 90ms ease-out, border-color 90ms ease-out;
}

.landing-panel.reveal {
  transition: opacity 700ms ease, transform 90ms ease-out, box-shadow 90ms ease-out, border-color 90ms ease-out;
}

.landing-panel::before {
  content: "";
  position: absolute;
  inset: auto -2rem -5rem auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 72%);
  opacity: 0.6;
}

.landing-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 12, 0.1) 0%, rgba(9, 16, 12, 0.3) 35%, rgba(9, 16, 12, 0.76) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--landing-accent) 32%, transparent), transparent 56%);
  z-index: -1;
  transition: opacity 220ms ease;
}

.landing-panel.reveal:hover {
  z-index: 2;
  transform: scale(1.015);
  border-color: rgba(255, 249, 240, 0.68);
  box-shadow:
    0 54px 116px rgba(20, 24, 15, 0.4),
    0 0 0 1px rgba(255, 249, 240, 0.24),
    0 0 72px color-mix(in srgb, var(--landing-accent) 56%, transparent);
}

.landing-panel.reveal:focus-visible {
  z-index: 2;
  transform: translateY(-10px);
  border-color: rgba(255, 249, 240, 0.68);
  box-shadow:
    0 54px 116px rgba(20, 24, 15, 0.4),
    0 0 0 1px rgba(255, 249, 240, 0.24),
    0 0 72px color-mix(in srgb, var(--landing-accent) 56%, transparent);
}

.landing-panel.reveal:hover::after,
.landing-panel.reveal:focus-visible::after {
  opacity: 0.86;
}

.landing-panel.reveal:active {
  transform: scale(1.015);
  box-shadow:
    0 30px 68px rgba(20, 24, 15, 0.3),
    0 0 0 1px rgba(255, 249, 240, 0.18),
    0 0 48px color-mix(in srgb, var(--landing-accent) 38%, transparent);
}

.landing-panel:focus-visible {
  outline: 2px solid rgba(255, 249, 240, 0.9);
  outline-offset: 4px;
}

.landing-panel-expo {
  --landing-image: url("assets/images/shoot.png");
  --landing-accent: rgba(200, 155, 60, 0.94);
}

.landing-panel-music {
  --landing-image: url("assets/images/bjcc.png");
  --landing-accent: rgba(189, 95, 45, 0.94);
}

.landing-panel-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: end;
  min-height: 100%;
  gap: 0.9rem;
  margin-top: auto;
  color: #fff9f2;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 90ms ease-out;
}

.landing-panel-music .landing-panel-copy {
  align-content: start;
  margin-top: 0;
}

.landing-panel-expo .landing-panel-copy {
  align-content: start;
  margin-top: 0;
}

.landing-panel.reveal:hover .landing-panel-copy {
  transform: scale(0.9852216749);
}

.landing-panel.reveal:active .landing-panel-copy {
  transform: scale(0.9852216749);
}

.landing-panel-copy .card-tag,
.landing-panel-copy p {
  color: rgba(255, 249, 240, 0.9);
}

.landing-panel-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.95;
}

.landing-panel-list {
  display: grid;
  gap: 0.6rem;
  margin: 0.2rem 0 0;
}

.landing-panel-list li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 249, 240, 0.96);
}

.landing-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #fff4d8;
}

.landing-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  width: fit-content;
  margin-top: 0;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.94);
  border: 1px solid rgba(30, 36, 22, 0.08);
  color: var(--ink);
  font-weight: 800;
  justify-self: end;
  align-self: end;
  box-shadow: 0 16px 34px rgba(12, 18, 13, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease, border-color 260ms ease;
}

.landing-panel:hover .landing-panel-cta,
.landing-panel:focus-visible .landing-panel-cta {
  transform: translateY(-2px);
  background: rgba(255, 250, 244, 1);
  border-color: rgba(30, 36, 22, 0.14);
  box-shadow: 0 22px 42px rgba(12, 18, 13, 0.28);
}

.landing-panel:active .landing-panel-cta {
  transform: translateY(0);
}

.eyebrow,
.card-tag {
  color: var(--forest);
  font-weight: 700;
}

h1 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-copy {
  display: flex;
}

.video-placeholder {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.video-placeholder-screen {
  position: relative;
  overflow: hidden;
  container-type: size;
  min-height: 0;
  height: 100%;
  min-height: 34rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background:
    linear-gradient(rgba(22, 55, 41, 0.7), rgba(22, 55, 41, 0.7)),
    radial-gradient(circle at top, rgba(200, 155, 60, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(31, 77, 58, 0.92), rgba(22, 55, 41, 0.98));
}

.video-placeholder-screen iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: max(100cqw, 177.78cqh);
  height: max(56.25cqw, 100cqh);
  min-height: 34rem;
  border: 0;
  transform: translate(-50%, -50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0;
}

.hero-meta div,
.stats-strip article,
.info-panel,
.feature-card,
.ticket-panel,
.schedule-panel,
.pricing-card,
.logistics-card,
.callout,
.site-footer {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-meta div {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
}

.hero-meta dt {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 0;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: stretch;
  align-items: stretch;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-card-main {
  width: 100%;
  min-height: 34rem;
  height: 100%;
  aspect-ratio: auto;
  box-shadow: 0 40px 80px rgba(26, 41, 28, 0.22);
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-accent {
  position: absolute;
  left: 0;
  bottom: 2.5rem;
  max-width: 18rem;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(180deg, rgba(22, 55, 41, 0.95), rgba(31, 77, 58, 0.92));
  color: #eef6ed;
  box-shadow: 0 24px 50px rgba(22, 55, 41, 0.35);
}

.hero-card-accent p {
  margin-bottom: 0.4rem;
  color: rgba(238, 246, 237, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 5rem;
}

.stats-strip article {
  padding: 1.3rem;
  border-radius: var(--radius-md);
}

.stats-strip strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 2rem;
}

.section {
  margin-bottom: 5rem;
}

.native-ad-slot {
  margin-top: -1.5rem;
}

.native-ad-shell {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(241, 232, 220, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.native-ad-shell::before {
  content: "";
  position: absolute;
  inset: auto -6rem -7rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 77, 58, 0.18), transparent 68%);
  pointer-events: none;
}

.expo-updates-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.expo-updates-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.expo-updates-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.expo-updates-copy p:last-child {
  max-width: 42ch;
  color: var(--muted);
}

.expo-updates-form {
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.expo-updates-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.expo-updates-fields label:last-child {
  grid-column: 1 / -1;
}

.expo-updates-form input:focus-visible {
  outline: 2px solid rgba(189, 95, 45, 0.35);
  outline-offset: 2px;
}

.expo-updates-button {
  justify-self: end;
  min-width: 12rem;
}

.native-ad-header,
.native-ad-controls,
.native-ad-card,
.native-ad-visual,
.native-ad-cta {
  position: relative;
  z-index: 1;
}

.native-ad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.native-ad-heading {
  display: grid;
  gap: 0.3rem;
}

.native-ad-intro {
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.native-ad-disclosure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(22, 55, 41, 0.08);
  border: 1px solid rgba(22, 55, 41, 0.12);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.native-ad-stage {
  position: relative;
  min-height: 13.5rem;
}

.native-ad-card {
  --ad-visual-height: 9.75rem;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(246, 238, 227, 0.62)),
    rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(30, 36, 22, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.985);
  transition: opacity 320ms ease, transform 320ms ease, visibility 320ms ease;
}

.native-ad-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (min-width: 1081px) {
  .native-ad-card {
    grid-template-columns: calc(var(--ad-visual-height) * 403 / 184) minmax(0, 1fr) var(--ad-visual-height) !important;
    padding: 1.35rem !important;
    align-items: start !important;
  }

  .native-ad-visual {
    display: contents !important;
    padding: 0 !important;
  }

  .native-ad-media {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(var(--ad-visual-height) * 403 / 184) !important;
    height: var(--ad-visual-height) !important;
    transform: none !important;
  }

  .native-ad-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    min-height: var(--ad-visual-height);
    align-content: start !important;
    padding-top: 0 !important;
    padding-right: 0 !important;
  }

  .native-ad-card::after {
    content: none !important;
  }

  .native-ad-cta {
    display: block !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: start !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--ad-visual-height) !important;
    min-height: var(--ad-visual-height) !important;
    margin: 0 !important;
    transform: none !important;
    justify-self: end !important;
  }
}

.native-ad-visual {
  display: grid;
  grid-template-columns: calc(var(--ad-visual-height) * 403 / 184) var(--ad-visual-height);
  gap: 1rem;
  align-items: center;
}

.native-ad-media {
  overflow: hidden;
  align-self: center;
  width: calc(var(--ad-visual-height) * 403 / 184);
  height: var(--ad-visual-height);
  aspect-ratio: 403 / 184;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(22, 55, 41, 0.12);
}

.native-ad-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.native-ad-copy {
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.native-ad-copy p:last-child {
  color: var(--muted);
}

.native-ad-copy-meta {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
}

.native-ad-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button.native-ad-copy-action {
  flex: 0 0 auto;
  min-height: 2.9rem;
  min-width: 11rem;
  padding: 0.75rem 1rem;
  gap: 0.55rem;
  justify-self: start;
  flex-wrap: nowrap;
  line-height: 1;
  white-space: nowrap;
}

.button.native-ad-copy-action span {
  white-space: nowrap;
}

.button.native-ad-copy-action svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.native-ad-map-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  flex-wrap: nowrap;
  background: rgba(31, 77, 58, 0.1);
  border: 1px solid rgba(31, 77, 58, 0.16);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.native-ad-map-link svg {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.native-ad-map-link span {
  display: inline-block;
  white-space: nowrap;
}

.native-ad-map-link:hover,
.native-ad-map-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(31, 77, 58, 0.16);
  outline: none;
}

.native-ad-cta {
  align-self: center;
  align-content: end;
  width: var(--ad-visual-height);
  border-radius: var(--radius-md);
  min-height: var(--ad-visual-height);
  aspect-ratio: 1;
  background-image:
    linear-gradient(180deg, rgba(16, 30, 22, 0.08), rgba(16, 30, 22, 0.2)),
    var(--cta-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 22px 40px rgba(22, 55, 41, 0.2);
}

.native-ad-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.native-ad-dots button {
  border: 0;
  font: inherit;
}

.native-ad-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
}

.native-ad-dots button {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(31, 77, 58, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.native-ad-dots button.is-active {
  background: var(--clay);
  transform: scale(1.15);
}

.native-ad-dots button:hover,
.native-ad-dots button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.8rem;
}

h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.intro-grid,
.attraction-grid,
.logistics-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.page-grid,
.pricing-grid,
.ad-grid,
.contact-grid,
.table-list {
  display: grid;
  gap: 1rem;
}

.page-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid.page-grid-single {
  grid-template-columns: 1fr;
}

.page-grid.three-column,
.pricing-grid,
.ad-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-panel,
.pricing-card,
.logistics-card,
.ticket-panel,
.schedule-panel,
.callout,
.site-footer,
.page-card,
.media-panel,
.cta-banner {
  border-radius: var(--radius-lg);
}

.info-panel,
.pricing-card,
.logistics-card,
.ticket-panel,
.schedule-panel,
.page-card,
.media-panel {
  padding: 1.5rem;
}

.stack {
  display: grid;
  gap: 0.9rem;
}

.bullet-list {
  display: grid;
  gap: 0.65rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.media-panel {
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 6px);
  margin-bottom: 1rem;
}

.table-list {
  gap: 0.75rem;
}

.table-list article {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.table-list strong {
  font-size: 1.1rem;
}

.merch-section {
  padding: 0;
}

.merch-panel {
  width: 100%;
  padding: 1.75rem;
  overflow: hidden;
}

.merch-panel-expo {
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.95), rgba(247, 240, 229, 0.92)),
    radial-gradient(circle at top right, rgba(31, 77, 58, 0.14), transparent 30%);
}

.merch-panel-stage {
  background:
    linear-gradient(135deg, rgba(255, 245, 236, 0.95), rgba(249, 237, 225, 0.92)),
    radial-gradient(circle at top right, rgba(189, 95, 45, 0.18), transparent 32%);
}

.merch-panel-header {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.merch-panel-header h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: 0.03em;
}

.merch-panel-header .lead {
  max-width: 44rem;
  color: var(--muted);
}

.merch-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 77, 58, 0.5) rgba(255, 255, 255, 0.45);
}

.merch-scroll::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.merch-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.merch-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(31, 77, 58, 0.82), rgba(189, 95, 45, 0.78));
  border-radius: 999px;
}

.merch-item-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 0.8rem;
}

.merch-item {
  display: grid;
  grid-template-rows: 10.5rem auto;
  gap: 0.85rem;
  min-height: 100%;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
}

.merch-item-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 6px);
  background: rgba(31, 77, 58, 0.08);
}

.merch-item-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.2rem 0.2rem;
}

.merch-item-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.merch-item-meta {
  color: var(--muted);
}

.merch-item-price {
  margin-top: 0.3rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.cta-banner {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 1rem;
  align-items: center;
}

.schedule-tabs {
  display: grid;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.88), rgba(255, 247, 237, 0.78)),
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.14), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.schedule-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.schedule-panel-header h2 {
  margin: 0.2rem 0 0;
}

.schedule-tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 28rem);
  gap: 0.65rem;
  padding: 0.35rem;
  background: rgba(31, 77, 58, 0.08);
  border: 1px solid rgba(30, 36, 22, 0.08);
  border-radius: 999px;
}

.schedule-tab {
  min-height: 2.8rem;
  width: 100%;
  padding: 0.75rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.schedule-tab:hover,
.schedule-tab:focus-visible {
  color: var(--ink);
}

.schedule-tab.is-active {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: #fff9f2;
  box-shadow: 0 14px 30px rgba(22, 55, 41, 0.18);
}

.schedule-day-panel {
  display: none;
  gap: 1rem;
}

.schedule-day-panel.is-active {
  display: grid;
}

.schedule-day-header {
  display: grid;
  gap: 0.25rem;
  max-width: 42rem;
}

.schedule-day-header p:last-child {
  color: var(--muted);
}

.schedule-timeline {
  display: grid;
  gap: 0.9rem;
}

.schedule-item {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 1.15rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.schedule-item h3 {
  margin: 0;
  font-size: 1.15rem;
}

.schedule-item p:not(.schedule-time):not(.card-tag) {
  color: var(--muted);
}

.schedule-item a.is-booth-link {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.schedule-item a.is-booth-link:hover {
  color: var(--forest-deep);
}

.schedule-item a.is-booth-link:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

.schedule-time {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-item-promoted {
  position: relative;
  background:
    linear-gradient(135deg, rgba(200, 155, 60, 0.2), rgba(189, 95, 45, 0.1)),
    rgba(255, 250, 242, 0.88);
  border-color: rgba(189, 95, 45, 0.24);
  box-shadow: 0 18px 36px rgba(189, 95, 45, 0.12);
}

.schedule-item-promoted::before {
  content: "Featured";
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(189, 95, 45, 0.12);
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attraction-grid {
  grid-template-columns: 1.2fr repeat(2, 1fr);
}

.feature-card {
  overflow: hidden;
  border-radius: 28px;
}

.feature-card img {
  width: 100%;
  height: 17rem;
  object-fit: cover;
}

.feature-card div {
  padding: 1.2rem;
}

.feature-card-large {
  grid-row: span 2;
}

.feature-card-large img {
  height: 100%;
  min-height: 100%;
}

.special-guests-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(255, 246, 235, 0.9));
  border: 1px solid rgba(30, 36, 22, 0.08);
  box-shadow: var(--shadow);
}

.special-guests-heading {
  margin-bottom: 1.4rem;
}

.special-guests-heading p:last-child {
  max-width: 50rem;
  color: var(--muted);
}

.events-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.events-scroller-controls {
  display: flex;
  gap: 0.65rem;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.events-panel.is-scrollable .events-scroller-controls {
  opacity: 1;
  pointer-events: auto;
}

.events-scroll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(30, 36, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.8);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(24, 29, 20, 0.08);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.events-scroll-button:hover,
.events-scroll-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.events-scroll-button[disabled] {
  opacity: 0.35;
  transform: none;
}

.events-scroller {
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 0.65rem;
  margin-bottom: -0.65rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 77, 58, 0.35) transparent;
}

.events-scroller::-webkit-scrollbar {
  height: 0.6rem;
}

.events-scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(31, 77, 58, 0.35);
}

.guest-grid.events-grid {
  --events-gap: 1rem;
  --events-visible: 4;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--events-gap);
}

.guest-grid.events-grid .guest-card {
  flex: 0 0 calc((100% - (var(--events-gap) * (var(--events-visible) - 1))) / var(--events-visible));
  min-width: 0;
  scroll-snap-align: start;
}

.guest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.guest-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(30, 36, 22, 0.08);
  box-shadow: 0 20px 36px rgba(24, 29, 20, 0.1);
}

.guest-card-media {
  position: relative;
  height: clamp(18rem, 24vw, 20rem);
  overflow: hidden;
  background: rgba(22, 55, 41, 0.12);
}

.guest-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(17, 24, 16, 0.82) 100%);
}

.guest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-card-title-wrap {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
}

.guest-card-title-wrap h3 {
  margin: 0;
  color: #fff9f2;
  font-size: 1.45rem;
  line-height: 1.05;
  text-wrap: balance;
}

.guest-card-body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.15rem;
}

.guest-card-location,
.guest-card-schedule,
.guest-modal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.1rem;
  margin: 0;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a.guest-card-location,
a.guest-modal-pill {
  text-decoration: none;
}

a.guest-card-location.is-booth-link,
a.guest-modal-pill.is-booth-link {
  cursor: pointer;
}

a.guest-card-location.is-booth-link:hover,
a.guest-modal-pill.is-booth-link:hover {
  background: rgba(31, 77, 58, 0.16);
}

a.guest-card-location.is-booth-link:focus-visible,
a.guest-modal-pill.is-booth-link:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

.guest-card-location {
  min-height: 3.5rem;
}

.guest-card-location,
.guest-modal-pill:first-child {
  background: rgba(31, 77, 58, 0.1);
  color: var(--forest-deep);
}

.guest-card-schedule,
.guest-modal-pill:last-child {
  background: rgba(189, 95, 45, 0.12);
  color: #8b411d;
}

.guest-card-summary {
  color: var(--muted);
  line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.guest-card .button {
  margin-top: auto;
  width: 100%;
}

.guest-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 1;
}

.guest-modal-shell[hidden] {
  display: none;
}

.guest-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 28, 18, 0.56);
  backdrop-filter: blur(12px);
}

.guest-modal-panel {
  position: relative;
  z-index: 1;
  width: min(64rem, 100%);
  max-height: min(88vh, 48rem);
  overflow: auto;
  padding: 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf3 0%, #f7efe1 100%);
  box-shadow: 0 32px 80px rgba(20, 25, 16, 0.32);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.guest-modal-shell.is-open .guest-modal-panel {
  transform: translateY(0) scale(1);
}

.guest-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 77, 58, 0.1);
  color: var(--forest-deep);
  font-size: 1.6rem;
  cursor: pointer;
}

.guest-modal-content {
  display: grid;
  gap: 1rem;
}

.guest-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.guest-modal-media {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(22, 55, 41, 0.12);
  align-self: start;
}

.guest-modal-media img {
  width: 100%;
  height: auto;
}

.guest-modal-content h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.guest-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.guest-modal-copy {
  color: var(--muted);
}

.guest-modal-summary {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.guest-modal-copy p {
  line-height: 1.75;
}

.split-layout,
.exhibitor-layout,
.travel-layout {
  display: grid;
  gap: 1rem;
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ticket-cards,
.schedule-list,
.cta-stack,
.travel-points,
.footer-links {
  display: grid;
  gap: 0.85rem;
}

.ticket-cards article,
.schedule-list article {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.ticket-cards span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.82rem;
}

.ticket-cards strong {
  display: block;
  margin: 0.2rem 0;
  font-size: 2.2rem;
}

.ticket-panel,
.schedule-panel {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.venue-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.venue-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.venue-card div {
  padding: 1rem 1.1rem 1.2rem;
}

.exhibitor-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.logistics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.travel-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.travel-copy {
  align-self: center;
}

.travel-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.travel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.travel-visual {
  min-height: 100%;
}

.travel-visual img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(30, 36, 22, 0.16);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.15rem 1.25rem;
  background: rgba(255, 250, 242, 0.75);
  border: 1px solid rgba(30, 36, 22, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(30, 36, 22, 0.06);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.06rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  padding-top: 0.85rem;
  color: var(--muted);
}

.callout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  padding: 1.5rem;
}

.signup-form {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.signup-form label {
  display: grid;
  gap: 0.4rem;
}

.signup-form span {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--muted);
}

.signup-form input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(30, 36, 22, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
}

.site-footer-signup {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

.site-footer-signup::before {
  content: none;
}

.footer-grid {
  position: relative;
  padding-top: 1.75rem;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
}

.footer-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(30, 36, 22, 0) 0%,
    rgba(30, 36, 22, 0.14) 8%,
    rgba(30, 36, 22, 0.14) 92%,
    rgba(30, 36, 22, 0) 100%
  );
}

.footer-grid::after {
  content: none;
}

.footer-grid > div {
  display: grid;
  gap: 0.45rem;
}

.footer-address {
  display: grid;
  gap: 0.15rem;
  align-content: start;
  position: relative;
}

.footer-address-link {
  display: inline-grid;
  gap: 0.1rem;
  width: fit-content;
  max-width: 100%;
  color: inherit;
  border-radius: 999px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-address-link span {
  display: block;
}

.footer-address-link:hover,
.footer-address-link:focus-visible {
  color: var(--forest);
  transform: translateX(2px);
}

.footer-address[data-copy-state="copied"] .footer-address-link {
  color: var(--forest);
}

.footer-address-banner {
  display: none;
}

@media (min-width: 1081px) {
  .site-footer {
    padding: 1.75rem 2rem;
  }

  .site-footer h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
  }

  .footer-grid {
    padding-top: 1.5rem;
    align-items: start;
  }

  .footer-grid > div {
    align-content: start;
    gap: 0.3rem;
  }

  .site-footer-signup {
    align-items: start;
  }

  .footer-links {
    display: grid;
    gap: 0.2rem;
    align-content: start;
  }

  .footer-links li {
    line-height: 1.35;
  }

  .footer-address-link {
    line-height: 1.35;
  }

  .footer-address-banner {
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(31, 77, 58, 0.14);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.94);
    box-shadow: 0 12px 28px rgba(27, 37, 22, 0.1);
    color: var(--forest-deep);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 0.45rem));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .footer-address[data-copy-state="copied"] .footer-address-banner {
    opacity: 1;
    transform: translateY(calc(-100% - 0.7rem));
  }
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--forest);
  font-weight: 600;
}

a[data-external-link="true"]::after {
  content: "";
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  margin-left: 0.35rem;
  flex: 0 0 0.72em;
  background-color: currentColor;
  opacity: 0.8;
  vertical-align: text-top;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M10 1h5v5h-2V4.41L8.7 8.7 7.3 7.3 11.59 3H10V1ZM3 3h5v2H5v6h6V8h2v5H3V3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M10 1h5v5h-2V4.41L8.7 8.7 7.3 7.3 11.59 3H10V1ZM3 3h5v2H5v6h6V8h2v5H3V3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .split-layout,
  .exhibitor-layout,
  .travel-layout,
  .callout,
  .footer-grid,
  .intro-grid,
  .stats-strip,
  .attraction-grid,
  .landing-grid,
  .page-grid.two-column,
  .page-grid.three-column,
  .pricing-grid,
  .ad-grid,
  .contact-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .merch-panel {
    padding: 1.3rem;
  }

  .merch-scroll {
    padding-bottom: 0.6rem;
  }

  .merch-item-list {
    grid-auto-columns: minmax(210px, 82vw);
  }

  .merch-item {
    grid-template-rows: 9rem auto;
  }

  .schedule-panel-header {
    align-items: start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hall-panel-header,
  .hall-tab-row,
  .hall-map-stage-header,
  .hall-modal-header,
  .hall-modal-actions,
  .hall-map-stage-body,
  .hall-modal-body {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hall-panel-copy h2 {
    max-width: 16ch;
  }

  .hall-map-stage-tools,
  .hall-map-search {
    width: 100%;
    max-width: none;
  }

  .hall-map-stage-footer {
    justify-content: stretch;
  }

  .hall-map-stage-footer .button {
    width: 100%;
  }

  .hall-modal-body {
    display: grid;
  }

  .hall-map-tooltip {
    max-height: 18rem;
  }

  .landing-panel {
    min-height: 28rem;
  }

  .native-ad-card {
    --ad-visual-height: 11rem;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .native-ad-visual {
    grid-template-columns: minmax(0, 1fr) var(--ad-visual-height);
    gap: 1rem;
    align-items: center;
  }

  .native-ad-media {
    width: 100%;
    height: var(--ad-visual-height);
  }

  .native-ad-cta {
    align-content: start;
    justify-self: end;
    width: var(--ad-visual-height);
    min-height: var(--ad-visual-height);
  }

  .native-ad-stage {
    min-height: 18rem;
  }

  .hero-visual {
    justify-items: stretch;
    padding-right: 0;
  }

  .hero-card-main {
    width: 100%;
    aspect-ratio: 1.2;
  }

  .hero-card-accent {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -3rem;
    margin-left: 1rem;
  }

  .attraction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-grid.events-grid {
    --events-visible: 2;
  }

  .feature-card-large {
    grid-row: auto;
    grid-column: span 2;
  }

  .feature-card-large img {
    height: 18rem;
  }

  .brand-selector-link-mobile-only {
    display: inline-flex;
  }

  .topbar-center-mark {
    display: none;
  }

  .topbar {
    position: relative;
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-selector {
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.28rem 0.3rem 0.92rem;
    max-width: calc(100% - 10.5rem);
  }

  .brand-deer-button,
  .brand-stage-button,
  .brand-mark {
    width: clamp(3.95rem, 18vw, 5rem);
    height: clamp(3.95rem, 18vw, 5rem);
  }

  .menu-toggle {
    display: inline-block;
    margin-left: 0;
  }

  .topbar-mobile-actions {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    bottom: 1rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-left: 0;
    min-height: auto;
  }

  .topbar-mobile-ticket {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }

  .topbar-mobile-ticket > a {
    min-width: clamp(7.75rem, 24vw, 9.5rem);
  }

  .site-nav-divider {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    justify-items: stretch;
    margin-left: 0;
    padding: 1rem;
    background: rgba(255, 250, 242, 0.96);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(20, 24, 15, 0.12);
  }

  .site-nav-primary,
  .site-nav-sections,
  .site-nav-secondary,
  .site-subnav {
    align-items: stretch;
  }

  .site-nav-primary {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .site-nav-primary-left,
  .site-nav-primary-right {
    position: static;
    transform: none;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .site-nav-primary-right-links,
  .site-nav-primary-ticket {
    position: static;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    margin: 0;
    gap: 0.75rem;
  }

  .site-nav-primary-left > a,
  .site-nav-primary-right-links > a,
  .site-nav-primary-ticket > a,
  .site-nav-trigger {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

  .site-nav-primary-ticket {
    display: none;
  }

  .site-subnav {
    justify-content: flex-start;
    margin-top: 0.2rem;
    padding: 0.55rem;
    border-radius: 20px;
  }

  .site-nav.is-open {
    display: grid;
  }
}

@media (max-width: 780px) {
  .brand-selector-link-mobile-only {
    display: inline-flex;
  }

  .topbar-center-mark {
    display: none;
  }

  .site-shell {
    width: min(100vw - 1rem, 100%);
  }

  .topbar {
    position: relative;
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-selector {
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.28rem 0.3rem 0.92rem;
    max-width: calc(100% - 10.5rem);
  }

  .brand-deer-button,
  .brand-stage-button,
  .brand-mark {
    width: clamp(3.95rem, 18vw, 5rem);
    height: clamp(3.95rem, 18vw, 5rem);
  }

  .brand-deer-button {
    position: relative;
    overflow: visible;
    background:
      linear-gradient(rgba(255, 250, 242, 0.34), rgba(255, 250, 242, 0.34)),
      rgba(255, 250, 242, 0.92);
  }

  .brand-deer-button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 128%;
    height: 152%;
    transform: translate(-50%, -40%);
    background: url("assets/images/tranparent-deer.png") center / contain no-repeat;
    pointer-events: none;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: 0;
  }

  .topbar-mobile-actions {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    bottom: 1rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-left: 0;
    min-height: auto;
  }

  .topbar-mobile-ticket {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }

  .topbar-mobile-ticket > a {
    min-width: clamp(7.75rem, 24vw, 9.5rem);
  }

  .site-nav-divider {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    justify-items: stretch;
    margin-left: 0;
    padding: 1rem;
    background: rgba(255, 250, 242, 0.96);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(20, 24, 15, 0.12);
  }

  .site-nav-primary,
  .site-nav-sections,
  .site-nav-secondary,
  .site-subnav {
    align-items: stretch;
  }

  .site-nav-primary {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .site-nav-primary-left,
  .site-nav-primary-right {
    position: static;
    transform: none;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .site-nav-primary-right-links,
  .site-nav-primary-ticket {
    position: static;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    margin: 0;
    gap: 0.75rem;
  }

  .site-nav-primary-left > a,
  .site-nav-primary-right-links > a,
  .site-nav-primary-ticket > a,
  .site-nav-trigger {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

  .site-nav-primary-ticket {
    display: none;
  }

  .site-subnav {
    justify-content: flex-start;
    margin-top: 0.2rem;
    padding: 0.55rem;
    border-radius: 20px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .native-ad-slot {
    margin-top: 0;
  }

  .native-ad-shell,
  .native-ad-card {
    padding: 1.2rem;
  }

  .expo-updates-shell {
    grid-template-columns: 1fr;
  }

  .expo-updates-fields {
    grid-template-columns: 1fr;
  }

  .expo-updates-fields label:last-child {
    grid-column: auto;
  }

  .expo-updates-button {
    width: 100%;
    justify-self: stretch;
  }

  .native-ad-shell {
    overflow: visible;
  }

  .native-ad-card {
    --ad-visual-height: clamp(9.5rem, 44vw, 10.75rem);
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .native-ad-visual {
    display: block;
    position: relative;
    padding-bottom: clamp(1.9rem, 9vw, 2.8rem);
  }

  .native-ad-media {
    width: 100%;
    height: auto;
    aspect-ratio: 403 / 184;
  }

  .native-ad-cta {
    position: absolute;
    right: 0.75rem;
    bottom: 0;
    z-index: 2;
    width: clamp(5.5rem, 28vw, 7rem);
    min-height: clamp(5.5rem, 28vw, 7rem);
    margin: 0;
    transform: translateY(18%);
  }

  .native-ad-copy {
    align-content: start;
    padding-top: clamp(0.8rem, 4vw, 1.25rem);
  }

  .native-ad-actions {
    align-items: stretch;
  }

  .button.native-ad-copy-action,
  .native-ad-map-link {
    display: flex;
    flex-basis: 100%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .native-ad-map-link {
    flex: 1 1 100%;
  }

  .native-ad-header {
    flex-direction: column;
    align-items: stretch;
  }

  .native-ad-controls {
    align-items: center;
  }

  .native-ad-dots {
    width: 100%;
  }

  .native-ad-stage {
    min-height: 0;
  }

  .native-ad-header h2 {
    max-width: none;
  }

  .hero-meta,
  .logistics-grid,
  .attraction-grid,
  .guest-grid,
  .page-grid,
  .pricing-grid,
  .ad-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .schedule-tab-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .schedule-tab {
    width: 100%;
    padding-inline: 0.75rem;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .schedule-item-promoted::before {
    position: static;
    justify-self: start;
    margin-bottom: 0.55rem;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .events-scroller-controls {
    align-self: stretch;
    justify-content: flex-end;
  }

  .guest-grid.events-grid {
    --events-visible: 1;
  }

  .guest-card-media {
    height: 18rem;
  }

  .guest-card-title-wrap h3 {
    font-size: 1.3rem;
  }

  .guest-modal-panel {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .guest-modal-layout {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .landing-selector {
    padding-top: 1rem;
  }

  .landing-panel {
    min-height: 24rem;
    padding: 1.4rem;
  }

  .landing-panel-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .landing-headline {
    width: 100%;
    max-width: none;
    font-size: min(3.6vw, 1.6rem);
    line-height: 1.12;
    white-space: nowrap;
  }

  .landing-selector .landing-headline {
    white-space: normal;
  }

  .landing-selector .landing-headline-line {
    display: block;
  }

  .landing-selector .landing-headline-separator {
    display: none;
  }

  .expo-landing-headline {
    white-space: normal;
  }

  .expo-landing-headline .expo-headline-line {
    display: block;
  }

  .expo-landing-headline .expo-headline-line:not(:last-child)::after {
    content: none;
  }

  .section,
  .stats-strip {
    margin-bottom: 3.5rem;
  }

  .hall-panel {
    padding-top: 1rem;
  }

  .hall-panel-shell {
    width: min(100vw - 1rem, 100%);
    padding: 1rem;
    border-radius: 30px;
  }

  .hall-tab-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hall-panel-actions {
    width: 100%;
  }

  .hall-panel-actions .button {
    width: 100%;
  }

  .hall-map-stage-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .hall-tab {
    width: 100%;
  }

  .hall-map-interactive {
    min-height: 17rem;
    padding: 0.75rem;
  }

  .hall-modal-shell {
    padding: 0.5rem;
  }

  .hall-modal-panel {
    width: min(100vw - 1rem, 100%);
    min-height: auto;
    padding: 1rem;
    border-radius: 24px;
  }

  .hall-modal-actions {
    gap: 0.75rem;
  }

  .hall-modal-actions .button,
  .hall-map-stage-header .button {
    width: 100%;
    justify-content: center;
  }

  .hall-map-tooltip {
    max-height: none;
  }

  .site-footer {
    padding: 1.4rem;
  }

  .site-footer-signup {
    padding: 0;
  }

  .footer-grid {
    padding-top: 1.35rem;
  }
}

.brand-stage-button.brand-selector-link::after {
  bottom: -1.08rem;
}