/* ─────────────────────────────────────────
   82 BREWING CO + DISTILLERY — STYLES
   Redesigned 2026 · Lagom Agency
───────────────────────────────────────── */

/* FONTS */
@font-face {
  font-family: "Cayano";
  src: url("./assets/fonts/Cayano-SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cayano";
  src: url("./assets/fonts/Cayano-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Attack";
  src: url("./assets/fonts/Attack-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8CC82;
  --gold-dark:   #8B6914;
  --black:       #09090A;
  --off-black:   #111113;
  --dark:        #18181B;
  --mid:         #27272A;
  --warm-gray:   #52525B;
  --muted:       #A1A1AA;
  --cream:       #F4EFE6;
  --white:       #FDFCF9;

  --font-display: "Cayano", "Arial Narrow", Arial, sans-serif;
  --font-body:    "Attack", "Trebuchet MS", sans-serif;

  --nav-h:       90px;
  --pad:         clamp(20px, 5vw, 72px);
  --section-v:   clamp(80px, 10vw, 140px);
  --radius-sm:   4px;
  --radius:      12px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── BASE ── */
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.3;
  color: var(--muted);
  max-width: 640px;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(244,239,230,0.3);
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── SECTION LAYOUT ── */
.section {
  padding: var(--section-v) var(--pad);
}
.section--dark {
  background: var(--off-black);
}

.section__header {
  max-width: 700px;
  margin-bottom: 60px;
}
.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── AGE GATE ── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(9,9,10,0.92);
  backdrop-filter: blur(20px);
  transition: opacity 0.4s, visibility 0.4s;
}
.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.age-gate__panel {
  width: min(360px, calc(100vw - 40px));
  padding: 48px 36px;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  text-align: center;
  display: grid;
  gap: 16px;
}
.age-gate__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}
.age-gate__logo img { width: 100%; height: 100%; object-fit: contain; }
.age-gate__eyebrow {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.age-gate__prompt {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.age-gate__copy {
  font-size: 11px;
  color: var(--warm-gray);
  line-height: 1.6;
}
.age-gate__copy a { color: var(--gold); text-decoration: underline; }
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.age-gate__yes {
  padding: 14px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.age-gate__yes:hover { background: var(--gold-light); }
.age-gate__no {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: underline;
  transition: color var(--transition);
}
.age-gate__no:hover { color: var(--cream); }

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), height var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.topbar.is-compact {
  height: 64px;
  background: rgba(9,9,10,0.96);
  backdrop-filter: blur(20px);
  border-color: rgba(201,168,76,0.12);
}

.topbar__row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Logo */
.brand-mark {
  justify-self: center;
  display: grid;
  place-items: center;
  position: relative;
}
.brand-mark__logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.brand-mark__logo--dark {
  opacity: 0;
}
.brand-mark__logo--light {
  opacity: 1;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}
.topbar.is-compact .brand-mark__logo {
  height: 70px;
}
/* On scroll always show white logo on dark nav */
.brand-mark__logo--light { opacity: 1; }
.brand-mark__logo--dark { display: none; }

/* Nav links */
.topbar__nav { display: flex; align-items: center; }
.topbar__nav--left { justify-content: flex-end; }
.topbar__nav--right { justify-content: flex-start; }

.menu {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 28px);
}
.menu a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.65);
  transition: color var(--transition);
  white-space: nowrap;
  padding: 4px 0;
}
.menu a:hover,
.menu a.is-active { color: var(--gold); }

.menu__shop {
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 18px !important;
  transition: background var(--transition), color var(--transition) !important;
}
.menu__shop:hover {
  background: var(--gold);
  color: var(--black) !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.visually-hidden) {
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.menu--mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(9,9,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 24px var(--pad) 32px;
  flex-direction: column;
  gap: 0;
}
.menu--mobile.is-open { display: flex; }
.menu--mobile a {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color var(--transition);
}
.menu--mobile a:last-child { border-bottom: none; }
.menu--mobile a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.hero__slider,
.hero__slide {
  position: absolute;
  inset: 0;
}
.hero__slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: flex-end;
}
.hero__slide.is-active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,9,10,0.85) 0%,
    rgba(9,9,10,0.3) 50%,
    rgba(9,9,10,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) clamp(60px, 12vh, 120px);
  display: grid;
  gap: 16px;
  max-width: 640px;
}
.hero__kicker {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 130px);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.01em;
}
.hero__sub {
  font-size: 16px;
  color: rgba(244,239,230,0.72);
  max-width: 420px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Progress dots */
.hero__progress {
  position: absolute;
  right: var(--pad);
  bottom: clamp(40px, 8vh, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__dot {
  width: 2px;
  height: 32px;
  background: rgba(244,239,230,0.2);
  transition: background var(--transition), height var(--transition);
}
.hero__dot.is-active {
  background: var(--gold);
  height: 48px;
}

/* Wave overlay */
.hero__wave {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: min(500px, 50vw);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero__scroll-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STORY ── */
.story { background: var(--off-black); }

.story__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.story__visual {
  position: relative;
}
.story__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 6s ease;
}
.story__img-wrap:hover img { transform: scale(1.04); }

.story__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.story__badge-year {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.story__badge-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}

.story__copy {
  display: grid;
  gap: 0;
}
.story__copy p {
  color: rgba(244,239,230,0.6);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.story__stat { text-align: center; }
.story__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.story__stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Brand Promise */
.promise {
  max-width: 1200px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.promise__item {
  padding: 44px 36px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.promise__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.promise__item:hover { background: var(--mid); }
.promise__item:hover::before { transform: scaleX(1); }

.promise__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}
.promise__icon img { width: 100%; height: 100%; object-fit: contain; }
.promise__item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.promise__item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── BREWS ── */
.brews { padding: var(--section-v) var(--pad); }

.brews__tabs {
  display: inline-flex;
  border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 48px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.brew-tab {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 28px;
  background: transparent;
  border-right: 1px solid rgba(201,168,76,0.2);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.brew-tab:last-child { border-right: none; }
.brew-tab.is-active {
  background: var(--gold);
  color: var(--black);
}
.brew-tab:hover:not(.is-active) {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.brews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.brew-card {
  display: none;
  background: var(--dark);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.brew-card.is-visible { display: block; }

.brew-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--mid);
  position: relative;
}
.brew-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.brew-card:hover .brew-card__media img { transform: scale(1.05); }

.brew-card__info {
  padding: 24px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.brew-card__cat {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.brew-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.brew-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.brews__cta {
  text-align: center;
  padding-top: 52px;
  border-top: 1px solid rgba(201,168,76,0.12);
  margin-top: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.brews__cta p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── PARALLAX BANNER ── */
.parallax-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--pad);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,10,0.72);
}
.parallax-banner--warning .parallax-banner__overlay {
  background: rgba(9,9,10,0.78);
}
.parallax-banner__wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.1;
  pointer-events: none;
}
.parallax-banner__inner {
  position: relative;
  z-index: 1;
}
.parallax-banner__inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 64px);
  color: var(--white);
  letter-spacing: 0.02em;
}
.parallax-banner--warning .parallax-banner__inner h2 {
  color: var(--gold);
  font-size: clamp(22px, 3.5vw, 42px);
}

/* ── SERVICES ── */
.services { background: var(--black); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  padding: 48px 36px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--mid); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
  transition: color var(--transition);
}
.service-card:hover .service-card__num { color: rgba(201,168,76,0.13); }

.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  padding: 10px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── EVENTS GALLERY ── */
.events { padding: var(--section-v) var(--pad); }

.events__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}
.events__tile {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  filter: saturate(0.5) brightness(0.8);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.events__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.0);
  transition: background 0.3s;
}
.events__tile:hover {
  filter: saturate(0.9) brightness(1);
}
.events__tile:hover::after {
  background: rgba(201,168,76,0.1);
}
.events__tile--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.events__tile--tall {
  grid-row: span 2;
}

.events__ig-link {
  text-align: center;
  margin-top: 48px;
}

/* ── CONTACT ── */
.contact { background: var(--off-black); }

.contact__intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin-top: 8px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1100px;
}

/* Form */
.contact__form {
  display: grid;
  gap: 20px;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__form label {
  display: grid;
  gap: 8px;
}
.contact__form span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.contact__form select option { background: var(--dark); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--warm-gray); }
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__form .btn { width: 100%; justify-content: center; }

/* Contact info */
.contact__info {
  padding-top: 4px;
  display: grid;
  gap: 0;
}
.contact__info-block {
  padding: 28px 0;
}
.contact__divider {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.12);
}
.contact__info-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact__info-value {
  font-size: 16px;
  color: var(--cream);
  display: block;
  transition: color var(--transition);
}
a.contact__info-value:hover { color: var(--gold); }

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--cream);
  padding: 14px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  margin-top: 4px;
  transition: border-color var(--transition), color var(--transition);
}
.contact__whatsapp img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
}
.contact__whatsapp:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer__main {
  padding: 80px var(--pad) 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0.9);
}
.footer__summary {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav li a {
  font-size: 14px;
  color: var(--warm-gray);
  transition: color var(--transition);
}
.footer__nav li a:hover { color: var(--gold); }

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  color: var(--warm-gray);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer__social-link:last-child { border-bottom: none; }
.footer__social-link:hover { color: var(--gold); }
.footer__social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer__social-link:hover img { opacity: 1; }

.footer__strip {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 20px var(--pad);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal {
  font-size: 11px;
  color: var(--warm-gray);
  line-height: 1.6;
}
.footer__agency {
  font-size: 11px;
  color: var(--warm-gray);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__agency a {
  color: var(--gold);
  transition: opacity var(--transition);
}
.footer__agency a:hover { opacity: 0.7; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--gold-light); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  width: min(360px, calc(100vw - 48px));
  padding: 24px;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  display: grid;
  gap: 12px;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.cookie-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}
.cookie-banner strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
}
.cookie-banner p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-banner__actions .btn,
.cookie-banner__actions .btn-ghost {
  flex: 1;
  justify-content: center;
  padding: 10px;
  font-size: 11px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__visual { display: none; }
  .promise { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .brews__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .events__gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .topbar__nav { display: none; }
  .menu-toggle { display: flex; }
  .brand-mark__logo { height: 80px; }
  .topbar.is-compact .brand-mark__logo { height: 58px; }
  .hero__scroll-indicator { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .brews__grid { grid-template-columns: 1fr; }
  .brews__tabs { flex-wrap: wrap; left: 0; transform: none; }
  .contact__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__strip { flex-direction: column; align-items: flex-start; gap: 8px; }
  .events__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .events__tile--hero { grid-column: span 2; grid-row: span 1; }
  .events__tile--tall { grid-row: span 1; }
  .parallax-banner { background-attachment: scroll; }
  .cookie-banner { left: 16px; bottom: 16px; }
  .scroll-top { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
