/* =============================================
   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); }

/* =============================================
   BUTTON SIZING ON MOBILE
   ============================================= */
@media (max-width: 600px) {
  .btn { padding: 0.85em 1.9em; }
}

/* =============================================
   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);
  background: rgba(45,42,38,0.5);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(45,42,38,0.96);
}
.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; }

/* Navigation dropdowns */
.nav__dropdown { position: relative; padding-bottom: 0.5rem; }
/* Bare nav links (Events/Contact) get the same bottom padding as dropdown
   wrappers so they align vertically with Beers/Visit/About. */
.nav__right > a { padding-bottom: 0.5rem; }
.nav__dropdown-btn {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  text-transform: uppercase;
}
.nav__dropdown-btn:hover { color: var(--cj-yellow); }
.nav__dropdown-btn::after {
  content: '▾';
  font-size: 0.65rem;
  margin-top: 1px;
}
.nav__dropdown-btn.nav__active { color: var(--cj-yellow); }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(45,42,38,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 140px;
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu.open {
  display: flex;
  flex-direction: column;
}
.nav__dropdown-menu a {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  color: rgba(255,255,255,.7) !important;
  text-decoration: none;
}
.nav__dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--cj-yellow) !important; }

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.7);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}
.nav__hamburger:hover span { background: var(--cj-yellow); }

/* Hamburger touch target sizing */
@media (max-width: 600px) {
  .nav__hamburger { width: 48px; height: 48px; }
  .nav__hamburger span { height: 3px; }
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(45,42,38,0.98);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--cj-white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--cj-yellow); }
.nav__mobile a.nav__active { color: var(--cj-yellow); }

@media (max-width: 900px) {
  .nav__right a:not(.nav__cta) { display: none; }
  .nav__dropdown { display: none; }
  .nav__hamburger { display: flex; }
}

/* =============================================
   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-color: var(--cj-black);
  background-image: url('../images/hero-cheers.webp');
  background-size: cover;
  background-position: center center;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__video-wrap.is-playing { opacity: 1; }
.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* True cover: always fills the hero at any aspect ratio */
  width: 100vw;
  height: 56.25vw;        /* 16:9 height from width */
  min-width: 177.78vh;    /* 16:9 width from height */
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.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;
  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: clamp(0.85rem, 2.2vw, 1rem);
  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;
}

/* Coming soon panel for locations without live tap feed */
.coming-soon-panel {
  background: rgba(0,0,0,0.05);
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 4rem) var(--page-x);
  text-align: center;
  margin-bottom: 1.5rem;
}
.coming-soon-panel__icon {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.coming-soon-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--cj-black);
}
.coming-soon-panel__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
  max-width: 48ch;
  margin: 0 auto 1.5rem;
}

/* 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.2fr 1fr 1fr 1fr;
  gap: 3vw;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.footer__logo-img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.4rem;
}
.footer__tagline {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  line-height: 1.5;
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cj-white);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.footer__locations {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__loc {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer__loc-name {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cj-white);
}
.footer__loc-name a {
  color: inherit;
  text-decoration: none;
}
.footer__loc-name a:hover { color: var(--cj-yellow); }
.footer__loc-address,
.footer__loc-phone {
  font-family: var(--font-cond);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  text-decoration: none;
}
.footer__loc-phone:hover { color: var(--cj-yellow); }
.footer__loc-hours {
  font-family: var(--font-cond);
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer__contact-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer__contact-link {
  font-family: var(--font-cond);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.footer__contact-link:hover { color: var(--cj-yellow); }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav a {
  font-family: var(--font-cond);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  letter-spacing: .06em;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__nav a:hover { color: var(--cj-yellow); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.3);
}
.footer__social-row {
  display: flex;
  gap: 1.5rem;
}
.footer__social-row a {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__social-row a:hover { color: var(--cj-yellow); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* =============================================
   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: clamp(0.9rem, 2vw, 1.1rem);
  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__body--owners { align-items: start; gap: 4vw; }
.people-section__owner .people-section__text { max-width: none; }
.people-section__owner .people-section__bio { max-width: none; }
.people-section__body + .people-section__body {
  margin-top: 7vw;
  padding-top: 7vw;
  border-top: 0.5px solid rgba(45,42,38,.12);
}
.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__photo-placeholder--light {
  background: var(--cj-cream);
  border-color: rgba(45,42,38,.18);
  color: rgba(45,42,38,.4);
}
.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;
  margin-bottom: 1.5em;
}
.people-section__bio:last-child {
  margin-bottom: 0;
}
.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.1rem, 1.8vw, 1.5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--cj-white);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  min-height: 3.2em;
}
.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; }

/* Two-location contact columns */
.contact-body { background: var(--cj-cream); }
.contact-body__intro { max-width: 640px; margin-bottom: 3.5rem; }
.contact-body__intro p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: var(--cj-black);
  opacity: 0.8;
  margin-top: 1rem;
}
.contact-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3.5rem);
}
.contact-loc {
  display: flex;
  flex-direction: column;
  background: var(--cj-white);
  border-radius: 14px;
  border-top: 5px solid var(--cj-red);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: 0 12px 34px rgba(45,42,38,.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-loc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(45,42,38,.16);
}
.contact-loc__name {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--cj-black);
  margin: 0 0 1rem;
}
.contact-loc__address {
  display: block;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: var(--cj-black);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.contact-loc__address:hover { opacity: 1; color: var(--cj-red); }
.contact-loc__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 1.75rem 0;
  padding: 1.5rem 0;
  border-top: 0.5px solid rgba(45,42,38,.12);
  border-bottom: 0.5px solid rgba(45,42,38,.12);
}
.contact-loc__item { display: flex; flex-direction: column; }
.contact-loc__item .taproom__detail-label { margin-bottom: 0.4rem; }
.contact-loc__link {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--cj-black);
  transition: color 0.2s;
}
.contact-loc__link:hover { color: var(--cj-red); }
.contact-loc__map {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  box-shadow: inset 0 0 0 0.5px rgba(45,42,38,.12);
}
.contact-loc__map iframe { display: block; width: 100%; border-radius: 10px; }
.contact-loc__cta { margin-top: 1.5rem; align-self: flex-start; }
.contact-body__follow { margin-top: 4rem; max-width: 420px; }
.contact-body__follow .taproom__detail-label { margin-bottom: 1rem; }
.contact-body__follow .contact-social__link { border-bottom-color: rgba(45,42,38,.15); }
.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: clamp(0.9rem, 2vw, 1.05rem); 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; margin: 0 auto; }
.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: #000;
  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);
}

/* =============================================
   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);
}
/* =============================================
   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__body--owners { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; }
  .people-section__img, .people-section__photo-placeholder { height: 70vw; max-height: 420px; }
  .people-section__owner .people-section__text { max-width: none; }
  .people-section__owner .people-section__bio { max-width: none; }
  .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-locations { 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; }
  .nav__hamburger { display: flex; }
  /* Hero toggle: shrink on tablet so buttons fit */
  .hero--toggle .hero__content { padding-top: max(4rem, 4vw); }
  .hero--toggle .hero__badge { width: clamp(90px, 18vw, 150px); }
  .loc-cta { max-width: 380px; gap: 0.75rem; }
  .loc-cta__btn { padding: 0.75rem 1rem; font-size: 0.88rem; }
}
@media (max-width: 600px) {
  :root { --page-x: 5vw; --section-y: 14vw; }
  .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; }
  /* Hero toggle: allow to grow on mobile so buttons are never clipped */
  .hero { height: auto; min-height: 100svh; overflow: visible; }
  .hero--toggle .hero__content { padding-top: max(3.5rem, 3.5vw); }
  .hero--toggle .hero__badge { width: clamp(90px, 18vw, 150px); }
  .loc-cta { max-width: 340px; gap: 0.75rem; margin-top: 1rem; }
  .loc-cta__btn { padding: 0.85rem 1.25rem; font-size: 1rem; letter-spacing: .08em; }
  .loc-cta__label { font-size: 0.75rem; letter-spacing: .08em; }
}

/* =============================================
   MOBILE: 320PX BREAKPOINT (small phones)
   ============================================= */
@media (max-width: 320px) {
  .event-card__day { font-size: 1.5rem; }
  .event-card__month { font-size: 0.6rem; }
  .location-bar__item p { font-size: 0.8rem; }
  .beer-tag { font-size: 0.6rem; padding: 0.2em 0.6em; }
  .beer-stat__value { font-size: 0.8rem; }
  .footer__loc-hours { font-size: 0.7rem; }
  .beer-card__desc { font-size: 0.85rem; line-height: 1.7; }
  .contact-form__field label { font-size: 0.75rem; }
  .contact-form__field input,
  .contact-form__field textarea { padding: 0.6rem 0; }
}

/* =============================================
   MOBILE: 480PX BREAKPOINT (phones)
   ============================================= */
@media (max-width: 480px) {
  .nav__right a { font-size: 0.9rem; }
  .nav__dropdown-menu a { font-size: 0.9rem !important; }
  .event-card__desc { font-size: 1rem; line-height: 1.8; }
  .event-card__day { font-size: 2rem; }
  .event-card__month { font-size: 0.65rem; }
  .event-tag { font-size: 0.7rem; padding: 0.3em 0.8em; }
  .beer-card__name { font-size: clamp(2rem, 5vw, 2.8rem); }
  .beer-card__desc { font-size: 0.9rem; line-height: 1.8; }
  .menu-item__name { font-size: clamp(1.4rem, 3.5vw, 1.8rem); }
  .menu-item__price { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
  .location-bar__item p { font-size: 0.85rem; }
  .footer__contact-item { margin-bottom: 0.8rem; }
  .contact-form__field label { font-size: 0.8rem; }
  .contact-form__field input,
  .contact-form__field textarea { padding: 0.7rem 0; }
}

/* =============================================
   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: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--cj-white);
  letter-spacing: -.02em;
}

/* =============================================
   MOBILE: EVENT CARD ADJUSTMENTS
   ============================================= */
@media (max-width: 600px) {
  .event-card__day { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
  .event-card__month { font-size: clamp(0.55rem, 1.1vw, 0.65rem); }
  .event-tag { font-size: 0.7rem; padding: 0.25em 0.7em; }
}
.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: clamp(0.9rem, 2.2vw, 1.1rem);
  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);
}

/* Two-column events layout (like contact/taproom) */
.events__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  max-width: 1400px;
  margin: 0 auto;
}
.events__col {
  display: flex;
  flex-direction: column;
}
.events__col-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(255,255,255,.12);
}
.events__col-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cj-white);
  letter-spacing: -0.01em;
  margin: 0;
}
.events__col-count {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cj-yellow);
}
.events__col-list {
  margin-bottom: 2rem;
}
.events__col-list .event-card {
  gap: 2vw;
  padding: 2vw 0;
}
.events__see-all {
  align-self: flex-start;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .events__two-col { grid-template-columns: 1fr; gap: 4rem; }
  .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;
}

/* Location CTA buttons */
.loc-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem auto 0;
  max-width: 420px;
}
.loc-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.loc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.loc-cta__btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.loc-cta__btn--yellow {
  background: var(--cj-yellow);
  color: var(--cj-black);
}
.loc-cta__btn--red {
  background: var(--cj-red);
  color: var(--cj-white);
}
.loc-cta__label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 480px) {
  .loc-cta {
    grid-template-columns: 1fr;
    max-width: 260px;
  }
}

/* Hero toggle layout */
.hero--toggle .hero__content {
  justify-content: center;
  text-align: center;
  padding: 1.5rem var(--page-x);
  flex: 1;
}
.hero--toggle .hero__eyebrow {
  justify-content: center;
  margin: 0 0 1rem;
}
.hero--toggle .hero__headline {
  align-items: center;
  margin: 0 0 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;
}


/* Nav location links */
.nav__loc {
  color: var(--cj-yellow) !important;
}
.nav__loc:hover {
  color: var(--cj-white) !important;
}
/* HOME link in nav needs same bottom padding as dropdowns for alignment */
.nav__right > a.nav__loc {
  padding-bottom: 0.5rem;
}

/* =============================================
   V2: LOCATION PAGES (Manchester / Pulaski)
   ============================================= */
.page-hero {
  position: relative;
  background: var(--cj-black);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--page-x) 2rem;
  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: 0.85;
  letter-spacing: -.02em;
  color: var(--cj-white);
  margin-bottom: 1rem;
  text-align: center;
}
.page-hero__headline span {
  color: rgba(255,255,255,0.4);
  font-size: 0.5em;
  letter-spacing: .15em;
  display: block;
  margin-top: 0.2rem;
}
.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;
  text-align: center;
}
.page-hero__sub--dark {
  color: var(--cj-black);
  opacity: 0.7;
}
.page-hero__cta-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}
.page-hero__scroll-hint {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  text-align: center;
}

/* 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:not(.btn) {
  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;
}

/* Empty state for events-grid on location pages */
.events-grid__empty {
  text-align: center;
  padding: 3rem 2rem;
  color: rgba(0,0,0,0.5);
  font-family: var(--font-cond);
  font-size: 1rem;
}

/* 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 .menu-item__status {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cj-red);
  text-transform: none;
  margin-right: 0.5rem;
  opacity: 0.95;
}
.menu-item__price .menu-item__amount {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cj-red);
  white-space: nowrap;
}
.menu-item--unavailable .menu-item__status,
.menu-item--unavailable .menu-item__amount {
  opacity: 0.55;
}
.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;
}

.menu-item--unavailable .menu-item__name,
.menu-item--unavailable .menu-item__price {
  opacity: 0.55;
}
.menu-item__unavailable {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cj-red);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* 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;
  }
}


/* ===== Our Core Beers - yellow section, floating cans ===== */
.beers { background: var(--cj-yellow); }
.beers__headline { color: var(--cj-black); }
.beers__header { border-bottom-color: rgba(45,42,38,.2); }
.beers__header .section-label,
.beers__header .section-counter { color: var(--cj-black); }
.beers__sub-tagline { text-align:center; color: rgba(45,42,38,.62); font-family: var(--font-cond); font-size: 1.05rem; margin: -2vw 0 4vw; }
.beer-teaser-grid { align-items: start; gap: 2rem; }
.beer-teaser { background: transparent !important; padding: 0; display:flex; flex-direction:column; align-items:center; text-align:center; overflow:visible; }
.beer-teaser__canwrap { height: clamp(280px, 32vw, 440px); width:100%; display:flex; align-items:flex-end; justify-content:center; }
.beer-teaser__can { height:100%; width:auto; object-fit:contain; filter: drop-shadow(0 24px 22px rgba(0,0,0,0.30)) drop-shadow(0 2px 2px rgba(0,0,0,0.22)); transition: transform .35s ease; }
.beer-teaser:hover .beer-teaser__can { transform: translateY(-12px) scale(1.04); }
.beer-teaser__name { font-family: var(--font-display); color: var(--cj-black); font-size: clamp(1.5rem, 2.3vw, 2.4rem); line-height:.95; margin: 1.5rem 0 .35rem; }
.beer-teaser__sub { font-family: var(--font-cond); color: rgba(45,42,38,.6); font-size:.95rem; letter-spacing:.02em; margin:0; }
.beer-teaser__soon { width: clamp(95px,10vw,150px); aspect-ratio:.4; border-radius:18px 18px 12px 12px; background: repeating-linear-gradient(#efe3c4,#efe3c4 8px,#e7d9b3 8px,#e7d9b3 16px); display:flex; align-items:center; justify-content:center; color:#a98f4e; font-size:.8rem; text-align:center; }


/* 4-up core beers grid */
.beer-teaser-grid { grid-template-columns: repeat(4, 1fr); }
.beer-teaser__canwrap { height: clamp(240px, 24vw, 400px); }
@media (max-width: 920px) { .beer-teaser-grid { grid-template-columns: repeat(2, 1fr); } }


/* 6-up core beers: 3 cols x 2 rows + fix can clipping */
.beer-teaser-grid { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
.beer-teaser__canwrap { height: clamp(260px, 26vw, 420px); }
.beer-teaser__can { max-height: 100%; max-width: 100%; width: auto; height: auto; }
@media (max-width: 920px) { .beer-teaser-grid { grid-template-columns: repeat(2, 1fr); } }


/* Homepage Our Story snippet */
.home-story { background: var(--cj-cream); color: var(--cj-black); padding: var(--section-y) var(--page-x); }
.home-story__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.home-story__header { display:flex; justify-content:center; margin-bottom:1.25rem; }
.home-story .section-label { color: var(--cj-black); opacity:.6; }
.home-story__headline { font-family: var(--font-display); color: var(--cj-black); font-size: clamp(2.4rem, 6vw, 4.5rem); line-height:.95; margin-bottom: 1.5rem; }
.home-story__copy { font-size: 1.1rem; line-height: 1.75; margin-bottom: 2rem; color: var(--cj-black); }


/* About hero — family photo background + scroll reveal */
.page-hero--family {
  background-image: url('../images/family-hero.webp');
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
}
.page-hero--family::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #141210;
  opacity: var(--hero-ov, 0.6);
  z-index: 0;
  pointer-events: none;
}
.page-hero--family .page-hero__content {
  position: relative;
  z-index: 1;
  will-change: opacity, transform;
}

/* About page: tagline block below hero image */
.about-tagline {
  background: var(--cj-black);
  padding: 4rem var(--page-x) 4.5rem;
  text-align: center;
}
.about-tagline__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--cj-white);
  margin: 0 0 1.25rem;
}
.about-tagline__sub {
  font-family: var(--font-cond);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cj-yellow);
  margin: 0;
}

/* Nav: solid on hover (50% by default, solid on scroll/hover) */
.nav:hover { background: rgba(45,42,38,0.96); }


/* Core-beer card names: consistent dark on yellow (fix sn yellow-on-yellow) */
.beer-teaser--sn .beer-teaser__name,
.beer-teaser--us .beer-teaser__name,
.beer-teaser--dc .beer-teaser__name { color: var(--cj-black); }

/* =============================================
   MOBILE COMPREHENSIVE PATCH — 2026-06-26
   Fixes: iOS hero video stacking, font sizes,
   loc-cta backgrounds, letter-spacing overflow
   ============================================= */

/* Force hero content above video iframe compositor layer (iOS fix) */
.hero__content {
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Explicit hex fallbacks for iOS where CSS vars can fail on composited layers */
.loc-cta__btn--yellow {
  background-color: #F5B335;
  background: var(--cj-yellow);
  color: #2D2A26;
  color: var(--cj-black);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.loc-cta__btn--red {
  background-color: #E64B38;
  background: var(--cj-red);
  color: #FAFAF8;
  color: var(--cj-white);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Tablet (900px): fix footer columns and nav dropdown hide */
@media (max-width: 900px) {
  .nav__dropdown { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* Mobile (600px) — primary phone breakpoint */
@media (max-width: 600px) {
  /* Font: do NOT shrink base — keep at 18px so all rem values stay readable */
  html { font-size: 18px; }

  /* Hero: hide YouTube iframe on mobile (iOS blocks autoplay, shows broken play btn) */
  .hero__video-wrap { display: none; }
  .hero__bg {
    background-image: url('../images/hero-cheers.webp');
    background-size: cover;
    background-position: center center;
  }
  /* Mobile hero overlay: solid CJ black at 50% opacity */
  .hero__bg-overlay {
    background: rgba(45, 42, 38, 0.5);
  }

  /* Hero badges and layout */
  .hero--toggle .hero__badge { width: clamp(110px, 28vw, 160px); }
  .hero--toggle .hero__content { padding-top: max(5.5rem, 5.5vw); padding-bottom: 2.5rem; justify-content: flex-start; flex: 0 1 auto; }

  /* Tagline — tighten letter-spacing to prevent overflow */
  .hero--toggle .hero__tagline {
    font-size: 0.72rem;
    letter-spacing: .08em;
    padding: 0 1rem;
  }

  /* Location CTA container: full-width single column, generous tap targets */
  .loc-cta {
    max-width: 100%;
    width: calc(100% - 2rem);
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .loc-cta__btn {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    letter-spacing: .1em;
    min-height: 52px;
  }
  .loc-cta__label {
    font-size: 0.75rem;
    letter-spacing: .08em;
  }

  /* Section headings: prevent long words overflowing */
  h1, h2, h3, .about__headline, .page-hero__headline {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* About section */
  .about__headline { font-size: clamp(2.8rem, 11vw, 5rem); }

  /* Locations grid: single column on phones */
  .locations__grid { grid-template-columns: 1fr; }

  /* Beer teaser grid: single column on phones */
  .beer-teaser-grid { grid-template-columns: 1fr; }

  /* Footer: always single column on mobile */
  .footer__top { grid-template-columns: 1fr; }
}

/* Small phones (480px) */
@media (max-width: 480px) {
  .loc-cta__btn { font-size: 1rem; padding: 0.95rem 1.25rem; }
}

/* Very small phones (375px) */
@media (max-width: 375px) {
  html { font-size: 16px; }
  .hero--toggle .hero__tagline { font-size: 0.7rem; letter-spacing: .06em; }
  .loc-cta { width: calc(100% - 1rem); }
  .loc-cta__btn { font-size: 0.95rem; min-height: 48px; }
}

/* =============================================
   Core-beer cans: no shadow at all. The iOS Safari
   drop-shadow-on-WebP bug rendered a rectangular box,
   so the drop-shadow is removed outright (no ground
   ellipse either) — clean cans on every browser.
   ============================================= */
.beer-teaser__can { filter: none; }

/* =============================================
   Mobile menu: make it scrollable and top-aligned so
   every item is reachable on short screens. Centering
   pushed the first items off the top edge with no way
   to scroll to them.
   ============================================= */
.nav__mobile {
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 5.5rem 2rem 3rem;
  gap: 1.4rem;
}

/* =============================================
   Location quick-link cards (On Tap / Food / Events)
   3-column linked cards replacing the inline previews
   ============================================= */
.loc-links {
  background: var(--cj-black);
  padding: var(--section-y) var(--page-x);
}
.loc-links__header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.loc-links__header .section-label { color: var(--cj-cream); opacity: 0.6; }
.loc-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.loc-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--cj-cream);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--cj-black);
  min-height: 260px;
  border-top: 4px solid var(--cj-red);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.loc-link-card--tap { border-top-color: var(--cj-yellow); }
.loc-link-card--food { border-top-color: var(--cj-red); }
.loc-link-card--events { border-top-color: var(--cj-black); }
.loc-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.loc-link-card__num {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: rgba(45,42,38,.4);
}
.loc-link-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0;
}
.loc-link-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(45,42,38,.72);
  margin: 0;
  flex: 1;
}
.loc-link-card__cta {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--cj-red);
}
.loc-link-card:hover .loc-link-card__cta { color: var(--cj-black); }
@media (max-width: 900px) {
  .loc-links__grid { grid-template-columns: 1fr; }
  .loc-link-card { min-height: 0; }
}

/* Footer social cluster: location clarity label */
.footer__social-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: .14em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 0.5rem;
}

/* =============================================
   Owner feedback 2026-06-27
   ============================================= */

/* #3 Homepage: tighten the gap between the red scrolling
   strip (end of hero) and the About section on desktop */
.hero + .about { padding-top: 3vw; }

/* #4 Menu pages: kill the mobile dead space in the hero and
   keep the Mess Hall block centered */
@media (max-width: 600px) {
  .page-hero--menu {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
  .page-hero--menu .mess-hall-brand { padding-top: 0.25rem; }
  .page-hero--menu .menu-hero__cta { margin-top: 1rem; }
}

/* #2 About: compress the owner bios — float the photo so the
   long text wraps around it instead of a tall narrow column */
.people-section { padding: 6vw var(--page-x); }
.people-section__body {
  display: block;
}
.people-section__body--owners { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
.people-section__owner .people-section__photo { float: none; width: 100%; margin: 0 0 1rem 0; }
.people-section__owner .people-section__img { max-height: 640px; }
.people-section__owner .people-section__name { font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.0; }
.people-section__body::after { content: ''; display: table; clear: both; }
.people-section__body + .people-section__body {
  margin-top: 3vw;
  padding-top: 3vw;
}
.people-section__photo {
  float: left;
  width: 34%;
  margin: 0.4rem 2.5rem 1rem 0;
}
.people-section__body--reverse { direction: ltr; }
.people-section__body--reverse .people-section__photo {
  float: right;
  margin: 0.4rem 0 1rem 2.5rem;
}
.people-section__img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}
.people-section__bio { margin-bottom: 0.9rem; line-height: 1.6; }

/* Stack on mobile — no float */
@media (max-width: 700px) {
  .people-section__photo,
  .people-section__body--reverse .people-section__photo {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem 0;
  }
  .people-section__body--owners { grid-template-columns: 1fr; }
  .people-section__img { max-height: 360px; }
}

/* Lawdy, Lawdy! — Mexican Style Lager accent (golden on dark) */
:root { --ll-bg: #241E12; --ll-accent: #E0A93B; }
.beer-detail--ll { background: var(--ll-bg); }
.beer-detail--ll .beer-detail__breadcrumb a { color: rgba(224,169,59,.55); }
.beer-detail--ll .beer-tag { color: var(--ll-accent); }
.beer-detail--ll .beer-detail__name { color: var(--ll-accent); }

/* =============================================
   BEER FINDER — store locator
   ============================================= */
.finder-taprooms { background: var(--cj-cream); padding: var(--section-y-sm) var(--page-x); }
.finder-taprooms__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.finder-taproom {
  background: var(--cj-white); border-radius: 12px; padding: 2rem;
  display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start;
}
.finder-taproom__name { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--cj-black); }
.finder-taproom__address, .finder-taproom__hours { font-family: var(--font-body); color: rgba(45,42,38,.7); line-height: 1.5; }
.finder-taproom .btn { margin-top: 0.5rem; }

.finder { background: var(--cj-black); padding: var(--section-y) var(--page-x); }
.finder__header { max-width: 1200px; margin: 0 auto 2rem; text-align: center; }
.finder__header .section-label { color: var(--cj-cream); opacity: .6; }
.finder__headline { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); color: var(--cj-white); line-height: .95; margin: .5rem 0; }
.finder__sub { font-family: var(--font-body); color: rgba(255,255,255,.6); max-width: 640px; margin: 0 auto; }

.finder__controls { max-width: 1200px; margin: 0 auto 1.25rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.finder__search {
  flex: 1 1 280px; min-width: 0; padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; color: var(--cj-white); font-family: var(--font-body); font-size: 1rem;
}
.finder__search::placeholder { color: rgba(255,255,255,.4); }
.finder__search:focus { outline: none; border-color: var(--cj-yellow); }
.finder__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.finder__chip {
  font-family: var(--font-cond); font-size: 0.8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: 100px; cursor: pointer;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15);
  transition: background .2s, color .2s, border-color .2s;
}
.finder__chip:hover { color: var(--cj-white); }
.finder__chip.is-active { background: var(--cj-yellow); color: var(--cj-black); border-color: var(--cj-yellow); }

.finder__layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.25rem; align-items: stretch;
}
.finder__map { height: 560px; border-radius: 12px; overflow: hidden; background: #1c1a17; position: relative; }
.finder__map-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-family: var(--font-cond); letter-spacing: .1em; }
.finder__list { height: 560px; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-right: 0.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.finder__city { font-family: var(--font-cond); font-size: 0.75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cj-yellow); margin: 0.75rem 0 0.1rem; }
.finder-card {
  background: var(--cj-cream); border-radius: 10px; padding: 1rem 1.1rem; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.finder-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.4); }
.finder-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.finder-card__name { font-family: var(--font-display); font-size: 1.15rem; color: var(--cj-black); line-height: 1.05; }
.finder-card__tag { font-family: var(--font-cond); font-size: 0.6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 0.2em 0.6em; border-radius: 100px; color: var(--cj-white); flex-shrink: 0; }
.finder-card__tag--liquor { background: #7b3f9e; }
.finder-card__tag--market { background: #2f8f4e; }
.finder-card__tag--restaurant { background: var(--cj-red); }
.finder-card__tag--bar { background: #c08a2d; }
.finder-card__tag--golf { background: #3a7d5c; }
.finder-card__tag--other { background: #6b655d; }
.finder-card__addr { font-family: var(--font-body); font-size: 0.9rem; color: rgba(45,42,38,.7); margin: 0.35rem 0 0.5rem; line-height: 1.4; }
.finder-card__dir { font-family: var(--font-cond); font-size: 0.8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cj-red); }
.finder__count { max-width: 1200px; margin: 1rem auto 0; color: rgba(255,255,255,.4); font-family: var(--font-cond); font-size: 0.8rem; letter-spacing: .08em; text-align: center; }
.finder__empty { color: rgba(255,255,255,.5); font-family: var(--font-body); padding: 1rem; }
.finder-iw { font-family: var(--font-body); font-size: 0.9rem; color: #2d2a26; line-height: 1.5; }
.finder-iw strong { font-family: var(--font-display); font-size: 1.05rem; }
.finder-iw a { color: #E64B38; font-weight: 700; }

@media (max-width: 860px) {
  .finder-taprooms__grid { grid-template-columns: 1fr; }
  .finder__layout { grid-template-columns: 1fr; }
  .finder__map { height: 360px; }
  .finder__list { height: auto; max-height: 520px; }
  .finder__controls { flex-direction: column; align-items: center; gap: 0.4rem; }
  .finder__headline { font-size: clamp(1.4rem, 7vw, 2.2rem); white-space: nowrap; }
  .finder__search { flex: none; align-self: center; width: 100%; max-width: 340px; padding: 0.5rem 1rem; font-size: 1rem; border-radius: 12px; }
}

/* ===== CJC Comic Cover Collection — added 2026-06-28 ===== */
:root{ --cjc-mood:#F5B335; }
.cjc-stage{position:relative;background:#161310;overflow:hidden;padding-top:clamp(3rem,6vw,5rem);padding-bottom:clamp(3.5rem,7vw,6rem)}
.cjc-stage__inner{position:relative;z-index:1;max-width:1180px;margin:0 auto;padding:0 5vw}
.cjc-stage .beers__header,.cjc-stage .beers__headline{color:#FAFAF8}
.cjc-stage .beers__sub-tagline{color:#b8b0a4}
.cjc-stage .section-label,.cjc-stage .section-counter{color:#F5B335}
.cjc-collar{display:inline-block;margin:1rem 0 2rem;font-family:var(--font-display,inherit);letter-spacing:.22em;font-size:.72rem;font-weight:700;color:#D6D1CA;text-transform:uppercase;border-top:1px solid #3a342c;border-bottom:1px solid #3a342c;padding:.5rem 1.1rem}
.cjc-fx{position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.cjc-fx-glow{position:absolute;inset:0;background:radial-gradient(55% 50% at 50% 30%,var(--cjc-mood,#F5B335),transparent 62%);opacity:.13;transition:background .7s ease,opacity .7s ease}
.cjc-fx-dots{position:absolute;inset:0;background-image:radial-gradient(circle,rgba(255,255,255,.045) 1px,transparent 1.6px);background-size:15px 15px;-webkit-mask-image:radial-gradient(120% 80% at 50% 12%,#000 26%,transparent 82%);mask-image:radial-gradient(120% 80% at 50% 12%,#000 26%,transparent 82%)}
.cjc-fx-rays{position:absolute;left:50%;top:-25%;width:160vw;height:130vh;transform:translateX(-50%);background:repeating-conic-gradient(from 0deg at 50% 0%,rgba(255,255,255,.03) 0deg 1.6deg,transparent 1.6deg 7deg);-webkit-mask-image:radial-gradient(56% 60% at 50% 0%,#000,transparent 72%);mask-image:radial-gradient(56% 60% at 50% 0%,#000,transparent 72%)}
.cjc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem;margin-top:1.5rem}
@media(max-width:900px){.cjc-grid{grid-template-columns:repeat(2,1fr);gap:1.3rem}}
@media(max-width:560px){.cjc-grid{grid-template-columns:1fr 1fr;gap:.9rem}}
.cjc-cover{position:relative;display:block;border-radius:13px;overflow:hidden;isolation:isolate;background:var(--accent,#222);text-decoration:none;color:inherit;box-shadow:0 12px 28px rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.06);transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s}
.cjc-cover:hover,.cjc-cover:focus-visible{transform:translateY(-9px);outline:none;box-shadow:0 24px 54px rgba(0,0,0,.6),0 0 0 2px var(--accent),0 0 40px -8px var(--accent)}
.cjc-cover-art{position:relative;aspect-ratio:1000/1500;overflow:hidden;background:radial-gradient(circle at 50% 32%,var(--accent),#0d0b09 80%)}
.cjc-cover-art img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.8,.2,1)}
.cjc-cover:hover .cjc-cover-art img{transform:scale(1.05)}
.cjc-cover-art::after{content:"";position:absolute;inset:0;z-index:2;pointer-events:none;background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.16) 48%,transparent 62%);transform:translateX(-120%);transition:transform .7s ease}
.cjc-cover:hover .cjc-cover-art::after{transform:translateX(120%)}
.cjc-cover-cap{position:absolute;left:0;right:0;bottom:0;z-index:3;padding:.9rem 1rem 1rem;background:linear-gradient(to top,rgba(10,8,6,.95),rgba(10,8,6,.7) 60%,transparent)}
.cjc-name{font-family:var(--font-display,inherit);font-weight:700;color:#fff;font-size:clamp(1rem,2.4vw,1.35rem);line-height:1;margin:0 0 .3rem;letter-spacing:.01em}
.cjc-sub{margin:0;color:#e7e0d4;font-size:.8rem;letter-spacing:.02em}
.cjc-more{display:inline-block;margin-top:.6rem;font-family:var(--font-display,inherit);letter-spacing:.1em;font-size:.66rem;text-transform:uppercase;color:var(--accent);opacity:0;transform:translateY(5px);transition:opacity .3s,transform .3s}
.cjc-cover:hover .cjc-more,.cjc-cover:focus-visible .cjc-more{opacity:1;transform:translateY(0)}
@media(hover:none){.cjc-more{opacity:1;transform:none}}
.cjc-poster img,.beer-detail__logo{border-radius:14px}
@media(prefers-reduced-motion:reduce){.cjc-fx-glow,.cjc-cover,.cjc-cover-art img,.cjc-cover-art::after{transition:none}}
/* ===== end CJC Comic Cover Collection ===== */

/* ===== Unified bold page-hero — matches the "OUR CORE BEERS" header — 2026-06-28 ===== */
.page-hero{justify-content:flex-start}
.page-hero__content{position:relative;z-index:1;text-align:left;width:100%;max-width:none}
.page-hero__eyebrow{margin-bottom:1.2rem;padding-bottom:1rem;border-bottom:.5px solid rgba(255,255,255,.14)}
.page-hero__headline{font-family:var(--font-display);font-size:clamp(4rem,12vw,10rem);line-height:.9;letter-spacing:-.01em;text-transform:uppercase}
.page-hero__sub{font-family:var(--font-cond);letter-spacing:.06em}
.page-hero--cream .page-hero__eyebrow{border-bottom-color:rgba(45,42,38,.18)}
.page-hero--dark,.page-hero--manchester,.page-hero--pulaski{position:relative;overflow:hidden}
.page-hero--dark .page-hero__eyebrow .section-label,
.page-hero--manchester .page-hero__eyebrow .section-label,
.page-hero--pulaski .page-hero__eyebrow .section-label{color:#F5B335;opacity:1}
.page-hero--dark::before,.page-hero--manchester::before,.page-hero--pulaski::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background:radial-gradient(55% 60% at 50% 28%,rgba(245,179,53,.12),transparent 62%)}
.page-hero--dark::after,.page-hero--manchester::after,.page-hero--pulaski::after{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background-image:radial-gradient(circle,rgba(255,255,255,.045) 1px,transparent 1.6px);background-size:15px 15px;-webkit-mask-image:radial-gradient(120% 80% at 50% 14%,#000 28%,transparent 84%);mask-image:radial-gradient(120% 80% at 50% 14%,#000 28%,transparent 84%)}
/* ===== end unified page-hero ===== */
