:root {
  --navy: #0b1733;
  --ink: #0e1a33;
  --orange: #f28a1e;
  --ember: #6e2f10;
  --cream: #f3ebdd;
  --parchment: #e6d8bf;
  --ice: #dce8f1;
  --dusk: #2a2450;
  --warm: #b0562b;
  --ink-soft: #33405e;
  --cream-soft: #d9cfc8;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --deva: "Noto Sans Devanagari", sans-serif;
  --gutter: clamp(20px, 5vw, 80px);
  --hero-inset: max(var(--gutter), calc((100% - 1760px) / 2));
  --hdr: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  background: var(--navy);
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--hdr) + 14px);
}
body {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
::selection {
  background: var(--orange);
  color: var(--navy);
}
:focus-visible {
  outline: 3px solid var(--focus, var(--orange));
  outline-offset: 3px;
}
.stage.pils,
.avail,
.contact,
.legal,
.hdr[data-mode="light"] {
  --focus: var(--navy);
}
.menu-open .hdr {
  --focus: var(--orange);
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: none;
}
::placeholder {
  color: #5b6680;
  opacity: 1;
}
html {
  accent-color: var(--orange);
  caret-color: var(--orange);
}
.mono {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--orange);
  color: var(--navy);
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 26px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s,
    color 0.25s;
}
.btn.on-dark {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 12px 28px -10px #0b1733b3;
}
@media (hover: hover) {
  .btn.on-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -12px #0b1733bf;
  }
}
.btn.ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px #f3ebddb3;
}
@media (hover: hover) {
  .btn.ghost:hover {
    background: #f3ebdd1a;
  }
}
.btn:active {
  transform: translateY(1px);
}
.btn.on-mid {
  background: var(--orange);
  color: var(--navy);
}
@media (hover: hover) {
  .btn.on-mid:hover {
    background: var(--cream);
  }
}
.btn.on-light {
  background: var(--ink);
  color: var(--cream);
}
@media (hover: hover) {
  .btn.on-light:hover {
    background: var(--orange);
    color: var(--navy);
  }
}
.link-u {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline 1.5px;
  text-underline-offset: 6px;
  transition: color 0.25s;
}
@media (hover: hover) {
  .link-u:hover {
    color: var(--orange);
  }
}
.hdr {
  position: sticky;
  top: 0;
  z-index: 800;
  height: var(--hdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--hero-inset);
  background: #0b1733b8;
  border-bottom: 1px solid rgba(243, 235, 221, 0.2);
  color: var(--cream);
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    color 0.4s var(--ease);
}
.hdr[data-mode="light"] {
  background: var(--cream);
  border-bottom-color: #0b17331f;
  color: var(--ink);
}
.hdr[data-mode="dark"] {
  background: var(--navy);
  border-bottom-color: #f3ebdd24;
  color: var(--cream);
}
.hdr[data-mode="hero"] {
  background: #0b17339e;
  border-bottom-color: #f3ebdd33;
  color: var(--cream);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 40px;
  height: auto;
}
.brand b {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}
.nav a:not(.pill) {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav a:not(.pill):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:not(.pill):hover:after,
.nav a[aria-current="page"]:after {
  transform: scaleX(1);
}
.pill {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s;
}
@media (hover: hover) {
  .pill:hover {
    background: currentColor;
  }
}
.pill.in-menu {
  display: none;
}
@media (hover: hover) {
  .hdr[data-mode="light"] .pill:hover {
    color: var(--cream);
  }
}
@media (hover: hover) {
  .hdr:not([data-mode="light"]) .pill:hover {
    color: var(--navy);
  }
}
.burger {
  display: none;
  min-height: 44px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  :root {
    --hdr: 64px;
  }
  .brand img {
    width: 34px;
  }
  .burger,
  .brand {
    position: relative;
    z-index: 800;
  }
  .burger {
    display: block;
    min-width: 64px;
    text-align: right;
  }
  .menu-open .hdr {
    background: transparent;
    border-bottom-color: transparent;
    color: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 790;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding: var(--hdr) var(--gutter) 0;
    background: var(--navy);
    color: var(--cream);
    clip-path: circle(0 at calc(100% - 40px) 32px);
    transition:
      clip-path 0.7s var(--ease),
      visibility 0s linear 0.7s;
    visibility: hidden;
  }
  .nav a:not(.pill) {
    font-family: var(--sans);
    font-size: clamp(32px, 10vw, 52px);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
  }
  .nav a:not(.pill):after {
    display: none;
  }
  .nav .pill.in-menu {
    display: inline-flex;
    margin-top: 18px;
    border-color: var(--cream);
    color: var(--cream);
  }
  .hdr .pill.in-bar {
    display: none;
  }
  .menu-open .nav {
    clip-path: circle(150% at calc(100% - 40px) 32px);
    visibility: visible;
    transition: clip-path 0.7s var(--ease);
  }
  html.no-motion .nav,
  html.no-motion .menu-open .nav {
    transition: none;
  }
}
.veil {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
  background: var(--navy);
  pointer-events: none;
  display: grid;
  place-items: center;
}
.veil img {
  width: 84px;
  opacity: 0;
}
html.is-entering:after,
html.needs-gate:after,
html.needs-splash:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: var(--navy);
  animation: unveil 0.01s 4s forwards;
}
@keyframes unveil {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
html.needs-gate,
html.needs-gate body,
html.needs-splash,
html.needs-splash body {
  overflow: hidden;
}
.gate {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--cream);
  background:
    radial-gradient(90% 60% at 50% 110%, rgba(242, 138, 30, 0.3), transparent 60%),
    linear-gradient(#070d1f, var(--navy) 70%, #1a2c56);
}
.gate-inner {
  max-width: 500px;
  display: grid;
  justify-items: center;
  gap: 22px;
}
.gate img {
  width: clamp(110px, 24vw, 150px);
}
.gate h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.gate p {
  color: var(--cream-soft);
  font-size: 16px;
}
.gate .row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.gate .no-msg {
  min-height: 1.4em;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.rv {
  opacity: 1;
  transform: none;
}
html.js:not(.no-motion) .rv {
  opacity: 0;
}
html.js:not(.no-motion) .rv.in {
  opacity: 1;
}
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  margin-top: calc(-1 * var(--hdr));
  overflow: hidden;
  background: var(--navy);
}
.hero .frame {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero video,
.hero .poster {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .scrim-a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(100deg, #0b173380, #0b17334d 30%, #0b17330f 58%, #0b173300);
}
.hero .scrim-b {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #0b17336b, #0b17330f 34%, #0b173300 70%, #0b173324);
}
.hero video,
.hero .poster {
  filter: brightness(1.12) saturate(1.1);
}
.hero video {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero video.playing {
  opacity: 1;
}
.hero-copy {
  position: absolute;
  left: var(--hero-inset);
  bottom: clamp(64px, 11vh, 110px);
  width: min(640px, 62vw);
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
}
.hero-copy:before {
  content: "";
  position: absolute;
  top: -140px;
  right: -220px;
  bottom: -110px;
  left: -180px;
  z-index: -1;
  background: radial-gradient(
    closest-side,
    rgba(11, 23, 51, 0.5),
    rgba(11, 23, 51, 0.3) 55%,
    transparent
  );
  pointer-events: none;
  transition: opacity 0.9s var(--ease);
}
html.js:not(.no-motion) .hero-copy:not(.lit):before {
  opacity: 0;
}
.hero-copy h1 {
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.97;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.hero-copy h1 .l {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.hero-copy h1 .l > span {
  display: block;
}
.hero-copy p.lede {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: #dce3ec;
  max-width: 430px;
}
.hero-copy .actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-copy .actions a.link-u {
  color: var(--cream);
}
.hero-cans {
  position: absolute;
  right: var(--hero-inset);
  bottom: clamp(48px, 9vh, 96px);
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 1.6vw, 26px);
  z-index: 1;
}
.hero-cans img {
  height: clamp(260px, 50vh, 540px);
  width: auto;
  filter: drop-shadow(10px 22px 26px rgba(11, 23, 51, 0.55));
}
.hero-cans img + img {
  height: clamp(230px, 44vh, 480px);
}
@media (max-width: 1200px) {
  .hero-cans img {
    height: 38vh;
  }
  .hero-cans img + img {
    height: 34vh;
  }
}
.scroll-cue {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: clamp(18px, 3vh, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  z-index: 2;
}
.scroll-cue span {
  padding: 5px 12px;
  background: #0b17339e;
  border-radius: 999px;
}
.scroll-cue i {
  width: 1.5px;
  height: 24px;
  background: var(--cream);
  display: block;
}
@media (max-width: 860px) {
  .hero-copy {
    width: auto;
    right: var(--gutter);
    bottom: 30vh;
  }
  .hero-copy:before {
    inset: -56px calc(-1 * var(--gutter));
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(11, 23, 51, 0.62) 22%,
      rgba(11, 23, 51, 0.62) 78%,
      transparent
    );
  }
  .hero-cans {
    right: var(--gutter);
    left: var(--gutter);
    bottom: 6vh;
    justify-content: center;
  }
  .hero-cans img,
  .hero-cans img + img {
    height: 22vh;
  }
  .hero-copy {
    bottom: calc(28vh + 28px);
  }
  .hero .badge span:not(.sr) {
    display: none;
  }
  .scroll-cue {
    display: none;
  }
}
.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--hdr) + 5vh) var(--gutter) 8vh;
  display: grid;
  align-items: center;
  isolation: isolate;
}
.stage.pils {
  position: relative;
  background: linear-gradient(160deg, #e3edf6, #cfdeec 45%, #a9c3dc);
  color: var(--ink);
}
.stage.pils:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8vh;
  background: linear-gradient(to bottom, rgba(11, 23, 51, 0.28), transparent);
  pointer-events: none;
  z-index: 0;
}
.stage.lager {
  background: linear-gradient(155deg, var(--dusk) 0%, #5b3a5e 46%, var(--warm) 100%);
  color: var(--cream);
}
.stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}
.stage.lager .stage-grid {
  grid-template-columns: 1fr 1fr;
}
.stage.lager .can-col {
  order: 2;
}
.stage.lager .copy-col {
  order: 1;
}
.can-col {
  display: flex;
  justify-content: center;
}
.can-col img {
  height: clamp(280px, 52vh, 640px);
  width: auto;
}
.stage.pils .can-col img {
  transform: rotate(-5deg);
  filter: drop-shadow(22px 30px 38px rgba(14, 26, 51, 0.35));
}
.stage.lager .can-col img {
  transform: rotate(6deg);
  filter: drop-shadow(-18px 30px 40px rgba(20, 10, 30, 0.5));
}
.copy-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}
.stage.lager .copy-col:before {
  content: "";
  position: absolute;
  top: -90px;
  right: -140px;
  bottom: -90px;
  left: -140px;
  z-index: -1;
  background: radial-gradient(
    closest-side,
    rgba(11, 23, 51, 0.32),
    rgba(11, 23, 51, 0.16) 60%,
    transparent
  );
  pointer-events: none;
}
.copy-col .titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.copy-col h2 {
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.copy-col .deva {
  font-family: var(--deva);
  font-size: clamp(19px, 1.8vw, 26px);
}
.stage.pils .deva {
  color: var(--ink-soft);
}
.stage.lager .deva {
  color: #e0d3ce;
}
.copy-col .note {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
  max-width: 520px;
}
.stage.pils .note {
  color: var(--ink-soft);
}
.stage.lager .note {
  color: #eadfd9;
}
.copy-col .quote {
  font-size: clamp(19px, 1.6vw, 22px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.stage.pils .quote {
  color: var(--ink-soft);
}
.stage.lager .quote {
  color: #e8dcd6;
}
.specs3 {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.stage.pils .specs3 {
  border-color: #0e1a332e;
}
.stage.lager .specs3 {
  border-color: #f3ebdd40;
}
.specs3 div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px 16px 0;
}
.specs3 div + div {
  padding-left: 20px;
  border-left: 1px solid;
}
.stage.pils .specs3 div + div {
  border-color: #0e1a332e;
}
.stage.lager .specs3 div + div {
  border-color: #f3ebdd40;
}
.specs3 dt {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.stage.pils .specs3 dt {
  color: #3d4964;
}
.stage.lager .specs3 dt {
  color: var(--cream);
}
.specs3 dd {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  white-space: nowrap;
}
.specs3 .alt dd {
  color: #ffb766;
}
.stage.pils .specs3 .alt dd {
  color: var(--ember);
}
@media (max-width: 560px) {
  .specs3 {
    grid-template-columns: 1fr 1fr;
  }
  .specs3 div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .specs3 div:nth-child(n + 3) {
    border-top: 1px solid;
  }
  .stage.pils .specs3 div:nth-child(n + 3) {
    border-top-color: #0e1a332e;
  }
  .stage.lager .specs3 div:nth-child(n + 3) {
    border-top-color: #f3ebdd40;
  }
}
.pairbox {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.pairbox svg {
  flex: none;
}
.pairbox .txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pairbox .lbl {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.stage.pils .pairbox .lbl {
  color: var(--ember);
}
.stage.lager .pairbox .lbl {
  color: var(--orange);
}
.pairbox b {
  font-size: 20px;
  font-weight: 600;
}
.pairbox span.d {
  font-size: 15px;
  line-height: 1.5;
}
.stage.pils .pairbox span.d {
  color: var(--ink-soft);
}
.stage.lager .pairbox span.d {
  color: #e4d8d2;
}
.copy-col .btn {
  align-self: flex-start;
  margin-top: 4px;
}
@media (max-width: 980px) {
  .stage-grid,
  .stage.lager .stage-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .stage.lager .can-col,
  .stage.lager .copy-col {
    order: initial;
  }
  .can-col img {
    height: min(46vh, 420px);
  }
  .stage.pils .can-col img,
  .stage.lager .can-col img {
    transform: none;
  }
  .stage {
    padding-top: calc(var(--hdr) + 3vh);
    gap: 28px;
  }
}
.avail {
  position: relative;
  padding: clamp(72px, 10vw, 130px) var(--gutter);
  background: var(--parchment);
  color: var(--ink);
  overflow: hidden;
}
.avail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
}
.avail-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}
.avail-copy h2 {
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.avail-copy .lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
}
.venues {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.venues li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 26, 51, 0.16);
}
.venues li > div {
  display: grid;
  gap: 2px;
}
.venues b {
  font-size: 17px;
  font-weight: 600;
}
.venues .where,
.venues .pours {
  font-size: 14px;
  color: var(--ink-soft);
}
.venues .link-u {
  flex: none;
}
.notify-inline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.notify-inline .row2 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.notify-inline .row2 .field {
  flex: 1 1 220px;
}
.notify-inline .row2 .field.zip {
  flex: 0 1 160px;
}
.notify-inline .actions-row {
  align-items: center;
  gap: 22px;
}
.notify-inline .status {
  min-height: 0;
  font-size: 15px;
  font-weight: 500;
}
.field-err {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #a12a14;
}
.status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.notify-inline .status.ok {
  color: #14663c;
}
.notify-inline .status.err {
  color: #a12a14;
}
.avail-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.map-wrap {
  position: relative;
}
.map-wrap svg {
  width: 100%;
  height: auto;
}
.map-wrap .frame {
  fill: var(--cream);
  stroke: var(--ink);
  stroke-width: 1.4;
}
.map-wrap .land {
  fill: #e2d2b4;
}
.map-wrap .map-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  fill: var(--ember);
}
.map-wrap .river {
  fill: none;
  stroke: #8fb4d0;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-wrap .river-name {
  font-family: var(--sans);
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  fill: #2c4f6d;
}
@media (max-width: 560px) {
  .map-wrap .map-title,
  .map-wrap .river-name {
    font-size: 12.5px;
  }
  .map-wrap .places {
    font-size: 14px;
  }
}
.map-wrap .district {
  fill: #f28a1e24;
  stroke: var(--ink);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}
.map-wrap .places {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  fill: var(--ink);
}
.map-wrap .places circle {
  fill: var(--orange);
  stroke: var(--ink);
  stroke-width: 1.5;
}
.map-wrap .places circle.ripple {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.map-can {
  position: absolute;
  left: 0;
  top: 0;
  height: clamp(110px, 12.5vw, 180px);
  width: auto;
  visibility: hidden;
  filter: drop-shadow(8px 14px 12px rgba(14, 26, 51, 0.35));
  pointer-events: none;
}
.map-wrap.planted .map-can {
  visibility: visible;
}
.map-wrap.ping .ripple {
  animation: ripple 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s 2;
}
@keyframes ripple {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(7);
  }
}
@media (max-width: 980px) {
  .avail-grid {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}
.ftr {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(56px, 8vw, 110px) var(--gutter) 30px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
  gap: 44px;
  align-items: start;
}
.ftr h2 {
  font-size: clamp(30px, 4.2vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ftr h2 em {
  font-style: normal;
  color: var(--orange);
}
.ftr .about {
  margin-top: 18px;
  color: var(--cream-soft);
  font-size: 15px;
  max-width: 46ch;
}
.ftr .col {
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: 16px;
}
.ftr .col .mono {
  color: var(--cream-soft);
  margin-bottom: 4px;
}
.ftr .col a:hover {
  color: var(--orange);
}
.ftr .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(243, 235, 221, 0.5);
  border-radius: 50%;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
@media (hover: hover) {
  .socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
  }
}
.socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.ftr-bot {
  margin-top: clamp(40px, 6vw, 80px);
  padding-top: 22px;
  border-top: 1px solid rgba(243, 235, 221, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--cream-soft);
  font-size: 13px;
  line-height: 1.6;
}
.ftr-bot p {
  max-width: 64ch;
}
.ftr-bot nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ftr-bot nav a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 980px) {
  .ftr-top {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-top > :first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .ftr-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.form {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
.form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: grid;
  gap: 6px;
  position: relative;
}
.field label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field textarea {
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  background: #fff9;
  border: 1.5px solid rgba(14, 26, 51, 0.38);
  border-radius: 4px;
  padding: 12px 14px;
  transition:
    border-color 0.25s,
    background 0.25s;
  width: 100%;
}
.field input:hover,
.field textarea:hover {
  border-color: #0e1a3399;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a12a14;
  background: #fff6f3;
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.field textarea {
  resize: vertical;
  min-height: 108px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--navy);
  background: #fff;
}
.field .hp {
  position: absolute;
  left: -9999px;
}
.consent {
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 60ch;
}
.consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form .status {
  min-height: 1.4em;
  font-size: 15px;
  font-weight: 500;
}
.form .status.ok {
  color: #14663c;
}
.form .status.err {
  color: #a12a14;
}
.form button[type="submit"][disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--hdr) + clamp(40px, 8vh, 96px)) var(--gutter) clamp(72px, 10vw, 128px);
}
.contact-intro {
  display: grid;
  gap: 22px;
}
.contact-intro h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.contact-intro .lede {
  max-width: 40ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
}
.contact-lines {
  display: grid;
  margin-top: clamp(8px, 2vw, 24px);
  border-top: 1px solid rgba(14, 26, 51, 0.16);
}
.contact-lines div {
  display: grid;
  grid-template-columns: 9.5em 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 26, 51, 0.16);
}
.contact-lines dt {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-lines dd {
  font-size: 17px;
}
.contact-lines a {
  text-decoration: underline;
  text-decoration-color: #0e1a334d;
  text-underline-offset: 4px;
  transition:
    text-decoration-color 0.2s,
    color 0.2s;
}
@media (hover: hover) {
  .contact-lines a:hover {
    color: var(--ember);
    text-decoration-color: currentColor;
  }
}
.contact-form {
  margin-top: 0;
  gap: 22px;
}
.contact-form .anchor {
  position: absolute;
}
.contact-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.topics legend {
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid rgba(14, 26, 51, 0.38);
  border-radius: 6px;
  padding: 3px;
  gap: 3px;
  background: #ffffff73;
}
.seg label {
  position: relative;
}
.seg input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.seg span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: var(--ink-soft);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.seg input:checked + span {
  background: var(--ink);
  color: var(--cream);
}
.seg input:focus-visible + span {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}
@media (hover: hover) {
  .seg input:not(:checked):hover + span {
    color: var(--ink);
    background: #0e1a330f;
  }
}
.topic-fields {
  display: grid;
  gap: 16px;
}
.topic-fields .hint {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 58ch;
}
.submit-row {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  flex-wrap: wrap;
}
.submit-row .consent {
  flex: 1 1 220px;
}
.contact-form .status:empty {
  min-height: 0;
}
@media (max-width: 900px) {
  .contact,
  .form .two {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .seg span {
    font-size: 14px;
    padding: 0 6px;
  }
  .contact-lines div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
.legal {
  padding: calc(var(--hdr) + 8vh) var(--gutter) clamp(56px, 8vw, 100px);
  background: var(--cream);
}
.legal .wrap {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.legal h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 16px;
}
.legal ul {
  padding-left: 22px;
  display: grid;
  gap: 6px;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
[hidden] {
  display: none !important;
}
.can-flyer {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  height: auto;
  pointer-events: none;
  visibility: hidden;
  transform-origin: 50% 50%;
  will-change: transform;
  filter: drop-shadow(18px 26px 30px rgba(14, 26, 51, 0.4));
}
.specs3 dd {
  font-variant-numeric: tabular-nums;
}
.alt-rail {
  --c: var(--cream);
  position: fixed;
  right: clamp(18px, 1.8vw, 30px);
  top: 50%;
  height: 46vh;
  translate: 0 -50%;
  z-index: 40;
  width: 2px;
  color: var(--c);
  opacity: 0;
  transition:
    opacity 0.5s var(--ease),
    color 0.4s var(--ease);
  pointer-events: none;
}
.alt-rail.on {
  opacity: 1;
}
.alt-rail[data-mode="light"] {
  --c: var(--ink);
}
.alt-track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: color-mix(in srgb, currentColor 28%, transparent);
  border-radius: 2px;
  overflow: hidden;
}
.alt-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--orange);
  transform-origin: 50% 100%;
  transform: scaleY(0);
}
.alt-camp {
  position: absolute;
  left: 50%;
  bottom: calc(var(--at) * 100%);
  width: 10px;
  height: 2px;
  translate: -50% 50%;
  background: currentColor;
}
.alt-tip {
  --p: 0;
  position: absolute;
  right: 14px;
  bottom: calc(var(--p) * 100%);
  translate: 0 50%;
  display: grid;
  justify-items: end;
  gap: 1px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.alt-tip:after {
  content: "";
  position: absolute;
  right: -19px;
  top: 50%;
  width: 10px;
  height: 10px;
  translate: 0 -50%;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 30%, transparent);
}
.alt-n {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.alt-name {
  opacity: 0.85;
}
.alt-rail.summit .alt-n {
  color: var(--orange);
}
.alt-rail.summit .alt-tip:after {
  animation: summit 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2;
}
@keyframes summit {
  0% {
    box-shadow: 0 0 0 3px #f28a1e80;
  }
  to {
    box-shadow: 0 0 0 18px #f28a1e00;
  }
}
@media (max-width: 1199px) {
  .alt-rail {
    display: none;
  }
}
@media (min-width: 1200px) {
  .stage {
    padding-right: max(var(--gutter), 170px);
  }
  .avail {
    padding-right: max(var(--gutter), 210px);
  }
}

/* ---------------------------------------------------------------------------
   Content pages: About, Our Brews, Distributors, Locations, Press.
   Shared building blocks; page-specific rules are grouped underneath.
   --------------------------------------------------------------------------- */
.pg .rv {
  transform: translateY(18px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.pg .rv.in,
html.no-motion .pg .rv {
  transform: none;
}
.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(420px, 62vh, 640px);
  padding: clamp(96px, 14vh, 150px) var(--gutter) clamp(48px, 7vw, 88px);
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0b1733f2, #0b173399 45%, #0b173333);
}
.page-hero .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  max-width: 14ch;
}
.page-hero .lede {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--cream-soft);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
}
.page-hero .eyebrow,
.band.navy .eyebrow {
  color: var(--orange);
}
.band {
  padding: clamp(64px, 9vw, 128px) var(--gutter);
  background: var(--cream);
}
.band.parchment {
  background: var(--parchment);
}
.band.navy {
  background: var(--navy);
  color: var(--cream);
  --focus: var(--orange);
}
.band .wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}
.band-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.prose {
  display: grid;
  gap: 16px;
  max-width: 64ch;
}
.prose p,
.band-head p {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}
.band.navy .prose p,
.band.navy .band-head p {
  color: var(--cream-soft);
}
.prose .big {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.prose a:not(.btn):not(.link-u),
.band-head a:not(.btn):not(.link-u),
.fine a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
}
.split.rev > :first-child {
  order: 2;
}
.split .media img,
.photo {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 60px -34px #0b173380;
}
.cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.cols3 article {
  display: grid;
  gap: 14px;
  align-content: start;
}
.cols3 img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}
.cols3 p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.cards2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 8px;
  background: #fff6;
  border: 1px solid rgba(14, 26, 51, 0.14);
}
.band.navy .card {
  background: #f3ebdd0d;
  border-color: #f3ebdd29;
}
.card p {
  color: var(--ink-soft);
}
.band.navy .card p {
  color: var(--cream-soft);
}
.card .tag {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.team figure {
  display: grid;
  gap: 12px;
  align-content: start;
}
.team img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 6px;
}
.team b {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.team .role {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.team .reach {
  display: grid;
  gap: 2px;
  margin-top: 6px;
  font-size: 15px;
}
.team .reach a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pics2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pics2 figure {
  display: grid;
  gap: 8px;
}
.pics2 img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}
figcaption {
  font-size: 14px;
  color: var(--ink-soft);
}
.member {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.member img {
  width: 120px;
  height: auto;
  border-radius: 50%;
}
.member a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq {
  display: grid;
  border-top: 1px solid rgba(14, 26, 51, 0.16);
}
.faq details {
  border-bottom: 1px solid rgba(14, 26, 51, 0.16);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 14px 0;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  flex: none;
  font-family: var(--mono);
  font-size: 22px;
  color: var(--ember);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary:after {
  transform: rotate(45deg);
}
.faq details > div {
  display: grid;
  gap: 10px;
  padding: 0 0 22px;
  max-width: 68ch;
  color: var(--ink-soft);
}
.faq ul {
  padding-left: 20px;
}
.faq a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fine {
  font-size: 14px;
  color: var(--ink-soft);
}
.band.navy .fine {
  color: var(--cream-soft);
}
.actions-inline {
  display: flex;
  gap: 16px 24px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-band .wrap {
  justify-items: start;
}
@media (max-width: 980px) {
  .team {
    grid-template-columns: 1fr 1fr;
  }
  .cols3 {
    grid-template-columns: 1fr;
  }
  .cols3 article {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    column-gap: 24px;
  }
  .cols3 article img {
    grid-row: span 3;
  }
}
@media (max-width: 780px) {
  .split,
  .cards2 {
    grid-template-columns: 1fr;
  }
  .split.rev > :first-child {
    order: 0;
  }
  .cols3 article {
    grid-template-columns: 1fr;
  }
  .cols3 article img {
    grid-row: auto;
  }
}

/* Our Brews */
.lineup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.brew {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 24px 22px 26px;
  border-radius: 8px;
  background: #fff6;
  border: 1px solid rgba(14, 26, 51, 0.14);
}
.brew .can {
  height: 220px;
  display: grid;
  place-items: center;
}
.brew .can img {
  height: 220px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(10px 18px 18px rgba(14, 26, 51, 0.28));
}
.brew .body {
  display: grid;
  gap: 8px;
  align-content: start;
}
.brew p {
  color: var(--ink-soft);
  font-size: 15.5px;
}
.brew .meta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
}
.brew.soon {
  background: transparent;
  border-style: dashed;
}
.brew.soon .can {
  opacity: 0.9;
}
.brew .link-u {
  justify-self: start;
}
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.reviews figure {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
}
.reviews img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.reviews blockquote {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
}
.reviews figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
@media (max-width: 1080px) {
  .lineup {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 780px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .lineup {
    grid-template-columns: 1fr;
  }
  .reviews figure {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }
  .reviews img {
    width: 64px;
    height: 64px;
  }
}

/* Distributors */
.dist {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.dist .media {
  display: grid;
  gap: 16px;
}
.dist .media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.dist .media .pair {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: start;
}
.dist .copy {
  display: grid;
  gap: 16px;
}
.dist .copy p {
  color: var(--ink-soft);
}
.dist .copy a:not(.btn):not(.link-u) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
  padding: 0;
  list-style: none;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 17px;
}
.steps li:before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}
.steps a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 860px) {
  .dist {
    grid-template-columns: 1fr;
  }
}

/* Locations */
.venue-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.venue-list li {
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 22px;
  border-radius: 8px;
  background: #fff6;
  border: 1px solid rgba(14, 26, 51, 0.14);
}
.venue-list b {
  font-size: 19px;
  font-weight: 600;
}
.venue-list span {
  font-size: 15px;
  color: var(--ink-soft);
}
.venue-list .links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.promos img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
}
.loc-notify {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 860px) {
  .promos,
  .loc-notify {
    grid-template-columns: 1fr;
  }
  .promos {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .promos img {
    scroll-snap-align: start;
  }
}

/* Press & gallery */
.gallery {
  columns: 3 280px;
  column-gap: 16px;
}
.gallery figure {
  break-inside: avoid;
  margin-bottom: 16px;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.packs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  max-width: 980px;
}
.packs figure {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}
.packs img {
  width: 100%;
  max-width: 420px;
  height: auto;
}
@media (max-width: 560px) {
  .packs {
    grid-template-columns: 1fr;
  }
}

/* Contact: expansion note under the contact lines */
.contact-intro .expand {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 44ch;
}

/* Opening: the two cans stand on the age gate (first visit) or a short splash
   (once per session after that), then fly into their places in the home hero.
   Choreography lives in app-v2.js; the gate markup lives in vendor-gsap-v2.js. */
.gate-cans {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
}
.gate .gate-cans img,
.splash .gate-cans img {
  width: auto;
  height: clamp(150px, 30vh, 330px);
  filter: drop-shadow(10px 22px 26px rgba(4, 9, 22, 0.55));
}
.gate .gate-cans img:last-child,
.splash .gate-cans img:last-child {
  height: clamp(134px, 26.5vh, 294px);
}
.gate .gate-cans .mark,
.splash .gate-cans .mark {
  align-self: center;
  height: clamp(64px, 11vh, 118px);
  filter: none;
}
.splash {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(90% 60% at 50% 110%, rgba(242, 138, 30, 0.3), transparent 60%),
    linear-gradient(#070d1f, var(--navy) 70%, #1a2c56);
}
.splash .gate-cans img:not(.mark) {
  height: clamp(220px, 46vh, 460px);
}
.splash .gate-cans img:last-child {
  height: clamp(196px, 41vh, 410px);
}
.can-fly {
  position: fixed;
  z-index: 1001;
  pointer-events: none;
  transform-origin: 50% 50%;
  will-change: transform;
  filter: drop-shadow(10px 22px 26px rgba(11, 23, 51, 0.55));
}
