/* ============================================================
   OAK UNION BREWING — Main Stylesheet v2
   "The old gods brew through us."
   Ultra-dark atmospheric pagan-mythology craft brewery
   ============================================================ */

/* ============================================================
   0. ACCESSIBILITY
   ============================================================ */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--black-deep);
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.skip-to-content:focus {
  left: 0;
}
/* Focus-visible for interactive elements */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black-deep: #070705;
  --black-warm: #0f0d0b;
  --charcoal: #181614;
  --stone-dark: #22201e;
  --stone-mid: #403a36;
  --bone: #d4c9b8;
  --bone-light: #e8dfd2;
  --parchment: #f0e8d8;
  --blood: #8b1a1a;
  --blood-bright: #b22222;
  --ember: #c4652a;
  --gold-dark: #8b7335;
  --gold: #b8962e;
  --forest-deep: #1a2e1a;
  --forest: #2d4a2d;
  --moss: #4a6741;
  --lichen: #6b8f63;
  --font-display: 'IM Fell English SC', serif;
  --font-heading: 'IM Fell English', serif;
  --font-label: 'Josefin Sans', sans-serif;
  --font-body: 'Cormorant', serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
  font-size: 0.8333vw;
}

body {
  background-color: var(--black-deep);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Animated film-grain noise overlay — destroys the flat digital feel */
body::after {
  content: '';
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background: repeating-conic-gradient(#d4c9b8 0.00003%, transparent 0.00015%, transparent 0.00025%, #d4c9b8 0.0004%) 50% 50% / 37.5rem 37.5rem;
  animation: grain 0.8s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  16% { transform: translate(-2%, -3%); }
  33% { transform: translate(3%, 1%); }
  50% { transform: translate(-1%, 3%); }
  66% { transform: translate(2%, -2%); }
  83% { transform: translate(-3%, 1%); }
}

::selection { background-color: var(--blood); color: var(--parchment); }
::-moz-selection { background-color: var(--blood); color: var(--parchment); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; line-height: 1.2; }

/* ============================================================
   3. LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  background-color: var(--black-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.loaded {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Loading brand — centered logo with elegant reveal */
.loading-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loading-logo {
  height: 2rem;
  width: auto;
  display: block;
  opacity: 0;
  filter: brightness(0.6);
  animation: logo-reveal 2.4s ease-out 0.3s forwards;
}
/* Thin gold loading line */
.loading-line {
  width: 7.5rem;
  height: 0.0625rem;
  background-color: rgba(139,115,53,0.2);
  border-radius: 0.0625rem;
  overflow: hidden;
  opacity: 0;
  animation: fade-in 0.6s ease-out 0.8s forwards;
}
.loading-line-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: line-draw 2.8s ease-in-out 0.8s forwards;
  box-shadow: 0 0 0.375rem rgba(184,150,46,0.4);
}

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(14, 13, 11, 0.94);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border-bottom: 0.0625rem solid rgba(42, 39, 37, 0.6);
}
.navbar.scrolled {
  background-color: rgba(10, 10, 8, 0.97);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.375rem;
  padding: 0 2.5rem;
  max-width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-icon { font-size: 1.375rem; }
.nav-logo-img {
  height: 2.5rem;
  width: auto;
  display: block;
}
.nav-text-logo {
  height: 1.125rem;
  width: auto;
  display: block;
  opacity: 0.9;
}
.nav-wordmark {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--bone-light);
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.1563rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.125rem; left: 50%;
  width: 100%; height: 0.0625rem;
  background-color: var(--parchment);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--parchment); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-links a.active { color: var(--blood); }
.nav-links a.active::after { transform: translateX(-50%) scaleX(0); }
.nav-links a.active::before {
  content: '';
  position: absolute;
  bottom: -0.5rem; left: 50%;
  transform: translateX(-50%);
  width: 0.25rem; height: 0.25rem;
  border-radius: 50%;
  background-color: var(--blood);
}

/* Hamburger — rune-mark lines */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  width: 2rem; height: 2rem;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 0.125rem;
  background-color: var(--bone);
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { width: 1.5rem; }
.hamburger span:nth-child(2) { width: 2rem; }
.hamburger span:nth-child(3) { width: 1.125rem; }
.hamburger:hover span { background-color: var(--parchment); }
.hamburger.open span:nth-child(1) { width: 2rem; transform: rotate(45deg) translate(0.3125rem, 0.3125rem); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { width: 2rem; transform: rotate(-45deg) translate(0.3125rem, -0.3125rem); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: 0; right: -100%;
  width: 17.5rem; height: 100vh;
  background-color: rgba(14, 13, 11, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  transition: right 0.4s ease;
  border-left: 0.0625rem solid var(--stone-dark);
}
.nav-mobile.open { right: 0; }
.nav-mobile li { list-style: none; }
.nav-mobile a {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  transition: color 0.3s ease;
}
.nav-mobile a:hover { color: var(--parchment); }
.nav-mobile a.active { color: var(--blood); }

/* ============================================================
   5. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: min(56.25vw, 100vh);
  background: linear-gradient(145deg, var(--forest-deep) 0%, #090907 40%, var(--black-deep) 100%);
}
/* Hero tree — deepest background layer */
.hero-tree {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/textures/OakUnionRealTree.jpeg') center top / 100% auto no-repeat;
  opacity: 0.20;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

/* Hero artwork — behind flame */
.hero-artwork {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://firebasestorage.googleapis.com/v0/b/oak-union-website.firebasestorage.app/o/HelBWNoBG.png?alt=media&token=e91cabaf-ff4c-4788-9914-05f90146acf7');
  background-size: 39.4vw auto;
  background-position: calc(50% - 0.9vw) 4vw;
  background-repeat: no-repeat;
  opacity: 0.20;
  pointer-events: none;
}

/* WebGL flame backdrop in hero */
#hero-flame {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}
#hero-flame canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(26,46,26,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 60%, transparent 15%, rgba(7,7,5,0.55) 45%, rgba(7,7,5,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Bottom fade */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 35%;
  background: linear-gradient(to top, var(--black-deep) 0%, rgba(7,7,5,0.5) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 27.23vw;
  left: 0;
  padding: 0 3.75rem;
  max-width: 56.25rem;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-subhead {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.subhead-divider {
  display: inline-block;
  flex-shrink: 0;
  width: 0.0625rem;
  height: 1.25rem;
  background: linear-gradient(to bottom, transparent 0%, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-dark) 80%, transparent 100%);
  opacity: 0.9;
  box-shadow: 0 0 0.25rem rgba(184,150,46,0.3);
}

/* Scroll cue — AS ABOVE SO BELOW at bottom of hero */
.hero-scroll-cue {
  position: absolute;
  top: 47.77vw;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  user-select: none;
  pointer-events: none;
}
.hero-subhead-bottom {
  margin-bottom: 0;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.5625rem;
  letter-spacing: 0.1875rem;
  opacity: 0.7;
}
.scroll-chevrons-corner {
  position: absolute;
  top: 47.77vw;
  right: 3vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}
.chevron {
  font-size: 0.625rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.5;
  display: block;
  animation: chevron-bob 2s ease-in-out infinite;
}
.chevron-2 {
  animation-delay: 0.2s;
}
.chevron-3 {
  animation-delay: 0.4s;
}
@keyframes chevron-bob {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(0.1875rem); opacity: 0.7; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--bone-light);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  text-shadow: 0 0.125rem 2.5rem rgba(10,10,8,0.8);
}

/* "Gather Under the Oak" typographic layout */
.hero-gather {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
}
.hl-top {
  font-family: var(--font-display);
  font-family: var(--font-label);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.95vw, 3.41rem);
  color: var(--bone);
  opacity: 0.8;
  text-align: center;
  letter-spacing: 0.125rem;
  position: absolute;
  bottom: calc(100% + 0.34rem);
  left: 0%;
  right: 0;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  will-change: transform, opacity, filter;
}
.hl-bottom {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: clamp(0.125rem, 0.5vw, 0.3125rem);
  padding-left: clamp(0.125rem, 0.5vw, 0.3125rem);
  color: var(--bone-light);
}
.hl-oak {
  color: var(--bone-light);
}

/* Knotwork flourish */
.hero-flourish {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
  width: 16.25rem;
}
.flourish-line {
  flex: 1;
  height: 0.0625rem;
  background: linear-gradient(to right, var(--gold-dark), transparent);
}
.flourish-line:last-child {
  background: linear-gradient(to left, var(--gold-dark), transparent);
}
.flourish-icon {
  font-size: 0.875rem;
  color: var(--gold-dark);
  opacity: 0.8;
}

/* Hero outline button */
.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: var(--bone-light);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  padding: 0.875rem 6.875rem;
  border: 0.0625rem solid var(--bone-light);
  margin-top: -1.35rem;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: rgba(232,223,210,0.08);
  box-shadow: 0 0 1.25rem rgba(232,223,210,0.1);
}

/* CTA Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--blood);
  color: var(--parchment);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--blood-bright);
  box-shadow: 0 0 2.5rem rgba(139,26,26,0.45), 0 0 5rem rgba(139,26,26,0.15);
  transform: scale(1.02);
}
.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--bone);
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  padding: 0.8125rem 2rem;
  border: 0.0625rem solid var(--gold-dark);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline:hover {
  background-color: var(--blood);
  border-color: var(--blood);
  color: var(--parchment);
}

/* Ember particles */
.ember {
  position: absolute;
  border-radius: 50%;
  background-color: var(--ember);
  pointer-events: none;
  z-index: 2;
  animation: float-up linear infinite;
  box-shadow: 0 0 0.375rem rgba(196,101,42,0.6);
}
/* Spread across the full fire line */
.ember-1  { width: 0.1875rem; height: 0.1875rem; left: 8%;  bottom: 16%; animation: ember-rise-left 6s linear infinite; animation-delay: 0s; opacity: 0.7; }
.ember-2  { width: 0.25rem; height: 0.25rem; left: 18%; bottom: 14%; animation: ember-rise-right 7s linear infinite; animation-delay: 0.8s; opacity: 0.6; }
.ember-3  { width: 0.125rem; height: 0.125rem; left: 28%; bottom: 20%; animation: ember-rise-left 5.5s linear infinite; animation-delay: 1.2s; opacity: 0.8; }
.ember-4  { width: 0.1875rem; height: 0.1875rem; left: 38%; bottom: 12%; animation: ember-rise-right 8s linear infinite; animation-delay: 2s; opacity: 0.5; }
.ember-5  { width: 0.125rem; height: 0.125rem; left: 48%; bottom: 18%; animation: ember-rise-left 5s linear infinite; animation-delay: 0.4s; opacity: 0.7; }
.ember-6  { width: 0.1875rem; height: 0.1875rem; left: 58%; bottom: 15%; animation: ember-rise-right 6.5s linear infinite; animation-delay: 3s; opacity: 0.5; }
.ember-7  { width: 0.125rem; height: 0.125rem; left: 68%; bottom: 22%; animation: ember-rise-left 7.5s linear infinite; animation-delay: 1.6s; opacity: 0.6; }
.ember-8  { width: 0.1875rem; height: 0.1875rem; left: 78%; bottom: 13%; animation: ember-rise-right 6s linear infinite; animation-delay: 0.6s; opacity: 0.5; }
.ember-9  { width: 0.125rem; height: 0.125rem; left: 88%; bottom: 17%; animation: ember-rise-left 7s linear infinite; animation-delay: 2.4s; opacity: 0.65; }
.ember-10 { width: 0.1875rem; height: 0.1875rem; left: 13%; bottom: 19%; animation: ember-rise-right 5.5s linear infinite; animation-delay: 1.0s; opacity: 0.55; }
.ember-11 { width: 0.125rem; height: 0.125rem; left: 33%; bottom: 11%; animation: ember-rise-left 8.5s linear infinite; animation-delay: 3.5s; opacity: 0.45; }
.ember-12 { width: 0.25rem; height: 0.25rem; left: 53%; bottom: 14%; animation: ember-rise-right 6s linear infinite; animation-delay: 0.2s; opacity: 0.7; }
.ember-13 { width: 0.125rem; height: 0.125rem; left: 73%; bottom: 16%; animation: ember-rise-left 7s linear infinite; animation-delay: 4.2s; opacity: 0.5; }
.ember-14 { width: 0.1875rem; height: 0.1875rem; left: 23%; bottom: 21%; animation: ember-rise-right 5s linear infinite; animation-delay: 1.8s; opacity: 0.6; }
.ember-15 { width: 0.125rem; height: 0.125rem; left: 83%; bottom: 10%; animation: ember-rise-left 9s linear infinite; animation-delay: 2.8s; opacity: 0.4; }
.ember-16 { width: 0.1875rem; height: 0.1875rem; left: 43%; bottom: 15%; animation: ember-rise-right 7.5s linear infinite; animation-delay: 5s; opacity: 0.45; }

/* ============================================================
   6. SECTION DIVIDERS
   ============================================================ */
.divider-bridge {
  background: linear-gradient(to bottom, var(--black-deep) 0%, var(--black-warm) 100%);
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 31.25rem;
  margin: 0 auto;
  padding: 0 1.5rem 1rem;
  position: relative;
  z-index: 1;
  gap: 1.25rem;
}
.divider-line {
  flex: 1;
  height: 0.0625rem;
  background: linear-gradient(to right, transparent, rgba(139,115,53,0.3), transparent);
}
.divider-icon {
  font-size: 0.875rem;
  color: var(--gold-dark);
  opacity: 0.6;
}
.divider-logo {
  height: 1.75rem;
  width: auto;
  display: block;
  opacity: 0.7;
}
.footer-divider-logo {
  height: 3.75rem;
  width: auto;
  display: block;
  opacity: 0.85;
}

/* Section title (used by Offerings, Taproom) */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--bone-light);
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  margin-bottom: 3.75rem;
  text-align: center;
  width: 100%;
}
.title-icon {
  font-size: 1.125rem;
  color: var(--gold-dark);
  opacity: 0.6;
}
.title-icon.moon-left,
.title-icon.moon-right {
  font-size: 1.75rem;
}

/* ============================================================
   7. FEATURED BEER CAROUSEL — EDGE TO EDGE
   ============================================================ */
.carousel-title {
  margin-bottom: 1.5rem;
}
#carousel {
  width: 100%;
  padding: 3rem 0 2rem;
  background-color: var(--black-warm);
  position: relative;
  border-top: none;
  border-bottom: none;
}
.roots-bridge {
  background: linear-gradient(to bottom, var(--black-warm) 0%, var(--black-deep) 100%);
  padding: 3rem 1.5rem 1rem;
}
.roots-bridge .section-title {
  margin-bottom: 0;
  margin-top: 3rem;
}
.roots-bridge .section-divider {
  padding-bottom: 2.5rem;
}
.carousel-container {
  overflow: hidden;
  position: relative;
}
.carousel-pagination {
  position: absolute;
  top: 0; right: 3.75rem;
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--stone-mid);
  letter-spacing: 0.125rem;
  z-index: 5;
}
.carousel-pagination .current-slide { color: var(--bone-light); font-weight: 500; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1); }
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2.8vw 8vw;
  gap: 3vw;
}

/* Slide columns */
.slide-left { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; text-align: right; }
.slide-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--bone-light);
  line-height: 1.1;
}
.slide-category {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.6875rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
}
.slide-center { display: flex; justify-content: center; align-items: center; }
.slide-image { width: 16.25rem; height: 22.5rem; }
.slide-right { display: flex; flex-direction: column; }

/* Can placeholder */
.can-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%; height: 100%;
  background-color: var(--black-deep);
  border: 0.0625rem solid rgba(42,39,37,0.4);
}
.can-placeholder .placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
  filter: grayscale(30%);
}
.can-placeholder .placeholder-label {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  opacity: 0.6;
}
.can-placeholder.large .placeholder-icon { font-size: 5rem; }

/* Rotating can video */
.rotating-can-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  overflow: hidden;
  background-color: transparent;
}
.rotating-can-wrap video,
.rotating-can-wrap .can-still-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Spec card */
.spec-card { display: flex; flex-direction: column; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 0.0625rem solid rgba(139,115,53,0.2);
}
.spec-row:last-of-type { border-bottom: none; }
.spec-label {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.1563rem;
}
.spec-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--bone-light);
  text-align: right;
}
.spec-award {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.625rem 0.875rem;
  background: rgba(184,150,46,0.08);
  border: 0.0625rem solid rgba(184,150,46,0.2);
  font-family: var(--font-label);
  font-size: 0.6875rem;
  color: var(--gold);
  letter-spacing: 0.0625rem;
}
.slide-description {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--bone);
  line-height: 1.6;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.8;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 3.25rem; height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--bone);
  opacity: 0.4;
  transition: opacity 0.3s, color 0.3s;
  background: none; border: none; cursor: pointer;
}
.carousel-arrow:hover { color: var(--gold); opacity: 1; }
.carousel-prev { left: 1.25rem; }
.carousel-next { right: 1.25rem; }

/* ============================================================
   8. PHOTO MOSAIC — ASYMMETRIC BENTO GRID
   ============================================================ */
#offerings { padding: 6.25rem 0; }
#offerings.offerings-tight { padding-top: 2.5rem; }

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.1fr 1.3fr 1fr;
  grid-template-rows: 18.75rem 16.25rem 20rem;
  grid-template-areas:
    "taproom taproom hamate  codex"
    "taproom taproom story   merch"
    "alpine  beleth  dark    giltine";
  gap: 0.1875rem;
  padding: 0;
}

.mosaic-tile {
  position: relative;
  overflow: hidden;
  background-color: var(--black-warm);
  cursor: pointer;
}
.placeholder-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%; height: 100%;
  background-color: rgba(20, 18, 16, 0.95);
  transition: transform 0.6s ease;
}
.placeholder-tile .placeholder-icon {
  font-size: 2.25rem;
  opacity: 0.25;
  filter: grayscale(40%);
}
.placeholder-tile .placeholder-label {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  opacity: 0.5;
}
.placeholder-icon.small { font-size: 1.125rem; }

/* Mosaic overlay */
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.9) 0%, rgba(10,10,8,0.4) 35%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mosaic-tile:hover .mosaic-overlay { opacity: 1; }
.mosaic-tile:hover .placeholder-tile { transform: scale(1.04); }
.mosaic-overlay h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--bone-light);
  margin-bottom: 0.25rem;
}
.mosaic-overlay p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--bone);
  opacity: 0.8;
}
.overlay-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--bone-light);
  letter-spacing: 0.0625rem;
}

/* Story card tile */
.tile-story { background-color: var(--forest-deep) !important; }
.story-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  height: 100%;
  background: linear-gradient(160deg, rgba(26,46,26,0.95) 0%, rgba(13,20,13,0.98) 100%);
}
.story-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--bone-light);
  line-height: 1.3;
  margin-bottom: 0.625rem;
}
.story-card-content p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--bone);
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.story-link {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.6875rem;
  color: var(--blood);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  transition: color 0.3s ease;
}
.story-link:hover { color: var(--blood-bright); }

/* Dark atmosphere tile */
.tile-dark .placeholder-tile {
  background: radial-gradient(ellipse at center, rgba(196,101,42,0.04) 0%, rgba(10,10,8,1) 70%);
}

/* ============================================================
   9. BEER FINDER
   ============================================================ */
#beer-finder {
  width: 100%;
  padding: 8.75rem 1.5rem;
  background: linear-gradient(180deg, var(--forest-deep) 0%, #0e110e 40%, var(--black-deep) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Fog top */
#beer-finder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 8.75rem;
  background: linear-gradient(to bottom, var(--black-deep), transparent);
  z-index: 1;
  pointer-events: none;
}
/* Fog bottom */
#beer-finder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 8.75rem;
  background: linear-gradient(to top, var(--black-deep), transparent);
  z-index: 1;
  pointer-events: none;
}
.finder-bg { display: none; }
.finder-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  opacity: 0.03;
  pointer-events: none;
  color: var(--bone);
  z-index: 0;
}
.finder-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.finder-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--bone-light);
  letter-spacing: 0.25rem;
}
.finder-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--bone);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.finder-icon { font-size: 2.5rem; margin-bottom: 0.25rem; }
.finder-near {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  color: var(--bone-light);
  letter-spacing: 0.3125rem;
  margin-bottom: 0.5rem;
}
.finder-search { width: 100%; max-width: 32.5rem; }
.finder-input-group { display: flex; align-items: stretch; }
.finder-pin {
  display: flex;
  align-items: center;
  padding: 0 0.875rem;
  background-color: rgba(30,28,26,0.8);
  border: 0.0625rem solid var(--stone-dark);
  border-right: none;
  font-size: 1rem;
}
.finder-input {
  flex: 1;
  padding: 0.875rem 1.125rem;
  background-color: rgba(30,28,26,0.8);
  border: 0.0625rem solid var(--stone-dark);
  border-left: none; border-right: none;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.finder-input::placeholder { color: var(--stone-mid); }
.finder-input:focus { border-color: var(--gold-dark); }
.btn-find {
  padding: 0.875rem 1.75rem;
  background-color: var(--blood);
  color: var(--parchment);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  border: 0.0625rem solid var(--blood);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-find:hover { background-color: var(--blood-bright); }
.finder-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}
.finder-links a {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  transition: color 0.3s;
}
.finder-links a:hover { color: var(--parchment); text-decoration: underline; text-underline-offset: 0.25rem; }
.finder-divider { color: var(--stone-mid); font-size: 0.75rem; }

/* ============================================================
   10. TAPROOM
   ============================================================ */
#taproom { padding: 4rem 0; }

.taproom-hero {
  position: relative;
  width: 100%;
  height: 18rem;
  background-color: rgba(20,18,16,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.taproom-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.75);
}
.taproom-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%; height: 100%;
}
.taproom-placeholder .placeholder-icon { font-size: 3rem; opacity: 0.2; }
.taproom-placeholder .placeholder-label {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  opacity: 0.5;
}
.taproom-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.85) 0%, rgba(10,10,8,0.3) 50%, rgba(10,10,8,0.5) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
.taproom-location {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--bone-light);
  letter-spacing: 0.3125rem;
}
.taproom-metro {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-top: 0.25rem;
}
.taproom-status {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

/* Taproom cards */
.taproom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: 2.5rem;
  padding: 0 1.5rem;
}
.taproom-card {
  background-color: rgba(20,18,16,0.8);
  border: 0.0625rem solid rgba(42,39,37,0.5);
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.3s ease;
}
.taproom-card:hover { border-color: var(--gold-dark); }
.card-icon { font-size: 1.5rem; display: block; margin-bottom: 0.25rem; }
.crow-left { display: inline-block; transform: scaleX(-1); }
.crow-right { display: inline-block; }
.taproom-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--bone-light);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
}
.taproom-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--bone);
  line-height: 1.7;
  opacity: 0.85;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1rem;
  margin-top: 0.625rem;
  background: var(--black-deep);
  border: 0.0625rem solid rgba(42,39,37,0.4);
}

/* ============================================================
   11. BRAND STORY
   ============================================================ */
#story {
  padding: 2.5rem 0 4rem;
  position: relative;
}
#story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,46,26,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.story-layout {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.story-image {
  flex: 0 0 40%;
  min-height: 30rem;
  background-color: rgba(20,18,16,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0.0625rem solid rgba(42,39,37,0.3);
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.75) saturate(0.7) sepia(0.15);
}
.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(7,7,5,0.7) 100%);
  pointer-events: none;
}
.story-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1rem;
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--bone);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to top, rgba(7,7,5,0.85) 0%, transparent 100%);
  opacity: 0.7;
}
.story-image .placeholder-tile { background: rgba(20,18,16,0.95); }
.story-text { flex: 0 0 55%; position: relative; }
.story-eyebrow {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.6875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.story-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bone-light);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.story-text p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--bone);
  line-height: 1.85;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.text-gold { color: var(--gold); }
.text-ember { color: var(--ember); }
.text-blood { color: var(--blood); }
.story-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--blood);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  transition: color 0.3s ease;
}
.story-cta:hover { color: var(--blood-bright); }

/* ============================================================
   11B. INSTAGRAM FEED
   ============================================================ */
#instagram { text-align: center; }
.ig-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--bone);
  opacity: 0.8;
  margin-top: -2.5rem;
  margin-bottom: 3rem;
}
.ig-feed { max-width: 53.75rem; margin: 0 auto; padding: 0 1.5rem; }
.ig-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 12.5rem 12.5rem 12.5rem;
  grid-template-areas:
    "a a b"
    "a a c"
    "d e f";
  gap: 0.1875rem;
}
.ig-tile:nth-child(1) { grid-area: a; }
.ig-tile:nth-child(2) { grid-area: b; }
.ig-tile:nth-child(3) { grid-area: c; }
.ig-tile:nth-child(4) { grid-area: d; }
.ig-tile:nth-child(5) { grid-area: e; }
.ig-tile:nth-child(6) { grid-area: f; }
.ig-tile {
  position: relative;
  overflow: hidden;
  display: block;
}
/* Dark tint — lifts on hover */
.ig-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.45);
  z-index: 2;
  transition: background 0.4s ease;
  pointer-events: none;
}
.ig-tile:hover::before {
  background: rgba(10,10,8,0.1);
}
/* Images */
.ig-tile-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ig-tile:hover .ig-tile-img { transform: scale(1.05); }
/* Videos */
.ig-tile-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ig-tile:hover .ig-tile-video { transform: scale(1.05); }
/* Hover overlay */
.ig-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(10,10,8,0.55);
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.625rem;
  color: var(--bone-light);
  letter-spacing: 0.1875rem;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.3s ease;
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
.ig-media-icon { font-size: 0.875rem; }
/* Error fallback */
.ig-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--bone);
  opacity: 0.7;
}
.ig-error a {
  display: block;
  margin-top: 0.5rem;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.8125rem;
  letter-spacing: 0.125rem;
}

@media (max-width: 768px) {
  .ig-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
    grid-template-areas:
      "a a"
      "b c"
      "d e";
  }
  .ig-tile:nth-child(6) { display: none; }
}
.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  padding: 0.875rem 2rem;
  border: 0.0625rem solid rgba(42,39,37,0.5);
  transition: all 0.3s ease;
}
.ig-follow:hover {
  border-color: var(--gold-dark);
  color: var(--parchment);
}
.ig-follow-icon {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.6875rem;
  color: var(--gold);
  letter-spacing: 0.0625rem;
}

@media (max-width: 768px) {
  .ig-subtitle { margin-top: -30px; margin-bottom: 32px; }
}

/* ============================================================
   12. EMAIL SIGNUP
   ============================================================ */
#signup {
  padding: 6.25rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(139,26,26,0.1) 0%, rgba(139,26,26,0.05) 40%, var(--black-deep) 100%);
  position: relative;
}
.signup-bg { display: none; }
#signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3.125rem, rgba(139,115,53,0.03) 3.125rem, rgba(139,115,53,0.03) 3.1875rem),
    repeating-linear-gradient(90deg, transparent, transparent 3.125rem, rgba(139,115,53,0.03) 3.125rem, rgba(139,115,53,0.03) 3.1875rem);
  pointer-events: none;
}
.signup-content {
  position: relative;
  z-index: 1;
  max-width: 30rem;
  margin: 0 auto;
}
.signup-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--bone-light);
  letter-spacing: 0.1875rem;
  margin-bottom: 0.75rem;
}
.signup-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--bone);
  margin-bottom: 1.75rem;
  opacity: 0.85;
}
.signup-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.signup-divider .flourish-line {
  width: 3.75rem;
  height: 0.0625rem;
  background: linear-gradient(to right, transparent, rgba(139,115,53,0.3), transparent);
}
.signup-divider .flourish-icon {
  font-size: 0.875rem;
  color: var(--gold-dark);
  opacity: 0.6;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
#signup input,
.signup-form input {
  padding: 0.875rem 1rem;
  background-color: rgba(30,28,26,0.7);
  border: 0.0625rem solid rgba(42,39,37,0.6);
  border-radius: 0;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}
#signup input::placeholder,
.signup-form input::placeholder { color: var(--stone-mid); }
#signup input:focus,
.signup-form input:focus { border-color: var(--gold-dark); }
.form-row { display: flex; gap: 0.875rem; }
.form-field { flex: 1; min-width: 0; }
.form-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.6;
  margin-bottom: 0.375rem;
}
.signup-age-notice {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.6;
  margin-top: 0.25rem;
}
.signup-form .form-error {
  color: var(--ember);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: italic;
  margin-top: -0.25rem;
}
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--blood);
  color: var(--parchment);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  border: none;
  cursor: pointer;
  margin-top: 0.375rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-submit:hover {
  background-color: var(--blood-bright);
  box-shadow: 0 0 1.875rem rgba(139,26,26,0.3);
}
.signup-privacy {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--bone);
  margin-top: 1rem;
  opacity: 0.5;
}
.signup-confirmation { text-align: center; padding: 2.5rem 0; }
.confirmation-icon { font-size: 3rem; margin-bottom: 1rem; }
.confirmation-heading { font-family: var(--font-heading); font-size: 1.375rem; color: var(--bone-light); margin-bottom: 0.5rem; }
.confirmation-text { font-family: var(--font-body); font-style: italic; font-size: 1.0625rem; color: var(--bone); }

/* ============================================================
   12b. 404 ERROR PAGE
   ============================================================ */
.error-page {
  padding: 8rem 1.5rem 6rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-content { max-width: 36rem; margin: 0 auto; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--stone-dark);
  letter-spacing: 0.3em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--bone-light);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.error-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.error-divider .flourish-line {
  width: 3.125rem;
  height: 0.0625rem;
  background: linear-gradient(to right, transparent, rgba(139,115,53,0.3), transparent);
}
.error-divider .flourish-icon {
  color: var(--ember);
  font-size: 0.875rem;
}
.error-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--bone);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.error-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   12c. PRIVACY POLICY PAGE
   ============================================================ */
.privacy-page {
  padding: 8rem 1.5rem 4rem;
  max-width: 48rem;
  margin: 0 auto;
}
.privacy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--bone-light);
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 0.5rem;
}
.privacy-updated {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--stone-mid);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}
.privacy-page h2 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--bone-light);
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.privacy-page p,
.privacy-page li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--bone);
  line-height: 1.8;
  opacity: 0.85;
}
.privacy-page ul {
  list-style: none;
  padding-left: 1rem;
}
.privacy-page li::before {
  content: "\263D";
  color: var(--ember);
  font-size: 0.625rem;
  margin-right: 0.5rem;
}
.privacy-page a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.privacy-page a:hover { border-bottom-color: var(--gold); }

/* ============================================================
   13. FOOTER
   ============================================================ */
#footer {
  background-color: var(--black-deep);
  padding: 3.75rem 1.5rem 2.5rem;
  text-align: center;
}
.footer-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 21.875rem;
  margin: 0 auto 2.5rem;
}
.footer-divider .divider-line {
  flex: 1;
  height: 0.0625rem;
  background: linear-gradient(to right, transparent, rgba(139,115,53,0.25), transparent);
}
.footer-divider .divider-icon {
  font-size: 0.75rem;
  color: var(--gold-dark);
  opacity: 0.5;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 37.5rem;
  margin: 0 auto;
}
.footer-brand-icon { font-size: 2.25rem; opacity: 0.7; }
.footer-logo-img {
  height: 3.75rem;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.85;
}
.footer-phonetic {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--bone);
  opacity: 0.85;
}
.footer-manifesto {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.6875rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  line-height: 2.2;
  max-width: 34.375rem;
  opacity: 0.5;
}
.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.footer-social a {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--bone);
  letter-spacing: 0.0625rem;
  transition: color 0.3s;
  opacity: 0.85;
}
.footer-social a:hover { color: var(--gold); opacity: 1; }
.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  transition: color 0.3s;
  opacity: 0.5;
}
.footer-links a:hover { color: var(--bone); }
.footer-link-sep {
  color: var(--bone);
  font-size: 0.625rem;
  user-select: none;
  opacity: 0.3;
}
.footer-copyright {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--bone);
  letter-spacing: 0.0625rem;
  opacity: 0.4;
}
.footer-address {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--stone-mid);
  opacity: 0.5;
}

/* ============================================================
   14. BEERS PAGE
   ============================================================ */
.beers-page { padding-top: 4.375rem; }
.beers-header {
  padding: 5rem 1.5rem 3.125rem;
  text-align: center;
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
}
.beers-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: radial-gradient(ellipse at bottom center, rgba(26,46,26,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.beers-header-mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26,46,26,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.beers-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--bone-light);
  letter-spacing: 0.25rem;
  position: relative;
  z-index: 1;
}
.beers-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--bone);
  margin-top: 0.625rem;
  position: relative;
  z-index: 1;
  opacity: 0.8;
}

/* Filter bar */
.filter-bar {
  position: sticky;
  top: 4.375rem;
  z-index: 100;
  background-color: rgba(30,28,26,0.95);
  backdrop-filter: blur(0.5rem);
  border-bottom: 0.0625rem solid rgba(42,39,37,0.5);
  padding: 0 1.5rem;
}
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.875rem 0;
}
.filter-tab {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.6875rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  padding: 0.5rem 0.875rem;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.filter-tab:hover { color: var(--parchment); }
.filter-tab.active { color: var(--blood); }
.filter-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.875rem; right: 0.875rem;
  height: 0.125rem;
  background-color: var(--blood);
}
.filter-count { color: var(--stone-mid); font-weight: 300; }

/* Beer grid */
.beer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Category headers */
.category-header {
  text-align: center;
  padding: 2.25rem 0 1rem;
}
.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bone-light);
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}
.category-line {
  display: inline-block;
  width: 3.125rem;
  height: 0.0625rem;
  background: rgba(139,115,53,0.3);
}
.category-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--stone-mid);
  margin-top: 0.5rem;
}

/* Beer card */
.beer-card {
  background-color: rgba(20,18,16,0.85);
  border: 0.0625rem solid rgba(42,39,37,0.4);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.beer-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2.5rem rgba(0,0,0,0.5);
}
.card-award {
  position: absolute;
  top: 0.625rem; right: 0.625rem;
  z-index: 2;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.5625rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  padding: 0.3125rem 0.5rem;
  background: rgba(10,10,8,0.8);
  border: 0.0625rem solid rgba(184,150,46,0.25);
}
.card-collab {
  position: absolute;
  top: 0.625rem; left: 0.625rem;
  z-index: 2;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.5625rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  padding: 0.3125rem 0.5rem;
  background: rgba(10,10,8,0.8);
  border: 0.0625rem solid rgba(227,218,201,0.25);
}
.card-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: var(--black-deep);
  overflow: hidden;
}
.card-image .can-placeholder,
.card-image .rotating-can-wrap {
  position: absolute;
  inset: 0;
}
.card-image .can-still-img {
  transform: scale(1.0);
}
.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}
.card-meta { display: flex; align-items: center; gap: 0.5rem; }
.card-category {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
.card-meta-icon { display: none; }
.card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.125rem;
  color: var(--bone-light);
  line-height: 1.2;
}
.card-style {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--stone-mid);
}
.card-specs { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.125rem; }
.card-abv {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--bone);
  opacity: 0.8;
}
.card-accent-dot { width: 0.3125rem; height: 0.3125rem; border-radius: 50%; }
.card-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--bone);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.75;
  margin-top: 0.25rem;
}
.card-content .btn-outline {
  margin-top: auto;
  padding-top: 0.875rem;
  font-size: 0.625rem;
  padding: 0.625rem 1.25rem;
  letter-spacing: 0.125rem;
}

/* ============================================================
   15. BEER DETAIL PAGE
   ============================================================ */
.beer-detail-page { padding-top: 4.375rem; }
.beer-detail { padding-top: 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.6875rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  padding: 1.25rem 2.5rem;
  transition: color 0.3s;
  opacity: 0.7;
}
.back-link:hover { color: var(--parchment); opacity: 1; }
.detail-layout {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 8.75rem);
}
.detail-image {
  flex: 0 0 45%;
  background-color: rgba(20,18,16,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.detail-image-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.detail-accent-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 17.5rem; height: 17.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent, rgba(196,101,42,0.1)) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.detail-info {
  flex: 0 0 55%;
  padding: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3125rem 0.875rem;
  border: 0.0625rem solid rgba(42,39,37,0.5);
  width: fit-content;
}
.badge-category {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
.badge-icon { font-size: 0.875rem; opacity: 0.6; }
.detail-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--bone-light);
  line-height: 1.1;
}
.detail-style {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--stone-mid);
}
.detail-specs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.875rem 0;
}
.detail-spec { display: flex; flex-direction: column; gap: 0.25rem; }
.detail-spec .spec-label {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
.detail-spec .spec-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--bone-light);
}
.spec-divider {
  width: 0.0625rem;
  height: 2rem;
  background-color: rgba(139,115,53,0.3);
}
.detail-accent-bar {
  width: 5rem;
  height: 0.1875rem;
}
.detail-description {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--bone);
  line-height: 1.85;
  opacity: 0.9;
}
.detail-award {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.125rem;
  background: rgba(184,150,46,0.08);
  border: 0.0625rem solid rgba(184,150,46,0.2);
  width: fit-content;
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.0625rem;
}
.detail-collab {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.125rem;
  background: rgba(227,218,201,0.06);
  border: 0.0625rem solid rgba(227,218,201,0.2);
  width: fit-content;
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--cream);
  letter-spacing: 0.0625rem;
  font-style: italic;
  margin-top: 0.75rem;
}
.detail-not-found {
  text-align: center;
  padding: 6.25rem 1.5rem;
}
.detail-not-found h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  color: var(--bone-light);
  margin-bottom: 1rem;
}
.detail-not-found p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--bone);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* ============================================================
   15B. INDIVIDUAL BEER PAGES — CENTERED PRODUCT LAYOUT
   ============================================================ */
.beer-page { padding-top: 4.375rem; }

.beer-page-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52vh;
  background: linear-gradient(180deg, rgba(20,18,16,0.95) 0%, var(--black-deep) 100%);
  position: relative;
  overflow: hidden;
}
.beer-page-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 21.875rem; height: 21.875rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
}
.beer-page-hero .can-placeholder {
  position: relative;
  z-index: 1;
  width: 13.75rem; height: 21.25rem;
  border: 0.0625rem solid rgba(42,39,37,0.4);
  background-color: var(--black-deep);
}
.beer-page-hero .rotating-can-wrap {
  position: relative;
  z-index: 1;
  width: 13.75rem; height: 21.25rem;
}
.beer-page-content {
  max-width: 42.5rem;
  margin: -5vh auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.beer-page-badge {
  display: none;
}
.beer-page-badge .badge-category {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
}
.beer-page-badge .badge-icon { display: none; }
.beer-page-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--bone-light);
  letter-spacing: 0.125rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.beer-page-style {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--stone-mid);
  margin-bottom: 1.25rem;
}
.beer-page-divider {
  display: none;
}
.beer-page-divider .flourish-line {
  width: 3.125rem; height: 0.0625rem;
  background: linear-gradient(to right, transparent, rgba(139,115,53,0.3), transparent);
}
.beer-page-divider .flourish-icon {
  font-size: 0.75rem;
  color: var(--gold-dark);
  opacity: 0.6;
}
.beer-page-specs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 1.25rem 0;
  border-top: 0.0625rem solid rgba(139,115,53,0.15);
  border-bottom: 0.0625rem solid rgba(139,115,53,0.15);
  margin-bottom: 2.25rem;
  width: 100%;
  max-width: 30rem;
}
.beer-page-spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
.beer-page-spec .spec-label {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.1563rem;
}
.beer-page-spec .spec-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--bone-light);
}
.beer-page-accent {
  display: none;
}
.beer-page-description {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  color: var(--bone);
  line-height: 1.85;
  opacity: 0.9;
  margin-bottom: 2.25rem;
  max-width: 36.25rem;
}
.beer-page-award {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: rgba(184,150,46,0.08);
  border: 0.0625rem solid rgba(184,150,46,0.2);
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.0625rem;
  margin-bottom: 2.25rem;
}
.beer-page-collab {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: rgba(227,218,201,0.06);
  border: 0.0625rem solid rgba(227,218,201,0.2);
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--cream);
  letter-spacing: 0.0625rem;
  margin-bottom: 2.25rem;
  font-style: italic;
}
.beer-page-untappd {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-label);
  font-size: 0.6875rem;
  color: var(--cream);
  letter-spacing: 0.125rem;
  text-decoration: none;
  border: 0.0625rem solid rgba(227,218,201,0.2);
  background: rgba(227,218,201,0.04);
  transition: background 0.3s, border-color 0.3s;
  margin-bottom: 1.5rem;
}
.beer-page-untappd:hover {
  background: rgba(227,218,201,0.1);
  border-color: rgba(227,218,201,0.4);
}

@media (max-width: 768px) {
  .beer-page-hero { min-height: 40vh; }
  .beer-page-hero .can-placeholder { width: 180px; height: 280px; }
  .beer-page-content { padding: 40px 20px 80px; }
  .beer-page-specs { gap: 16px; flex-wrap: wrap; }
  .beer-page-name { font-size: clamp(1.8rem, 8vw, 3rem); }
}

/* ============================================================
   16. ANIMATIONS
   ============================================================ */
@keyframes flame-flicker {
  0% { transform: translateX(-50%) scaleX(1) scaleY(1); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
  25% { transform: translateX(-50%) scaleX(0.88) scaleY(1.05); border-radius: 48% 52% 48% 52% / 58% 62% 42% 38%; }
  50% { transform: translateX(-50%) scaleX(1.03) scaleY(0.96); border-radius: 52% 48% 52% 48% / 62% 58% 38% 42%; }
  75% { transform: translateX(-50%) scaleX(0.93) scaleY(1.03); border-radius: 50% 50% 50% 50% / 56% 64% 44% 36%; }
  100% { transform: translateX(-50%) scaleX(1.04) scaleY(0.97); border-radius: 46% 54% 46% 54% / 60% 60% 40% 40%; }
}
@keyframes flame-glow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes logo-reveal {
  0%   { opacity: 0; filter: brightness(0.3); transform: translateY(0.375rem); }
  35%  { opacity: 0.7; filter: brightness(0.7); transform: translateY(0.125rem); }
  55%  { opacity: 1; filter: brightness(1); transform: translateY(0); }
  70%  { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 0.375rem rgba(184,150,46,0.4)) drop-shadow(0 0 1.25rem rgba(184,150,46,0.15)); }
  85%  { opacity: 1; filter: brightness(1.05) drop-shadow(0 0 0.1875rem rgba(184,150,46,0.2)) drop-shadow(0 0 0.625rem rgba(184,150,46,0.05)); }
  100% { opacity: 1; filter: brightness(1) drop-shadow(0 0 0 transparent); }
}
@keyframes line-draw {
  0%   { width: 0%; }
  60%  { width: 100%; }
  100% { width: 100%; opacity: 0; }
}
@keyframes float-up {
  0% { opacity: 0.7; transform: translateY(0) translateX(0); }
  25% { opacity: 0.5; transform: translateY(-4.375rem) translateX(0.375rem); }
  50% { opacity: 0.35; transform: translateY(-8.75rem) translateX(-0.1875rem); }
  75% { opacity: 0.15; transform: translateY(-13.125rem) translateX(0.3125rem); }
  100% { opacity: 0; transform: translateY(-17.5rem) translateX(0); }
}
/* Organic ember rise — drifts left */
@keyframes ember-rise-left {
  0%   { opacity: 0.8; transform: translateY(0) translateX(0) scale(1); }
  10%  { opacity: 0.7; transform: translateY(-3.75rem) translateX(-0.625rem) scale(0.95); }
  25%  { opacity: 0.6; transform: translateY(-10rem) translateX(-1.375rem) scale(0.85); }
  40%  { opacity: 0.45; transform: translateY(-17.5rem) translateX(-0.75rem) scale(0.75); }
  60%  { opacity: 0.3; transform: translateY(-26.25rem) translateX(-1.75rem) scale(0.6); }
  80%  { opacity: 0.12; transform: translateY(-34.375rem) translateX(-1rem) scale(0.4); }
  100% { opacity: 0; transform: translateY(-40.625rem) translateX(-1.375rem) scale(0.2); }
}
/* Organic ember rise — drifts right */
@keyframes ember-rise-right {
  0%   { opacity: 0.8; transform: translateY(0) translateX(0) scale(1); }
  10%  { opacity: 0.7; transform: translateY(-3.4375rem) translateX(0.75rem) scale(0.95); }
  25%  { opacity: 0.6; transform: translateY(-9.375rem) translateX(1.625rem) scale(0.85); }
  40%  { opacity: 0.45; transform: translateY(-16.875rem) translateX(0.875rem) scale(0.75); }
  60%  { opacity: 0.3; transform: translateY(-25.625rem) translateX(1.875rem) scale(0.6); }
  80%  { opacity: 0.12; transform: translateY(-33.75rem) translateX(1.125rem) scale(0.4); }
  100% { opacity: 0; transform: translateY(-40rem) translateX(1.5rem) scale(0.2); }
}

/* ============================================================
   17. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   18. UTILITIES
   ============================================================ */
.section-padding { padding: 4rem 0; }
.container { max-width: 75rem; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 0.0625rem; height: 0.0625rem; padding: 0; margin: -0.0625rem; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   19. TRADING POST NAV ACCENT
   ============================================================ */
.nav-trading-post {
  color: var(--ember) !important;
}
.nav-trading-post::after {
  background-color: var(--ember) !important;
}
.nav-trading-post:hover {
  color: #d4783f !important;
  text-shadow: 0 0 8px rgba(196, 101, 42, 0.4);
}
.nav-mobile .nav-trading-post {
  color: var(--ember) !important;
}
.nav-mobile .nav-trading-post:hover {
  color: #d4783f !important;
}

/* ============================================================
   20. THE TRADING POST — STORE
   ============================================================ */

/* Store Hero */
.store-hero {
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  position: relative;
}
.store-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--parchment);
  letter-spacing: 0.3rem;
  margin-bottom: 1rem;
}
.store-hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--bone);
  opacity: 0.7;
}
.store-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.store-hero-divider .flourish-line {
  width: 3rem;
  height: 1px;
  background: var(--stone-mid);
}
.store-hero-divider .flourish-icon {
  color: var(--ember);
  font-size: 0.875rem;
}
.store-hero-logo {
  height: 2.5rem;
  width: auto;
  opacity: 0.85;
}

/* Store Filter Banner */
.store-filter-banner {
  text-align: center;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--stone-dark);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}
.store-filter-banner p {
  font-family: var(--font-body);
  color: var(--bone);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.store-filter-banner strong {
  color: var(--gold);
}
.store-filter-clear {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.store-filter-clear:hover {
  border-bottom-color: var(--ember);
}

/* Beer Page Action Buttons (Untappd + Merch) */
.beer-page-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.beer-action-col {
  text-align: center;
  min-width: 0;
}
.beer-action-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--stone-light);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.btn-action {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-untappd {
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-untappd:hover {
  background: var(--gold);
  color: var(--black-deep);
}
.btn-merch {
  color: var(--ember);
  border: 1px solid var(--ember);
}
.btn-merch:hover {
  background: var(--ember);
  color: var(--black-deep);
}
@media (max-width: 600px) {
  .beer-page-actions {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 1.5rem 2rem 0.5rem;
  max-width: 75rem;
  margin: 0 auto;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.breadcrumb-item a {
  color: var(--bone);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.breadcrumb-item a:hover {
  opacity: 1;
  color: var(--gold);
}
.breadcrumb-sep {
  color: var(--bone);
  opacity: 0.3;
}
.breadcrumb-current {
  color: var(--bone-light);
  opacity: 0.9;
}

/* Beer Section Divider (moon — sits between actions & related offerings) */
.beer-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
}
.beer-section-divider .flourish-line {
  width: 3.125rem;
  height: 0.0625rem;
  background: linear-gradient(to right, transparent, rgba(139,115,53,0.3), transparent);
}
.beer-section-divider .flourish-icon {
  color: var(--ember);
  font-size: 0.875rem;
}

/* Related Offerings */
.related-offerings {
  padding: 1rem 2rem 2rem;
  max-width: 75rem;
  margin: 0 auto;
  text-align: center;
}
.related-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--bone-light);
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.related-card {
  text-decoration: none;
  color: var(--bone);
  text-align: center;
  transition: transform 0.3s ease;
}
.related-card:hover {
  transform: translateY(-4px);
}
.related-card-image {
  margin-bottom: 1rem;
}
.related-card-image img {
  max-height: 12.5rem;
  width: auto;
  margin: 0 auto;
  display: block;
}
.related-placeholder {
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.4;
}
.related-card-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--bone-light);
  margin-bottom: 0.25rem;
}
.related-card-style {
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .breadcrumb {
    padding: 1rem 1.25rem 0.5rem;
  }
}

/* Store Grid */
.store-section {
  padding: 2rem 1.5rem 6rem;
  max-width: 75rem;
  margin: 0 auto;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Brand Directory Grid */
.brand-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.brand-dir-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(20,18,16,0.85);
  border: 0.0625rem solid rgba(42,39,37,0.4);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.brand-dir-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2.5rem rgba(0,0,0,0.5);
}
.brand-dir-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: var(--black-deep);
  overflow: hidden;
}
.brand-dir-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}
.brand-dir-logo-img {
  padding: 3rem !important;
  opacity: 0.7;
}
.brand-dir-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}
.brand-dir-card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.125rem;
  color: var(--bone-light);
  line-height: 1.2;
}
.brand-dir-card-style {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--stone-mid);
}
.brand-dir-card-tagline {
  display: none;
}
.brand-dir-card-products {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-top: 0.125rem;
}
.brand-dir-card-cta {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--ember);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: letter-spacing 0.3s ease;
}
.brand-dir-card:hover .brand-dir-card-cta {
  letter-spacing: 0.16em;
}

/* Product Card */
.store-card {
  background-color: rgba(20, 18, 16, 0.85);
  border: 1px solid rgba(42, 39, 37, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.store-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.5);
  border-color: rgba(196, 101, 42, 0.3);
}
.store-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: var(--black-deep);
  overflow: hidden;
}
.store-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.store-card:hover .store-card-image img {
  transform: scale(1.05);
}
.store-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.store-card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--bone-light);
  line-height: 1.3;
}
.store-card-price {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--ember);
  letter-spacing: 0.05rem;
}
.store-card-variants {
  font-family: var(--font-label);
  font-weight: 300;
  font-size: 0.625rem;
  color: var(--stone-mid);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.btn-add-cart {
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--parchment);
  background: transparent;
  border: 1px solid var(--ember);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-add-cart:hover {
  background: var(--ember);
  color: var(--black-deep);
}

/* Product Modal */
.store-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 5, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.store-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.store-modal {
  background: var(--charcoal);
  border: 1px solid var(--stone-dark);
  max-width: 56rem;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  position: relative;
}
.store-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--stone-mid);
  color: var(--bone);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.store-modal-close:hover {
  border-color: var(--ember);
  color: var(--ember);
}
.store-modal-image {
  flex: 0 0 50%;
  background: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.store-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-modal-info {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.store-modal-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.store-modal-price {
  font-family: var(--font-label);
  font-size: 1.125rem;
  color: var(--ember);
  letter-spacing: 0.05rem;
}
.store-modal-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bone);
  line-height: 1.7;
  opacity: 0.8;
}
.store-modal-variants-label {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.6875rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}
.store-modal-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.variant-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--stone-mid);
  cursor: pointer;
  transition: all 0.3s ease;
}
.variant-btn:hover {
  border-color: var(--bone);
}
.variant-btn.selected {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(196, 101, 42, 0.1);
}
.variant-btn.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}
.btn-modal-cart {
  padding: 1rem 2rem;
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--black-deep);
  background: var(--ember);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-modal-cart:hover {
  background: #d4783f;
}
.btn-modal-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Cart Widget */
.cart-widget-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}
.cart-widget-wrap.empty {
  opacity: 0;
  pointer-events: none;
}
.cart-widget {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--ember);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.cart-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 0.5rem 2rem rgba(196, 101, 42, 0.4);
}
.cart-widget-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.cart-widget-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  background: var(--blood-bright);
  color: var(--parchment);
  font-family: var(--font-label);
  font-size: 0.625rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-clear {
  width: 2rem;
  height: 2rem;
  background: var(--stone-dark);
  border: 1px solid var(--stone-mid);
  border-radius: 50%;
  color: var(--bone);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.4);
}
.cart-clear:hover {
  background: var(--blood);
  border-color: var(--blood-bright);
  color: var(--parchment);
}

/* Cart "ADDED!" toast */
.cart-toast {
  position: fixed;
  bottom: 5.75rem;
  right: 2rem;
  background: var(--ember);
  color: var(--parchment);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 1501;
}
.cart-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(26rem, 90vw);
  height: 100%;
  background: var(--charcoal);
  border-left: 1px solid var(--stone-mid);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--stone-mid);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--parchment);
}
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--bone);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}
.cart-drawer-close:hover {
  color: var(--parchment);
}
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-drawer-empty {
  color: var(--bone);
  opacity: 0.5;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: center;
  padding: 3rem 0;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(42, 39, 37, 0.4);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-image {
  width: 4rem;
  height: 4rem;
  border-radius: 0.25rem;
  object-fit: cover;
  background: var(--stone-dark);
  flex-shrink: 0;
}
.cart-item-details {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--parchment);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-variant {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--bone);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-item-qty-btn {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--stone-dark);
  border: 1px solid var(--stone-mid);
  border-radius: 0.2rem;
  color: var(--bone);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}
.cart-item-qty-btn:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--parchment);
}
.cart-item-qty {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--parchment);
  min-width: 1.25rem;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--bone);
  opacity: 0.4;
  font-size: 0.65rem;
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: opacity 0.2s, color 0.2s;
}
.cart-item-remove:hover {
  opacity: 1;
  color: var(--blood-bright);
}
.cart-item-price {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 0.1rem;
}
.cart-drawer-footer {
  border-top: 1px solid var(--stone-mid);
  padding: 1.25rem 1.5rem;
}
.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cart-drawer-subtotal-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--bone);
}
.cart-drawer-subtotal-price {
  font-family: var(--font-label);
  font-size: 1rem;
  color: var(--gold);
}
.cart-drawer-checkout {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--ember);
  color: var(--parchment);
  border: none;
  border-radius: 0.25rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
}
.cart-drawer-checkout:hover {
  background: var(--ember-bright, #d4752e);
}
.cart-drawer-clear {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--bone);
  opacity: 0.4;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  margin-top: 0.5rem;
  transition: opacity 0.2s, color 0.2s;
}
.cart-drawer-clear:hover {
  opacity: 1;
  color: var(--blood-bright);
}

/* Store Loading Skeletons */
.store-skeleton {
  background-color: rgba(20, 18, 16, 0.85);
  border: 1px solid rgba(42, 39, 37, 0.4);
  overflow: hidden;
}
.store-skeleton .skeleton-image {
  width: 100%;
  padding-top: 100%;
  background: linear-gradient(110deg, var(--black-deep) 30%, var(--stone-dark) 50%, var(--black-deep) 70%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.store-skeleton .skeleton-text {
  margin: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.store-skeleton .skeleton-line {
  height: 0.875rem;
  background: linear-gradient(110deg, var(--stone-dark) 30%, var(--stone-mid) 50%, var(--stone-dark) 70%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.store-skeleton .skeleton-line:nth-child(1) { width: 70%; }
.store-skeleton .skeleton-line:nth-child(2) { width: 40%; }
.store-skeleton .skeleton-line:nth-child(3) { width: 55%; height: 2rem; }
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Store Empty State */
.store-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 2rem;
}
.store-empty-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}
.store-empty-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--bone);
  margin-bottom: 0.75rem;
}
.store-empty-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--stone-mid);
}

/* Image load fallback */
.store-card-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-deep);
  color: var(--stone-mid);
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

/* ============================================================
   21. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1199px) {
  .carousel-slide { grid-template-columns: 1fr 1fr; padding: 4vh 4vw; gap: 3vw; }
  .slide-center { grid-column: 2; grid-row: 1 / 3; }
  .slide-image { width: 220px; height: 300px; }
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 240px 240px 280px;
    grid-template-areas:
      "taproom taproom"
      "hamate  codex"
      "story   merch"
      "alpine  beleth";
  }
  .mosaic-tile[style*="dark"],
  .mosaic-tile[style*="giltine"] { display: none; }
  .beer-grid { grid-template-columns: repeat(2, 1fr); }
  .taproom-cards { grid-template-columns: repeat(2, 1fr); }
  .story-layout { gap: 40px; }
  .story-image { flex: 0 0 42%; min-height: 380px; }
  .story-text { flex: 1; }
  .detail-layout { flex-direction: column; }
  .detail-image { flex: none; width: 100%; height: 380px; }
  .detail-info { flex: none; width: 100%; padding: 40px; }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-directory-grid { grid-template-columns: repeat(2, 1fr); }
  .store-modal { flex-direction: column; }
  .store-modal-image { flex: none; height: 20rem; }
}

/* ============================================================
   20. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  html { font-size: 16px; }
  body { font-size: 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 0 20px; }
  #hero { width: 100%; height: min(85vh, 150vw); }
  .hero-tree { background-size: 190% auto; opacity: 0.2; }
  .hero-artwork { background-size: 59.1vw auto; background-position: center center; }
  .hero-content { top: auto; bottom: 18vw; left: 50%; transform: translateX(-50%); padding: 0 24px; max-width: none; }
  .hero-scroll-cue { top: auto; bottom: 3vw; }
  .scroll-chevrons-corner { top: auto; bottom: 3vw; }
  #hero-flame { inset: 0; height: auto; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hl-top { font-size: clamp(1.4rem, 5vw, 2.5rem); }
  .hl-bottom { font-size: clamp(2.2rem, 8vw, 4rem); }
  .hero-subhead { font-size: 11px; letter-spacing: 5px; }
  .btn-primary { padding: 14px 28px; font-size: 11px; }
  .carousel-slide { grid-template-columns: 1fr; padding: 3vh 4vw; gap: 3vw; }
  .slide-center { grid-column: auto; grid-row: auto; }
  .slide-image { width: 180px; height: 250px; margin: 0 auto; }
  .slide-left { text-align: center; align-items: center; }
  .carousel-arrow { display: none; }
  .carousel-pagination { right: 24px; }
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "taproom" "hamate" "codex" "story" "merch" "alpine" "beleth" "dark" "giltine";
  }
  .mosaic-tile { min-height: 200px; }
  .mosaic-tile[style*="dark"],
  .mosaic-tile[style*="giltine"] { display: block; }
  .mosaic-overlay { opacity: 1; }
  #beer-finder { padding: 80px 24px; }
  .finder-input-group { flex-direction: column; }
  .finder-pin { display: none; }
  .finder-input { border: 1px solid var(--stone-dark); }
  .btn-find { width: 100%; }
  .taproom-cards { grid-template-columns: 1fr; }
  .taproom-hero { height: 280px; }
  .story-layout { flex-direction: column; gap: 32px; }
  .story-image { flex: none; width: 100%; min-height: 260px; }
  .story-text { flex: none; width: 100%; }
  #signup { padding: 70px 20px; }
  .form-row { flex-direction: column; gap: 14px; }
  .beer-grid { grid-template-columns: 1fr; padding: 20px 16px; }
  .detail-image { height: 280px; }
  .detail-info { padding: 28px 20px; }
  .detail-name { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .detail-specs { flex-wrap: wrap; gap: 14px; }
  .back-link { padding: 16px 20px; }
  .section-divider { padding: 24px 16px; }
  .container { padding: 0 16px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .store-grid { grid-template-columns: 1fr; }
  .brand-directory-grid { grid-template-columns: 1fr; }
  .store-hero { padding: 8rem 1.25rem 3rem; }
  .store-modal { flex-direction: column; max-height: 85vh; }
  .store-modal-image { flex: none; height: 16rem; }
  .store-modal-info { padding: 1.5rem; }
  .cart-widget-wrap { bottom: 1.25rem; right: 1.25rem; }
}

/* ============================================================
   21. RESPONSIVE — SMALL
   ============================================================ */
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(1.6rem, 10vw, 2.6rem); }
  .hl-top { font-size: clamp(0.75rem, 2.2vw, 1.1rem); }
  .hl-bottom { font-size: clamp(1.8rem, 7vw, 3rem); }
  .hero-subhead { font-size: 10px; letter-spacing: 4px; }
  .nav-wordmark { font-size: 11px; letter-spacing: 2px; }
  .finder-headline { font-size: clamp(1.4rem, 7vw, 2.2rem); }
  .signup-headline { font-size: clamp(1.4rem, 7vw, 2rem); }
  .beers-title { font-size: clamp(1.4rem, 7vw, 2.2rem); }
}

/* ============================================================
   22. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  #loading-screen { display: none; }
  body::after { animation: none; }
}

/* ============================================================
   23. PRINT
   ============================================================ */
@media print {
  body { background: #fff; color: #000; }
  body::after, #loading-screen, .navbar, .hamburger, .nav-mobile, .ember { display: none !important; }
  * { box-shadow: none !important; text-shadow: none !important; }
}

/* ============================================================
   24. NOSCRIPT CAROUSEL FALLBACK
   ============================================================ */
.carousel-noscript {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.noscript-beer-card {
  text-align: center;
  text-decoration: none;
  color: var(--parchment);
  transition: transform 0.3s ease;
}

.noscript-beer-card:hover {
  transform: translateY(-4px);
}

.noscript-beer-image {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 0.75rem;
}

.noscript-beer-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   25. BRAND HUB & PRODUCT PAGES
   ============================================================ */

/* ── Brand Hub Hero ───────────────────────────────────── */
.brand-hub-page { background-color: var(--black-deep); }
.brand-hub-hero {
  text-align: center;
  padding: 8rem 1.5rem 3rem;
  max-width: 50rem;
  margin: 0 auto;
}
.brand-hub-can {
  max-height: 18rem;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(196, 101, 42, 0.15));
}
.brand-hub-logo {
  max-height: 6rem;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.85;
}
.brand-hub-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.brand-hub-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--parchment);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.brand-hub-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--bone);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}
.brand-hub-beer-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.brand-hub-chip {
  font-family: var(--font-label);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--stone-dark);
  padding: 0.35rem 0.75rem;
  opacity: 0.7;
}
.brand-hub-accent-bar {
  height: 2px;
  width: 4rem;
  margin: 0 auto;
}

/* ── Brand Product Grid ───────────────────────────────── */
.brand-product-section {
  padding: 2rem 1.5rem 4rem;
  max-width: 75rem;
  margin: 0 auto;
}
.brand-product-heading {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--bone);
  opacity: 0.5;
  text-align: center;
  margin-bottom: 2rem;
}
.brand-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.brand-card {
  background: var(--charcoal);
  border: 1px solid var(--stone-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 101, 42, 0.4);
}
.brand-card-image-link { display: block; }
.brand-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: var(--black-deep);
}
.brand-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.brand-card:hover .brand-card-image img {
  transform: scale(1.05);
}
.brand-card-content {
  padding: 1.25rem;
  text-align: center;
}
.brand-card-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.brand-card-name a {
  color: inherit;
  text-decoration: none;
}
.brand-card-price {
  font-family: var(--font-label);
  font-size: 0.875rem;
  color: var(--ember);
  margin-bottom: 0.25rem;
}
.brand-card-variants {
  font-family: var(--font-label);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-mid);
  margin-bottom: 1rem;
}

/* ── Mythology Section ────────────────────────────────── */
.mythology-section {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.mythology-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--parchment);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 2rem;
}
.mythology-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.9;
  color: var(--bone);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  text-indent: 1.5em;
}
.mythology-text:first-of-type {
  text-indent: 0;
}
.mythology-beer-link {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-top: 1rem;
  transition: border-color 0.3s ease;
}
.mythology-beer-link:hover {
  border-bottom-color: var(--ember);
}

/* ── FAQ Section ──────────────────────────────────────── */
.faq-section {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--parchment);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-item {
  border-bottom: 1px solid var(--stone-dark);
}
.faq-question {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--bone);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--ember);
  transition: transform 0.3s ease;
}
details[open] .faq-question::after {
  content: '\2013';
}
.faq-answer {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--bone);
  opacity: 0.7;
  padding: 0 0 1.25rem;
}

/* ── Brand Hub Back Link ──────────────────────────────── */
.brand-hub-back {
  text-align: center;
  padding: 0 1.5rem 5rem;
}

/* ── Product Detail Page ──────────────────────────────── */
.product-page { background-color: var(--black-deep); }
.product-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 75rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

/* Image Gallery */
.product-gallery { position: relative; }
.product-main-image-wrap {
  aspect-ratio: 1;
  background: var(--charcoal);
  overflow: hidden;
}
.product-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.product-thumb {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.product-thumb:hover {
  opacity: 1;
  border-color: var(--stone-mid);
}
.product-thumb.active {
  opacity: 1;
  border-color: var(--ember);
}

/* Product Info Column */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}
.product-brand-link {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.product-brand-link:hover {
  opacity: 0.8;
}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--parchment);
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.product-price {
  font-family: var(--font-label);
  font-size: 1.25rem;
  color: var(--ember);
  letter-spacing: 0.05em;
}
.product-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #b0ada6;
  line-height: 1.6;
  margin: 0.5rem 0 0.25rem;
}
.product-mythology-teaser {
  border-left: 2px solid var(--ember);
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.product-mythology-teaser p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--bone);
  opacity: 0.65;
  margin-bottom: 0.5rem;
}
.product-mythology-read-more {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.product-mythology-read-more:hover {
  opacity: 1;
}
.product-variants-label {
  font-family: var(--font-label);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.5;
  margin-bottom: -0.5rem;
}
.product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.btn-product-cart {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ember);
  color: var(--black-deep);
  border: 1px solid var(--ember);
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.btn-product-cart:hover {
  background: rgba(196, 101, 42, 0.85);
}
.btn-product-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Trust Signals */
.product-trust-signals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.product-trust-item {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.4;
}
.product-trust-sep {
  color: var(--stone-dark);
  font-size: 0.5rem;
}

/* ── Cross-sell Section ───────────────────────────────── */
.product-crosssell {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.product-crosssell-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  color: var(--parchment);
  letter-spacing: 0.2em;
  text-align: center;
  margin: 2rem 0;
}
.product-crosssell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 50rem;
  margin: 0 auto;
}
.crosssell-card {
  display: block;
  text-decoration: none;
  background: var(--charcoal);
  border: 1px solid var(--stone-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.crosssell-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 101, 42, 0.4);
}
.crosssell-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: var(--black-deep);
}
.crosssell-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.crosssell-card-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  padding: 1rem 1rem 0.25rem;
}
.crosssell-card-price {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--ember);
  padding: 0 1rem 1rem;
}

/* ── Brand Hub & Product Page Responsive ──────────────── */
@media (max-width: 900px) {
  .product-detail-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 1.25rem 3rem;
  }
  .brand-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .brand-hub-hero { padding: 7rem 1.25rem 2rem; }
  .brand-hub-can { max-height: 12rem; }
  .brand-product-grid { grid-template-columns: 1fr; }
  .product-crosssell-grid { grid-template-columns: 1fr; }
  .product-thumbnails { gap: 0.375rem; }
  .product-thumb { width: 3rem; height: 3rem; }
  .product-name { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}

.noscript-placeholder {
  width: 160px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}

.noscript-beer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--gold);
}

.noscript-beer-style {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.6);
}

@media (max-width: 900px) {
  .carousel-noscript {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .carousel-noscript {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* END */
