/* ═══════════════════════════════════════════
   BREWJA — Cervecería Artesanal
   Stylesheet
═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --clr-bg:        #0a0908;
  --clr-bg-2:      #110f0d;
  --clr-bg-card:   #161210;
  --clr-gold:      #c9933a;
  --clr-gold-lt:   #e8b96a;
  --clr-gold-dk:   #8a6020;
  --clr-cream:     #f5efe6;
  --clr-muted:     #9a8f85;
  --clr-border:    rgba(201,147,58,.18);
  --clr-white:     #ffffff;

  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;

  --shadow-card: 0 4px 32px rgba(0,0,0,.45);
  --shadow-glow: 0 0 40px rgba(201,147,58,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--clr-bg);
  color: var(--clr-cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Utilities ── */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}
.hidden { display: none !important; }
.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: .75rem;
}
em { font-style: italic; color: var(--clr-gold-lt); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-bg);
}
.btn--primary:hover {
  background: var(--clr-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,147,58,.4);
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(245,239,230,.25);
  color: var(--clr-cream);
}
.btn--ghost:hover {
  border-color: var(--clr-cream);
  background: rgba(245,239,230,.06);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-2px);
}
.btn--lg  { padding: .95rem 2.25rem; font-size: 1rem; }
.btn--sm  { padding: .5rem 1.1rem; font-size: .8rem; }
.btn--full { width: 100%; }

.link {
  color: var(--clr-gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Logo mark ── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0 48px rgba(201,147,58,.5);
  flex-shrink: 0;
}
.logo-mark--sm {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  box-shadow: none;
}
.logo-mark--lg {
  width: 200px;
  height: 200px;
  font-size: 5rem;
  box-shadow: 0 0 80px rgba(201,147,58,.4);
}
.logo-mark__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ══════════════════════════════
   AGE GATE
══════════════════════════════ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,147,58,.12) 0%, transparent 70%), #0a0908;
  animation: fadeIn .6s ease forwards;
}
.age-gate__card {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: slideUp .7s .2s cubic-bezier(.16,1,.3,1) both;
}
.age-gate__logo { margin-bottom: 1.25rem; }
.age-gate__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: .25rem;
}
.age-gate__brand {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--clr-cream);
  margin-bottom: .25rem;
}
.age-gate__tagline {
  font-size: .85rem;
  color: var(--clr-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.age-gate__divider {
  width: 48px;
  height: 2px;
  background: var(--clr-gold);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.age-gate__question {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.age-gate__sub {
  font-size: .85rem;
  color: var(--clr-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.age-gate__legal {
  font-size: .72rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* Under-age */
.underage {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg);
  text-align: center;
  padding: 1.5rem;
}
.underage__card { max-width: 380px; }
.underage__icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.underage__card h2 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  margin-bottom: .75rem;
}
.underage__card p { color: var(--clr-muted); line-height: 1.7; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  transition: background var(--transition), backdrop-filter var(--transition),
              box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(10,9,8,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
  padding: .75rem 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .05em;
}
.nav__name { color: var(--clr-cream); }
.nav__links {
  display: flex;
  gap: 2.25rem;
}
.nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: .04em;
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--clr-cream); }
.nav__link:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .25rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--clr-bg-card);
  border-bottom: 1px solid var(--clr-border);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color var(--transition);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 1rem;
}
.mobile-menu__link:hover { color: var(--clr-cream); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,147,58,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(138,96,32,.08) 0%, transparent 60%),
    var(--clr-bg);
}

/* Bubbles */
.hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bubbles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 197, 127, 0.35) 0%, transparent 70%);
  animation: rise linear infinite;
}
.hero__bubbles span:nth-child(1)  { width:8px;  height:8px;  left:10%; animation-duration:8s;  animation-delay:0s;   }
.hero__bubbles span:nth-child(2)  { width:5px;  height:5px;  left:20%; animation-duration:11s; animation-delay:1s;   }
.hero__bubbles span:nth-child(3)  { width:12px; height:12px; left:35%; animation-duration:9s;  animation-delay:2.5s; }
.hero__bubbles span:nth-child(4)  { width:6px;  height:6px;  left:50%; animation-duration:14s; animation-delay:0.8s; }
.hero__bubbles span:nth-child(5)  { width:9px;  height:9px;  left:62%; animation-duration:7s;  animation-delay:1.8s; }
.hero__bubbles span:nth-child(6)  { width:4px;  height:4px;  left:72%; animation-duration:12s; animation-delay:3s;   }
.hero__bubbles span:nth-child(7)  { width:7px;  height:7px;  left:80%; animation-duration:10s; animation-delay:0.3s; }
.hero__bubbles span:nth-child(8)  { width:10px; height:10px; left:88%; animation-duration:8.5s;animation-delay:2s;   }
.hero__bubbles span:nth-child(9)  { width:5px;  height:5px;  left:5%;  animation-duration:13s; animation-delay:4s;   }
.hero__bubbles span:nth-child(10) { width:8px;  height:8px;  left:92%; animation-duration:9.5s;animation-delay:1.2s; }

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero__text {
  flex: 1;
  min-width: 0;
}
.hero__logo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-img {
  width: clamp(220px, 28vw, 420px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201,147,58,.25));
}
.hero__eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--clr-cream);
  margin-bottom: 1.5rem;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--clr-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
  opacity: .55;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold));
}
.hero__scroll-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--clr-border);
  background: var(--clr-bg-2);
  padding: .85rem 0;
}
.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 24s linear infinite;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.sep { color: var(--clr-gold); font-size: .55rem; align-self: center; }

/* ══════════════════════════════
   SECTIONS COMMON
══════════════════════════════ */
.section { padding: 7rem 0; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: .85rem;
}
.section-desc { color: var(--clr-muted); font-size: .95rem; line-height: 1.7; }

/* ══════════════════════════════
   BEERS
══════════════════════════════ */
.beers { background: var(--clr-bg-2); }
.beers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.beer-card {
  position: relative;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.beer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,147,58,.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.beer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: rgba(201,147,58,.35);
}
.beer-card:hover::before { opacity: 1; }

.beer-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--clr-gold);
  color: var(--clr-bg);
  padding: .2rem .6rem;
  border-radius: 50px;
}
.beer-card__badge--dark { background: var(--clr-bg-2); color: var(--clr-gold); border: 1px solid var(--clr-gold); }
.beer-card__badge--new  { background: #3a7ec9; color: #fff; }

/* CSS beer glass */
.beer-card__glass { flex-shrink: 0; width: 52px; }
.glass-body {
  width: 44px;
  height: 72px;
  border: 2.5px solid;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.glass-foam {
  position: absolute;
  top: 0; left: -2px; right: -2px;
  height: 14px;
  background: rgba(255,255,255,.85);
  border-radius: 4px 4px 6px 6px;
}
.glass-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 75%;
  border-radius: 0 0 8px 8px;
  animation: liquidSway 3s ease-in-out infinite;
}

.beer-card__glass--golden .glass-body { border-color: rgba(232,185,106,.4); }
.beer-card__glass--golden .glass-liquid { background: linear-gradient(to top, #c98a1a, #e8b96a); }

.beer-card__glass--amber .glass-body { border-color: rgba(180,90,20,.4); }
.beer-card__glass--amber .glass-liquid { background: linear-gradient(to top, #8b4000, #c96010); }

.beer-card__glass--dark .glass-body { border-color: rgba(80,50,20,.5); }
.beer-card__glass--dark .glass-liquid { background: linear-gradient(to top, #1a0d00, #3d1c00); }

.beer-card__glass--pale .glass-body { border-color: rgba(220,200,100,.4); }
.beer-card__glass--pale .glass-liquid { background: linear-gradient(to top, #b09020, #d4b840); }

.beer-card__glass--red .glass-body { border-color: rgba(180,40,40,.4); }
.beer-card__glass--red .glass-liquid { background: linear-gradient(to top, #6b0f0f, #a82020); }

.beer-card__glass--white .glass-body { border-color: rgba(220,210,180,.3); }
.beer-card__glass--white .glass-liquid { background: linear-gradient(to top, #c8b870, #e0d090); opacity: .6; }

.beer-card__name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .2rem;
  line-height: 1.25;
}
.beer-card__style { font-size: .75rem; color: var(--clr-gold); font-weight: 600; letter-spacing: .05em; margin-bottom: .6rem; }
.beer-card__desc { font-size: .85rem; color: var(--clr-muted); line-height: 1.6; margin-bottom: .85rem; }
.beer-card__tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(201,147,58,.1);
  border: 1px solid rgba(201,147,58,.2);
  color: var(--clr-gold-lt);
  padding: .2rem .55rem;
  border-radius: 50px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--clr-bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__visual { position: relative; height: 420px; }
.about__img-wrap {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
}
.about__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Decorative hop rings */
.hop-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(201,147,58,.18);
  animation: pulse 4s ease-in-out infinite;
}
.hop-ring         { width: 220px; height: 220px; }
.hop-ring--2      { width: 300px; height: 300px; animation-delay: .8s; }
.hop-ring--3      { width: 380px; height: 380px; animation-delay: 1.6s; }
.hop-icon { font-size: 4rem; position: relative; z-index: 1; animation: spinSlow 20s linear infinite; }

.about__stat-card {
  position: absolute;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.about__stat-card--1 { bottom: -1rem; left: -1.5rem; }
.about__stat-card--2 { top: 2rem; right: -1.5rem; }
.stat-num { font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 900; color: var(--clr-gold); line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--clr-muted); margin-top: .2rem; }

.about__body { font-size: .95rem; color: var(--clr-muted); line-height: 1.8; margin-bottom: 1rem; }
.about__pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.about__pillars li { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-icon { color: var(--clr-gold); font-size: .7rem; margin-top: .35rem; flex-shrink: 0; }
.about__pillars strong { display: block; font-size: .9rem; margin-bottom: .15rem; }
.about__pillars p { font-size: .82rem; color: var(--clr-muted); line-height: 1.6; }

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process { background: var(--clr-bg-2); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process__step {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.process__step:hover {
  transform: translateY(-4px);
  border-color: rgba(201,147,58,.3);
}
.step-num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,147,58,.12);
  position: absolute;
  top: .75rem; right: 1rem;
  line-height: 1;
}
.step-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.process__step h3 { font-family: var(--ff-serif); font-size: 1.1rem; margin-bottom: .6rem; }
.process__step p  { font-size: .83rem; color: var(--clr-muted); line-height: 1.6; }

/* ══════════════════════════════
   EXPERIENCES
══════════════════════════════ */
.experiences { background: var(--clr-bg); }
.exp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.exp-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.exp-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  background: var(--clr-gold);
  color: var(--clr-bg);
  min-width: 72px;
  gap: .1rem;
}
.exp-date-day  { font-family: var(--ff-serif); font-size: 2rem; font-weight: 900; line-height: 1; }
.exp-date-month{ font-size: .65rem; font-weight: 700; letter-spacing: .14em; }

.exp-card__body { padding: 1.5rem; flex: 1; }
.exp-card__type {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: .4rem;
}
.exp-card__title { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.exp-card__desc { font-size: .82rem; color: var(--clr-muted); line-height: 1.6; margin-bottom: 1.1rem; }

/* ══════════════════════════════
   QUOTE BAND
══════════════════════════════ */
.quote-band {
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(201,147,58,.1) 0%, transparent 70%), var(--clr-bg-2);
  border-block: 1px solid var(--clr-border);
  padding: 5rem 2rem;
  text-align: center;
}
.quote-band blockquote p {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--clr-cream);
  max-width: 700px;
  margin: 0 auto .75rem;
}
.quote-band cite { font-size: .8rem; color: var(--clr-muted); letter-spacing: .06em; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact { background: var(--clr-bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact__desc { color: var(--clr-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 2rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.contact__details li { display: flex; gap: .75rem; align-items: center; font-size: .88rem; color: var(--clr-muted); }
.contact-icon { font-size: 1rem; flex-shrink: 0; }
.contact__social { display: flex; gap: .75rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--clr-muted);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; font-weight: 600; letter-spacing: .05em; color: var(--clr-muted); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-bg-card);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  color: var(--clr-cream);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8f85' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,147,58,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,143,133,.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-notice { font-size: .82rem; text-align: center; min-height: 1.2em; }
.form-notice.success { color: #4caf77; }
.form-notice.error   { color: #e05555; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--clr-bg-card);
  border-top: 1px solid var(--clr-border);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.footer__name { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; }
.footer__tagline { font-size: .72rem; color: var(--clr-muted); letter-spacing: .12em; text-transform: uppercase; width: 100%; margin-top: -.3rem; padding-left: 2.8rem; }
.footer__nav { display: flex; gap: 1.75rem; }
.footer__nav a { font-size: .82rem; color: var(--clr-muted); transition: color var(--transition); }
.footer__nav a:hover { color: var(--clr-cream); }
.footer__legal { font-size: .72rem; color: var(--clr-muted); text-align: right; line-height: 1.6; }

/* ══════════════════════════════
   KEYFRAMES
══════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise {
  0%   { bottom: -10%;  opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .4; }
  100% { bottom: 110%; opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);  }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: .18; }
  50%       { transform: scale(1.06); opacity: .35; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes liquidSway {
  0%, 100% { transform: skewX(0deg); }
  50%       { transform: skewX(2deg); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .about__grid  { grid-template-columns: 1fr; }
  .about__visual { height: 280px; }
  .about__stat-card--1 { left: 0; }
  .about__stat-card--2 { right: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__legal { text-align: center; }
  .footer__tagline { padding-left: 0; text-align: center; }
}
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero__content { flex-direction: column; text-align: center; }
  .hero__text { width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__logo-col { order: -1; }
  .hero__logo-img { width: clamp(160px, 55vw, 260px); }
  .section { padding: 5rem 0; }
  .beers__grid { grid-template-columns: 1fr; }
  .exp__grid   { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .age-gate__card { padding: 2rem 1.5rem; }
}
@media (max-width: 420px) {
  .process__steps { grid-template-columns: 1fr; }
}
