:root {
  --ink: #422a1d;
  --cream: #c7b9ae;
  --cocoa: #774f36;
  --taupe: #b7b7b7;
  --metal: #b7b7b7;
  --stone: #c7b9ae;
  --line: rgba(66, 42, 29, 0.22);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-variant-emoji: text;
}
a,
button {
  font-variant-emoji: text;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 3.5vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(44, 28, 22, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}
.wordmark {
  display: block;
  width: clamp(180px, 18vw, 285px);
}
.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}
.wordmark span {
  display: block;
  font:
    500 9px "DM Sans",
    sans-serif;
  letter-spacing: 0.3em;
  margin: 7px 0 0;
  text-align: center;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.giveaway-nav {
  background: var(--metal);
  color: var(--ink);
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
}
.ticket-link {
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
.menu-button,
.menu-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.menu {
  position: fixed;
  z-index: 30;
  inset: 0 0 0 auto;
  width: min(560px, 100%);
  background: var(--ink);
  color: var(--cream);
  padding: 35px 45px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu.open {
  transform: none;
}
.menu-close {
  align-self: flex-end;
}
.menu nav {
  display: flex;
  flex-direction: column;
}
.menu nav a {
  font:
    500 clamp(38px, 5.2vw, 68px)/1.08 "Syne",
    sans-serif;
  letter-spacing: -0.055em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}
.menu p {
  letter-spacing: 0.16em;
  font-size: 12px;
}
.hero {
  height: 100svh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--cocoa);
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 18, 12, 0.48), transparent 68%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15),
      transparent 42%,
      rgba(0, 0, 0, 0.2)
    );
}
.hero-copy {
  position: absolute;
  left: 7vw;
  bottom: 11vh;
}
.eyebrow,
.section-number {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
}
.hero h1,
.intro h2,
.statement h2,
.events h2,
.brands h2,
.tickets h2 {
  font:
    500 clamp(58px, 8.5vw, 128px)/0.84 "Syne",
    sans-serif;
  letter-spacing: -0.065em;
  margin: 25px 0;
}
.hero h1 em,
.intro h2 em,
.statement h2 em,
.events h2 em,
.brands h2 em {
  font-weight: 400;
  font-style: normal;
}
.hero h1 em {
  color: var(--cream);
}
.hero-sub {
  font-size: 16px;
  max-width: 420px;
  line-height: 1.5;
}
.hero-giveaway {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: min(430px, calc(100vw - 44px));
  background: var(--metal);
  color: var(--ink);
  padding: 13px 16px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}
.hero-giveaway strong {
  font-size: 10px;
  letter-spacing: 0.14em;
}
.hero-giveaway b {
  font-size: 18px;
}
.scroll-cue {
  position: absolute;
  right: 3.5vw;
  bottom: 35px;
  display: flex;
  gap: 30px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.intro {
  padding: 130px 7vw 160px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 8vw;
  align-items: end;
}
.intro h2 {
  font-size: clamp(50px, 7vw, 108px);
  margin-top: 65px;
}
.intro-copy {
  font-size: 19px;
  line-height: 1.65;
  max-width: 430px;
  padding-bottom: 12px;
}
.text-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 30px;
  border-bottom: 1px solid;
  padding-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.statement {
  overflow: hidden;
  background: var(--cocoa);
  color: #fff;
  padding: 36px 0 125px;
}
.marquee {
  display: flex;
  width: max-content;
  font-size: 12px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 35px;
  animation: marquee 25s linear infinite;
}
.marquee span {
  padding-right: 30px;
}
.statement-inner {
  text-align: center;
  padding-top: 110px;
}
.statement-inner > p {
  font-size: 11px;
  letter-spacing: 0.24em;
}
.statement h2 {
  font-size: clamp(70px, 11vw, 165px);
}
.moments {
  padding: 140px 7vw 160px;
  background: var(--stone);
}
.moments-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5vw;
  margin-bottom: 90px;
}
.moments-head h2 {
  font:
    500 clamp(54px, 7.5vw, 112px)/0.86 "Syne",
    sans-serif;
  letter-spacing: -0.065em;
  margin: 0 0 35px;
}
.moments-head h2 em {
  font-weight: 400;
  font-style: normal;
}
.moments-head > div > p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0;
}
.moments-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  grid-template-rows: 260px 360px;
  gap: 16px;
}
.moment {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--taupe);
}
.moment-tall {
  grid-row: span 2;
}
.moment-wide {
  grid-column: span 2;
}
.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.moment:hover img {
  transform: scale(1.035);
}
.moment::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(30, 15, 10, 0.52));
  pointer-events: none;
}
.moment figcaption {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.events {
  padding: 140px 7vw;
}
.events-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.events h2 {
  font-size: clamp(55px, 8vw, 115px);
  margin: 0 0 100px;
}
.event-list {
  border-top: 1px solid var(--line);
}
.event-list article {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 35px 0;
  transition:
    padding 0.3s,
    background 0.3s;
}
.event-list article:hover {
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.35);
}
.event-no {
  font-size: 11px;
}
.event-list h3 {
  font:
    500 clamp(38px, 5vw, 68px)/1 "Syne",
    sans-serif;
  letter-spacing: -0.05em;
  margin: 0;
}
.event-list div p {
  margin: 10px 0 0;
  opacity: 0.65;
}
.event-list article > a {
  font-size: 28px;
}
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--ink);
  color: var(--cream);
}
.brands-copy {
  padding: 110px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brands h2 {
  font-size: clamp(58px, 7.4vw, 110px);
}
.brands-copy > p:not(.section-number) {
  font-size: 18px;
  line-height: 1.55;
  max-width: 510px;
}
.pill {
  align-self: flex-start;
  margin-top: 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 99px;
  padding: 17px 25px;
  font-size: 11px;
  letter-spacing: 0.15em;
}
.pill span {
  margin-left: 35px;
}
.brand-visual {
  background: var(--cocoa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.brand-visual span {
  font:
    500 clamp(105px, 14vw, 215px)/1 "Syne",
    sans-serif;
  letter-spacing: -0.08em;
}
.brand-visual p {
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 12px;
}
.tickets {
  text-align: center;
  padding: 170px 5vw;
  background: var(--taupe);
  color: var(--cream);
}
.tickets > p {
  font-size: 11px;
  letter-spacing: 0.22em;
}
.tickets h2 {
  font-size: clamp(100px, 17vw, 250px);
  margin: 15px;
}
.tickets a {
  display: inline-block;
  border-bottom: 1px solid;
  padding: 10px 5px;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.tickets a span {
  margin-left: 25px;
}
footer {
  background: var(--cream);
  padding: 90px 4vw 40px;
}
.footer-mark {
  font:
    500 12vw/0.8 "Syne",
    sans-serif;
  letter-spacing: -0.075em;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 55px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 38px;
  font-size: 12px;
  line-height: 1.7;
}
.footer-grid div {
  display: flex;
  flex-direction: column;
}
@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 760px) {
  .nav {
    padding: 23px 20px;
  }
  .nav-actions > a {
    display: none;
  }
  .nav-actions {
    gap: 10px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-copy {
    left: 22px;
    right: 22px;
    bottom: 13vh;
  }
  .hero h1 {
    font-size: 16vw;
  }
  .hero-sub {
    font-size: 14px;
  }
  .scroll-cue {
    right: 20px;
  }
  .intro {
    padding: 95px 22px;
  }
  .intro-grid,
  .events-head,
  .brands,
  .moments-head {
    grid-template-columns: 1fr;
  }
  .intro h2 {
    margin-top: 50px;
  }
  .intro-copy {
    margin-top: 35px;
  }
  .statement {
    padding-bottom: 80px;
  }
  .statement-inner {
    padding-top: 75px;
  }
  .moments {
    padding: 95px 22px;
  }
  .moments-head {
    margin-bottom: 55px;
  }
  .moments-head h2 {
    margin-top: 48px;
  }
  .moments-head > div > p {
    font-size: 16px;
  }
  .moments-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 230px 300px;
    gap: 10px;
  }
  .moment-tall {
    grid-row: span 2;
  }
  .moment-wide {
    grid-column: span 2;
  }
  .moment figcaption {
    left: 14px;
    bottom: 13px;
    font-size: 8px;
  }
  .events {
    padding: 100px 22px;
  }
  .events h2 {
    margin: 45px 0 70px;
  }
  .event-list article {
    grid-template-columns: 38px 1fr 30px;
  }
  .event-list div p {
    font-size: 12px;
  }
  .brands {
    min-height: 0;
  }
  .brands-copy {
    padding: 95px 22px;
  }
  .brand-visual {
    min-height: 480px;
  }
  .footer-mark {
    font-size: 13vw;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu {
    padding: 28px 24px;
  }
}

/* Visitor homepage: mobile-first navigation and conversion flow */
.visitor-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 10px;
  background: rgba(44, 28, 22, 0.96);
}
.visitor-nav .wordmark {
  width: 180px;
  flex: 0 0 auto;
}
.nav-primary {
  order: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 19px;
  overflow-x: auto;
  padding: 2px 0 5px;
  scrollbar-width: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
}
.nav-primary::-webkit-scrollbar {
  display: none;
}
.nav-primary > a {
  flex: 0 0 auto;
}
.nav-primary .giveaway-nav {
  margin-left: auto;
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
}
.ticket-menu {
  position: relative;
  flex: 0 0 auto;
}
.ticket-menu summary {
  list-style: none;
  cursor: pointer;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 999px;
}
.nav-primary .ticket-direct {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--metal);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.ticket-menu summary::-webkit-details-marker {
  display: none;
}
.ticket-menu summary span {
  margin-left: 6px;
}
.ticket-menu-options {
  position: fixed;
  z-index: 40;
  top: 105px;
  left: 16px;
  min-width: 190px;
  padding: 8px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.ticket-menu-options a {
  display: flex;
  justify-content: space-between;
  padding: 13px 11px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.ticket-menu-options a:last-child {
  border-bottom: 0;
}
.ticket-menu-options a::after {
  content: "↓";
}
.hero {
  min-height: 820px;
}
.hero > img {
  object-position: 68% center;
}
.hero-shade {
  background: linear-gradient(90deg, rgba(35, 18, 12, 0.78), rgba(35, 18, 12, 0.12) 88%), linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 45%, rgba(0, 0, 0, 0.3));
}
.hero-copy {
  left: 20px;
  right: 20px;
  bottom: 54px;
}
.hero h1 {
  max-width: 650px;
  margin: 18px 0;
  font-size: clamp(28px, 7.4vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.hero-sub {
  max-width: 330px;
  font-size: 16px;
  font-weight: 400;
}
.hero-ticket {
  display: inline-flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 20px;
  padding: 15px 18px;
  background: var(--metal);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.scroll-cue {
  display: none;
}
.intro,
.moments,
.events {
  padding-left: 20px;
  padding-right: 20px;
}
.intro {
  padding-top: 90px;
  padding-bottom: 100px;
}
.intro h2 {
  font-size: clamp(48px, 14vw, 74px);
  line-height: 0.92;
}
.intro-copy {
  font-size: 17px;
}
.goodie-highlight {
  margin: 0 0 50px;
  padding: 25px;
  background: var(--cocoa);
  color: #fff;
}
.goodie-highlight > span {
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 600;
}
.goodie-highlight p {
  max-width: 560px;
  margin: 18px 0 25px;
  font: 500 25px/1.15 "Syne", sans-serif;
  letter-spacing: -0.035em;
}
.goodie-highlight div {
  display: flex;
  align-items: center;
  gap: 22px;
}
.goodie-highlight strong:first-child {
  font: 600 26px "DM Sans", sans-serif;
  text-transform: lowercase;
}
.goodie-highlight strong:last-child {
  font: 600 20px "DM Sans", sans-serif;
  letter-spacing: 0.08em;
}
.visitor-videos {
  padding: 90px 20px;
  background: var(--ink);
  color: var(--cream);
}
.visitor-videos-head h2 {
  margin: 40px 0 55px;
  font: 500 clamp(52px, 14vw, 88px)/0.9 "Syne", sans-serif;
  letter-spacing: -0.06em;
}
.visitor-videos-head h2 em {
  font-weight: 400;
  font-style: normal;
}
.visitor-video-grid {
  display: grid;
  gap: 12px;
}
.visitor-video {
  margin: 0;
}
.visitor-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.visitor-video figcaption {
  padding: 13px 0 20px;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.event-impressions {
  display: grid;
  gap: 18px;
}
.event-impressions .visitor-video video {
  border-radius: 2px;
}
.event-impressions .video-portrait video {
  aspect-ratio: 9 / 16;
}
.event-impressions .video-landscape video {
  aspect-ratio: 16 / 9;
}
.newsletter-form .form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.countdown {
  padding: 90px 20px;
  background: var(--metal);
  color: var(--ink);
}
.countdown h2 {
  margin: 32px 0 55px;
  font: 500 clamp(46px, 13vw, 80px)/0.93 "Syne", sans-serif;
  letter-spacing: -0.055em;
}
.countdown h2 em {
  font-weight: 400;
  font-style: normal;
}
.countdown-clock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(44, 28, 22, 0.3);
  border-left: 1px solid rgba(44, 28, 22, 0.3);
}
.countdown-clock div {
  min-width: 0;
  padding: 22px 14px;
  border-right: 1px solid rgba(44, 28, 22, 0.3);
  border-bottom: 1px solid rgba(44, 28, 22, 0.3);
}
.countdown-clock strong {
  display: block;
  font: 500 13vw/1 "Syne", sans-serif;
  letter-spacing: -0.06em;
}
.countdown-clock span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.events {
  padding-top: 95px;
  padding-bottom: 110px;
}
.tickets {
  padding: 120px 20px;
}
.tickets > p {
  font-size: 12px;
  font-weight: 600;
}
.tickets h2 {
  margin: 22px 0 45px;
  font-size: clamp(78px, 24vw, 160px);
}
.tickets .tickets-main-cta {
  display: inline-flex;
  justify-content: space-between;
  gap: 28px;
  padding: 19px 22px;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.newsletter-form button {
  min-height: 58px;
  font-size: 13px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .visitor-nav {
    flex-wrap: nowrap;
    padding: 18px 3.5vw;
  }
  .visitor-nav .wordmark {
    width: clamp(240px, 22vw, 320px);
  }
  .nav-primary {
    order: initial;
    width: auto;
    margin-left: auto;
    gap: 28px;
    overflow: visible;
    font-size: 11px;
  }
  .ticket-menu-options {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
  }
  .hero {
    min-height: 760px;
  }
  .hero > img {
    object-position: center;
  }
  .hero-copy {
    left: 7vw;
    right: auto;
    bottom: 8vh;
  }
  .hero h1 {
    font-size: clamp(42px, 3.8vw, 60px);
    max-width: 720px;
  }
  .hero-sub {
    max-width: 520px;
    font-size: 18px;
  }
  .intro,
  .moments,
  .events,
  .visitor-videos,
  .countdown {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .goodie-highlight {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
    gap: 40px;
    padding: 34px 40px;
  }
  .goodie-highlight p {
    margin: 0;
    font-size: 30px;
  }
  .visitor-videos-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  .visitor-videos-head h2 {
    margin-top: 0;
  }
  .visitor-video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .event-impressions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .event-impressions .video-landscape {
    grid-column: 1 / -1;
  }
  .countdown {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6vw;
    align-items: end;
  }
  .countdown h2 {
    margin-bottom: 0;
  }
  .countdown-clock {
    grid-template-columns: repeat(4, 1fr);
  }
  .countdown-clock strong {
    font-size: clamp(44px, 5vw, 76px);
  }
}

/* Crisp interface arrows: drawn in CSS so mobile browsers never render emoji tiles. */
:is(
  .ticket-direct span,
  .hero-ticket span,
  .newsletter-form button > span,
  .tickets-main-cta span,
  .city-primary-cta span,
  .ticket-notify-cta span,
  .event-sticky-ticket span,
  .inner-cta a span,
  .exhibitor-sticky-apply span,
  .city-switcher b,
  .event-list article > a:last-child
) {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  font-size: 0;
  line-height: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17L17 7M9 7H17V15' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%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 24 24'%3E%3Cpath d='M7 17L17 7M9 7H17V15' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.exhibitor-sticky-apply {
  position: fixed;
  z-index: 22;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  padding: 15px 22px;
  border: 1px solid rgba(66, 42, 29, 0.18);
  border-radius: 999px;
  background: var(--metal);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(35, 18, 12, 0.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

@media (max-width: 760px) {
  .exhibitor-sticky-apply {
    bottom: 16px;
    width: calc(100% - 172px);
    min-width: 0;
    padding: 14px 9px;
    gap: 7px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* Legal pages */
.legal-page {
  background: var(--stone);
  color: var(--ink);
}
.legal-main {
  min-height: 75vh;
  padding: 150px 20px 100px;
}
.legal-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}
.legal-shell h1 {
  margin: 20px 0 55px;
  font: 500 clamp(52px, 15vw, 92px)/0.88 "Syne", sans-serif;
  letter-spacing: -0.065em;
}
.legal-shell h2 {
  margin: 48px 0 14px;
  font: 500 clamp(25px, 7vw, 36px)/1.05 "Syne", sans-serif;
  letter-spacing: -0.035em;
}
.legal-shell h3 {
  margin: 30px 0 10px;
  font: 600 19px/1.25 "DM Sans", sans-serif;
}
.legal-shell p,
.legal-shell li {
  font-size: 16px;
  line-height: 1.7;
}
.legal-shell ul {
  padding-left: 22px;
}
.legal-shell a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-address {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.legal-back {
  display: inline-flex;
  margin-top: 55px;
  padding: 16px 20px;
  background: var(--ink);
  color: #fff;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 900px) {
  .legal-main {
    padding: 190px 7vw 140px;
  }
  .legal-shell h1 {
    font-size: 92px;
  }
}

/* Homepage hero refinements: tighter header spacing and branded desktop bag */
.hero > .hero-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero > .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  animation: heroZoom 14s ease-out both;
}
@media (min-width: 900px) {
  .hero > .hero-media img {
    object-position: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
.sponsor {
  background: var(--stone);
}
.sponsor-hero,
.sponsor-case,
.sponsor-packages,
.sponsor-more {
  padding: 140px 7vw;
}
.sponsor-title {
  display: grid;
  grid-template-columns: 1.65fr 0.7fr;
  gap: 7vw;
  align-items: end;
}
.sponsor h2 {
  font:
    500 clamp(54px, 7.3vw, 112px)/0.87 "Syne",
    sans-serif;
  letter-spacing: -0.065em;
  margin: 55px 0 0;
}
.sponsor h2 em {
  font-weight: 400;
  font-style: normal;
}
.sponsor-title > div {
  font-size: 18px;
  line-height: 1.65;
  padding-bottom: 8px;
}
.sponsor-pill {
  color: var(--ink);
  border-color: var(--line);
}
.sponsor-proof {
  background: var(--cocoa);
  color: #fff;
  padding: 65px 7vw;
}
.sponsor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}
.sponsor-stats div {
  padding: 38px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.sponsor-stats strong {
  display: block;
  font:
    500 clamp(36px, 4.2vw, 65px)/1 "Syne",
    sans-serif;
  letter-spacing: -0.055em;
}
.sponsor-stats span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sponsor-case {
  background: var(--cream);
}
.sponsor-lede {
  font-size: 19px;
  line-height: 1.65;
  max-width: 720px;
  margin: 45px 0 65px;
}
.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.reason-list article {
  padding: 40px 35px 42px 0;
  border-bottom: 1px solid var(--line);
}
.reason-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.reason-list article:nth-child(even) {
  padding-left: 35px;
}
.reason-list span,
.package-name {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.reason-list h3,
.more-grid h3 {
  font:
    500 28px/1.15 "Syne",
    sans-serif;
  letter-spacing: -0.04em;
  margin: 24px 0 12px;
}
.reason-list p,
.more-grid p {
  line-height: 1.6;
  opacity: 0.75;
}
.sponsor-packages {
  background: var(--ink);
  color: var(--cream);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.package-grid article {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 42px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.package-grid article.main-package {
  background: var(--cocoa);
}
.package-grid h3 {
  font:
    500 32px/1.1 "Syne",
    sans-serif;
  letter-spacing: -0.045em;
  max-width: 380px;
}
.package-grid strong {
  font:
    500 54px/1 "Syne",
    sans-serif;
  letter-spacing: -0.055em;
  margin-top: auto;
}
.package-grid small {
  font-size: 9px;
  letter-spacing: 0.17em;
  margin-top: 8px;
}
.package-grid ul {
  padding: 25px 0 0;
  margin: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}
.package-grid li {
  padding: 7px 0 7px 20px;
  position: relative;
}
.package-grid li::before {
  content: "·";
  position: absolute;
  left: 0;
}
.sponsor-more {
  background: var(--stone);
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 55px 0;
}
.more-grid article {
  border: 1px solid var(--line);
  padding: 35px;
  min-height: 245px;
}
.sponsor-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cocoa);
  color: #fff;
  padding: 28px 32px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.sponsor-cta span {
  font-size: 24px;
}
@media (max-width: 760px) {
  .sponsor-hero,
  .sponsor-case,
  .sponsor-packages,
  .sponsor-more {
    padding: 95px 22px;
  }
  .sponsor-title,
  .reason-list,
  .package-grid,
  .more-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-title > div {
    margin-top: 35px;
  }
  .sponsor-stats {
    grid-template-columns: 1fr 1fr;
  }
  .reason-list article:nth-child(odd) {
    border-right: 0;
  }
  .reason-list article:nth-child(even) {
    padding-left: 0;
  }
  .package-grid article {
    padding: 30px;
    min-height: 460px;
  }
}
.inner-page {
  background: var(--stone);
}
.inner-nav {
  position: fixed;
  background: var(--ink);
}
.inner-hero {
  min-height: 88svh;
  padding: 150px 7vw 100px;
  background: var(--cocoa);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-content: end;
}
.inner-hero > .section-number {
  align-self: start;
}
.inner-hero h1 {
  grid-column: 1/-1;
  font:
    500 clamp(70px, 10.5vw, 155px)/0.82 "Syne",
    sans-serif;
  letter-spacing: -0.07em;
  margin: 80px 0 60px;
}
.inner-hero h1 em {
  font-weight: 400;
  font-style: normal;
  color: var(--cream);
}
.inner-intro {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5vw;
  align-items: end;
}
.inner-intro p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 610px;
  margin: 0;
}
.trust-section {
  padding: 140px 7vw;
  background: var(--cream);
}
.trust-section h2,
.price-preview h2,
.inner-cta h2 {
  font:
    500 clamp(54px, 7.5vw, 112px)/0.86 "Syne",
    sans-serif;
  letter-spacing: -0.065em;
  margin: 55px 0 80px;
}
.trust-section h2 em,
.price-preview h2 em {
  font-weight: 400;
  font-style: normal;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.trust-grid article {
  padding: 40px 35px 20px 0;
  border-right: 1px solid var(--line);
}
.trust-grid article + article {
  padding-left: 35px;
}
.trust-grid article:last-child {
  border-right: 0;
}
.trust-grid span {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.trust-grid h3 {
  font:
    500 31px/1.08 "Syne",
    sans-serif;
  letter-spacing: -0.045em;
  margin: 45px 0 18px;
}
.trust-grid p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.72;
}
.inner-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--cream);
}
.inner-numbers div {
  min-height: 310px;
  padding: 55px 4vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.inner-numbers strong {
  font:
    500 clamp(48px, 6vw, 92px)/1 "Syne",
    sans-serif;
  letter-spacing: -0.06em;
}
.inner-numbers span {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.price-preview {
  padding: 140px 7vw;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.price-preview > div p {
  font-size: 19px;
  line-height: 1.65;
  max-width: 620px;
}
.inner-cta {
  text-align: center;
  padding: 155px 5vw;
  background: var(--taupe);
  color: var(--cream);
}
.inner-cta > p {
  font-size: 11px;
  letter-spacing: 0.22em;
}
.inner-cta h2 {
  font-size: clamp(70px, 11vw, 165px);
  margin: 25px auto 50px;
}
.inner-cta a {
  display: inline-block;
  border-bottom: 1px solid;
  padding: 10px 5px;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.inner-cta a span {
  margin-left: 30px;
}
.sponsor-page-hero {
  background: var(--ink);
}
.sponsor-numbers {
  background: var(--cocoa);
}
.standalone-packages {
  padding: 140px 7vw;
}
@media (max-width: 760px) {
  .inner-hero {
    min-height: 760px;
    padding: 110px 22px 75px;
    grid-template-columns: 1fr;
  }
  .inner-hero h1 {
    margin: 70px 0 55px;
  }
  .inner-intro {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .trust-section,
  .price-preview,
  .standalone-packages {
    padding: 95px 22px;
  }
  .trust-grid,
  .inner-numbers,
  .price-preview {
    grid-template-columns: 1fr;
  }
  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 35px 0;
  }
  .trust-grid article + article {
    padding-left: 0;
  }
  .inner-numbers div {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .price-preview h2 {
    margin-top: 45px;
  }
  .inner-cta {
    padding: 110px 22px;
  }
}
.stand-prices {
  padding: 140px 7vw;
  background: var(--stone);
}
.stand-price-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 110px;
}
.stand-price-head h2,
.exhibitor-info h2 {
  font:
    500 clamp(54px, 7.5vw, 112px)/0.86 "Syne",
    sans-serif;
  letter-spacing: -0.065em;
  margin: 0 0 38px;
}
.stand-price-head h2 em,
.exhibitor-info h2 em {
  font-weight: 400;
  font-style: normal;
}
.stand-price-head > div > p {
  font-size: 19px;
  line-height: 1.65;
  max-width: 640px;
}
.stand-zone {
  border-top: 1px solid var(--line);
  padding: 45px 0 85px;
}
.zone-title {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  margin-bottom: 35px;
}
.zone-title span {
  font-size: 10px;
  letter-spacing: 0.18em;
}
.zone-title h3 {
  font:
    500 34px/1 "Syne",
    sans-serif;
  letter-spacing: -0.04em;
  margin: 0;
}
.stand-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stand-card-grid.two-cards {
  grid-template-columns: repeat(2, 1fr);
}
.stand-card-grid article {
  min-height: 290px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 30px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
}
.stand-card-grid article.extra-meter {
  background: var(--cocoa);
  color: #fff;
}
.stand-size {
  font:
    500 40px/1 "Syne",
    sans-serif;
  letter-spacing: -0.05em;
  margin: 0;
}
.stand-card-grid article > div {
  display: flex;
  flex-direction: column;
}
.stand-card-grid h4 {
  font:
    500 20px/1.2 "Syne",
    sans-serif;
  letter-spacing: -0.03em;
  margin: 4px 0;
}
.stand-card-grid strong {
  font:
    500 42px/1 "Syne",
    sans-serif;
  letter-spacing: -0.05em;
  margin-top: auto;
}
.stand-card-grid small {
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-top: 9px;
}
.exhibitor-info {
  padding: 140px 7vw;
  background: var(--cocoa);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.event-day dl {
  margin: 0 0 50px;
}
.event-day dl div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 22px 0;
}
.event-day dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.event-day dd {
  margin: 0;
  font:
    500 22px "Syne",
    sans-serif;
}
.event-day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-day li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 0 14px 22px;
  position: relative;
}
.event-day li::before {
  content: "·";
  position: absolute;
  left: 0;
}
@media (max-width: 760px) {
  .stand-prices,
  .exhibitor-info {
    padding: 95px 22px;
  }
  .stand-price-head,
  .exhibitor-info {
    grid-template-columns: 1fr;
  }
  .stand-price-head {
    margin-bottom: 70px;
  }
  .stand-price-head h2,
  .exhibitor-info h2 {
    margin-top: 45px;
  }
  .stand-zone {
    padding-bottom: 60px;
  }
  .stand-card-grid,
  .stand-card-grid.two-cards {
    grid-template-columns: 1fr;
  }
  .stand-card-grid article {
    min-height: 240px;
  }
  .event-day {
    margin-top: 45px;
  }
}
.trust-lede {
  font-size: 20px;
  line-height: 1.65;
  max-width: 760px;
  margin: -25px 0 75px;
}
.cross-marketing {
  padding: 140px 7vw;
  background: var(--stone);
}
.cross-copy {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.cross-copy h2 {
  font:
    500 clamp(54px, 7.4vw, 110px)/0.86 "Syne",
    sans-serif;
  letter-spacing: -0.065em;
  margin: 0 0 45px;
}
.cross-copy h2 em {
  font-weight: 400;
  font-style: normal;
}
.cross-copy > p:last-child {
  grid-column: 2;
  font-size: 19px;
  line-height: 1.65;
  max-width: 760px;
}
.brand-proof {
  margin-top: 95px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.brand-proof > p {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.brand-proof > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.brand-proof span {
  font:
    500 clamp(25px, 3vw, 42px)/1.1 "Syne",
    sans-serif;
  letter-spacing: -0.045em;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) {
  .trust-lede {
    font-size: 17px;
    margin: -30px 0 55px;
  }
  .cross-marketing {
    padding: 95px 22px;
  }
  .cross-copy,
  .brand-proof {
    grid-template-columns: 1fr;
  }
  .cross-copy h2 {
    margin-top: 45px;
  }
  .cross-copy > p:last-child {
    grid-column: 1;
  }
  .brand-proof {
    margin-top: 65px;
  }
  .brand-proof > div {
    grid-template-columns: 1fr 1fr;
  }
  .brand-proof span {
    font-size: 21px;
  }
}
.event-proof {
  padding: 140px 7vw;
  background: var(--stone);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 7vw;
  align-items: center;
}
.event-proof-dark {
  background: var(--ink);
  color: var(--cream);
}
.event-proof-copy h2 {
  font: 500 clamp(54px, 7vw, 106px) / 0.87 "Syne", sans-serif;
  letter-spacing: -0.065em;
  margin: 48px 0 35px;
}
.event-proof-copy h2 em {
  font-weight: 400;
  font-style: normal;
}
.event-proof-copy > p:last-child {
  font-size: 18px;
  line-height: 1.65;
  max-width: 540px;
}
.event-proof-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cocoa);
  box-shadow: 0 28px 70px rgba(44, 28, 22, 0.2);
}
.event-proof-media video {
  display: block;
  width: 100%;
  aspect-ratio: 848/480;
  object-fit: cover;
}
.event-proof-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  background: rgba(29, 21, 18, 0.7);
  backdrop-filter: blur(8px);
  padding: 9px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  pointer-events: none;
}
.event-proof-dark .event-proof-media {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}
@media (max-width: 760px) {
  .event-proof {
    padding: 95px 22px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .event-proof-copy h2 {
    margin-top: 45px;
  }
  .event-proof-copy > p:last-child {
    font-size: 16px;
  }
  .event-proof-media {
    width: calc(100% + 44px);
    margin-left: -22px;
    box-shadow: none;
  }
  .event-proof-media figcaption {
    left: 12px;
    bottom: 11px;
  }
}
.giveaway {
  position: relative;
  overflow: hidden;
  background: var(--metal);
  color: var(--ink);
  padding: 120px 7vw 115px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
}
.giveaway-burst {
  position: absolute;
  right: -4vw;
  top: -9vw;
  width: clamp(190px, 23vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cocoa);
  color: #fff;
  display: grid;
  place-items: center;
  transform: rotate(10deg);
}
.giveaway-burst::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}
.giveaway-burst span {
  font:
    600 clamp(18px, 2.2vw, 34px) "Syne",
    sans-serif;
  letter-spacing: 0.06em;
}
.giveaway-copy {
  position: relative;
  z-index: 1;
}
.giveaway h2 {
  font:
    500 clamp(62px, 8vw, 122px)/0.84 "Syne",
    sans-serif;
  letter-spacing: -0.07em;
  margin: 45px 0;
}
.giveaway h2 em {
  font-weight: 400;
  font-style: normal;
}
.giveaway-copy > p:last-child {
  font-size: 18px;
  line-height: 1.65;
  max-width: 670px;
}
.newsletter-form {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--cream);
  padding: 40px;
}
.newsletter-form label {
  display: block;
  margin-bottom: 28px;
}
.newsletter-form label span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.newsletter-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 10px 0 13px;
  font:
    400 18px "DM Sans",
    sans-serif;
  outline: none;
}
.newsletter-form input:focus {
  border-color: #fff;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.event-interest {
  margin: 4px 0 28px;
  padding: 0;
  border: 0;
}
.event-interest legend {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.event-interest > p {
  margin: 7px 0 13px;
  font-size: 12px;
  opacity: 0.62;
}
.event-interest > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.newsletter-form .event-interest label {
  margin: 0;
  cursor: pointer;
}
.event-interest input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.newsletter-form .event-interest label span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.event-interest input:checked + span {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.event-interest input:focus-visible + span {
  outline: 2px solid var(--metal);
  outline-offset: 3px;
}
.newsletter-form button {
  width: 100%;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  padding: 18px 20px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font:
    600 11px "DM Sans",
    sans-serif;
  letter-spacing: 0.14em;
  cursor: pointer;
}
.newsletter-status {
  min-height: 20px;
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--stone);
}
.newsletter-form.is-success {
  min-height: 240px;
  display: flex;
  align-items: center;
  border-top: 10px solid var(--metal);
}
.newsletter-success-message {
  margin: 0;
  color: var(--stone);
  font:
    600 clamp(22px, 5.5vw, 32px)/1.35 "DM Sans",
    sans-serif;
  letter-spacing: -0.025em;
  outline: none;
}
.form-note {
  font-size: 11px;
  line-height: 1.55;
  opacity: 0.65;
  margin: 13px 0 0;
}
.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  background: var(--cocoa);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25);
  font-size: 13px;
}
.whatsapp-float span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.whatsapp-float strong {
  font-weight: 500;
}
.back-to-top {
  position: fixed;
  z-index: 20;
  left: 24px;
  bottom: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  font-size: 17px;
}
.back-to-top strong {
  font-weight: 500;
}
#newsletter,
.inner-page section[id],
.events article[id],
#tickets {
  scroll-margin-top: 95px;
}
@media (max-width: 760px) {
  .giveaway {
    padding: 110px 22px 80px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .giveaway-burst {
    right: -55px;
    top: -45px;
    width: 190px;
  }
  .giveaway h2 {
    font-size: 16vw;
    margin-top: 60px;
  }
  .giveaway-copy > p:last-child {
    font-size: 16px;
  }
  .newsletter-form {
    padding: 28px 22px;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 13px;
  }
  .whatsapp-float strong {
    display: none;
  }
  .nav {
    padding: 18px 16px;
    align-items: center;
  }
  .nav.is-scrolled {
    padding: 12px 16px;
  }
  .wordmark {
    width: 145px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions > a.giveaway-nav {
    display: block;
    padding: 9px 10px;
    font-size: 8px;
    white-space: nowrap;
  }
  .hero-copy {
    bottom: 7vh;
  }
  .hero-giveaway {
    font-size: 11px;
    gap: 9px;
    padding: 11px 12px;
  }
  .back-to-top {
    left: 14px;
    bottom: 14px;
    padding-right: 10px;
  }
  .back-to-top strong {
    display: none;
  }
}

.giveaway .newsletter-form button {
  min-height: 62px;
  background: var(--metal);
  font-size: 16px;
  font-weight: 800;
}

/* Focused newsletter landing page for paid social traffic */
.newsletter-landing {
  min-height: 100svh;
  margin: 0;
  background: var(--ink);
  color: var(--cream);
}
.newsletter-landing-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.newsletter-landing-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(66, 42, 29, 0.16) 0%, rgba(66, 42, 29, 0.82) 42%, var(--ink) 68%),
    url("assets/hijabi-mall-hero-mobile-logo-v2.png") 67% 18% / cover no-repeat;
  opacity: 0.82;
}
.newsletter-landing-content {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 24px 18px 38px;
}
.newsletter-landing-logo {
  display: block;
  width: 190px;
  margin-bottom: 31vh;
}
.newsletter-landing-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.newsletter-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.newsletter-landing-copy h1 {
  margin: 0;
  font: 500 clamp(44px, 13vw, 70px)/0.91 "Syne", sans-serif;
  letter-spacing: -0.065em;
}
.newsletter-landing-copy h1 span {
  color: var(--stone);
}
.newsletter-landing-copy > p:last-child {
  margin: 22px 0 26px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
}
.newsletter-landing-form {
  padding: 28px 22px;
  border-top: 8px solid var(--stone);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}
.newsletter-landing-form button {
  min-height: 62px;
  background: var(--metal);
  font-size: 16px;
  font-weight: 800;
}
.newsletter-landing-form .form-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.newsletter-mini-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 20px 0 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.5;
}
.newsletter-mini-footer a {
  color: inherit;
  text-decoration: none;
}
.newsletter-mini-footer a:hover,
.newsletter-mini-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent {
  position: fixed;
  z-index: 100;
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(66, 42, 29, 0.2);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.28);
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
}
.cookie-consent a {
  color: inherit;
  text-decoration: underline;
}
.cookie-consent > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cookie-consent button {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: 700 11px "DM Sans", sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.cookie-consent button[data-consent="accepted"] {
  background: var(--ink);
  color: #fff;
}
@media (min-width: 820px) {
  .newsletter-landing-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(560px, 0.82fr);
  }
  .newsletter-landing-visual {
    position: relative;
    background:
      linear-gradient(90deg, rgba(66, 42, 29, 0.08), rgba(66, 42, 29, 0.25)),
      url("assets/hijabi-mall-hero-logo-desktop-v2.png") 70% center / cover no-repeat;
    opacity: 1;
  }
  .newsletter-landing-content {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 680px;
    align-self: center;
    padding: 48px 7vw 56px 5vw;
  }
  .newsletter-landing-logo {
    width: 220px;
    margin-bottom: 72px;
  }
  .newsletter-landing-copy h1 {
    font-size: clamp(52px, 5vw, 78px);
  }
  .cookie-consent {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
  }
  .cookie-consent[hidden] {
    display: none;
  }
  .cookie-consent p {
    flex: 1;
    margin: 0;
  }
  .cookie-consent > div {
    min-width: 270px;
  }
}

/* Individual city event pages */
.event-page {
  background: var(--stone);
}
.city-hero {
  position: relative;
  min-height: 720px;
  height: 88svh;
  overflow: hidden;
  background: var(--cocoa);
  color: #fff;
}
.city-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.city-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(66, 42, 29, 0.88), rgba(66, 42, 29, 0.16) 92%),
    linear-gradient(180deg, rgba(66, 42, 29, 0.3), transparent 45%, rgba(66, 42, 29, 0.38));
}
.city-hero-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 54px;
  max-width: 720px;
}
.city-hero h1 {
  margin: 20px 0 25px;
  font: 500 clamp(50px, 15vw, 76px)/0.88 "Syne", sans-serif;
  letter-spacing: -0.065em;
}
.city-hero h1 em,
.city-overview h2 em,
.city-brands h2 em {
  font-weight: 400;
  font-style: normal;
  color: var(--stone);
}
.city-hero-copy > p:not(.section-number) {
  font-size: 17px;
  line-height: 1.6;
}
.city-primary-cta,
.ticket-notify-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--metal);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.city-overview,
.city-tickets,
.city-brands {
  padding: 95px 20px;
}
.city-overview {
  display: grid;
  gap: 55px;
  background: var(--stone);
}
.city-overview h2,
.city-brands h2 {
  margin: 35px 0 45px;
  font: 500 clamp(48px, 13vw, 74px)/0.9 "Syne", sans-serif;
  letter-spacing: -0.06em;
}
.city-overview h2 em,
.city-brands h2 em {
  color: var(--cocoa);
}
.city-overview dl {
  margin: 0;
  border-top: 1px solid var(--line);
}
.city-overview dl div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.city-overview dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.city-overview dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}
.city-flyer {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.city-flyer img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--cocoa);
}
.city-flyer figcaption {
  padding: 14px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.city-flyer-pending img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 67% center;
}
.city-goodies {
  padding: 80px 20px;
  background: var(--metal);
  color: var(--ink);
}
.city-goodies span {
  display: block;
  font: 500 clamp(120px, 42vw, 210px)/0.75 "Syne", sans-serif;
  letter-spacing: -0.09em;
}
.city-goodies h2 {
  margin: 35px 0 0;
  font: 500 clamp(34px, 10vw, 58px)/0.95 "Syne", sans-serif;
  letter-spacing: -0.055em;
}
.city-tickets {
  background: var(--cocoa);
  color: #fff;
}
.city-section-head h2 {
  margin: 28px 0 55px;
  font: 500 clamp(64px, 18vw, 110px)/0.85 "Syne", sans-serif;
  letter-spacing: -0.07em;
}
.ticket-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.ticket-price-grid article {
  min-height: 145px;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.ticket-price-grid span {
  font-size: 13px;
  line-height: 1.35;
}
.ticket-price-grid span small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.78;
}
.ticket-price-grid strong {
  font: 500 46px/1 "Syne", sans-serif;
  letter-spacing: -0.06em;
}
.ticket-notify-cta {
  margin-top: 38px;
}
.ticket-link-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
}
.city-brands {
  background: var(--stone);
}
.city-brands > p:not(.section-number) {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
}
.brand-list-status {
  margin-top: 40px;
  padding: 45px 20px;
  border: 1px solid var(--ink);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.city-switcher {
  display: grid;
  background: var(--ink);
  color: #fff;
  padding: 70px 20px 95px;
}
.city-switcher > span {
  margin-bottom: 22px;
  font-size: 10px;
  letter-spacing: 0.18em;
}
.city-switcher a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font: 500 24px/1.1 "Syne", sans-serif;
}
.city-switcher a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.event-sticky-ticket {
  position: fixed;
  z-index: 22;
  left: 16px;
  right: 16px;
  bottom: 12px;
  min-height: 54px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--metal);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(66, 42, 29, 0.28);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.event-page .back-to-top,
.event-page .whatsapp-float {
  bottom: 82px;
}
.event-page #tickets,
.event-page section {
  scroll-margin-top: 105px;
}

@media (min-width: 900px) {
  .city-hero > img {
    object-position: center;
  }
  .city-hero-copy {
    left: 7vw;
    right: auto;
    bottom: 8vh;
  }
  .city-hero h1 {
    font-size: clamp(72px, 7vw, 112px);
  }
  .city-primary-cta {
    width: 390px;
  }
  .city-overview {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    align-items: start;
    gap: 9vw;
    padding: 140px 7vw;
  }
  .city-overview h2,
  .city-brands h2 {
    font-size: clamp(62px, 6.5vw, 104px);
  }
  .city-goodies {
    padding: 110px 7vw;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 8vw;
  }
  .city-goodies span {
    font-size: clamp(180px, 20vw, 320px);
  }
  .city-goodies h2 {
    margin: 0 0 5px;
    font-size: clamp(50px, 5vw, 78px);
  }
  .city-tickets,
  .city-brands {
    padding: 140px 7vw;
  }
  .city-section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
  .city-section-head h2 {
    margin: 0 0 80px;
    font-size: clamp(90px, 11vw, 170px);
  }
  .ticket-price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ticket-price-grid article {
    min-height: 210px;
    padding: 28px;
  }
  .ticket-price-grid strong {
    font-size: 64px;
  }
  .ticket-notify-cta {
    width: min(520px, 100%);
  }
  .brand-list-status {
    padding: 75px 30px;
  }
  .city-switcher {
    padding: 90px 7vw 120px;
  }
  .city-switcher a {
    font-size: 40px;
  }
  .event-sticky-ticket {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 280px;
  }
  .event-page .back-to-top {
    bottom: 24px;
  }
  .event-page .whatsapp-float {
    right: 328px;
    bottom: 24px;
  }
}

/* Compact homepage headline with more breathing room below the fixed navigation. */
.hero-copy {
  top: clamp(190px, 27vh, 240px);
  bottom: auto;
}
.hero-title-main,
.hero-title-location {
  display: block;
}
.hero-title-location {
  margin-top: 0.16em;
}

@media (max-width: 760px) {
  .hero {
    min-height: 720px;
  }
  .hero > .hero-media img {
    object-position: center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(35, 18, 12, 0.72), rgba(35, 18, 12, 0.12) 88%),
      linear-gradient(180deg, rgba(35, 18, 12, 0.28), transparent 42%, rgba(35, 18, 12, 0.2));
  }
  .hero-copy {
    top: 176px;
    left: 20px;
    right: 18px;
    bottom: auto;
  }
  .hero h1 {
    max-width: 330px;
    margin: 0;
    font-size: inherit;
    line-height: 1;
    letter-spacing: 0;
  }
  .hero-title-halal,
  .hero-title-shopping,
  .hero-title-location {
    display: block;
  }
  .hero-title-halal {
    font: 500 clamp(46px, 14vw, 60px)/0.9 "Syne", sans-serif;
    letter-spacing: -0.055em;
  }
  .hero-title-shopping {
    margin-top: 8px;
    font: 500 clamp(28px, 8.6vw, 37px)/0.95 "Syne", sans-serif;
    letter-spacing: -0.055em;
  }
  .hero-title-location {
    margin-top: 17px;
    font: 500 clamp(20px, 6vw, 25px)/1 "Syne", sans-serif;
    letter-spacing: -0.045em;
  }
  .hero-sub {
    margin-top: 11px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hero-ticket {
    margin-top: 18px;
  }
}
@media (min-width: 900px) {
  .hero-copy {
    top: clamp(170px, 22vh, 240px);
    bottom: auto;
  }
  .hero-title-halal,
  .hero-title-shopping {
    display: inline;
  }
}
