/* ============================================================
   EL-J COFFEE — style.css v2
   Brand Palette: Espresso · Caramel · Cream · Parchment · Foam
   Mobile-First · Production-Ready
   ============================================================ */

/* ── BRAND TOKENS ───────────────────────────────────────── */
:root {
  --espresso:   #1A0F00;
  --roast:      #3B1F0A;
  --caramel:    #C07B3A;
  --cream:      #F5EFE0;
  --parchment:  #EDE4D0;
  --foam:       #FAF6EE;
  --olive:      #5C5A3A;
  --accent:     #D4820A;
  --text-main:  #1A0F00;
  --text-muted: #7A6A55;

  /* Derived alpha tokens */
  --espresso-90: rgba(26,15,0,0.90);
  --espresso-60: rgba(26,15,0,0.60);
  --espresso-12: rgba(26,15,0,0.12);
  --espresso-06: rgba(26,15,0,0.06);
  --foam-08:     rgba(250,246,238,0.08);
  --foam-15:     rgba(250,246,238,0.15);
  --foam-40:     rgba(250,246,238,0.40);
  --foam-60:     rgba(250,246,238,0.60);
  --caramel-20:  rgba(192,123,58,0.20);
  --caramel-35:  rgba(192,123,58,0.35);

  /* System */
  --font-display: 'Fraunces', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-sharp: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-h:    68px;
  --px:       22px;
  --section-y:88px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--espresso);
  color: var(--foam);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }
em { font-style: italic; }
figure { margin: 0; }

/* ── TYPOGRAPHY BASE ────────────────────────────────────── */
h1, h2, h3 { line-height: 1.0; letter-spacing: -0.025em; }

/* ── UTILITY: LABEL TAG ─────────────────────────────────── */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}
.label-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--caramel);
  flex-shrink: 0;
}

/* ── UTILITY: BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  transition: background 0.3s, color 0.3s, transform 0.35s var(--ease-back), box-shadow 0.3s;
  white-space: nowrap;
}
.btn--solid {
  background: var(--caramel);
  color: var(--foam);
}
.btn--solid:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(192,123,58,0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--foam);
  border: 1px solid var(--foam-40);
}
.btn--ghost:hover {
  border-color: var(--foam);
  background: var(--foam-08);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════════════ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--caramel);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease-back), height 0.3s var(--ease-back);
  mix-blend-mode: multiply;
  opacity: 0;
}
.cursor.is-ready { opacity: 1; }
.cursor.is-hovered { width: 36px; height: 36px; opacity: 0.45; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  z-index: 500;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(26,15,0,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--foam-08);
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--foam);
}
.nav__logo-text em { color: var(--caramel); font-style: italic; }
.nav__links { display: none; }
.nav__links a {
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--foam-60);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--caramel);
  transition: right 0.35s var(--ease-out);
}
.nav__links a:hover { color: var(--foam); }
.nav__links a:hover::after { right: 0; }
.nav__cta {
  background: var(--caramel) !important;
  color: var(--espresso) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.3s;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--accent) !important; }
.nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--foam);
  transition: all 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ─────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--espresso);
  z-index: 400;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 80px var(--px) 48px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-sharp);
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }
.nav-overlay__close {
  position: absolute; top: 20px; right: var(--px);
  font-size: 1.5rem; color: var(--foam-40);
  background: none; border: none; line-height: 1;
  transition: color 0.2s;
}
.nav-overlay__close:hover { color: var(--foam); }
.nav-overlay__links { display: flex; flex-direction: column; gap: 6px; }
.nav-overlay__links a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  font-weight: 700; letter-spacing: 0.02em;
  color: var(--foam); line-height: 1.15;
  transition: color 0.2s;
}
.nav-overlay__links a:hover { color: var(--caramel); }
.nav-overlay__sub {
  margin-top: 44px;
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--foam-40);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 48px) var(--px) 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('/images/img-hero.webp') center 38% / cover no-repeat;
  z-index: 0;
  transform: scale(1.06);
  will-change: transform;
}
.hero__vignette {
  position: absolute; inset: 0;
  background: linear-gradient(
    175deg,
    rgba(26,15,0,0.42) 0%,
    rgba(26,15,0,0.25) 25%,
    rgba(26,15,0,0.55) 60%,
    rgba(26,15,0,0.96) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 22px;
  opacity: 0; animation: rise 0.8s 0.2s var(--ease-out) forwards;
}
.eyebrow-bar {
  display: block; width: 28px; height: 1px;
  background: var(--caramel); flex-shrink: 0;
}
.hero__title {
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; animation: rise 0.9s 0.32s var(--ease-out) forwards;
}
.hero__title-block {
  font-family: var(--font-display);
  font-size: clamp(64px, 16vw, 180px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 0.88;
  color: var(--foam);
}
.hero__title-serif {
  font-family: var(--font-serif);
  font-size: clamp(48px, 12vw, 140px);
  font-weight: 300; font-style: italic;
  letter-spacing: -0.01em; line-height: 1.0;
  color: var(--caramel);
}
.hero__desc {
  font-size: 0.95rem; line-height: 1.76;
  color: var(--foam-60); max-width: 440px;
  margin-top: 20px; margin-bottom: 36px;
  opacity: 0; animation: rise 0.9s 0.55s var(--ease-out) forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: rise 0.9s 0.7s var(--ease-out) forwards;
}
.hero__scroll-hint {
  position: absolute; bottom: 32px; left: var(--px);
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
  opacity: 0; animation: rise 1s 0.95s var(--ease-out) forwards;
}
.scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--caramel));
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
.scroll-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--foam-40); writing-mode: vertical-rl;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   TICKER BAND
══════════════════════════════════════════════════════════ */
.band { background: var(--caramel); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.band__track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.band__track span {
  font-family: var(--font-display);
  font-size: 0.9rem; letter-spacing: 0.08em;
  color: var(--foam); padding: 0 20px;
}
.band__sep { font-style: normal; color: rgba(250,246,238,0.4); font-size: 0.45rem; vertical-align: middle; padding: 0 4px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about {
  background: var(--foam);
  padding: var(--section-y) var(--px);
  display: flex; flex-direction: column; gap: 52px;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 8.5vw, 68px);
  font-weight: 700; color: var(--text-main); margin-bottom: 22px;
  line-height: 1.05;
}
.about__title em {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9em; font-weight: 300; font-style: italic;
  color: var(--caramel);
}
.about__body {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 14px; max-width: 560px;
}
.about__stats {
  display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap;
}
.stat__num-row { display: flex; align-items: baseline; gap: 2px; }
.stat__num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 900;
  color: var(--caramel); line-height: 1;
}
.stat__suf {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--caramel);
}
.stat__label {
  display: block; font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); opacity: 0.65; margin-top: 4px;
}
.about__visual { position: relative; }
.about__frame {
  width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px;
  background: var(--roast);
}
.about__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 0.7s var(--ease-out);
  filter: contrast(1.04);
}
.about__frame:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute; bottom: -20px; right: -12px;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--caramel);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(192,123,58,0.38);
}
.badge__year {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 900;
  color: var(--foam); line-height: 1;
}
.badge__label {
  font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,246,238,0.75); margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services {
  background: var(--espresso);
  padding: var(--section-y) var(--px);
}
.services__intro { margin-bottom: 56px; }
.services__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 7.5vw, 60px);
  font-weight: 700; color: var(--foam); line-height: 1.05;
}
.services__title em {
  font-family: var(--font-serif); font-weight: 300;
  font-style: italic; color: var(--caramel); display: block;
}
.services__list { display: flex; flex-direction: column; }
.service { padding: 44px 0; }
.service + .service { border-top: 1px solid var(--foam-08); }
.service__meta {
  display: flex; align-items: center; gap: 18px; margin-bottom: 24px;
}
.service__num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 900;
  color: var(--caramel); line-height: 1; flex-shrink: 0; opacity: 0.9;
}
.service__rule {
  flex: 1; height: 1px; background: var(--foam-08); border: none; margin: 0;
}
.service__row {
  display: flex; flex-direction: column; gap: 28px;
}
.service__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 54px);
  font-weight: 700; color: var(--foam); line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.service__desc {
  font-size: 0.94rem; line-height: 1.8;
  color: var(--foam-60); max-width: 500px; margin-bottom: 22px;
}
.service__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--caramel);
  border-bottom: 1px solid rgba(192,123,58,0.30); padding-bottom: 3px;
  transition: gap 0.3s, border-color 0.3s;
}
.service__link:hover { gap: 14px; border-color: var(--caramel); }
.service__img-wrap {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 3px;
  background: var(--roast); flex-shrink: 0;
}
.service__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
  filter: saturate(0.9) contrast(1.04);
}
.service__img-wrap:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════
   SIGNATURE DRINK
══════════════════════════════════════════════════════════ */
.signature {
  background: var(--roast);
  padding: var(--section-y) var(--px);
  display: flex; flex-direction: column; gap: 48px;
  position: relative; overflow: hidden;
}
.signature::after {
  content: 'VUMBA';
  position: absolute; bottom: -6vw; right: -2%;
  font-family: var(--font-display);
  font-size: clamp(80px, 20vw, 260px); font-weight: 900;
  color: rgba(192,123,58,0.05); pointer-events: none;
  white-space: nowrap; line-height: 1;
}
.sig__frame {
  width: 100%; max-width: 400px; border-radius: 3px;
  overflow: hidden; border: 1px solid var(--caramel-20);
}
.sig__frame img {
  width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block;
}
.sig__tag {
  display: inline-block;
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--caramel);
  border: 1px solid rgba(192,123,58,0.35); padding: 5px 12px; border-radius: 2px;
  margin-bottom: 20px;
}
.sig__title {
  font-family: var(--font-serif);
  font-size: clamp(50px, 12vw, 96px);
  font-weight: 300; line-height: 0.94; letter-spacing: -0.02em;
  color: var(--foam); margin-bottom: 24px;
}
.sig__title em { font-style: italic; color: var(--caramel); display: block; }
.sig__body {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--foam-60); max-width: 480px; margin-bottom: 16px;
}
.sig__detail {
  display: flex; flex-direction: column; gap: 5px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--foam-08);
}
.sig__method {
  font-family: var(--font-serif); font-size: 1.05rem;
  color: var(--caramel); font-style: italic;
}
.sig__note {
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--foam-40);
}

/* ══════════════════════════════════════════════════════════
   MENU
══════════════════════════════════════════════════════════ */
.menu-sec {
  background: var(--cream);
  padding: var(--section-y) var(--px);
}
.menu-sec__hd { margin-bottom: 40px; }
.menu-sec__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 8.5vw, 68px);
  font-weight: 700; color: var(--text-main);
  line-height: 1; margin-bottom: 14px;
}
.menu-sec__title em {
  font-family: var(--font-serif); font-weight: 300;
  font-style: italic; color: var(--caramel);
}
.menu-sec__sub {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--text-muted); max-width: 400px;
}

/* Menu Tabs */
.menu-tabs {
  display: flex; gap: 3px;
  background: var(--espresso-06); padding: 4px; border-radius: 3px;
  width: fit-content; margin-bottom: 44px;
}
.menu-tab {
  font-family: var(--font-sans); font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 2px; border: none;
  background: transparent; color: var(--text-muted);
  opacity: 0.65; transition: all 0.25s; cursor: pointer;
}
.menu-tab.active { background: var(--espresso); color: var(--foam); opacity: 1; }

/* Menu Category */
.menu-cat { margin-bottom: 44px; }
.menu-cat__hd {
  display: flex; align-items: center; gap: 18px; margin-bottom: 4px;
}
.menu-cat__name {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-main); opacity: 0.45; white-space: nowrap; flex-shrink: 0;
}
.menu-cat__sub {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); opacity: 0.45; margin-left: 6px;
}
.menu-cat__line {
  display: block; flex: 1; height: 1px;
  background: var(--espresso-12);
}

/* Menu Rows */
.menu-list { display: flex; flex-direction: column; }
.menu-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--espresso-06);
  transition: background 0.2s;
}
.menu-row:last-child { border-bottom: none; }
.menu-row--sig .menu-row__name { color: var(--caramel); }
.menu-row--featured .menu-row__name { color: var(--olive); }

.menu-row__info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.menu-row__name {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--text-main); line-height: 1.2;
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.menu-row__note {
  font-size: 0.8rem; line-height: 1.5;
  color: var(--text-muted); opacity: 0.65; max-width: 420px;
}
.menu-row__craft {
  font-family: var(--font-serif); font-size: 0.82rem; font-style: italic;
  color: var(--caramel); opacity: 0.75;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
.menu-row--sig .menu-row__craft { opacity: 1; font-weight: 600; }

/* Menu Chips / Badges */
.menu-chip {
  display: inline-block; font-family: var(--font-sans);
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 2px; line-height: 1.6;
}
.menu-chip--sig { background: var(--caramel); color: var(--foam); }
.menu-chip--matcha { background: var(--olive); color: var(--foam); }

/* Menu Addons */
.menu-addons {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 36px; border: 1px solid var(--espresso-12);
  border-radius: 3px; overflow: hidden;
}
.menu-addon {
  display: flex; flex-direction: column; gap: 5px;
  padding: 22px 24px;
  background: var(--parchment);
}
.menu-addon + .menu-addon { border-top: 1px solid var(--espresso-12); }
.menu-addon-div { display: none; }
.menu-addon__title {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); opacity: 0.55;
}
.menu-addon__items {
  font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-main);
}
.menu-note {
  margin-top: 22px; font-size: 0.74rem; letter-spacing: 0.04em;
  color: var(--text-muted); opacity: 0.45;
}

/* ══════════════════════════════════════════════════════════
   GALLERY — Perfect alignment, all images
══════════════════════════════════════════════════════════ */
.gallery {
  background: var(--parchment);
  padding: var(--section-y) var(--px);
}
.gallery__hd {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px;
}
.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 68px);
  font-weight: 700; color: var(--text-main); line-height: 1;
}
.gallery__title em {
  font-family: var(--font-serif); font-weight: 300;
  font-style: italic; color: var(--caramel); display: block;
}
.gallery__ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.3s; align-self: flex-start;
}
.gallery__ig:hover { color: var(--caramel); }

/* Featured Strip — 3 wide landscape images */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
.gallery-strip__cell {
  overflow: hidden; background: var(--roast);
  aspect-ratio: 16/9;
}
.gallery-strip__cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
  filter: saturate(0.88) contrast(1.06);
  opacity: 0; transition: opacity 0.5s ease, transform 0.7s var(--ease-out), filter 0.5s;
}
.gallery-strip__cell img.loaded { opacity: 1; }
.gallery-strip__cell:hover img { transform: scale(1.05); filter: saturate(1.02) contrast(1.04); }

/* Uniform Photo Grid — all 44 images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.g-cell {
  overflow: hidden;
  background: var(--roast);
  aspect-ratio: 1 / 1;
  position: relative;
}
/* Every 9th image spans 2 columns for visual rhythm */
.g-cell:nth-child(9n+1) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.g-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 0.6s var(--ease-out), filter 0.5s;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s var(--ease-out), filter 0.5s;
}
.g-cell img.loaded { opacity: 1; }
.g-cell:hover img { transform: scale(1.07); filter: saturate(1.0) contrast(1.04); }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact {
  background: var(--roast);
  padding: var(--section-y) var(--px);
  display: flex; flex-direction: column; gap: 56px;
  position: relative; overflow: hidden;
}
.contact::before {
  content: 'BREW';
  position: absolute; right: -3%; bottom: -5%;
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px); font-weight: 900;
  color: rgba(192,123,58,0.05); pointer-events: none; line-height: 1;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 64px);
  font-weight: 700; color: var(--foam); line-height: 1; margin-bottom: 16px;
}
.contact__title em {
  font-family: var(--font-serif); font-weight: 300;
  font-style: italic; color: var(--caramel); display: block;
}
.contact__desc {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--foam-60); max-width: 380px; margin-bottom: 40px;
}
.contact__links { display: flex; flex-direction: column; gap: 18px; }
.c-link {
  display: flex; align-items: flex-start; gap: 16px;
  transition: opacity 0.2s;
}
.c-link:hover { opacity: 0.8; }
.c-link__icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--foam-15);
  display: flex; align-items: center; justify-content: center;
  color: var(--foam-60); flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.c-link:hover .c-link__icon {
  border-color: var(--caramel); background: var(--caramel-20); color: var(--caramel);
}
.c-link__text { display: flex; flex-direction: column; gap: 2px; }
.c-link__label {
  font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--foam-40);
}
.c-link__val {
  font-family: var(--font-serif); font-size: 1rem; color: var(--foam);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: flex; flex-direction: column; gap: 14px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-label {
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--foam-40);
}
.cf-field {
  background: rgba(250,246,238,0.04);
  border: 1px solid var(--foam-15); border-radius: 2px;
  padding: 13px 16px; font-family: var(--font-sans);
  font-size: 0.95rem; color: var(--foam); outline: none; width: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.cf-field::placeholder { color: rgba(250,246,238,0.22); }
.cf-field:focus { border-color: var(--caramel); background: rgba(192,123,58,0.05); }
.cf-select { color: var(--foam-60); }
.cf-select option { background: var(--roast); color: var(--foam); }
.cf-textarea { resize: none; height: 118px; }
.cf-submit { align-self: flex-start; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--espresso);
  border-top: 1px solid var(--foam-08);
  padding: 56px var(--px) 28px;
}
.footer__top {
  display: flex; flex-direction: column; gap: 44px;
  padding-bottom: 40px; border-bottom: 1px solid var(--foam-08);
}
.footer__logo {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--foam); margin-bottom: 8px;
}
.footer__logo em { color: var(--caramel); font-style: italic; }
.footer__tagline {
  font-family: var(--font-serif); font-size: 0.9rem;
  font-style: italic; color: var(--foam-60); margin-bottom: 6px;
}
.footer__loc {
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--foam-40);
}
.footer__nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.footer__col-title {
  font-size: 0.64rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--caramel); margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a, .footer__col ul li {
  font-size: 0.84rem; color: var(--foam-60); transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--foam); }
.footer__bottom {
  display: flex; flex-direction: column; gap: 14px; padding-top: 22px;
}
.footer__copy { font-size: 0.7rem; color: var(--foam-40); }
.footer__socials { display: flex; gap: 10px; }
.footer__soc {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--foam-15);
  display: flex; align-items: center; justify-content: center;
  color: var(--foam-60); transition: all 0.3s;
}
.footer__soc:hover { border-color: var(--caramel); color: var(--caramel); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
  z-index: 490;
  transition: transform 0.3s var(--ease-back), box-shadow 0.3s;
  animation: wa-pulse 3.5s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.58); }
@keyframes wa-pulse { 0%,100%{box-shadow:0 4px 18px rgba(37,211,102,.42)} 50%{box-shadow:0 4px 34px rgba(37,211,102,.68)} }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal--right { transform: translateX(36px); }
.reveal--left  { transform: translateX(-36px); }
.reveal.is-visible { opacity: 1; transform: translate(0,0); }

/* ══════════════════════════════════════════════════════════
   MEDIA QUERIES — TABLET 640px
══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --px: 40px; --section-y: 96px; }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-strip__cell { aspect-ratio: 4/3; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .g-cell:nth-child(9n+1) { grid-column: span 2; aspect-ratio: 2/1; }

  .cf-row { flex-direction: row; }
  .footer__nav { grid-template-columns: repeat(4, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ══════════════════════════════════════════════════════════
   MEDIA QUERIES — DESKTOP 1024px
══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --px: 8%; --section-y: 120px; }

  /* Nav */
  .nav { padding: 0 8%; }
  .nav__links { display: flex; gap: 28px; list-style: none; }
  .nav__burger { display: none; }

  /* Hero */
  .hero { justify-content: center; }

  /* About */
  .about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about__badge { width: 114px; height: 114px; bottom: -26px; right: -22px; }
  .about__badge-year { font-size: 1.7rem; }

  /* Services */
  .service__row { flex-direction: row; align-items: flex-start; gap: 56px; }
  .service--flip .service__row { flex-direction: row-reverse; }
  .service__text { flex: 1; }
  .service__img-wrap { width: 44%; aspect-ratio: 4/3; flex-shrink: 0; }

  /* Signature */
  .signature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .sig__frame { max-width: none; }

  /* Menu */
  .menu-sec__hd {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 48px;
  }
  .menu-sec__sub { text-align: right; }
  .menu-addons {
    flex-direction: row;
  }
  .menu-addon { flex: 1; }
  .menu-addon + .menu-addon {
    border-top: none; border-left: 1px solid var(--espresso-12);
  }
  .menu-addon-div { display: none; }

  /* Gallery */
  .gallery__hd { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .gallery__ig { align-self: auto; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip__cell { aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
  .g-cell:nth-child(9n+1) { grid-column: span 2; aspect-ratio: 2/1; }

  /* Contact */
  .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

  /* Footer */
  .footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
}

/* ══════════════════════════════════════════════════════════
   MEDIA QUERIES — LARGE 1280px
══════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  :root { --px: 10%; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g-cell:nth-child(9n+1) { grid-column: span 2; aspect-ratio: 2/1; }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .band__track { animation: none; }
  .hero__bg { transform: none !important; }
  .g-cell img, .gallery-strip__cell img { opacity: 1 !important; }
}
