/* ═══════════════════════════════════════════════════════════════
   NOT A DAMN HAMBURGER — N.A.D.H
   Dark, engraved, gold. Playfair Display / Oswald / Karla.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #131313;
  --bg-2:      #1a1a1c;
  --bg-3:      #202024;
  --bone:      #f1ece2;
  --bone-dim:  #b8b2a4;
  --gold:      #d8a54f;
  --gold-soft: #e7c384;
  --red:       #c64b33;
  --wa:        #25d366;
  --line:      rgba(241, 236, 226, 0.13);
  --line-soft: rgba(241, 236, 226, 0.07);
  --shadow:    0 24px 60px rgba(0, 0, 0, 0.55);
  --ff-display: "Playfair Display", "Georgia", serif;
  --ff-body:    "Karla", "Segoe UI", sans-serif;
  --ff-caps:    "Oswald", "Arial Narrow", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }

.ic { width: 1.15em; height: 1.15em; flex: none; }

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 2000;
  background: var(--gold); color: #131313; padding: 10px 18px;
  font-weight: 700; border-radius: 4px;
}
.skip-link:focus { left: 12px; }

/* ─── type ─────────────────────────────────────────── */

h1, h2, h3 { font-family: var(--ff-display); font-weight: 700; line-height: 1.08; }

.kicker {
  font-family: var(--ff-caps);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.kicker::before { content: "— "; color: var(--red); }

.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 20ch; }
.section-sub { color: var(--bone-dim); margin-top: 14px; max-width: 52ch; }

/* ─── buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-caps);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.22s var(--ease), background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold); color: #171310;
  box-shadow: 0 10px 30px rgba(216, 165, 79, 0.22);
}
.btn-gold:hover { background: var(--gold-soft); box-shadow: 0 14px 34px rgba(216, 165, 79, 0.3); }

.btn-ghost {
  border-color: var(--line);
  color: var(--bone);
  background: rgba(241, 236, 226, 0.02);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

.btn-sm { padding: 11px 20px; font-size: 0.8rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

.wa-green { color: var(--wa); }

/* ─── nav ──────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(19, 19, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-goat { width: 44px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-mark {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.35rem;
  letter-spacing: 0.06em; color: var(--bone);
}
.brand-mark em { font-style: normal; color: var(--red); }
.brand-sub {
  font-family: var(--ff-caps); font-size: 0.57rem; font-weight: 400;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--bone-dim);
  white-space: nowrap;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--ff-caps); font-size: 0.84rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-dim);
  padding: 6px 2px; position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold); transition: right 0.28s var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex; border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
}
.lang-btn {
  font-family: var(--ff-caps); font-size: 0.76rem; letter-spacing: 0.12em;
  background: none; border: none; color: var(--bone-dim);
  padding: 8px 13px; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.lang-btn.is-active { background: var(--gold); color: #171310; font-weight: 600; }
.lang-btn:not(.is-active):hover { color: var(--bone); }

.btn-nav { padding: 10px 18px; font-size: 0.78rem; }
.btn-nav .ic { color: var(--wa); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--bone); transition: 0.25s; }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(19, 19, 19, 0.97);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobile-menu a {
  font-family: var(--ff-display); font-size: 2rem; color: var(--bone);
}
.mobile-menu .mobile-wa { font-family: var(--ff-caps); font-size: 1rem; color: var(--wa); letter-spacing: 0.1em; }

/* ─── hero ─────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 50% -5%, rgba(216, 165, 79, 0.13), transparent 70%),
    radial-gradient(ellipse 45% 38% at 85% 100%, rgba(198, 75, 51, 0.07), transparent 70%),
    var(--bg);
}
.hero-glow {
  position: absolute; left: 50%; top: 28%;
  width: 560px; height: 560px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(216, 165, 79, 0.1), transparent 62%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute; right: -8%; bottom: -14%;
  width: 620px; opacity: 0.05; transform: rotate(-9deg);
  animation: watermark-drift 14s ease-in-out infinite alternate;
  pointer-events: none; user-select: none;
}
@keyframes watermark-drift {
  from { transform: rotate(-9deg) translateY(0); }
  to   { transform: rotate(-5deg) translateY(-26px); }
}
.hero-inner { position: relative; max-width: 880px; }
.hero-goat {
  width: clamp(130px, 16vw, 180px); height: auto;
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 44px rgba(216, 165, 79, 0.28));
}
.overline {
  font-family: var(--ff-caps); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.9rem, 8.2vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.hero h1 .damn {
  color: var(--gold);
  font-style: italic;
  position: relative;
  padding: 0 0.06em;
}
.hero h1 .damn::after {
  content: ""; position: absolute; left: 4%; right: 4%; bottom: 0.04em;
  height: 0.06em; background: var(--red); opacity: 0.85;
  transform: skewX(-12deg);
}
.hero-sub {
  color: var(--bone-dim);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  max-width: 54ch;
  margin: 26px auto 0;
}

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 34px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.88rem;
  color: var(--bone-dim);
  background: rgba(241, 236, 226, 0.03);
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.chip strong { color: var(--bone); }
.chip .ic { color: var(--gold); width: 1em; height: 1em; }
a.chip:hover { border-color: var(--gold); color: var(--bone); transform: translateY(-2px); }
.chip-static { cursor: default; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--bone-dim); opacity: 0.7;
  animation: cue 2.4s infinite var(--ease);
}
.scroll-cue svg { width: 26px; height: 26px; }
.scroll-cue:hover { color: var(--gold); }
@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ─── marquee ──────────────────────────────────────── */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0e0e0e;
  padding: 16px 0;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-caps); font-weight: 400; font-size: 0.86rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--bone-dim); white-space: nowrap; padding: 0 18px;
}
.marquee-track span::after { content: "✕"; color: var(--gold); margin-left: 36px; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── sections ─────────────────────────────────────── */

.section { padding: 110px 0; position: relative; overflow: hidden; }
.section-head { margin-bottom: 56px; }

.corner-art {
  position: absolute; opacity: 0.1; pointer-events: none; user-select: none;
  width: clamp(260px, 30vw, 460px);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
}
.corner-art-left  { left: -60px; bottom: -40px; }
.corner-art-right { right: -70px; top: -30px; transform: scaleX(-1); }

/* ─── about ────────────────────────────────────────── */

.about { background: var(--bg-2); }
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px; align-items: center; max-width: 1080px;
}

.about-reel {
  position: relative; margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow);
  transform: rotate(1.6deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.about-reel:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55); }
.about-reel video { display: block; width: 100%; height: auto; aspect-ratio: 720 / 1072; object-fit: cover; }
.about-reel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 70%, rgba(12, 12, 14, 0.72)),
    linear-gradient(115deg, transparent 62%, rgba(12, 12, 14, 0.55) 82%, rgba(12, 12, 14, 0.9) 100%);
}
.reel-tag {
  position: absolute; left: 18px; bottom: 16px; z-index: 1;
  font-family: var(--ff-caps); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.about-copy p { color: var(--bone-dim); margin-bottom: 18px; max-width: 58ch; }
.about-copy p:first-child { color: var(--bone); font-size: 1.06rem; }

.features { list-style: none; margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; }
.features li { display: flex; gap: 14px; align-items: flex-start; }
.features .ic { color: var(--gold); width: 1.5em; height: 1.5em; margin-top: 2px; }
.features strong { display: block; font-family: var(--ff-display); font-size: 1.05rem; letter-spacing: 0.01em; }
.features span { color: var(--bone-dim); font-size: 0.9rem; }

.art-panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 75% 60% at 50% 38%, rgba(216, 165, 79, 0.09), transparent 70%),
    var(--bg-3);
  padding: 56px 40px;
  box-shadow: var(--shadow);
}
.art-panel > img { width: 100%; height: auto; }
.art-chip {
  position: absolute;
  display: flex; align-items: baseline; gap: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 20px;
  font-size: 0.85rem; color: var(--bone-dim);
  box-shadow: var(--shadow);
}
.art-chip strong { font-family: var(--ff-display); font-size: 1.25rem; color: var(--gold); }
.art-chip-1 { top: 26px; left: -26px; }
.art-chip-2 { bottom: 30px; right: -20px; }

/* ─── signatures ───────────────────────────────────── */

.signatures {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(216, 165, 79, 0.05), transparent 70%),
    var(--bg);
}
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sig-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--bg-3), var(--bg-2) 65%);
  padding: 42px 34px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.sig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 165, 79, 0.5);
  box-shadow: var(--shadow);
}
.sig-num {
  position: absolute; top: -14px; right: 10px;
  font-family: var(--ff-display); font-weight: 800; font-style: italic;
  font-size: 5.4rem; color: transparent;
  -webkit-text-stroke: 1px rgba(216, 165, 79, 0.28);
  pointer-events: none; line-height: 1;
}
.sig-tag {
  align-self: flex-start;
  font-family: var(--ff-caps); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(198, 75, 51, 0.45);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 20px;
}
.sig-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.sig-card .sig-desc { color: var(--bone-dim); font-size: 0.93rem; flex: 1; }
.sig-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.sig-price { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; color: var(--gold); }
.sig-order {
  font-family: var(--ff-caps); font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bone-dim);
  display: inline-flex; align-items: center; gap: 7px;
  transition: color 0.2s;
}
.sig-order .ic { color: var(--wa); width: 1.25em; height: 1.25em; }
.sig-order:hover { color: var(--bone); }
.sig-order-links { display: flex; align-items: center; gap: 14px; }
.sig-order .app-ic-sm { width: 30px; height: 30px; border-radius: 8px; transition: transform 0.2s var(--ease); }
.sig-order:hover .app-ic-sm { transform: translateY(-2px); }

/* ─── menu ─────────────────────────────────────────── */

.menu { background: var(--bg-2); }
.menu .section-head { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: end; }
.menu .section-head .kicker, .menu .section-head h2 { grid-column: 1; }
.menu .section-sub { grid-column: 1; }
.menu-actions { grid-column: 2; grid-row: 2 / 4; display: flex; flex-direction: column; gap: 12px; }

.tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 22px;
}
.tab {
  font-family: var(--ff-caps); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-dim);
  background: none; border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.tab:hover { color: var(--bone); border-color: var(--gold); }
.tab.is-active {
  background: var(--gold); color: #171310;
  border-color: var(--gold); font-weight: 600;
}

.menu-panel[hidden] { display: none; }
.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  margin-bottom: 34px;
}
.panel-head h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  display: flex; align-items: baseline; gap: 18px;
}
.panel-head h3::after {
  content: ""; flex: 1; min-width: 60px;
  border-bottom: 1px dashed rgba(241, 236, 226, 0.2);
}
.panel-art { width: clamp(110px, 13vw, 170px); height: auto; flex: none; opacity: 0.9; }

.menu-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}
.menu-item { break-inside: avoid; }
.mi-top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.mi-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; }
.mi-name sup { font-size: 0.62em; color: var(--bone-dim); font-family: var(--ff-body); letter-spacing: 0.05em; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(241, 236, 226, 0.25); transform: translateY(-4px); min-width: 24px; }
.mi-price { font-family: var(--ff-display); font-weight: 700; color: var(--gold); white-space: nowrap; margin-left: auto; }
.mi-price-multi { font-size: 0.95rem; }
.mi-desc { color: var(--bone-dim); font-size: 0.89rem; margin-top: 6px; max-width: 46ch; }
.badge {
  display: inline-block;
  font-family: var(--ff-caps); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  margin-left: 10px; transform: translateY(-2px);
}
.badge-vegan { color: #9fcf8e; border: 1px solid rgba(159, 207, 142, 0.45); }
.badge-spicy { color: var(--red); border: 1px solid rgba(198, 75, 51, 0.5); }

.menu-notes {
  margin-top: 56px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  color: var(--bone-dim); font-size: 0.88rem;
}
.menu-notes p { margin-bottom: 6px; }
.allergens { margin-top: 14px; }
.allergens summary {
  cursor: pointer; color: var(--gold);
  font-family: var(--ff-caps); font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.allergens p { margin-top: 10px; }

/* ─── reviews band ─────────────────────────────────── */

.rev-band {
  background:
    radial-gradient(ellipse 55% 90% at 50% 50%, rgba(216, 165, 79, 0.07), transparent 75%),
    #0e0e0e;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 76px 0;
  text-align: center;
}
.rev-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.rev-score { display: flex; align-items: center; gap: 22px; }
.rev-num {
  font-family: var(--ff-display); font-weight: 800; font-size: 4.6rem;
  color: var(--bone); line-height: 1;
}
.rev-stars { display: flex; gap: 5px; color: var(--gold); }
.rev-stars svg { width: 26px; height: 26px; }
.rev-text { color: var(--bone-dim); }

/* ─── visit ────────────────────────────────────────── */

.visit { background: var(--bg); }
.visit-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: stretch; }

.v-list { list-style: none; display: flex; flex-direction: column; gap: 26px; margin-bottom: 40px; }
.v-list li { display: flex; gap: 16px; align-items: flex-start; }
.v-list .ic { color: var(--gold); width: 1.4em; height: 1.4em; margin-top: 3px; }
.v-list strong {
  display: block; font-family: var(--ff-caps); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--bone-dim); margin-bottom: 3px;
}
.v-list a { border-bottom: 1px solid transparent; transition: 0.2s; }
.v-list a:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }
.v-note { color: var(--bone-dim); font-size: 0.85rem; margin-top: 12px; display: block; }

.hours-table { margin: 6px 0 2px; max-width: 300px; }
.hrow {
  display: flex; justify-content: space-between; gap: 26px;
  padding: 3px 0; font-size: 0.92rem; color: var(--bone-dim);
}
.hrow span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }
.hrow.is-today { color: var(--bone); font-weight: 600; }
.hrow.is-today span:last-child { color: var(--gold); }
.hrow.is-today span:first-child::after { content: " ·"; color: var(--gold); }

.visit-map {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
  position: relative;
  background: var(--bg-3);
}
.visit-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: invert(90%) hue-rotate(180deg) saturate(0.35) brightness(0.92) contrast(0.92);
}

/* ─── footer ───────────────────────────────────────── */

.footer { background: #0c0c0c; border-top: 1px solid var(--line-soft); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.foot-brand img { width: 64px; margin-bottom: 14px; }
.foot-brand .brand-mark { font-size: 1.6rem; }
.foot-tag { color: var(--bone-dim); font-size: 0.9rem; margin-top: 6px; }
.footer h3 {
  font-family: var(--ff-caps); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; color: var(--bone-dim); font-size: 0.94rem; }
.foot-list a:hover { color: var(--gold-soft); }
.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--bone-dim); font-size: 0.82rem;
}

/* ─── whatsapp fab ─────────────────────────────────── */

.fab-wa {
  position: fixed; right: 26px; bottom: 26px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.fab-wa svg { width: 32px; height: 32px; }
.fab-wa::before {
  content: ""; position: absolute; inset: -5px;
  border-radius: 50%; border: 1px solid rgba(37, 211, 102, 0.5);
  animation: fabPulse 2.6s infinite;
}
.fab-wa:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45); }
@keyframes fabPulse {
  0%   { transform: scale(1);    opacity: 1; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ─── reveal animation ─────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ─── responsive ───────────────────────────────────── */

@media (max-width: 1020px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  .sig-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .menu-list { grid-template-columns: 1fr; gap: 26px; }
  .menu .section-head { grid-template-columns: 1fr; }
  .menu-actions { grid-column: 1; grid-row: auto; flex-direction: row; flex-wrap: wrap; }
  .art-chip-1 { left: 10px; }
  .art-chip-2 { right: 10px; }
}

@media (max-width: 820px) {
  .nav-links, .btn-nav span { display: none; }
  .btn-nav { padding: 10px 12px; }
  .nav-burger { display: flex; }
  .section { padding: 80px 0; }
  .features { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-reel { max-width: 320px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .panel-art { display: none; }
  .hero-watermark { width: 420px; right: -30%; }
  .fab-wa { right: 18px; bottom: 18px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .nav-inner { gap: 12px; padding: 12px 16px; }
  .nav-actions { gap: 10px; }
  .brand { gap: 9px; }
  .brand-goat { width: 38px; }
  .brand-sub { display: none; }
  .btn-nav { display: none; }
  .hero-chips { gap: 9px; }
}

/* ═══════════════════════════════════════════════════
   v2 — food photography, ordering, gallery, quotes
   ═══════════════════════════════════════════════════ */

/* ─── nav: instagram + order dropdown ──────────────── */

.nav-ig { color: var(--bone-dim); display: flex; padding: 6px; transition: color 0.2s, transform 0.2s var(--ease); }
.nav-ig .ic { width: 20px; height: 20px; }
.nav-ig:hover { color: var(--gold); transform: translateY(-1px); }

.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: var(--ff-caps); font-size: 0.84rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  padding: 6px 2px;
}
.nav-drop-btn .ic { width: 0.95em; height: 0.95em; transition: transform 0.25s var(--ease); }
.nav-drop.is-open .nav-drop-btn .ic { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 190px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav-drop.is-open .nav-drop-panel,
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-panel a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  font-family: var(--ff-caps); font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bone);
  transition: background 0.2s, color 0.2s;
}
.nav-drop-panel a:hover { background: rgba(216, 165, 79, 0.1); color: var(--gold-soft); }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot-wolt { background: #009de0; }
.dot-bolt { background: #34d186; }

/* ─── app icons + order buttons (Wolt / Bolt) ──────── */

.app-ic { width: 42px; height: 42px; border-radius: 10px; flex: none; display: block; }
.app-ic-sm { width: 26px; height: 26px; border-radius: 6px; }

.order-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 24px 10px 12px;
  border: 1px solid var(--line);
  background: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  font-family: var(--ff-caps); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone);
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}
.order-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.order-btn-lg { padding: 13px 30px 13px 14px; font-size: 0.98rem; gap: 16px; }
.order-btn-lg .app-ic { width: 48px; height: 48px; }

.mobile-order { display: flex; gap: 18px; justify-content: center; }
.mobile-order .app-ic { width: 56px; height: 56px; border-radius: 13px; }
.mobile-order a { transition: transform 0.2s var(--ease); }
.mobile-order a:hover { transform: translateY(-3px); }

/* ─── info strip ───────────────────────────────────── */

.info-strip { background: #0e0e0e; border-bottom: 1px solid var(--line-soft); }
.info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0 24px;
}
.info-tile {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 22px;
  border-left: 1px solid var(--line-soft);
}
.info-tile:first-child { border-left: 0; }
.info-tile > .ic { color: var(--gold); width: 1.55em; height: 1.55em; flex: none; }
.info-body { min-width: 0; }
.info-body strong {
  display: block; font-family: var(--ff-display); font-size: 1.06rem;
  line-height: 1.25; color: var(--bone); white-space: nowrap;
}
.info-body .sub { display: block; color: var(--bone-dim); font-size: 0.8rem; }
a.info-tile { transition: background 0.25s; }
a.info-tile:hover { background: rgba(216, 165, 79, 0.06); }
a.info-tile:hover strong { color: var(--gold-soft); }
.info-delivery { gap: 10px; }
.info-delivery .info-body { margin-right: 6px; }
.info-delivery .app-ic { width: 40px; height: 40px; transition: transform 0.2s var(--ease); }
.info-delivery a:hover .app-ic { transform: translateY(-3px); }
.mobile-ig { font-family: var(--ff-caps); font-size: 0.95rem !important; letter-spacing: 0.12em; color: var(--bone-dim) !important; }

/* ─── gallery ──────────────────────────────────────── */

.gallery { background: var(--bg); }
.page-hero { padding-top: 160px; }
.nav-links a.is-current { color: var(--gold); }
.nav-links a.is-current::after { right: 0; }
.g-foot { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.g-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.g-item {
  overflow: hidden; margin: 0; position: relative;
  border: 1px solid var(--line-soft);
}
.g-item-wide { grid-column: span 2; grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.01);
  filter: saturate(0.94) contrast(1.02);
  transition: transform 0.7s var(--ease), filter 0.7s;
}
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(15, 14, 13, 0.5));
  opacity: 0.55; transition: opacity 0.5s;
}
.g-item:hover img { transform: scale(1.07); filter: saturate(1.06) contrast(1.02); }
.g-item:hover::after { opacity: 0.15; }
.g-foot { margin-top: 28px; text-align: center; }

/* ─── signature cards with photos ──────────────────── */

.sig-card { padding: 0; }
.sig-img {
  margin: 0; overflow: hidden; position: relative;
  aspect-ratio: 16 / 10;
}
.sig-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.01);
  transition: transform 0.7s var(--ease);
}
.sig-card:hover .sig-img img { transform: scale(1.07); }
.sig-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22, 22, 24, 0.9));
}
.sig-body { padding: 24px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.sig-card .sig-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  margin: 0;
  background: rgba(19, 19, 19, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sig-num { z-index: 2; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6); }

/* ─── feast / delivery band ────────────────────────── */

.feast {
  position: relative;
  background: url("../img/food/cover.jpg") center / cover no-repeat fixed;
  padding: 150px 0;
  overflow: hidden;
}
.feast::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(19, 19, 19, 0.55), rgba(15, 14, 13, 0.88)),
    rgba(15, 14, 13, 0.35);
}
.feast-inner {
  position: relative; text-align: center;
  max-width: 780px; margin: 0 auto; padding: 0 24px;
}
.feast h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6); }
.feast-sub { color: var(--bone); opacity: 0.85; margin-top: 16px; font-size: 1.05rem; }
.feast-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.feast-note { margin-top: 22px; color: var(--bone-dim); font-size: 0.82rem; }

/* ─── review quotes ────────────────────────────────── */

.quote-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 920px; margin: 26px auto 10px;
}
.quote-card {
  margin: 0; text-align: left;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 28px 30px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.quote-card:hover { transform: translateY(-4px); border-color: rgba(216, 165, 79, 0.4); }
.q-stars { color: var(--gold); letter-spacing: 5px; font-size: 0.9rem; margin-bottom: 12px; }
.quote-card blockquote {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.04rem; line-height: 1.55; color: var(--bone);
}
.quote-card figcaption {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
  color: var(--bone-dim); font-size: 0.85rem;
}
.quote-card figcaption strong { color: var(--bone); }
.quote-card figcaption em { font-style: normal; }
.q-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3); border: 1px solid var(--line);
  font-family: var(--ff-display); font-weight: 700; color: var(--gold);
}

/* ─── premium motion layer ─────────────────────────── */

.reveal { transition-delay: var(--d, 0ms); }

.menu-panel:not([hidden]) { animation: panelIn 0.45s var(--ease) both; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%;
  width: 46%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}
.btn-gold:hover::after { left: 135%; }

/* ─── v2 responsive ────────────────────────────────── */

@media (max-width: 1020px) {
  .g-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .quote-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-tile { border-left: 0; border-top: 1px solid var(--line-soft); }
  .info-tile:nth-child(-n+2) { border-top: 0; }
  .info-tile:nth-child(even) { border-left: 1px solid var(--line-soft); }
}
@media (max-width: 820px) {
  .feast { background-attachment: scroll; padding: 100px 0; }
  .g-grid { grid-auto-rows: 160px; }
  .info-tile { padding: 20px 16px; }
  .info-body strong { font-size: 0.98rem; }
}
@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .info-tile, .info-tile:nth-child(even) { border-left: 0; }
  .info-tile { border-top: 1px solid var(--line-soft); }
  .info-tile:first-child { border-top: 0; }
}

/* ─── reduced motion ───────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .scroll-cue { animation: none; }
  .fab-wa::before { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .chip:hover, .sig-card:hover, .quote-card:hover, .order-pill:hover { transform: none; }
  .menu-panel:not([hidden]) { animation: none; }
  .btn-gold::after { display: none; }
  .g-item img, .sig-img img { transition: none; }
  .feast { background-attachment: scroll; }
  .hero-watermark { animation: none; }
  .about-reel, .about-reel:hover { transform: none; }
}
