/* LFG brand teaser. Single-theme by design: the brand's ink, cream, and gold
   world, painted explicitly. Fonts are self-hosted (SIL OFL faces); the only
   third-party request is the ElevenLabs voice agent, loaded after the gate. */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --ink: #0e0b08;
  --ink-2: #16110c;
  --cream: #f4efe6;
  --cream-2: #ebe4d6;
  --paper: #faf7f1;
  --gold: #c68436;
  --bronze: #905424;
  --gold-light: #eaae60;
  --text-dark: #1b150e;
  --text-dark-muted: #6d6254;
  --text-light: #f4efe6;
  --text-light-muted: rgba(244, 239, 230, 0.66);
  --line-dark: rgba(27, 21, 14, 0.18);
  --line-light: rgba(244, 239, 230, 0.22);
  --display: "Anton", "Arial Narrow", "Impact", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --pad-x: 1.5rem;
  --nav-h: 5.5rem;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; text-transform: uppercase; color: inherit; }
:where(a) { color: inherit; text-decoration: none; }
img, video { max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: 100%; max-width: 74rem; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); box-sizing: border-box; }
.eyebrow { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1.4rem; }
.band-dark .eyebrow, .hero .eyebrow, .gate .eyebrow { color: var(--gold-light); }
.h1 { font-size: clamp(2.7rem, 10.5vw, 6.75rem); line-height: 0.98; letter-spacing: 0.012em; }
.h2 { font-size: clamp(2.15rem, 7.5vw, 4.35rem); line-height: 1.03; letter-spacing: 0.012em; }
.cocktail-heading .tone { display: block; }
.source-heading .tone { display: block; }
.tone { color: var(--bronze); }
.band-dark .tone, .hero .tone { color: var(--gold-light); }
.lede { max-width: 38em; color: var(--text-dark-muted); margin: 1.6rem 0 0; }
.band-dark .lede { color: var(--text-light-muted); }
.band { position: relative; padding: 5.5rem 0; scroll-margin-top: var(--nav-h); }
.band-light { background: var(--cream); color: var(--text-dark); }
.showcase-band { position: relative; height: 165svh; background: var(--ink-2); }
.band-dark { background: var(--ink); color: var(--text-light); }

.image-band { position: relative; overflow: clip; }
.band-media { position: absolute; inset: 0; }
.band-media img { position: absolute; left: 0; top: -8%; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.band-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,11,8,.78) 0%, rgba(14,11,8,.52) 50%, rgba(14,11,8,.8) 100%); }
.band-content { position: relative; }
.image-band-tall { padding: 9rem 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 1.05rem 1.7rem; border: 1px solid currentColor; background: transparent; color: inherit;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; line-height: 1; cursor: pointer; white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-filled { background: var(--text-dark); border-color: var(--text-dark); color: var(--cream); }
.btn-filled:hover { background: var(--bronze); border-color: var(--bronze); color: var(--cream); }
.band-dark .btn-filled, .hero .btn-filled, .mobile-bar .btn-filled, .gate .btn-filled { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.band-dark .btn-filled:hover, .hero .btn-filled:hover, .mobile-bar .btn-filled:hover, .gate .btn-filled:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost:hover { background: rgba(198,132,54,.12); border-color: var(--gold); }
.btn[disabled] { opacity: 0.6; cursor: default; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40; height: var(--nav-h);
  box-sizing: border-box;
  display: flex; align-items: center; background: transparent; color: var(--cream);
  transition: background-color .35s ease, color .35s ease;
}
.nav.solid { background: rgba(244,239,230,.9); color: var(--text-dark); box-shadow: none; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; }
.nav-brand { display: inline-flex; align-items: center; justify-content: center; height: 100%; }
.nav-logo { display: block; width: auto; height: 3.9rem; }

.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: clip; padding-bottom: 4.5rem; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(0.35) contrast(1.06) brightness(0.92) sepia(0.18);
}
.ken-burns { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.12) translateY(-2.5%); } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,11,8,.65) 0%, rgba(14,11,8,.32) 34%, rgba(14,11,8,.52) 66%, var(--ink) 100%); }
.hero-top-eyebrow { position: absolute; top: calc(var(--nav-h) + 1.6rem); left: 0; right: 0; z-index: 2; }
.hero-top-eyebrow .eyebrow { margin-bottom: 0; color: rgba(244,239,230,.82); }
.hero-content { position: relative; z-index: 2; }
.hero-headline { margin-top: 0.4rem; }
.hero-lede { max-width: 34em; color: rgba(244,239,230,.85); margin: 1.5rem 0 0; }
.moments { display: flex; flex-wrap: wrap; column-gap: 0.8rem; row-gap: 0.35rem; align-items: baseline; margin: 2.6rem 0 0; list-style: none; padding: 0; }
.moment-item { display: inline-flex; align-items: baseline; gap: 0.8rem; }
.moment-word { font-family: var(--display); font-size: clamp(1.05rem, 3.1vw, 1.5rem); letter-spacing: 0.04em; text-transform: uppercase; color: rgba(244,239,230,.32); transition: color .6s ease; white-space: nowrap; }
.moment-word.active { color: var(--gold-light); }
.moment-dot { color: rgba(244,239,230,.3); font-size: 1rem; }

.showcase-stage { position: sticky; top: 0; width: 100%; height: 100svh; overflow: hidden; background: var(--ink-2); }
.showcase-background, .showcase-background img { display: block; width: 100%; height: 100%; }
.showcase-background { position: absolute; inset: 0; clip-path: inset(0 0 18% 0); }
.showcase-background img { object-fit: cover; }
.showcase-surface {
  --showcase-lift: 0px;
  position: absolute; z-index: 1; left: 0; right: 0; bottom: -18svh; height: 36svh; overflow: hidden;
  transform: translate3d(0, var(--showcase-lift), 0); pointer-events: none;
}
.showcase-surface img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.showcase-cans {
  --showcase-lift: 0px;
  position: absolute; z-index: 2; left: 50%; bottom: 1%; display: flex; align-items: flex-end; justify-content: center;
  width: 100%; transform: translate3d(-50%, var(--showcase-lift), 0); pointer-events: none;
}
.showcase-can {
  --showcase-shift: 0%;
  position: relative; flex: 0 0 auto; width: 36%; height: auto; margin-left: -20%;
  transform: translate3d(0, var(--showcase-shift), 0);
  transform-origin: center bottom; filter: drop-shadow(0 1rem 1rem rgba(14,11,8,.22));
}
.showcase-can:first-child { margin-left: 0; }
.showcase-can:nth-child(1), .showcase-can:nth-child(5) { z-index: 1; }
.showcase-can:nth-child(2), .showcase-can:nth-child(4) { z-index: 2; }
.showcase-can:nth-child(3) { z-index: 3; }
.showcase-band.motion-ready .showcase-can, .showcase-band.motion-ready .showcase-cans, .showcase-band.motion-ready .showcase-surface { will-change: transform; }
.showcase-band + .band-light { position: relative; z-index: 3; margin-top: -8svh; }

.arc-table { margin-top: 3rem; border-top: 1px solid var(--line-dark); }
.arc-row { display: grid; grid-template-columns: 1fr; gap: 0.3rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line-dark); }
.arc-name { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--bronze); }
.arc-desc { color: var(--text-dark-muted); }
.arc-close { margin-top: 2.2rem; font-style: italic; color: var(--text-dark-muted); }

.flavor-experience { margin-top: 3.2rem; border: 1px solid var(--line-light); background: #12100d; }
.flavor-stage {
  --flavor-accent: #30a967;
  display: grid; grid-template-rows: 22rem minmax(0, 1fr); height: 40rem; overflow: hidden;
  background: var(--ink-2); border-bottom: 1px solid var(--line-light);
}
.flavor-stage-media { position: relative; z-index: 1; min-width: 0; overflow: hidden; background: #171816; }
.flavor-stage-track {
  position: absolute; inset: 0; display: flex; width: 100%; height: 100%;
  transform: translate3d(0,0,0); transition: transform .82s cubic-bezier(.45,0,.55,1); will-change: transform;
}
.flavor-scene {
  position: relative; isolation: isolate; display: flex; flex: 0 0 100%; align-items: flex-end; justify-content: center;
  gap: clamp(.45rem, 2vw, 1.3rem); width: 100%; min-width: 0; height: 100%; padding: 1rem 1.25rem 0; box-sizing: border-box; overflow: hidden;
}
.flavor-stage-background {
  position: absolute; z-index: -2; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center bottom;
  filter: brightness(.88) saturate(.94); transform: scale(1.01);
}
.flavor-scene::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(8,9,8,.08); pointer-events: none; }
.flavor-stage-background[hidden] { display: none; }
.flavor-can-frame { position: relative; z-index: 1; display: grid; place-items: end center; width: min(45%, 11.5rem); height: 100%; min-width: 0; }
.flavor-scene.flavor-paired-overlap .flavor-can-frame:first-of-type { z-index: 2; transform: translateX(22%); }
.flavor-scene.flavor-paired-overlap .flavor-can-frame:last-of-type {
  transform: translateX(-26%) translateY(-5px) scale(.96); transform-origin: center bottom;
}
.flavor-can-image { display: block; width: auto; max-width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.flavor-can-placeholder {
  position: relative; display: grid; align-content: center; justify-items: center; width: min(100%, 10.5rem); height: 88%;
  box-sizing: border-box; border: 1px solid color-mix(in srgb, var(--flavor-accent) 62%, transparent); border-radius: 4.5rem 4.5rem 2.2rem 2.2rem;
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.09) 48%, rgba(255,255,255,.025));
  color: color-mix(in srgb, var(--flavor-accent) 72%, var(--cream)); font-size: .63rem; font-weight: 700; letter-spacing: .28em;
}
.flavor-can-placeholder[hidden] { display: none; }
.flavor-can-placeholder::before { content: ""; position: absolute; top: -.2rem; left: 7%; right: 7%; height: .72rem; border: 1px solid color-mix(in srgb, var(--gold-light) 62%, transparent); border-radius: 50%; }
.flavor-placeholder-number { display: block; font-family: var(--display); font-size: clamp(4.8rem, 20vw, 8rem); line-height: .9; letter-spacing: 0; color: color-mix(in srgb, var(--flavor-accent) 28%, transparent); }
.flavor-stage-copy {
  position: relative; z-index: 4; display: flex; flex-direction: column; justify-content: center; min-width: 0;
  padding: 1.05rem 1.25rem 1.15rem; box-sizing: border-box; background: var(--ink-2);
  border-top: 3px solid var(--flavor-accent); transition: border-color .24s ease;
}
.flavor-stage-copy-content { opacity: 1; transition: opacity .41s cubic-bezier(.45,0,.55,1); }
.flavor-stage-copy-content.is-fading { opacity: 0; }
.flavor-num { display: block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.28em; color: var(--text-light-muted); margin-bottom: 0.7rem; }
.flavor-name { font-size: clamp(1.55rem, 6vw, 2.6rem); line-height: 1.03; }
.flavor-expression { display: block; margin-top: 0.65rem; font-size: 0.7rem; line-height: 1.35; font-weight: 600; letter-spacing: 0.21em; text-transform: uppercase; color: var(--gold-light); }
.flavor-copy { margin: 0.7rem 0 0; max-width: 34em; color: var(--text-light-muted); font-size: 0.9rem; line-height: 1.5; }
.flavor-meta { display: block; margin-top: 0.85rem; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.26em; color: rgba(244,239,230,.4); }
.flavor-selectors {
  display: grid; grid-auto-flow: column; grid-auto-columns: 9.25rem; overflow-x: auto; overscroll-behavior-inline: contain;
  scrollbar-width: thin; scrollbar-color: rgba(234,174,96,.45) transparent;
}
.flavor-selector {
  --selector-accent: var(--gold-light);
  position: relative; display: flex; flex-direction: column; justify-content: space-between; width: 100%; height: 7rem; min-width: 0;
  padding: .85rem 1rem; box-sizing: border-box; border: 0; border-right: 1px solid var(--line-light); border-radius: 0;
  background: transparent; color: var(--cream); text-align: left; cursor: pointer; overflow: hidden;
  transition: background-color .25s ease, color .25s ease;
}
.flavor-selector:last-child { border-right: 0; }
.flavor-selector::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: .25rem; background: var(--selector-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.flavor-selector:hover { background: rgba(255,255,255,.035); }
.flavor-selector.is-active { background: color-mix(in srgb, var(--selector-accent) 10%, transparent); }
.flavor-selector.is-active::after { transform: scaleX(1); }
.flavor-selector-index { font-family: var(--display); font-size: 1.25rem; line-height: .9; color: color-mix(in srgb, var(--selector-accent) 72%, var(--cream)); }
.flavor-selector-name { font-family: var(--display); font-size: .88rem; line-height: 1.03; letter-spacing: .035em; text-transform: uppercase; }
.abv-note { display: block; margin-top: 1.6rem; font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(244,239,230,.45); }

.band.story-band { position: relative; overflow: hidden; min-height: 0; padding: 7rem 0 7.6rem; box-sizing: border-box; display: grid; align-items: center; background: var(--cream); }
.story-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--cream); }
.story-media img { display: block; width: 104%; height: 100%; object-fit: cover; object-position: left 43%; transform: translateX(-10%); filter: saturate(.92) contrast(1.02); }
.story-scrim { position: absolute; inset: 0; background: linear-gradient(270deg, rgba(244,239,230,1) 0%, rgba(244,239,230,1) 14%, rgba(244,239,230,0) 34%), linear-gradient(180deg, rgba(244,239,230,.93) 0%, rgba(244,239,230,.87) 50%, rgba(244,239,230,.58) 73%, rgba(244,239,230,.14) 100%); }
.story-grid { position: relative; z-index: 1; display: grid; gap: 3rem; }
.story-copy { max-width: 40rem; margin-left: auto; text-align: right; }
.story-heading > span { display: block; white-space: nowrap; }
.story-copy .lede { max-width: 27rem; margin-left: auto; text-align: right; }
.stat-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: flex-end; gap: 1.7rem; margin-top: 3rem; }
.stat-number { font-family: var(--display); font-size: clamp(4.5rem, 16vw, 7.5rem); line-height: 0.85; color: var(--bronze); }
.stat-label { display: block; margin-top: 0.8rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; color: var(--text-dark-muted); }
.stat-lines { max-width: 21rem; list-style: none; margin: 0; padding: 0; font-family: var(--display); font-size: clamp(1.25rem, 4.5vw, 1.75rem); line-height: 1.25; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-lines > span { display: block; }
.launch-band { padding: 7.5rem 0 6.5rem; }
.launch-band .band-media img { object-position: center center; filter: saturate(.84) contrast(1.04) brightness(.92); }
.launch-band .band-scrim { background: linear-gradient(180deg, rgba(14,11,8,.62) 0%, rgba(14,11,8,.42) 48%, rgba(14,11,8,.70) 100%); }
.launch-copy { max-width: 42rem; }
.state-launch { width: min(100%, 60rem); margin-top: 5rem; }
.state-group { min-width: 0; }
.launch-phase { display: block; margin-bottom: 1.8rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; color: var(--text-light-muted); }
.state-pair { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.65rem, 2vw, 1.5rem); }
.state-card { min-width: 0; text-align: center; transition: transform .35s ease; }
.state-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 0.55rem; }
.state-art { display: grid; place-items: center; height: 10.5rem; }
.state-art img { display: block; width: auto; max-width: 7.25rem; height: auto; max-height: 100%; object-fit: contain; transition: transform .35s ease, filter .35s ease, opacity .35s ease; }
.state-card h3 { margin-top: 1rem; font-size: clamp(.82rem, 3.35vw, 1.85rem); letter-spacing: 0.05em; }
.state-card-active h3 { color: var(--gold-light); }
.state-card-active .state-art img { filter: brightness(0) saturate(100%) invert(72%) sepia(44%) saturate(647%) hue-rotate(351deg) brightness(97%) contrast(92%); }
.state-card:hover, .state-card:focus-visible { transform: translateY(-0.55rem); }
.state-card-active:hover .state-art img, .state-card-active:focus-visible .state-art img { filter: brightness(0) saturate(100%) invert(72%) sepia(44%) saturate(647%) hue-rotate(351deg) brightness(1.08) contrast(92%) drop-shadow(0 0 0.75rem rgba(234,174,96,.42)); }

.founder-band { min-height: 52rem; padding: 7.5rem 0; box-sizing: border-box; display: grid; align-items: center; }
.founder-band .band-media img { object-position: center center; filter: saturate(.78) contrast(1.08) brightness(.76); }
.founder-scrim { background: radial-gradient(circle at center, rgba(14,11,8,.54) 0%, rgba(14,11,8,.72) 58%, rgba(14,11,8,.9) 100%); }
.founder-content { width: 100%; }
.founder-message { max-width: 62rem; margin: 0 auto; text-align: center; }
.founder-logo { display: block; width: clamp(6.5rem, 18vw, 9rem); height: auto; margin: 0 auto 2.75rem; }
.founder-quote { margin: 0; color: var(--gold-light); font-size: clamp(1rem, 2vw, 1.22rem); line-height: 1.8; text-wrap: balance; }
.founder-quote p { margin: 0; }
.founder-quote p + p { margin-top: 1.6rem; }
.founder-paragraph:nth-child(2) { transition-delay: .12s; }
.founder-paragraph:nth-child(3) { transition-delay: .24s; }
.founder-signature { margin: 2.5rem 0 0; color: var(--gold-light); font-size: .8rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; }

.notify-form { display: flex; flex-direction: column; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; max-width: 34rem; }
.input, .select {
  width: 100%; padding: 1.05rem 1.1rem; background: transparent; border: 1px solid var(--line-dark);
  color: inherit; font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0.04em; border-radius: 0;
  appearance: none; box-sizing: border-box;
}
.band-dark .input, .band-dark .select { border-color: var(--line-light); }
.input::placeholder { color: var(--text-dark-muted); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.22em; }
.band-dark .input::placeholder { color: rgba(244,239,230,.45); }
.input:focus, .select:focus { outline: none; border-color: var(--gold); }
.select { text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.22em; }
.select:invalid { color: var(--text-dark-muted); }
.band-dark .select:invalid { color: rgba(244,239,230,.45); }
.select option { color: var(--text-dark); background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; margin-top: 2.4rem; max-width: 44rem; }
.form-success { margin-top: 1.4rem; font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-light); }
.form-error { margin-top: 1rem; font-size: 0.85rem; color: #c96a4a; }
.form-disclosure { margin: 0.25rem 0 0; color: var(--text-light-muted); font-size: 0.72rem; line-height: 1.6; letter-spacing: 0.01em; }
.form-disclosure a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 0.18em; }
.closer-form .form-disclosure { flex-basis: 100%; text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; }

.trade-layout { display: grid; grid-template-areas: "copy" "venues" "form"; }
.trade-copy { grid-area: copy; }
.trade-form { grid-area: form; }
.trade-form .form-grid { margin-top: 3.5rem; }
.venue-list { grid-area: venues; margin-top: 3.75rem; }
.venue-list-title {
  display: block; margin-bottom: 1.5rem; color: var(--gold-light); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
}
.venue-list-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.venue-item {
  display: grid; grid-template-columns: 1.65rem minmax(0, 1fr); gap: 0.9rem; align-items: center;
  color: rgba(244,239,230,.84); font-family: var(--display); font-size: clamp(1.15rem, 4.6vw, 1.5rem);
  line-height: 1.2; letter-spacing: 0.035em; text-transform: uppercase;
  opacity: 0; transform: translateY(14px);
  transition: opacity .68s ease-out, transform .68s cubic-bezier(.22, 1, .36, 1);
}
.venue-item::before { content: ""; width: 1.65rem; height: 1px; background: var(--gold); }
.venue-list.in .venue-item { opacity: 1; transform: translateY(0); }
.venue-list.in .venue-item:nth-child(2) { transition-delay: .09s; }
.venue-list.in .venue-item:nth-child(3) { transition-delay: .18s; }
.venue-list.in .venue-item:nth-child(4) { transition-delay: .27s; }
.venue-list.in .venue-item:nth-child(5) { transition-delay: .36s; }
.venue-list.in .venue-item:nth-child(6) { transition-delay: .45s; }
.venue-list.in .venue-item:nth-child(7) { transition-delay: .54s; }
.venue-list.in .venue-item:nth-child(8) { transition-delay: .63s; }
.venue-list.in .venue-item:nth-child(9) { transition-delay: .72s; }
.venue-list.in .venue-item:nth-child(10) { transition-delay: .81s; }

.closer { text-align: center; padding: 8rem 0; }
.closer .cta-row { justify-content: center; }
.closer .lede, .closer-form { margin-left: auto; margin-right: auto; }
.closer .form-success, .closer .form-error { text-align: center; }

.footer { background: var(--paper); color: var(--text-dark); padding: 4.5rem 0 8.5rem; }
.footer-grid { display: grid; gap: 3rem; }
.footer-brand img { width: 7.5rem; height: auto; }
.footer-tagline { display: block; margin-top: 1.4rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-dark-muted); line-height: 2; }
.footer-cols { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.4rem; }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-dark-muted); margin-bottom: 1.2rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; font-size: 0.98rem; }
.footer-links a { color: var(--text-dark); opacity: 0.82; transition: opacity .2s ease, color .2s ease; }
.footer-links a:hover { opacity: 1; color: var(--bronze); }
.footer-legal { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); font-size: 0.82rem; color: var(--text-dark-muted); display: grid; gap: 0.4rem; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.7rem; padding: 0.8rem var(--pad-x) calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(14,11,8,.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line-light);
  transform: translateY(105%); transition: transform .45s ease;
}
.mobile-bar.visible { transform: translateY(0); }
.mobile-bar .btn { padding: 1rem 0.5rem; }
.mobile-bar .btn-ghost { color: var(--cream); }

.intro {
  position: fixed; inset: 0; z-index: 55; display: grid; place-items: center;
  background: var(--ink); pointer-events: none; opacity: 1; transition: opacity .8s ease-in-out;
}
.intro.out { opacity: 0; }
.intro-logo { width: min(52vw, 17rem); height: auto; opacity: 0; transform: scale(.96); transition: opacity .7s ease-out, transform .7s ease-out; }
.intro.play .intro-logo { opacity: 1; transform: scale(1); }

.gate { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; background: var(--ink); padding: var(--pad-x); text-align: center; }
.gate[hidden] { display: none; }
.gate-inner { max-width: 30rem; display: flex; flex-direction: column; align-items: center; }
.gate-mark { width: 4.5rem; height: auto; margin-bottom: 2rem; }
.gate-title { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.05; }
.gate-question { margin: 1.2rem 0 0; color: var(--text-light-muted); }
.gate-buttons { display: flex; gap: 0.9rem; margin-top: 2.4rem; flex-wrap: wrap; justify-content: center; }
.gate-declined { margin-top: 2rem; color: var(--text-light-muted); font-style: italic; }

.legal-body { background: var(--cream); color: var(--text-dark); }
.legal-body .nav { position: fixed; }
.legal-page { min-height: 70vh; padding: calc(var(--nav-h) + 5rem) 0 6rem; }
.legal-shell { max-width: 52rem; }
.legal-kicker { display: block; margin-bottom: 1.2rem; color: var(--bronze); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; }
.legal-title { font-size: clamp(3rem, 10vw, 5.75rem); line-height: 0.98; }
.legal-date { margin: 1.4rem 0 0; color: var(--text-dark-muted); font-size: 0.86rem; }
.legal-draft { margin: 2.4rem 0; padding: 1.2rem 1.35rem; border: 1px solid var(--gold); background: rgba(198,132,54,.08); color: var(--text-dark); font-size: 0.88rem; line-height: 1.6; }
.legal-copy { margin-top: 3.5rem; }
.legal-copy h2 { margin-top: 3rem; font-size: clamp(1.7rem, 5vw, 2.4rem); line-height: 1.1; }
.legal-copy h3 { margin-top: 2rem; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.legal-copy p, .legal-copy li { color: var(--text-dark-muted); }
.legal-copy p { margin: 1rem 0 0; }
.legal-copy ul { margin: 1rem 0 0; padding-left: 1.25rem; }
.legal-copy li + li { margin-top: 0.55rem; }
.legal-copy a { color: var(--bronze); text-decoration: underline; text-underline-offset: 0.18em; }
.legal-placeholder { color: #8b3f2a; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .notify-form { flex-direction: row; }
  .notify-form .input { flex: 1; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .grid-wide { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
  :root { --pad-x: 2.5rem; }
  .band { padding: 7.5rem 0; }
  .showcase-band { height: 190svh; }
  .showcase-stage { height: 100svh; }
  .showcase-cans { left: 50.5%; bottom: 1.4%; width: min(92vw, 90rem); }
  .showcase-can { width: 22%; margin-left: -2.5%; }
  .showcase-band + .band-light { margin-top: -12svh; }
  .launch-band { padding: 9rem 0 8rem; }
  .state-art { height: 11.5rem; }
  .state-art img { max-width: 10rem; }
  .flavor-stage { grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr); grid-template-rows: 1fr; height: 36.5rem; }
  .flavor-scene { padding: 1.5rem 2rem 0; }
  .flavor-can-frame { width: min(46%, 15rem); height: 92%; }
  .flavor-scene.flavor-paired-overlap .flavor-can-frame:last-of-type { transform: translateX(-26%) translateY(-8px) scale(.96); }
  .flavor-stage-copy { padding: clamp(1.8rem, 3.5vw, 3rem); border-top: 0; border-left: 3px solid var(--flavor-accent); }
  .flavor-selectors { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(5, minmax(0, 1fr)); overflow: visible; }
  .flavor-selector { width: 100%; height: 9rem; padding: clamp(.9rem, 1.7vw, 1.25rem); }
  .flavor-selector-index { font-size: clamp(1.3rem, 1.9vw, 1.7rem); }
  .flavor-selector-name { font-size: clamp(.82rem, 1.25vw, 1.02rem); }
  .trade-layout {
    grid-template-columns: minmax(0, 7fr) minmax(17rem, 5fr);
    grid-template-areas: "copy venues" "form venues";
    column-gap: 5rem;
    align-items: start;
  }
  .venue-list { align-self: center; margin-top: 0; }
  .venue-item { font-size: clamp(1.08rem, 2vw, 1.42rem); }
}
@media (max-width: 767px) {
  .flavor-stage-media { touch-action: pan-y; }
  .flavor-stage-media img { -webkit-user-drag: none; user-select: none; }
}
@media (min-width: 1024px) {
  :root { --pad-x: 3.5rem; --nav-h: 6.5rem; }
  .nav-logo { height: 4.5rem; }
  .band { padding: 8.5rem 0; }
  .image-band-tall { padding: 13rem 0; }
  .closer { padding: 11rem 0; }
  .mobile-bar { display: none; }
  .split-grid { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: 5rem; align-items: start; }
  .band.story-band { min-height: 57rem; padding: 8rem 0; }
  .story-media img { width: 107%; object-position: center 43%; transform: translateX(-5%); }
  .story-scrim { background: linear-gradient(270deg, rgba(244,239,230,1) 0%, rgba(244,239,230,1) 9%, rgba(244,239,230,.94) 28%, rgba(244,239,230,.61) 51%, rgba(244,239,230,.18) 73%, rgba(244,239,230,.02) 100%); }
  .story-grid { grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: 5rem; align-items: center; }
  .story-copy { grid-column: 2; }
  .arc-row { grid-template-columns: minmax(0,4fr) minmax(0,8fr); gap: 2rem; padding: 1.7rem 0; }
  .flavor-stage { grid-template-columns: minmax(0, 7.2fr) minmax(24rem, 4.8fr); height: 38.5rem; }
  .flavor-can-frame { width: min(45%, 16.5rem); height: 94%; }
  .footer-grid { grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: 5rem; }
  .footer-cols { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer { padding-bottom: 4.5rem; }
  .footer-legal { grid-template-columns: 1fr auto; align-items: baseline; }
  .launch-band { min-height: 54rem; padding: 10.5rem 0 8.5rem; box-sizing: border-box; }
  .founder-band { min-height: 66rem; padding: 11rem 0; }
  .state-launch { margin-top: 5.5rem; }
  .state-pair { gap: 1rem; }
  .state-art { height: 12rem; }
  .state-art img { max-width: 12rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ken-burns { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .venue-item { opacity: 1; transform: none; transition: none; }
  .moment-word, .mobile-bar, .intro, .intro-logo { transition: none; }
  .showcase-band { height: auto; }
  .showcase-band + .band-light { margin-top: 0; }
  .showcase-stage { position: relative; height: 100vw; }
  .showcase-cans { --showcase-lift: 0px !important; transform: translate3d(-50%, 0, 0); }
  .showcase-surface { --showcase-lift: 0px !important; transform: none; }
  .showcase-can { --showcase-shift: 0% !important; }
  .flavor-stage-track, .flavor-stage-copy-content, .flavor-stage-copy, .flavor-selector, .flavor-selector::after { transition: none; }
  .flavor-stage-copy-content { opacity: 1; }
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .showcase-stage { height: min(100svh, 56.28vw); }
}
