:root {
  color-scheme: dark;
  --ink: #f6f0df;
  --muted: #c9bfa9;
  --line: #3d3933;
  --black: #080808;
  --charcoal: #141311;
  --tolex: #1b1916;
  --case: #202424;
  --case-edge: #050505;
  --case-metal: #d9dadb;
  --case-metal-dark: #9ea0a1;
  --metal: #d9dadb;
  --brass: #d6a14c;
  --amber: #f0b449;
  --red: #b94935;
  --cream: #fff3d6;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  --case-shadow: 0 26px 72px rgba(0, 0, 0, 0.58);
  --honeycomb-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='42' viewBox='0 0 36 42'%3E%3Cg fill='none' stroke='%23050606' stroke-opacity='.3' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M12 0h12l6 10.5L24 21H12L6 10.5Z'/%3E%3Cpath d='M30 10.5h12L48 21l-6 10.5H30L24 21Z'/%3E%3Cpath d='M-6 10.5H6L12 21 6 31.5H-6L-12 21Z'/%3E%3Cpath d='M12 21h12l6 10.5L24 42H12L6 31.5Z'/%3E%3C/g%3E%3C/svg%3E");
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 161, 76, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 8%, rgba(185, 73, 53, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 12px 12px,
    linear-gradient(225deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 12px 12px,
    var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 100% 5px,
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 36rem);
  opacity: 0.75;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.site-header {
  --logo-overlap: clamp(52px, 5.5vw, 72px);

  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(10, 11, 11, 0.94)),
    radial-gradient(circle at 18px 50%, rgba(217, 218, 219, 0.16) 0 3px, transparent 4px) 0 0 / 70px 100%;
  border-bottom: 3px solid var(--case-metal);
  box-shadow:
    inset 0 -2px 0 var(--case-edge),
    0 10px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  margin-bottom: calc(-1 * var(--logo-overlap));
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(150px, 17vw, 230px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.72));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.6vw, 26px);
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: clamp(18px, 3.2vw, 42px);
  color: rgba(255, 243, 214, 0.84);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
  border-color: var(--amber);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(620px, calc(100vh - 170px));
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(22, 24, 24, 0.9) 54%, rgba(0, 0, 0, 0.42)),
    var(--black);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 26% 5%, rgba(240, 180, 73, 0.32), transparent 18rem),
    radial-gradient(circle at 84% 14%, rgba(185, 73, 53, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(217, 218, 219, 0.07) 1px, transparent 1px) 0 0 / 34px 34px;
  mix-blend-mode: screen;
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center center;
  z-index: -3;
  filter: saturate(0.98) contrast(1.06) brightness(0.9);
}

.hero__wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.74) 43%, rgba(8, 8, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(8, 8, 8, 0.7) 100%);
}

.hero__content {
  width: min(700px, 100%);
  align-self: center;
  padding: clamp(48px, 6vw, 82px) clamp(20px, 7vw, 86px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: normal;
}

h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 13ch;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 5.45rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.8),
    0 0 34px rgba(240, 180, 73, 0.18);
}

h2 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.intro {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero__actions,
.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 2px solid var(--case-edge);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.32),
    0 14px 28px rgba(0, 0, 0, 0.32);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  color: #100d08;
  background:
    linear-gradient(180deg, #f3c36a, var(--brass));
  border-color: rgba(255, 243, 214, 0.28);
}

.button--primary:hover {
  background:
    linear-gradient(180deg, #ffd47d, #c88d31);
}

.hero__actions .button + .button {
  color: var(--cream);
  background:
    linear-gradient(180deg, #242828, #111313);
  border-color: var(--case-metal);
}

.hero__actions .button + .button:hover {
  color: var(--white);
  border-color: var(--amber);
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max-width), calc(100% - 40px));
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 9px solid var(--case-metal);
  border-radius: var(--radius);
  background:
    var(--honeycomb-pattern),
    linear-gradient(180deg, #252a2a, #131616);
  box-shadow:
    inset 0 0 0 4px var(--case-edge),
    var(--case-shadow);
}

.event-strip::before,
.event-strip::after {
  position: absolute;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--case-metal);
  box-shadow:
    0 0 0 3px var(--case-edge),
    0 76px 0 var(--case-metal),
    0 76px 0 3px var(--case-edge);
  content: "";
}

.event-strip::before {
  left: 14px;
}

.event-strip::after {
  right: 14px;
}

.event-strip div {
  padding: clamp(20px, 3vw, 30px) clamp(24px, 3vw, 36px);
}

.event-strip div + div {
  border-left: 2px solid rgba(217, 218, 219, 0.22);
}

.event-strip span,
.status-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-strip strong,
.status-panel strong {
  display: block;
  color: var(--cream);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.status-panel__button {
  width: fit-content;
}

.section,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 94px) 0;
}

.section--intro,
.section--split,
.section--cards {
  display: grid;
  gap: clamp(26px, 5vw, 58px);
}

.section--intro > *,
.section--split > *,
.section--cards > *,
.cards > * {
  min-width: 0;
}

.section--intro {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: end;
}

.section--intro > p,
.section__copy p,
.feature-list {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section__copy p:not(.eyebrow) {
  margin-top: 20px;
}

.section--split {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: center;
  border-top: 2px solid rgba(217, 218, 219, 0.16);
}

.section--alt {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 0.9fr);
}

.section--alt .section__copy {
  order: 2;
}

.status-panel,
.feature-list,
.card {
  position: relative;
  overflow: hidden;
  border: 8px solid var(--case-metal);
  border-radius: var(--radius);
  background:
    var(--honeycomb-pattern),
    linear-gradient(180deg, #242828, #111313);
  box-shadow:
    inset 0 0 0 4px var(--case-edge),
    var(--case-shadow);
}

.status-panel::before,
.feature-list::before,
.card::before,
.logo-panel::before {
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(217, 218, 219, 0.14);
  border-radius: 3px;
  pointer-events: none;
  content: "";
}

.status-panel {
  display: grid;
}

.status-panel div,
.status-panel form {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.status-panel div + div,
.status-panel form {
  border-top: 2px solid rgba(217, 218, 219, 0.18);
}

.travel-methods {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.travel-methods b {
  color: var(--cream);
}

.travel-methods li::marker {
  color: var(--amber);
}

.signup-panel {
  display: grid;
  gap: 14px;
}

.signup-panel label {
  position: relative;
  display: grid;
  min-width: 0;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-panel label:not(.signup-panel__consent) > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  color: rgba(255, 243, 214, 0.72);
  pointer-events: none;
  transition:
    color 160ms ease,
    font-size 160ms ease,
    transform 160ms ease;
}

.signup-panel input[type="email"],
.signup-panel input[type="text"] {
  width: 100%;
  min-height: 46px;
  padding: 18px 12px 8px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.74);
  border: 2px solid rgba(217, 218, 219, 0.34);
  border-radius: var(--radius);
  font: inherit;
  letter-spacing: 0;
}

.signup-panel label:not(.signup-panel__consent) input:focus + span,
.signup-panel label:not(.signup-panel__consent) input:not(:placeholder-shown) + span {
  color: var(--amber);
  font-size: 0.66rem;
  transform: translateY(-10px);
}

.signup-panel input:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.signup-panel__consent {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.signup-panel__consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--amber);
}

.signup-panel label.signup-panel__consent > span {
  position: static;
  color: inherit;
  font-size: inherit;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.signup-panel .button {
  width: fit-content;
}

.signup-panel__message {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  font-weight: 800;
}

.signup-panel__message.is-error {
  color: #ffb7a8;
}

.signup-panel__message.is-success {
  color: #ffe0a1;
}

.venue-map {
  position: relative;
  min-height: 260px;
  margin-top: clamp(24px, 4vw, 34px);
  overflow: hidden;
  border: 8px solid var(--case-metal);
  border-radius: var(--radius);
  background:
    var(--honeycomb-pattern),
    linear-gradient(180deg, #242828, #111313);
  box-shadow:
    inset 0 0 0 4px var(--case-edge),
    var(--case-shadow);
}

.venue-map::before {
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 2px solid rgba(217, 218, 219, 0.14);
  border-radius: 3px;
  pointer-events: none;
  content: "";
}

.venue-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.2)),
    linear-gradient(90deg, rgba(11, 11, 11, 0.24), transparent 42%, rgba(11, 11, 11, 0.12));
  pointer-events: none;
  content: "";
}

.venue-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: saturate(0.78) contrast(1.08) brightness(0.88);
}

.text-link {
  display: inline-block;
  max-width: 100%;
  margin-top: 22px;
  color: var(--amber);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 26px 26px 26px 46px;
}

.feature-list li {
  position: relative;
  z-index: 1;
}

.feature-list li::marker {
  color: var(--red);
}

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

.card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.card h3,
.card .status,
.social-links {
  position: relative;
  z-index: 1;
}

.status {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(185, 73, 53, 0.28);
  border: 1px solid rgba(214, 161, 76, 0.4);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status--link {
  color: #100d08;
  background: linear-gradient(180deg, #f3c36a, var(--brass));
  text-decoration: none;
}

.status--link:hover {
  background: linear-gradient(180deg, #ffd47d, #c88d31);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-section {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  border-top: 1px solid rgba(185, 177, 161, 0.24);
}

.logo-panels {
  display: grid;
  gap: 28px;
}

.logo-panels__loading {
  margin: 0;
  color: var(--muted);
}

.logo-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 10px solid var(--case-metal);
  border-radius: var(--radius);
  background:
    var(--honeycomb-pattern),
    linear-gradient(180deg, #242828, #111313);
  box-shadow:
    inset 0 0 0 4px var(--case-edge),
    var(--case-shadow);
}

.logo-panel::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--case-metal);
  box-shadow:
    0 0 0 3px var(--case-edge),
    0 calc(100% + 8px) 0 var(--case-metal),
    0 calc(100% + 8px) 0 3px var(--case-edge);
  content: "";
}

.logo-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--amber);
  letter-spacing: 0.08em;
}

.logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 14px;
}

.logo-card {
  display: grid;
  min-width: 0;
  min-height: 132px;
  align-content: center;
  gap: 8px;
  padding: 12px;
  color: var(--muted);
  border: 3px solid var(--case-edge);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 245, 245, 0.98), rgba(211, 213, 214, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 18px rgba(0, 0, 0, 0.24);
  text-align: center;
  text-decoration: none;
}

.logo-card:hover {
  border-color: var(--amber);
}

.logo-card img {
  display: block;
  width: 100%;
  height: 86px;
  object-fit: contain;
  filter: contrast(1.04);
}

.logo-card span {
  color: #2b2720;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.logo-panel:first-child .logo-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.logo-panel:first-child .logo-card {
  min-height: 154px;
}

.logo-panel:first-child .logo-card img {
  height: 102px;
}

.site-footer {
  justify-content: space-between;
  border-top: 8px solid var(--case-metal);
}

.site-footer h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    margin-bottom: 0;
  }

  .brand__logo {
    width: min(230px, 66vw);
    max-width: 100%;
    height: auto;
  }

  .site-nav {
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    align-self: start;
    padding: 42px 20px 120px;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.86) 58%, rgba(8, 8, 8, 0.56) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08));
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .event-strip,
  .section--intro,
  .section--split,
  .section--alt,
  .cards,
  .logo-grid,
  .logo-panel:first-child .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 112px;
    align-items: center;
    text-align: left;
  }

  .logo-card img,
  .logo-panel:first-child .logo-card img {
    height: 78px;
  }

  .event-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(185, 177, 161, 0.22);
  }

  .section--alt .section__copy {
    order: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 18px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero__content {
    padding: 34px 18px 104px;
  }

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

  .button {
    width: 100%;
  }

  .signup-panel .button {
    width: 100%;
  }

  .status-panel__button {
    width: 100%;
  }

  .event-strip,
  .section,
  .site-footer {
    width: min(100% - 44px, var(--max-width));
  }

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