/* ============================================================
   THE CHEF SPOT — styles.css
   Archetype: 02 Editorial Dark Warm
   ============================================================ */

/* === TOKENS === */
:root {
  --bg:        #0E0B09;
  --bg-2:      #15110E;
  --bg-3:      #1E1813;
  --bg-4:      #251C15;
  --cream:     #F2EBDA;
  --cream-2:   #DDD2BC;
  --cream-3:   #8B7E68;
  --red:       #C5301E;
  --red-2:     #A82516;
  --gold:      #C49A5B;
  --gold-2:    #E8B86D;
  --gold-dark: #8A6830;
  --line:      rgba(242,235,218,.1);
  --line-2:    rgba(242,235,218,.06);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-mid:  cubic-bezier(0.45, 0, 0.55, 1);

  --nav-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* defensive: reveal[data-split] must never be invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* === SPLASH === */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
  pointer-events: none;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}
.splash.is-out {
  animation: splashHide .7s var(--ease-in) forwards;
}
@keyframes splashHide {
  0%   { opacity: 1; clip-path: inset(0 0 0 0); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); }
}
.splash-inner {
  text-align: center;
  animation: splashReveal .6s var(--ease-out) .2s both;
}
@keyframes splashReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.splash-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; line-height: 1;
}
.splash-the  { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .3em; color: var(--cream-3); text-transform: uppercase; }
.splash-chef { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; color: var(--cream); letter-spacing: .05em; }
.splash-spot { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; color: var(--red); letter-spacing: .05em; }
.splash-bar {
  width: 0; height: 2px; background: var(--gold);
  margin: 1rem auto 0;
  animation: barGrow .8s var(--ease-out) .5s forwards;
}
@keyframes barGrow { to { width: 120px; } }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .08em;
  color: var(--cream);
  transition: color .25s;
}
.nav-logo:hover .nav-logo-text { color: var(--gold); }
.nav-links {
  display: flex; gap: 2.5rem;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
}
.nav-links a {
  color: var(--cream-2); transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 1.2rem;
  background: var(--red); color: #fff;
  border-radius: 4px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--red-2); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.nav-drawer.is-open { transform: none; }
.nav-drawer ul { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: .06em; color: var(--cream);
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--gold); }
.drawer-cta {
  display: block; padding: .9rem 2.5rem;
  background: var(--red); color: #fff !important;
  border-radius: 4px; font-size: 1rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important; letter-spacing: .04em !important;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 4px;
  font-size: .9rem; font-weight: 600; letter-spacing: .04em;
  transition: transform .2s var(--ease-out), background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red); color: #fff;
}
.btn-primary:hover { background: var(--red-2); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--cream-2); }
.btn-gold {
  background: var(--gold); color: var(--bg);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-2); }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }

/* === REVEAL ANIMATIONS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero.is-ready .hero-img { transform: scale(1); }
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,11,9,.3) 0%,
    rgba(14,11,9,.5) 50%,
    rgba(14,11,9,.95) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(197,48,30,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(196,154,91,.15) 0%, transparent 60%);
  animation: meshPulse 12s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  0%   { opacity: .7; }
  100% { opacity: 1; }
}
.hero-inner {
  position: relative; z-index: 3;
  padding: calc(var(--nav-h) + 4rem) clamp(1.25rem, 6vw, 5rem) clamp(3rem, 8vh, 6rem);
  max-width: 900px;
}
.hero-kicker {
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-2); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .7s var(--ease-out) .8s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: .95; letter-spacing: .02em;
  color: var(--cream);
  text-wrap: balance; max-width: 14ch;
}
.hero-line {
  display: block;
  opacity: 0; transform: translateY(40px);
}
.hero-line:nth-child(1) { animation: fadeUp .8s var(--ease-out) 1.0s forwards; }
.hero-line:nth-child(2) { animation: fadeUp .8s var(--ease-out) 1.15s forwards; }
.hero-line:nth-child(3) { animation: fadeUp .8s var(--ease-out) 1.3s forwards; }
.hero-line--accent em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--cream-2); line-height: 1.6; max-width: 46ch;
  margin-top: 1.2rem;
  opacity: 0; animation: fadeUp .7s var(--ease-out) 1.5s forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 2rem;
  opacity: 0; animation: fadeUp .7s var(--ease-out) 1.65s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; right: clamp(1.25rem, 4vw, 3rem);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cream-3);
  opacity: 0; animation: fadeUp .6s var(--ease-out) 2s forwards;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50%       { transform: scaleY(.7); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* === MARQUEE === */
.marquee-section {
  background: var(--red);
  overflow: hidden;
  padding: .7rem 0;
  border-top: 1px solid var(--red-2);
  border-bottom: 1px solid var(--red-2);
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .08em; color: #fff;
}
.marquee-dot { color: rgba(255,255,255,.6); font-size: .7rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === SECTION KICKER === */
.section-kicker {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}

/* === ABOUT === */
.about {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.25rem, 6vw, 5rem);
  background: var(--bg-2);
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: .95; letter-spacing: .02em; color: var(--cream);
  margin-bottom: 1.5rem;
}
.about-title em { color: var(--gold); font-style: italic; font-family: 'Playfair Display', serif; }
.about-body {
  color: var(--cream-2); line-height: 1.75; max-width: 44ch; margin-bottom: 2rem;
}
.about-img-wrap {
  position: relative; border-radius: 6px; overflow: hidden;
}
.about-img {
  width: 100%; height: clamp(350px, 50vw, 520px);
  object-fit: cover;
  transition: transform .6s var(--ease-out);
  filter: saturate(1.05) contrast(1.02);
}
.about-img-wrap:hover .about-img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--red); color: #fff;
  padding: .75rem 1.25rem; border-radius: 4px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; line-height: 1; }
.badge-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: .15rem; }

/* === MENU SECTION === */
.menu-section {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg);
}
.menu-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 6vw, 5rem);
}
.menu-header {
  text-align: center; margin-bottom: 4rem;
}
.menu-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: .03em; color: var(--cream);
}
.menu-title em { color: var(--gold); font-style: italic; font-family: 'Playfair Display', serif; }

/* Category */
.menu-category {
  margin-bottom: 4.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}
.menu-category:last-child { border-bottom: none; margin-bottom: 0; }
.cat-title {
  display: flex; align-items: center; gap: .75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .08em; color: var(--cream-2);
  margin-bottom: 1.5rem;
}
.cat-icon { font-size: 1.4rem; }
.cat-note {
  font-size: .85rem; color: var(--cream-3); line-height: 1.7;
  margin-bottom: 2rem; max-width: 70ch;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: var(--bg-3); border-radius: 0 4px 4px 0;
}

/* Menu grid cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.menu-card {
  background: var(--bg-3); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column;
  height: 340px;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.menu-card-body {
  flex: 1; display: flex; flex-direction: column; justify-content: space-between;
}
.menu-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}
.menu-card--wide { grid-column: span 2; }
.menu-card-img-wrap { overflow: hidden; height: 200px; flex-shrink: 0; }
.menu-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out), filter .4s;
  filter: saturate(1.0);
}
.menu-card:hover .menu-card-img { transform: scale(1.08); filter: saturate(1.15); }
.menu-card-body { padding: 1.25rem; }
.menu-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .5rem;
}
.menu-card-top h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: .04em; color: var(--cream);
}
.menu-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: .04em; color: var(--gold);
}
.menu-card-body p { font-size: .82rem; color: var(--cream-3); line-height: 1.6; }

/* Burrito grid */
.burrito-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  isolation: isolate;
}
.burrito-card {
  background: var(--bg-3); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column;
  height: 340px;
  cursor: pointer;
  transition: border-color .3s;
}
.burrito-card:hover { border-color: var(--red); }
.burrito-card-img-wrap { overflow: hidden; height: 180px; }
.burrito-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.burrito-card:hover .burrito-card-img { transform: scale(1.08); }
.burrito-info {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem .5rem;
}
.burrito-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .04em; color: var(--cream);
}
.burrito-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; color: var(--gold);
}
.burrito-cta {
  padding: .5rem 1.25rem 1rem;
  font-size: .78rem; color: var(--red);
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  transition: color .2s;
}
.burrito-card:hover .burrito-cta { color: var(--gold); }

/* Hot dog card */
.hotdog-card {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem;
  background: var(--bg-4); border-radius: 8px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hotdog-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .06em; color: var(--cream);
  display: block; margin-bottom: .4rem;
}
.hotdog-text p { font-size: .85rem; color: var(--cream-3); max-width: 50ch; }
.hotdog-price-wrap { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.hotdog-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--gold);
}

/* Drinks — same structure as menu-card */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.drink-card {
  background: var(--bg-3); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column;
  height: 340px;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.drink-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.drink-img-wrap { overflow: hidden; height: 200px; flex-shrink: 0; }
.drink-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.drink-card:hover .drink-img { transform: scale(1.08); }
.drink-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.drink-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .5rem;
}
.drink-top h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: .04em; color: var(--cream);
}
.drink-body p { font-size: .82rem; color: var(--cream-3); line-height: 1.6; }

/* === CTA BAND === */
.cta-band {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.25rem, 6vw, 5rem);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(197,48,30,.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(196,154,91,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 3rem;
  position: relative; flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95; color: var(--cream);
}
.cta-band-text h2 em { color: var(--gold); font-style: italic; font-family: 'Playfair Display', serif; }
.cta-band-text p {
  color: var(--cream-2); margin-top: .75rem; max-width: 42ch; font-size: .95rem;
}
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.cta-phone { font-size: .85rem; color: var(--cream-3); }
.cta-phone a { color: var(--gold); font-weight: 600; }
.cta-phone a:hover { text-decoration: underline; }

/* === LOCATION === */
.location {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.25rem, 6vw, 5rem);
  background: var(--bg);
}
.location-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem;
  align-items: start;
}
.location-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95; color: var(--cream);
  margin-bottom: 1.5rem;
}
.location-text h2 em { color: var(--gold); font-style: italic; font-family: 'Playfair Display', serif; }
.location-address {
  font-size: 1.05rem; color: var(--cream-2); line-height: 1.8; margin-bottom: 1rem;
}
.location-hours { font-size: .9rem; color: var(--cream-3); line-height: 1.7; margin-bottom: 2rem; }
.location-hours strong { color: var(--cream-2); }
.location-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Map iframe */
.map-iframe {
  width: 100%; aspect-ratio: 4/3;
  border: none; border-radius: 12px;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(.8) brightness(.85);
}

/* === INSTAGRAM === */
.ig-section {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.25rem, 6vw, 5rem);
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--line);
}
.ig-inner { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.ig-handle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .06em; color: var(--cream);
}
.ig-tagline { color: var(--cream-2); font-size: .95rem; }

/* === FOOTER === */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vh, 4.5rem) clamp(1.25rem, 6vw, 5rem) 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .08em; color: var(--cream);
  display: block; margin-bottom: .5rem;
}
.footer-tagline { font-size: .82rem; color: var(--cream-3); }
.footer-nav {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.footer-nav a {
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-3); transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact {
  display: flex; flex-direction: column; align-items: flex-end; gap: .5rem;
}
.footer-wa {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 600; color: var(--cream-2);
  transition: color .2s;
}
.footer-wa:hover { color: var(--gold); }
.footer-contact p { font-size: .78rem; color: var(--cream-3); text-align: right; }
.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .75rem; color: var(--cream-3); }

/* === FLOATING WA === */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  color: #fff;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  animation: waBounce 3s ease-in-out 3s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.4);
  animation: none;
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .menu-card--wide { grid-column: span 1; }
  .menu-grid, .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .burrito-grid { grid-template-columns: repeat(2, 1fr); }
  .location-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { align-items: center; }
  .footer-contact p { text-align: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { align-items: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .menu-grid, .drinks-grid, .burrito-grid { grid-template-columns: 1fr; }
  .hotdog-card { flex-direction: column; text-align: center; }
  .hotdog-price-wrap { justify-content: center; }
}
