/* ============================================================
   LA GRIETA BREWING CO. — styles.css
   Mobile-first, dark/warm craft-brewery theme
   ============================================================ */

/* ── Google Fonts are loaded in <head> (Bebas Neue + Nunito) ── */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colour palette */
  --clr-bg:          #1a1208;   /* very dark brown */
  --clr-bg-alt:      #241a0e;   /* slightly lighter section bg */
  --clr-bg-card:     #2e1f0f;   /* card background */
  --clr-chalk:       #2a1f14;   /* chalk-bg sections */
  --clr-surface:     #3a2810;   /* elevated surfaces */

  --clr-amber:       #d4870a;   /* primary CTA amber */
  --clr-amber-light: #f0a832;
  --clr-amber-dark:  #a86507;
  --clr-amber-muted: rgba(212, 135, 10, 0.15);

  --clr-hops:        #4a7c20;   /* hops / accent green */
  --clr-hops-light:  #6aad30;
  --clr-hops-dark:   #3d5a1e;

  --clr-cream:       #f0e6cc;   /* wheat / cream text */
  --clr-cream-muted: rgba(240, 230, 204, 0.65);

  --clr-text:        #e8d8b8;
  --clr-text-muted:  #9e8060;
  --clr-text-dim:    #5e4030;

  --clr-border:      rgba(212, 135, 10, 0.18);
  --clr-border-dark: rgba(212, 135, 10, 0.08);

  /* Beer liquid colours */
  --liq-ipa:        #d4870a;
  --liq-stout:      #1a0f05;
  --liq-blonde:     #f5c842;
  --liq-red:        #8b2500;
  --liq-wheat:      #d9a83c;
  --liq-barleywine: #5c2000;
  --liq-sour:       #e8a020;
  --liq-session:    #c8a030;

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  4rem;
  --fs-hero: clamp(3.5rem, 10vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.5);
  --shadow-md:  0 4px 16px rgba(0,0,0,.6);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.7);
  --shadow-amber: 0 4px 24px rgba(212,135,10,.25);

  /* Nav */
  --nav-height: 68px;
  --top-bar-height: 38px;
  --total-nav: calc(var(--nav-height) + var(--top-bar-height));

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 160ms;
  --duration-base: 280ms;
  --duration-slow: 480ms;

  /* Container */
  --container-max: 1200px;
  --container-pad: var(--space-4);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--total-nav);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================
   4. TYPOGRAPHY UTILITIES
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--clr-cream);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-cream-muted);
  max-width: 52ch;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6em 1.4em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--duration-base) var(--ease),
              color var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease),
              transform var(--duration-fast) var(--ease),
              border-color var(--duration-base) var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

/* Amber (primary) */
.btn--amber {
  background: var(--clr-amber);
  color: #1a1208;
  border: 2px solid var(--clr-amber);
}

.btn--amber:hover,
.btn--amber:focus-visible {
  background: var(--clr-amber-light);
  border-color: var(--clr-amber-light);
  box-shadow: var(--shadow-amber);
}

/* Ghost (white outline) */
.btn--ghost {
  background: transparent;
  color: var(--clr-cream);
  border: 2px solid rgba(240,230,204,.45);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(240,230,204,.12);
  border-color: var(--clr-cream);
}

/* Outline amber */
.btn--outline-amber {
  background: transparent;
  color: var(--clr-amber);
  border: 2px solid var(--clr-amber);
}

.btn--outline-amber:hover,
.btn--outline-amber:focus-visible {
  background: var(--clr-amber-muted);
  box-shadow: var(--shadow-amber);
}

/* Sizes */
.btn--sm {
  font-size: var(--fs-sm);
  padding: 0.4em 1em;
}

.btn--lg {
  font-size: var(--fs-lg);
  padding: 0.75em 1.8em;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Focus outline */
.btn:focus-visible {
  outline: 2px solid var(--clr-amber);
  outline-offset: 3px;
}

/* ============================================================
   6. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 240ms; }
.reveal--delay-3 { transition-delay: 360ms; }
.reveal--delay-4 { transition-delay: 480ms; }

/* ============================================================
   7. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--clr-hops-dark);
  color: var(--clr-cream);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.top-bar__icon {
  width: 14px;
  height: 14px;
  fill: var(--clr-amber);
  flex-shrink: 0;
}

.top-bar__separator {
  color: var(--clr-hops-light);
  user-select: none;
}

.top-bar__phone {
  color: var(--clr-amber-light);
  font-weight: 700;
  transition: color var(--duration-fast) var(--ease);
}

.top-bar__phone:hover {
  color: var(--clr-cream);
}

/* ============================================================
   8. NAVIGATION
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(26, 18, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border-dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--duration-base) var(--ease);
}

.nav-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.7);
  border-bottom-color: var(--clr-border);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-cream);
  letter-spacing: 0.06em;
}

.nav__logo-sub {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-amber);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease);
}

.nav__hamburger:hover,
.nav__hamburger:focus-visible {
  background: var(--clr-amber-muted);
  outline: none;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-cream);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease),
              opacity var(--duration-base) var(--ease),
              width var(--duration-base) var(--ease);
}

/* Open state */
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu — mobile hidden by default */
.nav__menu {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--clr-bg);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: var(--space-6) var(--space-6);
  overflow-y: auto;
  z-index: 800;
  border-top: 1px solid var(--clr-border);
  animation: slideDown var(--duration-base) var(--ease);
}

.nav__menu.open {
  display: flex;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.nav__link {
  display: block;
  width: 100%;
  padding: var(--space-4) 0;
  font-size: var(--fs-xl);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--clr-cream);
  border-bottom: 1px solid var(--clr-border-dark);
  transition: color var(--duration-fast) var(--ease),
              padding-left var(--duration-fast) var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-amber);
  padding-left: var(--space-3);
}

/* Nav Actions */
.nav__actions {
  display: none;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

/* Cart button */
.nav__cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) var(--ease);
}

.nav__cart-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--clr-cream);
}

.nav__cart-btn:hover {
  background: var(--clr-amber-muted);
}

.nav__cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--clr-amber);
  color: #1a1208;
  font-size: 10px;
  font-weight: 800;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav__cart-badge[data-count="0"],
.nav__cart-badge:empty {
  opacity: 0;
}

.nav__cta {
  font-size: var(--fs-sm);
}

/* ============================================================
   9. CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--clr-bg-card);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease);
  border-left: 1px solid var(--clr-border);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--clr-border);
}

.cart-sidebar__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-cream);
  letter-spacing: 0.05em;
}

.cart-sidebar__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) var(--ease);
}

.cart-sidebar__close svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-cream-muted);
}

.cart-sidebar__close:hover {
  background: var(--clr-amber-muted);
}

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Cart item (added by JS) */
.cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3);
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-dark);
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-cream);
}

.cart-item__style {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cart-item__qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--clr-amber-muted);
  color: var(--clr-amber);
  font-size: var(--fs-base);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--duration-fast) var(--ease);
}

.cart-item__qty-btn:hover {
  background: var(--clr-amber);
  color: #1a1208;
}

.cart-item__qty {
  min-width: 1.5ch;
  text-align: center;
  font-weight: 700;
  color: var(--clr-cream);
}

.cart-item__price {
  font-weight: 700;
  color: var(--clr-amber);
  font-size: var(--fs-sm);
  white-space: nowrap;
}

.cart-empty-msg {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-8) 0;
}

.cart-sidebar__footer {
  padding: var(--space-6);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--clr-cream);
}

#cart-total {
  color: var(--clr-amber);
}

.cart-sidebar__note {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-align: center;
}

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,18,8,.35) 0%,
    rgba(26,18,8,.6) 50%,
    rgba(26,18,8,.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--total-nav) + var(--space-8));
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--clr-cream);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}

.hero__title em {
  font-style: normal;
  color: var(--clr-amber);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-cream-muted);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

/* Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 520px;
}

.hero__stat {
  background: rgba(26,18,8,.65);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  backdrop-filter: blur(8px);
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--clr-amber);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero__stat-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-cream-muted);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-cream-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease);
}

.hero__scroll:hover {
  color: var(--clr-amber);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--clr-amber));
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   11. CERVEZAS SECTION
   ============================================================ */
.cervezas {
  padding: var(--space-20) 0;
  background: var(--clr-bg-alt);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.filter-btn {
  padding: 0.45em 1.1em;
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all var(--duration-fast) var(--ease);
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--clr-amber);
  color: var(--clr-amber);
  outline: none;
}

.filter-btn--active {
  background: var(--clr-amber);
  border-color: var(--clr-amber);
  color: #1a1208;
}

/* Beer grid */
.cervezas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

/* Beer card */
.beer-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}

.beer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--clr-amber);
  border-color: var(--clr-amber);
}

/* Beer card hidden state (filtering) */
.beer-card.hidden {
  display: none;
}

/* Liquid visual */
.beer-card__liquid {
  height: 100px;
  position: relative;
  overflow: hidden;
}

.beer-card__liquid--ipa        { background: linear-gradient(135deg, #8a5000, var(--liq-ipa)); }
.beer-card__liquid--stout      { background: linear-gradient(135deg, #0a0603, var(--liq-stout) 80%, #3a1a06); }
.beer-card__liquid--blonde     { background: linear-gradient(135deg, #c89820, var(--liq-blonde)); }
.beer-card__liquid--red        { background: linear-gradient(135deg, #4a0a00, var(--liq-red) 80%, #c03000); }
.beer-card__liquid--wheat      { background: linear-gradient(135deg, #a87820, var(--liq-wheat)); }
.beer-card__liquid--barleywine { background: linear-gradient(135deg, #2a0800, var(--liq-barleywine) 80%, #8a2800); }
.beer-card__liquid--sour       { background: linear-gradient(135deg, #b87800, var(--liq-sour)); }
.beer-card__liquid--session    { background: linear-gradient(135deg, #886010, var(--liq-session)); }

/* Foam */
.beer-card__foam {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(240,230,204,.88);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -4px 12px rgba(240,230,204,.3);
}

.beer-card__foam::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -5%;
  width: 110%;
  height: 24px;
  background: rgba(240,230,204,.6);
  border-radius: 50%;
}

.beer-card__foam--thick {
  height: 38px;
}

.beer-card__body {
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.beer-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-2);
}

.beer-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-cream);
  letter-spacing: 0.04em;
  line-height: 1;
  flex: 1;
  min-width: 0;
}

.beer-card__style {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-amber);
  background: var(--clr-amber-muted);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  align-self: center;
}

.beer-card__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-hops-light);
  background: rgba(74,124,32,.18);
  border: 1px solid var(--clr-hops-dark);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-full);
}

.beer-card--limited {
  border-color: rgba(74,124,32,.35);
}

.beer-card--limited:hover {
  border-color: var(--clr-hops-light);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--clr-hops-light);
}

.beer-card__specs {
  display: flex;
  gap: var(--space-3);
}

.beer-card__spec {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
}

.beer-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  line-height: 1.6;
  flex: 1;
}

.beer-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--clr-border-dark);
  flex-wrap: wrap;
}

.beer-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-amber);
  letter-spacing: 0.04em;
}

.beer-card__price small {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   12. PROCESO SECTION
   ============================================================ */
.proceso {
  padding: var(--space-20) 0;
  background: var(--clr-bg);
}

.proceso__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.proceso__step {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.proceso__step-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.proceso__step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.proceso__step:hover .proceso__step-img {
  transform: scale(1.04);
}

.proceso__step-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,.65) 0%, transparent 60%);
}

.proceso__step-number {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  color: var(--clr-amber);
  line-height: 1;
  opacity: 0.9;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.proceso__step-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
}

.proceso__step-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--clr-cream);
  letter-spacing: 0.04em;
  line-height: 1;
}

.proceso__step-time {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-amber);
}

.proceso__step-time svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-amber);
  flex-shrink: 0;
}

.proceso__step-desc {
  color: var(--clr-cream-muted);
  line-height: 1.75;
}

/* Alternating layout for larger screens — handled in breakpoints */

/* Nota SENASA */
.proceso__nota {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-hops);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.proceso__nota svg {
  width: 22px;
  height: 22px;
  fill: var(--clr-hops-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.proceso__nota p {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  line-height: 1.6;
}

.proceso__nota strong {
  color: var(--clr-cream);
}

/* ============================================================
   13. TAPROOM SECTION
   ============================================================ */
.taproom {
  padding: var(--space-20) 0;
  background: var(--clr-bg-alt);
}

.taproom__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

/* Gallery */
.taproom__gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.taproom__gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.taproom__gallery-img--main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.taproom__gallery-main:hover .taproom__gallery-img--main {
  transform: scale(1.03);
}

.taproom__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.taproom__gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-base) var(--ease);
}

.taproom__gallery-img:hover {
  transform: scale(1.04);
}

/* Info blocks */
.taproom__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.taproom__info-block {
  padding: var(--space-5);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
}

.taproom__info-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-amber);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.taproom__info-title svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-amber);
  flex-shrink: 0;
}

.taproom__address {
  font-size: var(--fs-base);
  color: var(--clr-cream-muted);
  line-height: 1.6;
}

/* Schedule table */
.taproom__schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.taproom__schedule td {
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border-dark);
}

.taproom__schedule td:last-child {
  text-align: right;
  color: var(--clr-cream-muted);
}

.taproom__schedule-open td {
  color: var(--clr-cream);
}

.taproom__schedule-open td:last-child {
  color: var(--clr-amber);
  font-weight: 700;
}

/* Food menu */
.taproom__menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.taproom__menu-list li {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  padding-left: var(--space-4);
  position: relative;
}

.taproom__menu-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--clr-amber);
  font-weight: 900;
}

.taproom__reserve-text {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

/* ============================================================
   14. GROWLERS SECTION
   ============================================================ */
.growlers {
  padding: var(--space-20) 0;
}

.chalk-bg {
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(212,135,10,.02) 2px,
      rgba(212,135,10,.02) 4px
    ),
    var(--clr-chalk);
}

.growlers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.growlers__card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
}

.growlers__card:hover {
  border-color: var(--clr-amber);
  box-shadow: var(--shadow-amber);
}

.growlers__card-icon {
  width: 56px;
  height: 56px;
  color: var(--clr-amber);
}

.growlers__card-icon svg {
  width: 100%;
  height: 100%;
}

.growlers__card-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-cream);
  letter-spacing: 0.04em;
  line-height: 1;
}

.growlers__card-desc {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  line-height: 1.65;
}

.growlers__details,
.growlers__locations {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.growlers__details li,
.growlers__locations li {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  padding-left: var(--space-4);
  position: relative;
}

.growlers__details li::before,
.growlers__locations li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-amber);
  font-weight: 900;
}

.growlers__locations li strong {
  color: var(--clr-cream);
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.growlers__locations li span {
  display: block;
}

/* ============================================================
   15. CLUB SECTION
   ============================================================ */
.club {
  padding: var(--space-20) 0;
  background: var(--clr-bg);
}

/* Billing toggle */
.club__toggle {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.club__toggle-label {
  font-weight: 700;
  color: var(--clr-cream-muted);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
}

.club__toggle-btn {
  width: 52px;
  height: 28px;
  background: var(--clr-surface);
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-border);
  position: relative;
  transition: background var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
  flex-shrink: 0;
}

.club__toggle-btn[aria-checked="true"] {
  background: var(--clr-amber);
  border-color: var(--clr-amber);
}

.club__toggle-knob {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: var(--clr-cream);
  border-radius: var(--radius-full);
  transition: transform var(--duration-base) var(--ease);
  display: block;
}

.club__toggle-btn[aria-checked="true"] .club__toggle-knob {
  transform: translateX(24px);
}

.club__toggle-save {
  display: inline-block;
  background: var(--clr-hops);
  color: var(--clr-cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.15em 0.5em;
  border-radius: var(--radius-full);
  vertical-align: middle;
  margin-left: var(--space-1);
}

/* Plans grid */
.club__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.club__plan {
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition: border-color var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
}

.club__plan:hover {
  border-color: var(--clr-amber);
}

.club__plan--featured {
  border-color: var(--clr-amber);
  box-shadow: var(--shadow-amber);
}

.club__plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-amber);
  color: #1a1208;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 1em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.club__plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.club__plan-name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-cream);
  letter-spacing: 0.06em;
}

.club__plan-price {
  text-align: right;
}

.club__plan-amount {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-amber);
  letter-spacing: 0.02em;
}

.club__plan-period {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.08em;
}

.club__plan-contents {
  font-size: var(--fs-sm);
  color: var(--clr-amber);
  font-weight: 700;
  padding: var(--space-3);
  background: var(--clr-amber-muted);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-amber);
}

.club__plan-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.club__plan-benefits li {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.5;
}

.club__plan-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-hops-light);
  font-weight: 900;
  font-size: var(--fs-xs);
  top: 2px;
}

/* ============================================================
   16. EVENTOS SECTION
   ============================================================ */
.eventos {
  padding: var(--space-20) 0;
  background: var(--clr-bg-alt);
}

.eventos__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.evento-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-5);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: border-color var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
}

.evento-card:hover {
  border-color: var(--clr-amber);
  box-shadow: var(--shadow-amber);
}

.evento-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--clr-amber-muted);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  text-align: center;
  height: fit-content;
}

.evento-card__day {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--clr-amber);
  line-height: 1;
}

.evento-card__month {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-cream-muted);
}

.evento-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.evento-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--clr-amber-muted);
  color: var(--clr-amber);
  border: 1px solid var(--clr-amber);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.evento-card__tag--trivia {
  background: rgba(74,124,32,.15);
  color: var(--clr-hops-light);
  border-color: var(--clr-hops-dark);
}

.evento-card__tag--homebrew {
  background: rgba(92,32,0,.3);
  color: #e8804a;
  border-color: #7a3018;
}

.evento-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-cream);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.evento-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  line-height: 1.6;
}

.evento-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.evento-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.evento-card__meta svg {
  width: 14px;
  height: 14px;
  fill: var(--clr-text-muted);
  flex-shrink: 0;
}

.evento-card__price {
  font-weight: 700;
  color: var(--clr-amber);
  font-size: var(--fs-xs);
}

/* ============================================================
   17. FAQ SECTION
   ============================================================ */
.faq {
  padding: var(--space-20) 0;
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--duration-base) var(--ease);
}

.faq__item:has(.faq__btn[aria-expanded="true"]) {
  border-color: var(--clr-amber);
}

.faq__question {
  display: block;
}

.faq__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-cream);
  text-align: left;
  line-height: 1.4;
  transition: color var(--duration-fast) var(--ease);
}

.faq__btn:hover {
  color: var(--clr-amber);
}

.faq__icon {
  width: 20px;
  height: 20px;
  fill: var(--clr-amber);
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease);
}

.faq__btn[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--clr-cream-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border-dark);
}

.faq__answer:not([hidden]) {
  display: block;
}

.faq__answer a {
  color: var(--clr-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: #0f0a04;
  border-top: 1px solid var(--clr-border);
  padding: var(--space-16) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

/* Brand */
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
}

.footer__brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--clr-cream);
  letter-spacing: 0.06em;
  line-height: 1;
}

.footer__brand-sub {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-amber);
}

.footer__brand-tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.footer__senasa {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  font-weight: 600;
}

/* Nav */
.footer__nav-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-cream);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__nav a,
.footer__contact a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--duration-fast) var(--ease);
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--clr-amber);
}

/* Contact */
.footer__contact address {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-amber);
  flex-shrink: 0;
}

/* Social */
.footer__social {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  padding: 0.4em 0.9em;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease);
}

.footer__social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer__social-link:hover {
  background: var(--clr-amber-muted);
  border-color: var(--clr-amber);
  color: var(--clr-amber);
}

/* Newsletter */
.footer__newsletter > p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.newsletter-form__group {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.newsletter-form__input {
  flex: 1;
  min-width: 180px;
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 0.6em 1.2em;
  color: var(--clr-cream);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  transition: border-color var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}

.newsletter-form__input::placeholder {
  color: var(--clr-text-dim);
}

.newsletter-form__input:focus {
  outline: none;
  border-color: var(--clr-amber);
  box-shadow: 0 0 0 3px rgba(212,135,10,.15);
}

.newsletter-form__input.error {
  border-color: #e84040;
  box-shadow: 0 0 0 3px rgba(232,64,64,.15);
}

.newsletter-form__btn {
  flex-shrink: 0;
}

.newsletter-form__msg {
  font-size: var(--fs-xs);
  margin-top: var(--space-2);
  min-height: 1.4em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.newsletter-form__msg.success {
  color: var(--clr-hops-light);
}

.newsletter-form__msg.error {
  color: #e84040;
}

.footer__newsletter-note {
  margin-top: var(--space-4);
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

.footer__newsletter-note a {
  color: var(--clr-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid var(--clr-border-dark);
  padding: var(--space-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

/* ============================================================
   19. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--clr-amber);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease),
              opacity var(--duration-base) var(--ease);
  opacity: 0;
  pointer-events: none;
}

.back-to-top:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--clr-amber-light);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: #1a1208;
}

/* ============================================================
   20. TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--clr-bg-card);
  color: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-sm);
  font-weight: 700;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease),
              transform var(--duration-base) var(--ease);
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast--success {
  border-color: var(--clr-hops);
  background: linear-gradient(135deg, var(--clr-bg-card), rgba(74,124,32,.15));
}

.toast--error {
  border-color: #e84040;
}

/* ============================================================
   21. RESPONSIVE — 480px
   ============================================================ */
@media (min-width: 480px) {
  :root {
    --container-pad: var(--space-6);
  }

  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }

  .cervezas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .growlers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .club__plans {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   22. RESPONSIVE — 768px (TABLET)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --container-pad: var(--space-8);
    --nav-height: 72px;
  }

  /* Nav — show desktop menu */
  .nav__hamburger {
    display: none;
  }

  .nav__menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    animation: none;
    flex: 1;
    justify-content: center;
    overflow: visible;
  }

  .nav__link {
    display: inline-block;
    width: auto;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: none;
    color: var(--clr-cream-muted);
    position: relative;
  }

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: var(--space-4);
    right: var(--space-4);
    height: 2px;
    background: var(--clr-amber);
    transform: scaleX(0);
    transition: transform var(--duration-base) var(--ease);
  }

  .nav__link:hover,
  .nav__link.active {
    color: var(--clr-amber);
    padding-left: var(--space-4);
  }

  .nav__link:hover::after,
  .nav__link.active::after {
    transform: scaleX(1);
  }

  .nav__actions {
    display: flex;
  }

  /* Proceso alternating */
  .proceso__step {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-10);
  }

  .proceso__step:nth-child(even) .proceso__step-img-wrap {
    order: 2;
  }

  .proceso__step:nth-child(even) .proceso__step-body {
    order: 1;
  }

  /* Taproom layout */
  .taproom__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  /* Club plans */
  .club__plans {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Growlers */
  .growlers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .section-title {
    font-size: var(--fs-5xl);
  }
}

/* ============================================================
   23. RESPONSIVE — 1024px (DESKTOP)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --container-pad: var(--space-10);
  }

  .cervezas__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .growlers__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
  }

  .proceso__step-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .taproom__layout {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
  }

  .hero__subtitle {
    font-size: var(--fs-xl);
  }
}

/* ============================================================
   24. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   25. FOCUS VISIBLE — global
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--clr-amber);
  outline-offset: 3px;
}
