:root {
  --orange: #f39a1f;
  --orange-dark: #c86912;
  --ink: #15171a;
  --charcoal: #22262b;
  --graphite: #343a40;
  --steel: #69717a;
  --mist: #f4f2ee;
  --paper: #ffffff;
  --line: rgba(21, 23, 26, 0.14);
  --shadow: 0 24px 70px rgba(21, 23, 26, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  color: var(--paper);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(25, 27, 30, 0.92);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img,
.site-footer img {
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 32px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

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

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 19, 21, 0.62), rgba(18, 19, 21, 0.18) 56%, rgba(18, 19, 21, 0.03)),
    linear-gradient(0deg, rgba(18, 19, 21, 0.60), rgba(18, 19, 21, 0) 42%);
}

.hero__content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 12vh;
}

.hero__content .eyebrow {
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 8.5vw, 7.8rem);
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.35rem);
}

h3 {
  font-size: clamp(1.22rem, 2.2vw, 1.75rem);
}

.hero__lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button--primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #171411;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.intro-band {
  background: var(--charcoal);
  color: var(--paper);
}

.intro-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 38px 0;
}

.intro-grid > p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
}

.stats-list div {
  min-width: 0;
  padding: 18px;
  background: var(--charcoal);
}

.stats-list dt {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stats-list dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 750;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section--light {
  background: var(--mist);
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section--orange {
  background: var(--orange);
  color: #171411;
}

.section--tap {
  background:
    linear-gradient(90deg, rgba(21, 23, 26, 0.92), rgba(21, 23, 26, 0.76)),
    url("assets/images/garage-brewery-wide.jpg") center / cover;
  color: var(--paper);
}

.section--gallery {
  overflow: hidden;
  background: #111315;
  color: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 0.88fr);
}

.section--orange .split-layout--reverse {
  grid-template-columns: minmax(560px, 1.28fr) minmax(280px, 0.62fr);
}

.split-layout--reverse .section-copy {
  order: 2;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.feature-card p,
.roadmap-card p {
  color: var(--steel);
  font-size: 1.04rem;
}

.section--dark .section-heading p,
.section--dark .feature-card p,
.section--tap .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.section--orange .section-copy p:not(.eyebrow) {
  color: rgba(23, 20, 17, 0.78);
}

.section-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
}

.club-link {
  width: fit-content;
  max-width: 100%;
  display: inline-block;
  margin-top: 28px;
  color: #171411;
}

.club-link:hover {
  transform: translateY(-1px);
}

.club-link img {
  width: clamp(180px, 20vw, 260px);
  height: auto;
  object-fit: contain;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: 28px;
  align-items: end;
}

.section-heading--row p:not(.eyebrow) {
  margin: 0;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--graphite);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel--tall {
  aspect-ratio: 4 / 5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #202428;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.feature-card--wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.feature-card:not(.feature-card--wide) img {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.feature-card--portrait img {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  background: #171a1d;
  object-fit: cover;
  object-position: center;
}

.feature-card--collab img {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  background: #171a1d;
  object-fit: cover;
  object-position: center;
}

.feature-card--portrait,
.feature-card--collab {
  position: relative;
  display: block;
  align-self: start;
}

.feature-card--portrait {
  aspect-ratio: 1572 / 1800;
}

.feature-card--collab {
  aspect-ratio: 1572 / 1800;
}

.feature-card--portrait div,
.feature-card--collab div {
  position: absolute;
  inset: auto 0 0;
  padding-top: clamp(70px, 10vw, 118px);
  background: linear-gradient(
    0deg,
    rgba(17, 19, 21, 0.96) 0%,
    rgba(17, 19, 21, 0.82) 42%,
    rgba(17, 19, 21, 0) 100%
  );
  color: var(--paper);
}

.feature-card--portrait p,
.feature-card--collab p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card div {
  padding: clamp(22px, 4vw, 40px);
}

.feature-card--portrait div,
.feature-card--collab div {
  padding: clamp(70px, 10vw, 118px) clamp(22px, 4vw, 40px) clamp(22px, 4vw, 40px);
}

.feature-card h3 {
  margin-top: 8px;
}

.feature-card p {
  margin: 16px 0 0;
}

.feature-card__kicker {
  color: var(--orange) !important;
  font-size: 0.74rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.brew-video {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #202428;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.brew-video__copy {
  padding: clamp(24px, 4vw, 42px);
}

.brew-video__copy h3 {
  margin-top: 8px;
}

.brew-video__copy p:not(.feature-card__kicker) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.brew-video__frame {
  position: relative;
  min-height: 100%;
  background: #121416;
  aspect-ratio: 16 / 9;
}

.brew-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-window {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 4px 0 12px;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  user-select: none;
}

.gallery-window::-webkit-scrollbar {
  display: none;
}

.gallery-loop {
  width: max-content;
  display: flex;
  backface-visibility: hidden;
}

.gallery-group {
  display: flex;
  gap: 18px;
  padding: 0 18px;
}

.gallery-photo {
  flex: 0 0 auto;
  margin: 0;
}

.gallery-photo img {
  width: auto;
  max-width: none;
  height: clamp(220px, 28vw, 360px);
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  object-fit: contain;
  background: #1b1f23;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.tap-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tap-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(244, 242, 238, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.tap-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tap-card h3 {
  margin-top: 30px;
}

.tap-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: auto 0 0;
  padding-top: 26px;
}

.tap-card dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tap-card dd {
  margin: 4px 0 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 850;
}

.tap-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.label-shelf {
  position: relative;
}

.label-shelf__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -26px 0 18px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.label-track {
  display: grid;
  grid-auto-columns: minmax(300px, 34%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) rgba(21, 23, 26, 0.12);
}

.label-card {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(21, 23, 26, 0.08);
  scroll-snap-align: start;
}

.label-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: contain;
  background: #f7f5f0;
}

.label-card figcaption {
  display: none;
}

.community-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.community-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid rgba(23, 20, 17, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(23, 20, 17, 0.18);
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.roadmap .section-heading {
  margin-bottom: 0;
}

.roadmap-grid {
  display: grid;
  gap: 14px;
}

.roadmap-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
}

.roadmap-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
  content: "";
}

.roadmap-card__number {
  display: block;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 950;
}

.roadmap-card p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 56px);
  background: var(--charcoal);
  color: var(--paper);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--orange);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(25, 27, 30, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .intro-grid,
  .split-layout,
  .split-layout--reverse,
  .section--orange .split-layout--reverse,
  .section-heading--row,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .section-copy {
    order: 0;
  }

  .stats-list {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    position: relative;
    display: block;
    grid-column: auto;
    grid-template-columns: 1fr;
    aspect-ratio: 4 / 3;
  }

  .feature-grid,
  .brew-video,
  .tap-board {
    grid-template-columns: 1fr;
  }

  .label-track {
    grid-auto-columns: minmax(260px, 88%);
  }

  .gallery-photo img {
    height: clamp(190px, 58vw, 280px);
  }

  .feature-card img,
  .feature-card--wide img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .feature-card--wide img {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
    object-position: center;
  }

  .feature-card--wide div {
    position: absolute;
    inset: auto 0 0;
    padding: clamp(70px, 18vw, 118px) clamp(22px, 4vw, 40px) clamp(22px, 4vw, 40px);
    background: linear-gradient(
      0deg,
      rgba(17, 19, 21, 0.96) 0%,
      rgba(17, 19, 21, 0.82) 42%,
      rgba(17, 19, 21, 0) 100%
    );
    color: var(--paper);
  }

  .feature-card--wide p {
    color: rgba(255, 255, 255, 0.82);
  }

  .feature-card--portrait {
    aspect-ratio: 1572 / 1800;
  }

  .feature-card--collab {
    aspect-ratio: 1572 / 1800;
  }

  .community-mosaic {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-link img {
    width: 142px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero__content {
    width: min(100% - 28px, var(--max));
    padding-bottom: 10vh;
  }

  h1 {
    font-size: clamp(2.85rem, 16vw, 4.6rem);
  }

  .button {
    width: 100%;
  }

  .section__inner,
  .intro-grid {
    width: min(100% - 28px, var(--max));
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
