/* =========================================================
   Kitchen 738 — Design System
   Built from Kitchen 738 Brand Guidelines (Working Draft)
   Palette: Deep Charcoal / Soft Black / Warm Gold / Ivory /
            Muted Stone / Chili Burgundy
   Type: Serif display (Georgia) + Sans body (Arial)
   ========================================================= */

:root {
  --deep-charcoal: #17191b;
  --soft-black: #0f1011;
  --warm-gold: #d4ad63;
  --warm-gold-soft: #e6c98a;
  --ivory: #f2efe8;
  --muted-stone: #cbbda3;
  --chili-burgundy: #7b2d2f;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;

  --max-width: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep-charcoal);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  color: var(--ivory);
}

p { margin: 0 0 1em; color: var(--muted-stone); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--warm-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--warm-gold);
  display: inline-block;
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--warm-gold);
  margin: 1.25rem auto;
  border: none;
}
.divider.left { margin-left: 0; }

section { position: relative; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  padding: 1em 2.2em;
  border: 1px solid var(--warm-gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  background: transparent;
  color: var(--warm-gold);
}
.btn:hover { background: var(--warm-gold); color: var(--soft-black); }

.btn-solid {
  background: var(--warm-gold);
  color: var(--soft-black);
}
.btn-solid:hover {
  background: var(--warm-gold-soft);
  border-color: var(--warm-gold-soft);
  color: var(--soft-black);
}

.btn-ghost {
  border-color: rgba(242, 239, 232, 0.35);
  color: var(--ivory);
}
.btn-ghost:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--soft-black);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 0 1.1rem;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow .4s var(--ease);
  background: linear-gradient(to bottom, rgba(15,16,17,0.85), rgba(15,16,17,0));
}
.site-header .announce-bar { margin-bottom: 1.1rem; }
.site-header.scrolled .announce-bar { margin-bottom: 0.65rem; }
.site-header.scrolled {
  background: rgba(15, 16, 17, 0.92);
  backdrop-filter: blur(10px);
  padding: 0 0 0.65rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(212,173,99,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--ivory);
}
.brand-mark .sunburst { width: 30px; height: 30px; color: var(--warm-gold); }
.brand-mark strong { color: var(--warm-gold); font-weight: 700; }

.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-stone);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--warm-gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(212,173,99,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(123,45,47,0.16), transparent 55%),
    linear-gradient(160deg, var(--soft-black) 0%, var(--deep-charcoal) 55%, #1c1e20 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -6%;
  background: url('/images/interior1.jpg') center 40% / cover no-repeat;
  animation: kenburns 26s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,16,17,0.9) 0%, rgba(23,25,27,0.8) 55%, rgba(28,30,32,0.9) 100%);
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.12) translate(1.5%, -1.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(23,25,27,0.35), rgba(15,16,17,0.55)),
    repeating-linear-gradient(45deg, rgba(212,173,99,0.02) 0px, rgba(212,173,99,0.02) 2px, transparent 2px, transparent 60px);
  pointer-events: none;
}
.hero-sun {
  position: absolute;
  top: 50%; left: 50%;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  transform: translate(-50%, -50%);
  opacity: 0.06;
  animation: spin 90s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  max-width: 880px;
  padding: 0 var(--gutter);
}
.hero-est {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted-stone);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 0.98;
  margin-bottom: 0.3em;
}
.hero-title .accent { color: var(--warm-gold); display: block; }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--muted-stone);
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.hero-meta {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-stone);
}
.hero-meta span { color: var(--warm-gold); margin-right: 0.4em; }

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px; height: 36px;
  border: 1px solid rgba(242,239,232,0.4);
  border-radius: 20px;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--warm-gold);
  border-radius: 50%;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 6px; }
}

/* ---------- Section shells ---------- */
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-dark { background: var(--deep-charcoal); }
.section-black { background: var(--soft-black); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }

/* ---------- Story / About ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, #2a2622, #14100f 60%, #1c1a17);
  border: 1px solid rgba(212,173,99,0.25);
}
.story-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-media .frame-glow {
  position: absolute; inset: -1px;
  background: radial-gradient(circle at 30% 20%, rgba(212,173,99,0.25), transparent 60%);
}
.story-media .elevation-badge {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  background: rgba(15,16,17,0.75);
  border: 1px solid var(--warm-gold);
  padding: 0.9rem 1.3rem;
  backdrop-filter: blur(6px);
}
.elevation-badge .num { font-family: var(--font-display); color: var(--warm-gold); font-size: 1.9rem; line-height: 1; }
.elevation-badge .label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-stone); }

.story-copy .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ivory);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  border-top: 1px solid rgba(212,173,99,0.35);
  padding-top: 1rem;
}
.pillar h4 { font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 0.35rem; }
.pillar p { font-size: 0.88rem; margin: 0; }

/* ---------- Personality chips ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
.chip {
  border: 1px solid rgba(212,173,99,0.4);
  color: var(--warm-gold);
  padding: 0.55rem 1.3rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ---------- Menu Highlights ---------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.menu-tab {
  background: none;
  border: 1px solid rgba(242,239,232,0.18);
  color: var(--muted-stone);
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.menu-tab:hover { color: var(--ivory); border-color: var(--warm-gold); }
.menu-tab.active { background: var(--warm-gold); color: var(--soft-black); border-color: var(--warm-gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadein .5s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.5rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(242,239,232,0.08);
}
.menu-item .mi-name {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.08rem;
}
.menu-item .mi-desc { display: block; font-size: 0.82rem; color: var(--muted-stone); margin-top: 0.25rem; font-family: var(--font-body); }
.menu-item .mi-price {
  font-family: var(--font-display);
  color: var(--warm-gold);
  white-space: nowrap;
  font-size: 1.05rem;
}
.menu-item.tag .mi-name::after {
  content: "Must Try";
  margin-left: 0.6em;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chili-burgundy);
  border: 1px solid var(--chili-burgundy);
  padding: 0.15em 0.5em;
  border-radius: 999px;
  vertical-align: middle;
}
.menu-note {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted-stone);
  margin-top: 2.5rem;
}
.menu-cta { text-align: center; margin-top: 3rem; }

/* ---------- Happy Hour banner ---------- */
.happy-hour {
  background: linear-gradient(135deg, var(--chili-burgundy), #5c2224);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
  border-top: 1px solid rgba(212,173,99,0.3);
  border-bottom: 1px solid rgba(212,173,99,0.3);
}
.happy-hour h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.happy-hour p { color: var(--ivory); opacity: 0.85; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
}
.gallery-grid .g-cell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, #262220, #14100e);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(212,173,99,0.12);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: transform 0.5s var(--ease);
}
.gallery-grid .g-cell:hover { transform: translateY(-4px); }
.gallery-grid .g-cell.tall { grid-row: span 2; }
.gallery-grid .g-cell.wide { grid-column: span 2; }
.g-cell .g-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-gold-soft);
}
.g-cell::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(15,16,17,0.85) 0%, rgba(15,16,17,0.15) 45%, transparent 70%),
    radial-gradient(circle at 70% 20%, rgba(212,173,99,0.10), transparent 60%);
}
.g-cell .g-label { position: relative; z-index: 1; }

/* ---------- Testimonials ---------- */
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.quote-card {
  border: 1px solid rgba(212,173,99,0.18);
  padding: 2rem;
  background: rgba(255,255,255,0.015);
}
.quote-card .stars { color: var(--warm-gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.quote-card p { font-family: var(--font-display); font-style: italic; color: var(--ivory); }
.quote-card .who { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-stone); }

/* ---------- Info / Location ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.info-card { text-align: center; padding: 2rem 1.2rem; border: 1px solid rgba(212,173,99,0.15); }
.info-card .icon { width: 40px; height: 40px; margin: 0 auto 1.2rem; color: var(--warm-gold); }
.info-card h4 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; }
.info-card p { font-size: 0.9rem; }

/* ---------- Reservation ---------- */
.reserve-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.form-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,173,99,0.22);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-stone);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(242,239,232,0.18);
  color: var(--ivory);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--warm-gold);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-msg { margin-top: 1rem; font-size: 0.85rem; }
.form-msg.success { color: var(--warm-gold-soft); }
.form-msg.error { color: #e07a7a; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours-table td { padding: 0.6rem 0; border-bottom: 1px solid rgba(242,239,232,0.08); font-size: 0.92rem; }
.hours-table td:first-child { color: var(--ivory); }
.hours-table td:last-child { text-align: right; color: var(--warm-gold); }

.map-frame {
  margin-top: 2rem;
  aspect-ratio: 16/10;
  border: 1px solid rgba(212,173,99,0.25);
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--soft-black);
  border-top: 1px solid rgba(212,173,99,0.15);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h5 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.65rem; font-size: 0.88rem; color: var(--muted-stone); }
.footer-grid a:hover { color: var(--ivory); }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(212,173,99,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(242,239,232,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted-stone);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--soft-black), var(--deep-charcoal));
  border-bottom: 1px solid rgba(212,173,99,0.15);
  padding-top: 6rem;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.breadcrumb { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-stone); }
.breadcrumb .sep { margin: 0 0.6em; color: var(--warm-gold); }

/* ---------- Full menu page ---------- */
.full-menu-nav {
  position: sticky; top: 104px;
  z-index: 50;
  background: rgba(15,16,17,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,173,99,0.15);
  padding: 0.9rem 0;
}
.full-menu-nav .container { display: flex; gap: 1.8rem; overflow-x: auto; }
.full-menu-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-stone);
  white-space: nowrap;
}
.full-menu-nav a:hover, .full-menu-nav a.active { color: var(--warm-gold); }

.menu-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.menu-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212,173,99,0.5), transparent);
}
.callout {
  border: 1px solid var(--warm-gold);
  background: rgba(212,173,99,0.06);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.callout h4 { color: var(--warm-gold); font-size: 0.95rem; margin-bottom: 0.4rem; }
.callout p { margin: 0; font-size: 0.88rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .story-grid, .reserve-wrap { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .quote-row { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .hero-meta { flex-direction: column; gap: 0.6rem; }
}

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

/* ---------- Marquee ribbon ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(212,173,99,0.3);
  border-bottom: 1px solid rgba(212,173,99,0.3);
  background: var(--soft-black);
  padding: 0.9rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin: 0 1.4rem;
}
.marquee .dot { color: var(--chili-burgundy); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Chef's Spotlight ---------- */
.spotlight {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: url('/images/birria-tacos.jpg') center / cover no-repeat fixed;
}
@media (max-width: 980px) { .spotlight { background-attachment: scroll; } }
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,16,17,0.94) 30%, rgba(15,16,17,0.55) 65%, rgba(15,16,17,0.3));
}
.spotlight-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.spotlight h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
}
.spotlight .price-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--warm-gold);
  border: 1px solid var(--warm-gold);
  padding: 0.35em 0.9em;
  margin: 1.2rem 0 1.8rem;
}

/* ---------- Stats counters ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--warm-gold);
  line-height: 1;
}
.stat .unit { font-size: 0.55em; color: var(--warm-gold-soft); }
.stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-stone);
  margin-top: 0.6rem;
}
@media (max-width: 640px) { .stats-row { grid-template-columns: 1fr; } }

/* ---------- AI Concierge (Sol) ---------- */
.chat-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--warm-gold);
  background: var(--soft-black);
  color: var(--warm-gold);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(212,173,99,0.4);
  animation: fabpulse 3s infinite;
  transition: transform 0.3s var(--ease);
}
.chat-fab:hover { transform: scale(1.08); }
@keyframes fabpulse {
  0% { box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(212,173,99,0.35); }
  70% { box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 14px rgba(212,173,99,0); }
  100% { box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(212,173,99,0); }
}
@media (max-width: 980px) {
  .chat-fab { bottom: calc(52px + 1rem); }
}
.chat-panel {
  position: fixed;
  right: 1.4rem;
  bottom: calc(1.4rem + 70px);
  z-index: 810;
  width: min(360px, calc(100vw - 2rem));
  max-height: min(520px, 70vh);
  display: none;
  flex-direction: column;
  background: var(--deep-charcoal);
  border: 1px solid rgba(212,173,99,0.4);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}
.chat-panel.open { display: flex; }
@media (max-width: 980px) {
  .chat-panel { bottom: calc(52px + 1rem + 70px); }
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  background: var(--soft-black);
  border-bottom: 1px solid rgba(212,173,99,0.25);
}
.chat-head .sol-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--warm-gold-soft), var(--warm-gold) 60%, #9c7c40);
  display: flex; align-items: center; justify-content: center;
  color: var(--soft-black);
  font-family: var(--font-display);
  font-weight: bold;
}
.chat-head .t { font-family: var(--font-display); color: var(--ivory); font-size: 1rem; line-height: 1.15; }
.chat-head .s { font-size: 0.68rem; color: var(--muted-stone); letter-spacing: 0.08em; text-transform: uppercase; }
.chat-head .chat-close {
  margin-left: auto;
  background: none; border: none;
  color: var(--muted-stone);
  font-size: 1.3rem;
  cursor: pointer;
}
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 220px;
}
.chat-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.chat-msg.bot {
  align-self: flex-start;
  background: rgba(212,173,99,0.12);
  border: 1px solid rgba(212,173,99,0.25);
  color: var(--ivory);
  border-bottom-left-radius: 2px;
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--chili-burgundy);
  color: var(--ivory);
  border-bottom-right-radius: 2px;
}
.chat-msg.typing { color: var(--muted-stone); font-style: italic; }
.chat-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.6rem;
}
.chat-suggest button {
  background: none;
  border: 1px solid rgba(212,173,99,0.35);
  color: var(--warm-gold);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  cursor: pointer;
}
.chat-suggest button:hover { background: var(--warm-gold); color: var(--soft-black); }
.chat-input-row {
  display: flex;
  border-top: 1px solid rgba(212,173,99,0.25);
}
.chat-input-row input {
  flex: 1;
  background: var(--soft-black);
  border: none;
  color: var(--ivory);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
}
.chat-input-row input:focus { outline: none; }
.chat-input-row button {
  background: var(--warm-gold);
  border: none;
  color: var(--soft-black);
  padding: 0 1.2rem;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--chili-burgundy);
  color: var(--ivory);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 510;
}
.announce-bar a { color: var(--warm-gold-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Dietary badges ---------- */
.diet {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--muted-stone);
  color: var(--muted-stone);
  border-radius: 999px;
  padding: 0.1em 0.55em;
  margin-left: 0.5em;
  vertical-align: middle;
}
.diet.v { border-color: #7d9b6a; color: #9cbb87; }
.diet.gf { border-color: var(--warm-gold); color: var(--warm-gold); }
.diet.spicy { border-color: var(--chili-burgundy); color: #c96b6d; }
.diet-legend {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted-stone);
  margin: 0 0 2.5rem;
}

/* ---------- Mobile action bar ---------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 520;
  background: rgba(15,16,17,0.97);
  border-top: 1px solid rgba(212,173,99,0.35);
  backdrop-filter: blur(10px);
}
.mobile-action-bar a {
  flex: 1;
  text-align: center;
  padding: 0.95rem 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  border-left: 1px solid rgba(242,239,232,0.08);
}
.mobile-action-bar a:first-child { border-left: none; }
.mobile-action-bar a.primary { background: var(--warm-gold); color: var(--soft-black); font-weight: bold; }
@media (max-width: 980px) {
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 52px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15,16,17,0.98);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory);
}
.mobile-drawer .close-drawer {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--ivory);
  font-size: 1.8rem;
  cursor: pointer;
}
