/* =============================================
   COMMON JOHN BREWING CO.
   Main Stylesheet
   ============================================= */

/* --- FONTS --- */
@font-face {
  font-family: 'Refrigerator Deluxe';
  src: url('../fonts/RefrigeratorDeluxe/Refrigerator Deluxe Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Refrigerator Deluxe';
  src: url('../fonts/RefrigeratorDeluxe/Refrigerator Deluxe Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Refrigerator Deluxe';
  src: url('../fonts/RefrigeratorDeluxe/Refrigerator Deluxe Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Refrigerator Deluxe';
  src: url('../fonts/RefrigeratorDeluxe/Refrigerator Deluxe Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_thin_it.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_light_it.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_reg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_reg_it.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_med.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_med_it.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_bld.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_bld_it.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_blk.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/BrandonGrotesque/Brandon_blk_it.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* --- TOKENS --- */
:root {
  --cj-black:   #2D2A26;
  --cj-red:     #E64B38;
  --cj-yellow:  #F5B335;
  --cj-cream:   #D6D1CA;
  --cj-white:   #FAFAF8;

  /* beer sub-brands */
  --sn-bg:      #1A1712;
  --sn-accent:  #F5B335;
  --us-bg:      #0E2518;
  --us-accent:  #4BAF78;
  --dc-bg:      #1E0A10;
  --dc-accent:  #C4405A;

  --page-x: 4vw;
  --section-y: 10vw;
  --section-y-sm: 4vw;

  --font-display: 'Refrigerator Deluxe', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Brandon Grotesque', sans-serif;
  --font-cond:    'Brandon Grotesque', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 18px;
}
body {
  background-color: var(--cj-white);
  color: var(--cj-black);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* --- SHARED UTILITIES --- */
.section-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--cj-black);
  opacity: 0.5;
}
.section-counter {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: .1em;
  color: var(--cj-black);
  opacity: 0.4;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 0.75em 1.75em;
  border-radius: 100px;
  border: 1.5px solid currentColor;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--light  { background: var(--cj-white); color: var(--cj-black); border-color: var(--cj-white); }
.btn--light:hover { background: var(--cj-yellow); border-color: var(--cj-yellow); }
.btn--outline-light { background: transparent; color: var(--cj-white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }
.btn--dark { background: var(--cj-black); color: var(--cj-white); border-color: var(--cj-black); }
.btn--dark:hover { background: var(--cj-red); border-color: var(--cj-red); }
.btn--beer-sn { background: var(--sn-accent); color: var(--sn-bg); border-color: var(--sn-accent); }
.btn--beer-sn:hover { background: transparent; color: var(--sn-accent); }
.btn--beer-us { background: var(--us-accent); color: var(--us-bg); border-color: var(--us-accent); }
.btn--beer-us:hover { background: transparent; color: var(--us-accent); }
.btn--beer-dc { background: var(--dc-accent); color: var(--cj-white); border-color: var(--dc-accent); }
.btn--beer-dc:hover { background: transparent; color: var(--dc-accent); }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--page-x);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(45,42,38,0.96);
  backdrop-filter: blur(8px);
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--page-x); right: var(--page-x);
  height: 0.5px;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav.scrolled::after { opacity: 1; }

.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 36px;
  width: auto;
}
.nav__meta {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__right a {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  transition: color 0.2s;
}
.nav__right a:hover { color: var(--cj-yellow); }
.nav__cta {
  background: var(--cj-red) !important;
  color: var(--cj-white) !important;
  padding: 0.45em 1.2em;
  border-radius: 100px;
  border: 1.5px solid var(--cj-red) !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav__cta:hover { background: var(--cj-yellow) !important; border-color: var(--cj-yellow) !important; color: var(--cj-black) !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  background: var(--cj-black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--cj-black);
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 aspect ratio cover technique */
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(45,42,38,0.45) 0%, rgba(45,42,38,0.55) 60%, rgba(45,42,38,0.82) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--page-x) 2rem;
  padding-top: max(6rem, 6vw);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: .14em;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
  margin-top: auto;
}
.hero__eyebrow-divider { opacity: 0.4; }
.hero__headline {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  pointer-events: none;
}
.hero__headline--badge {
  align-items: center;
  margin: auto 0;
}
.hero__badge {
  width: clamp(154px, 26.6vw, 364px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.5));
}
.hero__line {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(5rem, 19vw, 18rem);
  color: var(--cj-white);
  letter-spacing: -.03em;
  display: block;
  text-transform: uppercase;
}
.hero__line--2 {
  color: var(--cj-yellow);
}
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3vw;
  padding-top: 2vw;
  border-top: 0.5px solid rgba(255,255,255,0.12);
}
.hero__tagline {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}
.hero__cta-group {
  display: flex;
  gap: 0.75rem;
}
.hero__scroll {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: .1em;
  font-weight: 600;
  color: rgba(255,255,255,.4);
}

/* Hero marquee strip */
.hero__brewing-strip {
  background: var(--cj-red);
  overflow: hidden;
  padding: 0.7rem 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: auto;
}
.hero__strip-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cj-white);
}
.strip-dot { opacity: 0.5; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--section-y) var(--page-x);
  background: var(--cj-white);
}
.about__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(45,42,38,.12);
}
.about__body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6vw;
  align-items: start;
}
.about__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  color: var(--cj-black);
  margin-bottom: 2.5rem;
}
.about__headline em {
  font-style: italic;
  color: var(--cj-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: 0.6em;
  display: block;
  margin-left: 0.1em;
}
.about__copy {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--cj-black);
  opacity: 0.8;
  margin-bottom: 3rem;
}
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.pillar__label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--cj-red);
  margin-bottom: 0.4rem;
}
.pillar p {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.7;
}

/* About marquee */
.about__marquee {
  margin-top: 5vw;
  overflow: hidden;
  border-top: 0.5px solid rgba(45,42,38,.1);
  border-bottom: 0.5px solid rgba(45,42,38,.1);
  padding: 1rem 0;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--cj-black);
}
.m-dot { color: var(--cj-red); opacity: 0.6; }

/* =============================================
   BEERS
   ============================================= */
.beers {
  background: var(--cj-black);
  padding: var(--section-y) var(--page-x);
}
.beers__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(255,255,255,.12);
}
.beers__header .section-label,
.beers__header .section-counter {
  color: var(--cj-cream);
}
.beers__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--cj-white);
  line-height: 0.9;
  margin-bottom: 4vw;
  letter-spacing: -.01em;
}

/* Beer cards */
.beer-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding: 4vw var(--page-x);
}
.beer-card--sn { background: var(--sn-bg); }
.beer-card--us { background: var(--us-bg); }
.beer-card--dc { background: var(--dc-bg); }

.beer-card__number {
  position: absolute;
  top: 2rem; right: 2.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  opacity: 0.06;
  color: white;
  line-height: 1;
  pointer-events: none;
}
.beer-card__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
}
.beer-card__meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.beer-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  border: 1px solid currentColor;
}
.beer-card--sn .beer-tag { color: var(--sn-accent); }
.beer-card--us .beer-tag { color: var(--us-accent); }
.beer-card--dc .beer-tag { color: var(--dc-accent); }

.beer-card__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.9;
  margin-bottom: 1.2rem;
}
.beer-card--sn .beer-card__name { color: var(--sn-accent); }
.beer-card--us .beer-card__name { color: var(--us-accent); }
.beer-card--dc .beer-card__name { color: var(--dc-accent); }

.beer-card__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
  max-width: 38ch;
}

/* Can placeholder — replace with real images */
.beer-card__can-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: .05em;
}
.beer-can--sn { background: rgba(245,179,53,.08); color: var(--sn-accent); border: 1px solid rgba(245,179,53,.15); }
.beer-can--us { background: rgba(75,175,120,.08); color: var(--us-accent); border: 1px solid rgba(75,175,120,.15); }
.beer-can--dc { background: rgba(196,64,90,.08); color: var(--dc-accent); border: 1px solid rgba(196,64,90,.15); }
.can-label { opacity: 0.4; }

/* =============================================
   TAPROOM
   ============================================= */
.taproom {
  padding: var(--section-y) var(--page-x);
  background: var(--cj-cream);
}
.taproom__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(45,42,38,.15);
}
.taproom__body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8vw;
  align-items: start;
}
.taproom__headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.88;
  color: var(--cj-black);
}
.taproom__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.taproom__detail-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--cj-red);
  margin-bottom: 0.35rem;
}
.taproom__detail p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cj-black);
  opacity: 0.8;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--cj-black);
  color: var(--cj-white);
  padding: var(--section-y-sm) var(--page-x) 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4vw;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer__logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 0.8rem;
}
.footer__location {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
}
.footer__nav, .footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.footer__nav a, .footer__social a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: .06em;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color 0.2s;
}
.footer__nav a:hover, .footer__social a:hover { color: var(--cj-yellow); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.3);
}

/* =============================================
   NAV ACTIVE STATE
   ============================================= */
.nav__active { color: var(--cj-yellow) !important; }

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
  padding: max(6rem, 6vw) var(--page-x) var(--section-y);
  position: relative;
}
.page-hero--dark { background: var(--cj-black); }
.page-hero--cream { background: var(--cj-cream); }
.page-hero__eyebrow { margin-bottom: 1.5rem; }
.page-hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--cj-white);
  margin-bottom: 2rem;
}
.page-hero__headline--dark { color: var(--cj-black); }
.page-hero__sub {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.page-hero__sub--dark { color: rgba(45,42,38,.5); }

/* =============================================
   BEER TEASER GRID (homepage)
   ============================================= */
.beer-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3vw;
}
.beer-teaser {
  display: block;
  padding: 3vw var(--page-x);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.beer-teaser:hover { transform: translateY(-4px); }
.beer-teaser--sn { background: var(--sn-bg); }
.beer-teaser--us { background: var(--us-bg); }
.beer-teaser--dc { background: var(--dc-bg); }
.beer-teaser__tags { display: flex; gap: 0.5rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.beer-teaser--sn .beer-tag { color: var(--sn-accent); }
.beer-teaser--us .beer-tag { color: var(--us-accent); }
.beer-teaser--dc .beer-tag { color: var(--dc-accent); }
.beer-teaser__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
.beer-teaser--sn .beer-teaser__name { color: var(--sn-accent); }
.beer-teaser--us .beer-teaser__name { color: var(--us-accent); }
.beer-teaser--dc .beer-teaser__name { color: var(--dc-accent); }
.beer-teaser__cta {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}
.beers__footer-cta {
  text-align: center;
  padding-top: 3vw;
  border-top: 0.5px solid rgba(255,255,255,.1);
}

/* =============================================
   BEER CARD LOGO IMAGE
   ============================================= */
.beer-card__logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.92;
}

/* =============================================
   BEER DETAIL PAGE
   ============================================= */
.beer-detail {
  padding: max(8rem, 14vw) var(--page-x) var(--section-y);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.beer-detail--sn { background: var(--sn-bg); }
.beer-detail--us { background: var(--us-bg); }
.beer-detail--dc { background: var(--dc-bg); }
.beer-detail__inner { width: 100%; }
.beer-detail__breadcrumb {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 3rem;
}
.beer-detail--sn .beer-detail__breadcrumb a { color: rgba(245,179,53,.5); }
.beer-detail--us .beer-detail__breadcrumb a { color: rgba(75,175,120,.5); }
.beer-detail--dc .beer-detail__breadcrumb a { color: rgba(196,64,90,.5); }
.beer-detail__breadcrumb a:hover { opacity: 1; }
.beer-detail__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.beer-detail__meta { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.beer-detail--sn .beer-tag { color: var(--sn-accent); }
.beer-detail--us .beer-tag { color: var(--us-accent); }
.beer-detail--dc .beer-tag { color: var(--dc-accent); }
.beer-detail__name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  margin-bottom: 1.2rem;
}
.beer-detail--sn .beer-detail__name { color: var(--sn-accent); }
.beer-detail--us .beer-detail__name { color: var(--us-accent); }
.beer-detail--dc .beer-detail__name { color: var(--dc-accent); }
.beer-detail__tagline {
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: .1em;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.beer-detail__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.5rem;
  max-width: 44ch;
}
.beer-detail__stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(255,255,255,.1);
}
.beer-stat__label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  margin-bottom: 0.3rem;
}
.beer-stat__value {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .05em;
}
.beer-detail__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.beer-detail__logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.btn--outline-dark {
  background: transparent;
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.2);
}
.btn--outline-dark:hover { background: rgba(255,255,255,.06); color: var(--cj-white); }

/* Beer nav strip */
.beer-nav-strip {
  background: var(--cj-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--page-x);
  border-top: 0.5px solid rgba(255,255,255,.08);
}
.beer-nav-strip__prev,
.beer-nav-strip__next,
.beer-nav-strip__all {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  transition: color 0.2s;
}
.beer-nav-strip__prev:hover,
.beer-nav-strip__next:hover,
.beer-nav-strip__all:hover { color: var(--cj-yellow); }

/* =============================================
   TAPROOM INFO PAGE
   ============================================= */
.taproom-info {
  background: var(--cj-white);
  padding: var(--section-y) var(--page-x);
}
.taproom-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  padding-bottom: var(--section-y);
  border-bottom: 0.5px solid rgba(45,42,38,.1);
}
.taproom-info__block { display: flex; flex-direction: column; }
.taproom-info__block .taproom__detail-label { margin-bottom: 1.2rem; }
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid rgba(45,42,38,.08);
}
.hours-list__day { font-weight: 500; color: var(--cj-black); }
.hours-list__time { color: var(--cj-red); font-weight: 600; font-family: var(--font-cond); letter-spacing: .05em; }
.taproom-address { font-style: normal; font-size: 1rem; line-height: 1.7; opacity: 0.75; }
.taproom-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.taproom-features li {
  font-size: 0.95rem;
  padding-left: 1.2em;
  position: relative;
  opacity: 0.75;
}
.taproom-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--cj-red);
  font-weight: 700;
}
.taproom-map { background: var(--cj-black); }
.taproom-map__embed { display: block; line-height: 0; }
.taproom-cta-strip {
  background: var(--cj-red);
  padding: 3rem var(--page-x);
}
.taproom-cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.taproom-cta-strip__inner p {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cj-white);
}

/* =============================================
   PEOPLE SECTIONS (Owners / Founders)
   ============================================= */
.people-section { padding: var(--section-y) var(--page-x); }
.people-section--light { background: var(--cj-white); }
.people-section--dark { background: var(--cj-black); }
.people-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(45,42,38,.12);
}
.people-section--dark .people-section__header {
  border-bottom-color: rgba(255,255,255,.1);
}
.people-section--dark .section-label,
.people-section--dark .section-counter { color: var(--cj-cream); }
.people-section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.people-section__body--reverse { direction: rtl; }
.people-section__body--reverse > * { direction: ltr; }
.people-section__img {
  width: 100%;
  height: 60vmax;
  max-height: 640px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.people-section__photo-placeholder {
  width: 100%;
  height: 60vmax;
  max-height: 640px;
  background: rgba(255,255,255,.04);
  border: 1.5px dashed rgba(255,255,255,.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.2);
  text-align: center;
  line-height: 1.8;
}
.people-section__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--cj-black);
  margin-bottom: 1rem;
}
.people-section__name--light { color: var(--cj-white); }
.people-section__title {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--cj-red);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
.people-section__title--light { color: var(--cj-yellow); }
.people-section__bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cj-black);
  opacity: 0.75;
  max-width: 44ch;
}
.people-section__bio--light { color: rgba(255,255,255,.65); opacity: 1; }

/* =============================================
   FOUNDERS GRID
   ============================================= */
.founders-section {
  background: var(--cj-black);
  padding: var(--section-y) var(--page-x);
}
.founders-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(255,255,255,.1);
}
.founders-section__header .section-label,
.founders-section__header .section-counter { color: var(--cj-cream); }
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}
.founder-card { display: flex; flex-direction: column; }
.founder-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,.04);
}
.founder-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.founder-card:hover .founder-card__img { transform: scale(1.03); }
.founder-card__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -.02em;
  color: var(--cj-white);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.founder-card__title {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--cj-yellow);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.founder-card__bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
}

/* =============================================
   ABOUT FULL PAGE
   ============================================= */
.about--full { background: var(--cj-white); }
.about-pillars {
  background: var(--cj-black);
  padding: var(--section-y) var(--page-x);
}
.about-pillars__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(255,255,255,.1);
}
.about-pillars__header .section-label,
.about-pillars__header .section-counter { color: var(--cj-cream); }
.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3vw;
}
.about-pillar__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cj-red);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.about-pillar__label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--cj-yellow);
  margin-bottom: 1rem;
}
.about-pillar p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}
.about-cta {
  background: var(--cj-red);
  padding: var(--section-y-sm) var(--page-x);
}
.about-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.about-cta__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.02em;
  color: var(--cj-white);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-body {
  background: var(--cj-white);
  padding: var(--section-y) var(--page-x);
  border-bottom: 0.5px solid rgba(45,42,38,.1);
}
.contact-body__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
}
.contact-block .taproom__detail-label { margin-bottom: 1rem; }
.contact-block p { font-size: 0.95rem; line-height: 1.7; opacity: 0.75; }
.contact-social { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.contact-social__link {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(45,42,38,.08);
  transition: opacity 0.2s;
}
.contact-social__link:hover { opacity: 0.7; }
.contact-social__platform {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cj-red);
  margin-bottom: 0.2rem;
}
.contact-social__handle { font-size: 0.95rem; color: var(--cj-black); font-weight: 500; }
.contact-form-section {
  background: var(--cj-white);
  padding: var(--section-y) var(--page-x);
}
.contact-form-section__header { margin-bottom: 3rem; }
.contact-form { max-width: 760px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.contact-form__field label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cj-red);
  text-transform: uppercase;
}
.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cj-black);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(45,42,38,.2);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus { border-color: var(--cj-red); }
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: rgba(45,42,38,.3); }

/* =============================================
   MARQUEE ANIMATION
   ============================================= */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about__body { grid-template-columns: 1fr; gap: 3rem; }
  .about__pillars { grid-template-columns: 1fr; gap: 1rem; }
  .about-pillars__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .beer-card__content { grid-template-columns: 1fr; }
  .beer-card__right { display: none; }
  .beer-teaser-grid { grid-template-columns: 1fr; }
  .beer-detail__content { grid-template-columns: 1fr; }
  .beer-detail__right { display: none; }
  .people-section__body { grid-template-columns: 1fr; }
  .people-section__body--reverse { direction: ltr; }
  .people-section__img, .people-section__photo-placeholder { height: 70vw; max-height: 420px; }
  .taproom__body { grid-template-columns: 1fr; gap: 3rem; }
  .taproom-info__grid { grid-template-columns: 1fr; gap: 3rem; }
  .taproom-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .contact-body__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form__row { grid-template-columns: 1fr; }
  .about-cta__inner { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav__meta { display: none; }
  .nav__right { gap: 1.25rem; }
  .nav__right a:not(.nav__cta) { display: none; }
}
@media (max-width: 600px) {
  :root { --page-x: 5vw; --section-y: 14vw; }
  html { font-size: 15px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero__scroll { align-self: flex-end; }
  .about-pillars__grid { grid-template-columns: 1fr; }
  .beer-detail__stats { flex-wrap: wrap; gap: 1.5rem; }
  .beer-nav-strip { flex-direction: column; gap: 1rem; text-align: center; }
}

/* =============================================
   EVENTS
   ============================================= */
.events {
  background: var(--cj-black);
  padding: var(--section-y) var(--page-x);
}
.events__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(255,255,255,.12);
}
.events__header .section-label,
.events__header .section-counter {
  color: var(--cj-cream);
}
.events__list {
  margin-bottom: 6vw;
}
.event-card {
  display: flex;
  align-items: flex-start;
  gap: 4vw;
  padding: 3vw 0;
  border-bottom: 0.5px solid rgba(255,255,255,.1);
}
.event-card:last-child {
  border-bottom: none;
}
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 5rem;
  padding: 1rem 0;
  border: 0.5px solid rgba(255,255,255,.18);
  border-radius: 6px;
  text-align: center;
}
.event-card__day {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--cj-white);
  letter-spacing: -.02em;
}
.event-card__month {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--cj-yellow);
  margin-top: 0.25rem;
}
.event-card__body {
  flex: 1;
  padding-top: 0.5rem;
}
.event-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.event-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  border: 1px solid currentColor;
  color: var(--cj-yellow);
}
.event-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--cj-white);
  margin-bottom: 0.75rem;
  letter-spacing: -.01em;
}
.event-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250,250,248,.5);
  max-width: 50ch;
}

/* Empty state — remove events__empty--hidden to show it */
.events__empty {
  padding: 6vw 0;
  text-align: center;
}
.events__empty--hidden {
  display: none;
}
.events__empty-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cj-white);
  margin-bottom: 0.75rem;
}
.events__empty-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250,250,248,.45);
  margin-bottom: 2rem;
}

.events__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3vw;
  border-top: 0.5px solid rgba(255,255,255,.12);
}
.events__footer-text {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: .08em;
  color: rgba(250,250,248,.4);
}
.events__footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Events CTA strip — mirrors taproom-cta-strip */
.events-cta-strip {
  background: var(--cj-red);
  padding: 3vw var(--page-x);
}
.events-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.events-cta-strip__inner p {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cj-white);
}

/* Responsive */
@media (max-width: 900px) {
  .events__footer { flex-direction: column; align-items: flex-start; }
  .events-cta-strip__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .event-card { flex-direction: column; gap: 1.25rem; }
  .event-card__date { flex-direction: row; width: auto; gap: 0.6rem; padding: 0.6rem 1rem; align-items: baseline; }
  .event-card__day { font-size: 2rem; }
}

/* =============================================
   V2: BEER TAP TOGGLE (Hero Location Selector)
   ============================================= */
.tap-toggle {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 400px;
}

.tap-toggle__track {
  position: relative;
  display: flex;
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  overflow: hidden;
}

.tap-toggle__option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
  text-decoration: none;
}
.tap-toggle__option--active {
  color: var(--cj-black);
}
.tap-toggle__option:hover:not(.tap-toggle__option--active) {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.tap-toggle__handle-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Sliding pill background */
.tap-toggle__slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--cj-yellow);
  border-radius: 100px;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.tap-toggle__slider--pulaski {
  transform: translateX(100%);
}

/* Location info panel */
.location-panel {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  min-height: 140px;
}
.location-panel__city {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.location-panel__city--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.location-panel__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--cj-white);
  margin-bottom: 0.5rem;
}
.location-panel__name span {
  color: rgba(255,255,255,0.4);
  font-size: 0.65em;
  letter-spacing: .1em;
}
.location-panel__hours {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.location-panel__hint {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* Hero toggle layout */
.hero--toggle .hero__content {
  justify-content: flex-start;
  text-align: center;
  padding: 0 var(--page-x) 0;
  padding-top: max(5rem, 5vw);
  flex: 0 1 auto;
}
.hero--toggle .hero__eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}
.hero--toggle .hero__headline {
  align-items: center;
  margin-bottom: 0.75rem;
}
.hero--toggle .hero__badge {
  width: clamp(100px, 14vw, 180px);
}
.hero--toggle .hero__tagline {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: .14em;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  text-align: center;
  margin: 0 0 0.5rem;
}
.hero--toggle .hero__bottom {
  display: none;
}

/* =============================================
   V2: LOCATIONS SECTION
   ============================================= */
.locations {
  background: var(--cj-cream);
  padding: var(--section-y) var(--page-x);
}
.locations__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(45,42,38,.12);
}
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
}

.location-block {
  background: var(--cj-white);
  padding: 3vw;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location-block__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--cj-black);
  letter-spacing: -.02em;
}
.location-block__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.location-block__detail .taproom__detail-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cj-red);
}
.location-block__detail p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cj-black);
  opacity: 0.7;
}

/* =============================================
   V2: HAMBURGER MENU (Mobile)
   ============================================= */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cj-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45,42,38,0.98);
  backdrop-filter: blur(12px);
  z-index: 105;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav__mobile.open {
  display: flex;
  opacity: 1;
}
.nav__mobile a {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__mobile a:hover {
  color: var(--cj-yellow);
}

/* Nav location links */
.nav__loc {
  color: var(--cj-yellow) !important;
}
.nav__loc:hover {
  color: var(--cj-white) !important;
}

/* =============================================
   V2: LOCATION PAGES (Manchester / Pulaski)
   ============================================= */
.page-hero {
  position: relative;
  background: var(--cj-black);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--page-x) 4rem;
  overflow: hidden;
}
.page-hero--manchester {
  background: linear-gradient(135deg, var(--cj-black) 0%, #1a1712 100%);
}
.page-hero--pulaski {
  background: linear-gradient(135deg, var(--cj-black) 0%, #1e0a10 100%);
}
.page-hero--cream {
  background: var(--cj-cream);
}
.page-hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-hero__eyebrow {
  margin-bottom: 1.5rem;
}
.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--cj-white);
  margin-bottom: 1rem;
}
.page-hero__headline span {
  color: rgba(255,255,255,0.4);
  font-size: 0.5em;
  letter-spacing: .15em;
}
.page-hero__headline--dark {
  color: var(--cj-black);
}
.page-hero__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}
.page-hero__sub--dark {
  color: var(--cj-black);
  opacity: 0.7;
}
.page-hero__cta {
  display: inline-flex;
}

/* Location quick info bar */
.location-bar {
  background: var(--cj-yellow);
  padding: 2rem var(--page-x);
}
.location-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.location-bar__item {
  text-align: center;
}
.location-bar__label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--cj-black);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.location-bar__item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cj-black);
}
.location-bar__item a {
  color: var(--cj-black);
  text-decoration: underline;
}
.btn--sm {
  padding: 0.5em 1.2em;
  font-size: 0.75rem;
}

/* Location sections */
.location-section {
  padding: var(--section-y) var(--page-x);
}
.location-section--cream {
  background: var(--cj-cream);
}
.location-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(45,42,38,.12);
}
.location-section__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--cj-black);
  margin-bottom: 3rem;
}

/* Beer grid */
.beer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.beer-card {
  background: var(--cj-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(45,42,38,.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.beer-card:hover {
  transform: translateY(-4px);
  border-color: var(--cj-yellow);
}
.beer-card--sn {
  border-top: 4px solid var(--sn-accent);
}
.beer-card--us {
  border-top: 4px solid var(--us-accent);
}
.beer-card--dc {
  border-top: 4px solid var(--dc-accent);
}
.beer-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.beer-card__style {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cj-black);
  opacity: 0.5;
}
.beer-card__abv {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--cj-black);
  opacity: 0.4;
}
.beer-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--cj-black);
  margin-bottom: 0.75rem;
}
.beer-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cj-black);
  opacity: 0.7;
}

/* Food grid */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.food-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.food-item__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cj-black);
}
.food-item__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cj-black);
  opacity: 0.7;
}
.food-item__price {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cj-red);
  margin-top: 0.5rem;
}

/* Events grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.event-card {
  display: flex;
  gap: 1.25rem;
  background: var(--cj-black);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.event-card:hover {
  transform: translateY(-3px);
}
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  min-width: 80px;
}
.event-card__day {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cj-yellow);
}
.event-card__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cj-white);
}
.event-card__body {
  flex: 1;
}
.event-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cj-white);
  margin-bottom: 0.5rem;
}
.event-card__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(250,250,248,0.5);
  margin-bottom: 0.75rem;
}

/* Location section footer */
.location-section__footer {
  text-align: center;
  padding-top: 2rem;
}
.location-section__footer-text {
  font-size: 0.9rem;
  color: var(--cj-black);
  opacity: 0.5;
}

/* CTA strip */
.location-cta-strip {
  background: var(--cj-red);
  padding: 3vw var(--page-x);
}
.location-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.location-cta-strip__inner p {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cj-white);
}
.location-cta-strip__actions {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .location-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .beer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .food-grid {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-card {
    flex-direction: column;
  }
  .location-cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .location-bar__grid {
    grid-template-columns: 1fr;
  }
  .page-hero__headline {
    font-size: 2.5rem;
  }
}

/* =============================================
   V2: MENU PAGE STYLES
   ============================================= */
.menu-section {
  padding: var(--section-y) var(--page-x);
  background: var(--cj-cream);
}
.menu-section__grid {
  max-width: 900px;
  margin: 0 auto;
}
.menu-category {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(45,42,38,.15);
}
.menu-category:last-child {
  border-bottom: none;
}
.menu-category__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--cj-black);
  margin-bottom: 1rem;
}
.menu-category__desc {
  font-size: 1.15rem;
  color: var(--cj-black);
  opacity: 0.7;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.menu-category__note {
  font-size: 0.95rem;
  color: var(--cj-black);
  opacity: 0.6;
  margin: 1rem 0;
  line-height: 1.6;
}
.menu-item {
  margin-bottom: 2.5rem;
}
.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cj-black);
  flex: 1;
}
.menu-item__price {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cj-red);
  white-space: nowrap;
}
.menu-item__price-single {
  text-align: center;
  margin-top: 1rem;
}
.menu-item__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cj-black);
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 600px) {
  .menu-category {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
  .menu-item__header {
    flex-direction: column;
    gap: 0.25rem;
  }
  .menu-item__price {
    align-self: flex-start;
  }
}

/* =============================================
   MENU GALLERY
   ============================================= */
.menu-gallery {
  padding: 0 var(--page-x);
}
.menu-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-gallery__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.menu-gallery__img:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
  .menu-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .menu-gallery__grid {
    grid-template-columns: 1fr;
  }
  .menu-gallery__img {
    height: 220px;
  }
}

/* =============================================
   LOCATION PAGE FOOTER ACTIONS
   ============================================= */
.location-section__footer-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--cj-black);
  color: var(--cj-black);
}
.btn--outline:hover {
  background: var(--cj-black);
  color: var(--cj-white);
}

/* Responsive */
@media (max-width: 600px) {
  .location-section__footer-actions {
    flex-direction: column;
  }
  .location-section__footer-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
   VIDEO SECTION (About Page)
   ============================================= */
.video-section {
  padding: 5rem var(--page-x);
  background: var(--cj-cream);
}
.video-section__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.video-section__header {
  text-align: center;
  margin-bottom: 2rem;
}
.video-section__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cj-black);
  text-align: center;
  margin-bottom: 2.5rem;
}
.video-section__container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: var(--cj-black);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.video-section__embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-section__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cj-black);
  opacity: 0.75;
  text-align: center;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 600px) {
  .video-section {
    padding: 3rem var(--page-x);
  }
  .video-section__headline {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .video-section__desc {
    font-size: 0.95rem;
  }
}
