/* ============================================================
   YOUR FAVOURITES — editorial / cinematic redesign
   Inspired by dosapark.com layout language, kept on-brand red.
   ============================================================ */
:root {
  --red: #E11D2C;
  --red-deep: #B7141F;
  --red-bright: #FF2640;
  --gold: #E8B14C;
  --gold-light: #F2D27A;
  --black: #000;
  --black2: #0A0A0A;
  --black3: #111;
  --black4: #1A1A1A;
  --white: #FFF;
  --off: #F8F5F0;
  --cream: #F5F0E8;
  --cream2: #EFE8DA;
  --text: #0A0A0A;
  --muted: #888;
  --muted2: #555;
  --border: #D8D0C0;
  --bdark: #2A2A2A;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 8px 36px rgba(225, 29, 44, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--off);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
img { max-width: 100%; display: block; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--red); color: var(--white); }

/* ---------- typography ---------- */
.serif {
  font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
.script {
  font-family: "Caveat", cursive;
  font-weight: 700;
}
.display, h1, h2, h3 {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 9vw, 8.5rem); line-height: 0.92; }
h2 { font-size: clamp(2.4rem, 6vw, 5.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.wrap { width: min(1280px, 92%); margin: 0 auto; }
section.sec { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.sec-dark { background: var(--black2); color: var(--cream); }
.sec-dark h1, .sec-dark h2, .sec-dark h3 { color: var(--cream); }
.sec-cream { background: var(--cream); }

/* ---------- announcement bar ---------- */
.bar {
  background: var(--black);
  color: var(--cream);
  padding: 9px 0;
  overflow: hidden;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--bdark);
}
.bar-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll-x 36s linear infinite;
  padding-left: 56px;
}
.bar-track .dot { color: var(--red-bright); margin-right: 10px; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 30px;
  left: 0; right: 0;
  z-index: 50;
  pointer-events: none;
}
.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  box-shadow: var(--shadow);
  transition: background 0.3s var(--ease), border 0.3s var(--ease);
}
.logo-link { display: flex; align-items: center; gap: 10px; color: var(--cream); }
.logo-link img {
  height: 42px; width: 42px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid var(--cream);
  background: var(--cream);
  transition: transform 0.5s var(--ease-spring);
}
.logo-link:hover img { transform: rotate(-10deg) scale(1.06); }
/* full wordmark+chicken brand logo — overrides the circular-mascot rules */
.logo-link img.logo-img {
  width: auto;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  border: 0;
  background: transparent;
  padding: 0;
}
.logo-link:hover img.logo-img { transform: scale(1.04); }
@media (max-width: 768px) {
  .logo-link img.logo-img { height: 36px; }
}
/* Brand wordmark — red letters, white inner stroke, black outer stroke
   (matches the printed Your Favourites logo) */
.logo-text {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0;
  line-height: 1;
  color: #E11D2C;
  text-shadow:
    -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff,
    -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff,
    -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000,
    -3px 0 0 #000, 3px 0 0 #000, 0 -3px 0 #000, 0 3px 0 #000;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.logo-text span {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #E11D2C;
  /* re-state shadow because outer .logo-text shadow inherits but its size is tied to its font */
  text-shadow:
    -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff,
    -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff,
    -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000,
    -3px 0 0 #000, 3px 0 0 #000, 0 -3px 0 #000, 0 3px 0 #000;
  position: relative;
  top: -1px;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--cream);
  opacity: 0.78;
  position: relative;
  transition: opacity 0.3s var(--ease);
  letter-spacing: 0.04em;
}
.nav a:hover, .nav a.active { opacity: 1; color: var(--white); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red-bright);
  transform: translateX(-50%);
}
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost.dark {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-ghost.dark:hover {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ---------- cart icon ---------- */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  transition: background 0.3s var(--ease), transform 0.4s var(--ease-spring);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-btn:hover { background: var(--red); transform: translateY(-2px); }
.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--red-bright);
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid var(--black2);
  transform: scale(0);
  transition: transform 0.3s var(--ease-spring);
}
.cart-badge.show { transform: scale(1); }
.cart-badge.bump { animation: bump 0.5s var(--ease-spring); }
@keyframes bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.55); }
  100% { transform: scale(1); }
}

/* ============================================================
   HERO — full-bleed cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 22% 30%, rgba(225, 29, 44, 0.35), transparent 60%),
    radial-gradient(800px 500px at 85% 80%, rgba(232, 177, 76, 0.18), transparent 65%),
    linear-gradient(180deg, #0A0A0A 0%, #1A0808 45%, #0A0A0A 100%);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 22px 22px;
}
.hero-glow {
  position: absolute;
  width: 60vmin; height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 44, 0.55), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  top: -10%; left: -10%;
  animation: glow-drift 18s ease-in-out infinite alternate;
}
.hero-glow.g2 {
  top: auto; left: auto;
  bottom: -15%; right: -15%;
  background: radial-gradient(circle, rgba(232, 177, 76, 0.42), transparent 60%);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}
@keyframes glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -40px) scale(1.1); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
  align-items: end;
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
}
.hbadge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(255, 38, 64, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 38, 64, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 38, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 38, 64, 0); }
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 8vw, 8rem);
  letter-spacing: -0.01em;
}
.hero h1 .red { color: var(--red-bright); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}
.hero h1 .serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.hero-sub {
  margin: 28px 0 36px;
  max-width: 540px;
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.75);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }
.hpills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.hpill {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.78);
}
.hstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hstat .sn {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  line-height: 1;
}
.hstat .sl {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mascot {
  position: relative;
  width: min(540px, 100%);
}
.hero-mascot img {
  width: 100%;
  filter: drop-shadow(0 30px 80px rgba(225, 29, 44, 0.6));
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-22px) rotate(2deg); }
}
.spark {
  position: absolute;
  font-size: 1.6rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  animation: spin 8s linear infinite;
}
.spark.s1 { top: 10%;  left: -2%;  }
.spark.s2 { top: 5%;  right: 0%; animation-direction: reverse; }
.spark.s3 { bottom: 14%; left: 4%; animation-duration: 12s; }
.spark.s4 { bottom: 6%;  right: 6%; animation-duration: 10s; animation-direction: reverse; }
@keyframes spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: top; }
  61%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mascot { width: 70%; margin: 0 auto; }
  .nav { display: none; }
  .header { top: 16px; }
  .hstats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hstat .sn { font-size: 1.8rem; }
}

/* ============================================================
   LOCATIONS STRIP — 3 stores, right under the hero
   ============================================================ */
.locations-strip {
  background: var(--black);
  color: var(--cream);
  border-block: 1px solid var(--bdark);
  padding: 0;
}
.locations-strip .wrap {
  width: 100%;
  max-width: none;
  padding: 0;
}
.locations-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bdark);
  gap: 1px;
}
.loc-tile {
  background: var(--black);
  padding: 22px clamp(20px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.25s var(--ease);
}
.loc-tile:hover { background: var(--black2); }
.loc-tile .pin {
  font-size: 1.2rem;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(225, 29, 44, 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-tile .info { flex: 1; min-width: 0; }
.loc-tile .nm {
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  line-height: 1.1;
}
.loc-tile .ad {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.78rem;
  display: block;
  margin-top: 4px;
  line-height: 1.4;
}
.loc-tile a {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 1px solid rgba(245, 240, 232, 0.1);
  padding-left: 16px;
  transition: color 0.2s var(--ease);
}
.loc-tile a:hover { color: var(--red-bright); }
@media (max-width: 900px) {
  .locations-strip-inner { grid-template-columns: 1fr; }
  .loc-tile { padding: 18px 22px; }
  .loc-tile a {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding-top: 8px;
    margin-top: 8px;
    margin-left: auto;
    align-self: stretch;
    display: inline-block;
  }
}

/* ============================================================
   BIG MARQUEE BAND
   ============================================================ */
.band {
  background: var(--red);
  color: var(--cream);
  padding: 26px 0;
  overflow: hidden;
  border-block: 1px solid var(--black);
}
.band-track {
  display: inline-flex;
  gap: 50px;
  white-space: nowrap;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  text-transform: uppercase;
  animation: scroll-x 28s linear infinite;
  padding-left: 50px;
  letter-spacing: 0.02em;
}
.band-track .star {
  display: inline-block;
  color: var(--gold-light);
  animation: spin 6s linear infinite;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.stag {
  display: flex; flex-direction: column; gap: 22px;
  margin-bottom: 64px; max-width: 760px;
}
.stag h2 em {
  font-style: italic;
  color: var(--red);
  font-family: "Playfair Display", serif;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
}
.sec-dark .stag h2 em { color: var(--gold-light); }
.stag p { color: var(--muted2); font-size: 1.1rem; max-width: 600px; }
.sec-dark .stag p { color: rgba(245, 240, 232, 0.7); }

/* ============================================================
   ABOUT — split with image
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(135deg, #1A0808, #4A0E12);
  box-shadow: var(--shadow-lg);
}
.about-img .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(8rem, 20vw, 16rem);
  filter: drop-shadow(0 20px 50px rgba(255, 38, 64, 0.5));
  animation: bob 7s ease-in-out infinite;
}
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.5) 100%);
  z-index: 2;
}
.about-img .frame { z-index: 3; }
.about-img .meta { z-index: 3; }
.about-img .frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 12px;
  pointer-events: none;
}
.about-img .meta {
  position: absolute;
  left: 28px; bottom: 28px;
  z-index: 2;
  color: var(--cream);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-text h2 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
}
.about-text p {
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--muted2);
}
.about-cta {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 5/4; }
}

/* ============================================================
   VALUES — 4 column
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}
.sec-dark .values { background: var(--bdark); border-color: var(--bdark); }
.value {
  background: var(--off);
  padding: 50px 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.sec-dark .value { background: var(--black2); color: var(--cream); }
.value:hover { background: var(--cream); }
.sec-dark .value:hover { background: var(--black3); }
.value .num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  font-size: 1.1rem;
}
.sec-dark .value .num { color: var(--gold-light); }
.value h3 {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.value p { color: var(--muted2); font-size: 0.96rem; }
.sec-dark .value p { color: rgba(245, 240, 232, 0.7); }
@media (max-width: 1000px) {
  .values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) { .values { grid-template-columns: 1fr; } }

/* ============================================================
   LUNCH CLUB
   ============================================================ */
.lc-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lc-content h2 { color: var(--cream); }
.lc-content h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  text-transform: none;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.lc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(232, 177, 76, 0.14);
  border: 1px solid rgba(232, 177, 76, 0.4);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.lc-list {
  display: grid; gap: 12px;
  margin: 30px 0;
}
.lc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.lc-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.lc-item .t {
  font-weight: 600;
  color: var(--cream);
}
.lc-item .s {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  margin-left: auto;
}
.lc-img {
  position: relative;
  border-radius: var(--r-md);
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #1A0808, #4A0E12);
  box-shadow: var(--shadow-lg);
}
.lc-img .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(7rem, 18vw, 14rem);
  filter: drop-shadow(0 20px 50px rgba(232, 177, 76, 0.4));
  animation: bob 8s ease-in-out infinite;
}
.lc-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.lc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.6) 100%);
  z-index: 2;
}
@media (max-width: 900px) { .lc-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FEATURED MENU — horizontal scrolling row
   ============================================================ */
.menu-track {
  display: flex;
  gap: 22px;
  padding: 10px 0;
  will-change: transform;
}
.menu-track-wrap {
  position: relative;
  overflow: hidden;
}
.dish {
  flex: 0 0 320px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.sec-dark .dish { background: var(--black3); border-color: var(--bdark); color: var(--cream); }
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish-art {
  height: 200px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.dish-art::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.dish-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s var(--ease);
}
.dish:hover .dish-art img { transform: scale(1.06); }
.dish.spicy .dish-art { background: linear-gradient(135deg, #FF6A3D, var(--red)); }
.dish.veg   .dish-art { background: linear-gradient(135deg, #6FCF97, #2D9A57); }
.dish.combo .dish-art { background: linear-gradient(135deg, #B388FF, #7C4DFF); }
.dish.fish  .dish-art { background: linear-gradient(135deg, #4FC3F7, #1976D2); }
.dish.peri  .dish-art { background: linear-gradient(135deg, #FFC107, #E11D2C); }
.dish.kids  .dish-art { background: linear-gradient(135deg, #FFD3A5, #FD6585); }
.dish .name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
}
.dish .desc {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--muted2);
  flex: 1;
}
.sec-dark .dish .desc { color: rgba(245, 240, 232, 0.65); }
.dish-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px;
  gap: 10px;
}
.dish-price {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  color: var(--red);
  letter-spacing: 0.02em;
}
.sec-dark .dish-price { color: var(--gold-light); }
.dish-price small {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.add-btn {
  background: var(--text);
  color: var(--off);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease);
  flex-shrink: 0;
}
.sec-dark .add-btn { background: var(--cream); color: var(--black); }
.add-btn:hover { background: var(--red); color: white; transform: rotate(90deg); }
.add-btn:active { transform: scale(0.85); }
.dish-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 1;
}
.dish-badge.veg { background: #2D9A57; }
.dish-badge.hot { background: #FF6A3D; }

.scroll-hint {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-dark .scroll-hint { color: rgba(245, 240, 232, 0.5); }
.scroll-hint .dash { width: 40px; height: 1px; background: currentColor; }

/* ============================================================
   FULL MENU TEASE
   ============================================================ */
.menu-tease {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.mt-cat {
  background: var(--off);
  padding: 36px 30px;
  cursor: pointer;
  transition: background 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mt-cat:hover { background: var(--cream); }
.mt-cat .l {
  display: flex; flex-direction: column; gap: 4px;
}
.mt-cat .l .num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--red);
  font-size: 0.94rem;
}
.mt-cat .l .name {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.mt-cat .arrow {
  font-size: 1.4rem;
  transition: transform 0.4s var(--ease);
  color: var(--red);
}
.mt-cat:hover .arrow { transform: translateX(8px) rotate(-30deg); }
@media (max-width: 900px) { .menu-tease { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .menu-tease { grid-template-columns: 1fr; } }

/* ============================================================
   CATERING SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-block: 1px solid var(--bdark);
}
.split-l {
  padding: clamp(60px, 8vw, 100px);
  background: var(--black2);
  color: var(--cream);
  display: flex; flex-direction: column;
  justify-content: center;
}
.split-r {
  background: linear-gradient(135deg, #2A0808, #1A0808);
  position: relative;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.split-r .ph {
  font-size: clamp(10rem, 24vw, 22rem);
  filter: drop-shadow(0 30px 80px rgba(232, 177, 76, 0.4));
  animation: bob 8s ease-in-out infinite;
  position: relative; z-index: 1;
}
.split-r img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.split-r::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.45), rgba(42, 8, 8, 0.65));
  z-index: 1;
}
.split-r .frame { z-index: 2; }
.split-r .frame {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(232, 177, 76, 0.3);
  border-radius: 8px;
  pointer-events: none;
}
.split h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  text-transform: none;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.split-feats {
  margin-top: 36px;
  display: grid; gap: 16px;
}
.split-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.split-feat .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(232, 177, 76, 0.16);
  color: var(--gold-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.split-feat .t {
  font-weight: 600;
  color: var(--cream);
}
.split-feat .s {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.9rem;
  margin-top: 2px;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 100px;
  gap: 14px;
}
.gal {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: transform 0.5s var(--ease);
  cursor: pointer;
}
.gal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s var(--ease);
}
.gal:hover img { transform: scale(1.06); }
.gal::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
  opacity: 0.4;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}
.gal:hover::after { opacity: 1; }
.gal:hover::after { opacity: 1; }
.gal:hover { transform: scale(1.02); }
.gal .lab {
  position: absolute;
  left: 16px; bottom: 14px;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.gal:hover .lab { opacity: 1; transform: translateY(0); }
.gal.spicy { background: linear-gradient(135deg, #FF6A3D, var(--red)); }
.gal.veg   { background: linear-gradient(135deg, #6FCF97, #2D9A57); }
.gal.combo { background: linear-gradient(135deg, #B388FF, #7C4DFF); }
.gal.fish  { background: linear-gradient(135deg, #4FC3F7, #1976D2); }
.gal.peri  { background: linear-gradient(135deg, #FFC107, #E11D2C); }
.gal.kids  { background: linear-gradient(135deg, #FFD3A5, #FD6585); }
.gal.dark  { background: linear-gradient(135deg, #2A2A2A, #0A0A0A); color: var(--cream); }
.gal.x2 { grid-column: span 2; }
.gal.y2 { grid-row: span 2; }
.gal.x2y2 { grid-column: span 2; grid-row: span 2; font-size: 5rem; }
@media (max-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 90px; } .gal.x2y2 { grid-column: span 2; } }

/* ============================================================
   NEWS / STORIES
   ============================================================ */
.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.story {
  background: var(--black3);
  border: 1px solid var(--bdark);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.story:hover { transform: translateY(-4px); border-color: var(--gold); }
.story-art {
  height: 220px;
  background: linear-gradient(135deg, #2A0808, #1A0808);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  filter: grayscale(0.1);
  position: relative;
  overflow: hidden;
}
.story-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85);
}
.story:hover .story-art img { transform: scale(1.06); filter: brightness(1); }
.story-art .emoji-fallback {
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.story.s2 .story-art { background: linear-gradient(135deg, #1A1A1A, #0A0A0A); }
.story.s3 .story-art { background: linear-gradient(135deg, #4A0E12, #1A0808); }
.story-body { padding: 26px; flex: 1; }
.story-body .date {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.84rem;
  margin-bottom: 12px;
}
.story-body h3 {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 10px;
  text-transform: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.story-body p {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.92rem;
}
.story-body .read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 1000px) { .news { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .news { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  position: relative;
  background: var(--black);
  color: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  width: 50vmin; height: 50vmin;
  border-radius: 50%;
  filter: blur(60px);
}
.cta::before {
  background: radial-gradient(circle, rgba(225, 29, 44, 0.5), transparent 60%);
  top: -10%; left: -10%;
}
.cta::after {
  background: radial-gradient(circle, rgba(232, 177, 76, 0.32), transparent 60%);
  bottom: -10%; right: -10%;
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: var(--cream); margin-bottom: 24px; }
.cta h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.cta p {
  color: rgba(245, 240, 232, 0.7);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 36px;
  border-top: 1px solid var(--bdark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
.footer h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-weight: 600;
}
.footer p, .footer li {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.94rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a {
  color: rgba(245, 240, 232, 0.78);
  transition: color 0.3s var(--ease);
}
.footer a:hover { color: var(--gold-light); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  background: var(--cream);
}
.footer-logo strong {
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  transition: background 0.3s var(--ease), transform 0.4s var(--ease-spring);
}
.socials a:hover { background: var(--red); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.45);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE-HERO (sub pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  color: var(--cream);
  padding: 200px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 25% 0%, rgba(225, 29, 44, 0.4), transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(232, 177, 76, 0.18), transparent 60%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--cream); }
.page-hero h1 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  text-transform: none;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.page-hero p {
  margin-top: 22px;
  max-width: 540px;
  color: rgba(245, 240, 232, 0.7);
  font-size: 1.08rem;
}

/* ============================================================
   MENU PAGE — chips + grid
   ============================================================ */
.cat-bar {
  position: sticky;
  top: 90px;
  z-index: 30;
  background: var(--off);
  border-block: 1px solid var(--border);
  padding: 18px 0;
}
.cat-bar-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.chip:hover { border-color: var(--text); background: var(--cream); }
.chip.active { background: var(--text); color: var(--off); border-color: var(--text); }

.menu-section { padding: 60px 0 30px; }
.menu-section h2 {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
}
.menu-section h2 .icon { font-size: 0.7em; }
.menu-section h2 .tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--red);
  font-weight: 500;
}
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1000px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .menu-grid { grid-template-columns: 1fr; } }

.item-card {
  display: flex;
  gap: 14px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s var(--ease);
  position: relative;
}
.item-card:hover { transform: translateY(-3px); border-color: var(--text); }
.item-art {
  flex: 0 0 84px;
  width: 84px; height: 84px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  position: relative;
  overflow: hidden;
}
.item-art::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.item-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s var(--ease);
}
.item-card:hover .item-art img { transform: scale(1.08); }
.item-card.spicy .item-art { background: linear-gradient(135deg, #FF6A3D, var(--red)); }
.item-card.veg   .item-art { background: linear-gradient(135deg, #6FCF97, #2D9A57); }
.item-card.combo .item-art { background: linear-gradient(135deg, #B388FF, #7C4DFF); }
.item-card.fish  .item-art { background: linear-gradient(135deg, #4FC3F7, #1976D2); }
.item-card.peri  .item-art { background: linear-gradient(135deg, #FFC107, #E11D2C); }
.item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.item-info .name { font-weight: 700; font-size: 1rem; color: var(--text); }
.item-info .desc { font-size: 0.84rem; color: var(--muted2); margin-top: 4px; flex: 1; }
.item-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 8px; }
.item-price { font-family: "Anton", sans-serif; font-size: 1.4rem; color: var(--red); line-height: 1; }
.item-price small { font-size: 0.6rem; color: var(--muted); display: block; letter-spacing: 0.06em; text-transform: uppercase; font-family: "Inter", sans-serif; font-weight: 500; }
.item-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--red);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.item-badge.veg { background: #2D9A57; }
.item-badge.hot { background: #FF6A3D; }
.btn-mini {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
}
.btn-mini:hover { background: var(--gold-light); }

/* ============================================================
   LOCATIONS strip (right under hero)
   ============================================================ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.loc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(225, 29, 44, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.loc-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.loc-card:hover::before { opacity: 1; }
.loc-num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--red);
  font-size: 0.96rem;
  margin-bottom: 6px;
}
.loc-card h3 {
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.loc-addr {
  color: var(--muted2);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.loc-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
  padding: 8px 14px;
  background: rgba(225, 29, 44, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.loc-phone:hover { background: var(--red); color: white; }
.loc-dir {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease), gap 0.3s var(--ease);
}
.loc-dir:hover { opacity: 1; color: var(--red); }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; gap: 14px; } .loc-card { padding: 24px 22px; } }

/* Footer reuses .loc-card class — keep it transparent + cream-on-dark */
.footer .loc-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}
.footer .loc-card::before { display: none; }
.footer .loc-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
.footer .loc-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-weight: 600;
}
.footer .loc-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.footer .loc-card ul li {
  color: rgba(245, 240, 232, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer .loc-card ul li a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color 0.3s var(--ease);
}
.footer .loc-card ul li a:hover { color: var(--white); }

/* Cheese options on burger cards */
/* ============================================================
   ITEM CUSTOMISATION MODAL (Uber-Eats style)
   ============================================================ */
.modal-back.cust {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.66);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-back.cust.show { opacity: 1; pointer-events: auto; }
.cust-modal {
  position: relative;
  background: var(--off);
  width: min(560px, 100%);
  max-height: 92vh;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  transition: transform 0.4s var(--ease-spring);
  overflow: hidden;
}
.modal-back.cust.show .cust-modal { transform: translateY(0); }
@media (min-width: 640px) {
  .modal-back.cust { align-items: center; }
  .cust-modal { border-radius: var(--r-lg); }
}
.cust-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.cust-head {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.cust-head img {
  width: 88px; height: 88px;
  border-radius: var(--r-md);
  object-fit: cover;
  flex-shrink: 0;
}
.cust-head-text h2 {
  font-size: 1.4rem;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.cust-head-text p {
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--muted2);
}
.cust-body {
  overflow-y: auto;
  padding: 6px 22px 16px;
  flex: 1;
}
.cust-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.cust-group:last-child { border-bottom: 0; }
.cust-group.cust-hidden { display: none; }
.cust-group.invalid {
  outline: 2px solid var(--red);
  outline-offset: 8px;
  border-radius: var(--r-sm);
}
.cust-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.cust-group-name {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
}
.cust-req {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(225, 29, 44, 0.1);
  padding: 4px 9px;
  border-radius: 999px;
}
.cust-opt-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cust-options { display: flex; flex-direction: column; gap: 2px; }
.cust-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 10px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.cust-opt:hover { background: var(--cream); }
.cust-opt input {
  width: 20px; height: 20px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.cust-opt input:disabled { cursor: not-allowed; }
.cust-opt-name { flex: 1; font-size: 0.95rem; }
.cust-opt input:disabled ~ .cust-opt-name { opacity: 0.4; }
.cust-opt-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
}
.cust-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  background: var(--off);
}
.cust-foot .btn { flex: 1; justify-content: center; }
.cust-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
  flex-shrink: 0;
}
.cust-qty button {
  width: 38px; height: 44px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}
.cust-qty span {
  min-width: 30px;
  text-align: center;
  font-weight: 800;
}

/* chosen modifiers shown in cart / checkout / order rows */
.cart-mods {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
.cart-mods li {
  font-size: 0.8rem;
  color: var(--muted2);
  line-height: 1.5;
}
.cart-mods li::before { content: "· "; color: var(--red); }

.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  background: var(--red);
  color: white;
  border-radius: 999px;
  padding: 16px 22px;
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  transition: transform 0.5s var(--ease-spring), background 0.3s var(--ease);
}
.fab.show { transform: translateY(0); }
.fab:hover { background: var(--red-bright); }
.fab .count {
  background: white;
  color: var(--red);
  border-radius: 999px;
  min-width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  padding: 0 8px;
}

/* toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--black);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  z-index: 100;
  transition: transform 0.45s var(--ease-spring);
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
}
.toast.show { transform: translate(-50%, 0); }
.toast .check {
  background: var(--red);
  color: white;
  width: 22px; height: 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.74rem;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding: 60px 0 100px; background: var(--off); }
.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) { .cart-grid { grid-template-columns: 1fr; } }

.cart-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row .art {
  width: 80px; height: 80px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  position: relative;
  overflow: hidden;
}
.cart-row .art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-row .info .name { font-weight: 700; }
.cart-row .info .desc { font-size: 0.84rem; color: var(--muted2); }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--off);
}
.qty button {
  width: 32px; height: 32px;
  font-weight: 700;
  transition: background 0.2s var(--ease);
}
.qty button:hover { background: var(--cream); }
.qty span {
  min-width: 28px; text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
}
.cart-row .price { font-family: "Anton", sans-serif; font-size: 1.4rem; color: var(--red); }
.cart-row .remove { color: var(--muted); font-size: 0.78rem; cursor: pointer; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s var(--ease); }
.cart-row .remove:hover { color: var(--red); }
.cart-empty {
  text-align: center;
  padding: 80px 30px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
}
.cart-empty .emoji { font-size: 4rem; margin-bottom: 16px; }

.summary {
  background: var(--black);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: 30px;
  position: sticky;
  top: 110px;
}
.summary h3 { color: var(--cream); margin-bottom: 20px; font-size: 1.4rem; }
.summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  color: rgba(245, 240, 232, 0.74);
  font-size: 0.94rem;
}
.summary-row.total {
  border-top: 1px solid rgba(245, 240, 232, 0.16);
  padding-top: 16px;
  margin-top: 8px;
  font-family: "Anton", sans-serif;
  font-size: 1.7rem;
  color: white;
}
.summary-row.total .v { color: var(--gold-light); }
.summary .btn { margin-top: 18px; }
.delivery-note {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 18px;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted2);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-sm);
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(225, 29, 44, 0.12);
}
.field textarea { min-height: 90px; resize: vertical; }
.section-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px;
}
.section-card h3 {
  font-size: 1.4rem;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-card h3 .num {
  width: 30px; height: 30px;
  background: var(--text);
  color: var(--cream);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.84rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.pay-method {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  background: var(--off);
}
.pay-method .stripe-mark {
  background: #635BFF;
  color: white;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 6px;
}
.pay-method .desc { flex: 1; font-size: 0.9rem; color: var(--muted2); }

.modal-back {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.7);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-back.show { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--off);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  width: min(520px, 100%);
  padding: 40px 36px;
  text-align: center;
  transform: scale(0.85);
  transition: transform 0.4s var(--ease-spring);
}
.modal-back.show .modal { transform: scale(1); }
.modal .check-big {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
}
.modal h2 { font-size: 2rem; margin-bottom: 12px; }
.modal p { color: var(--muted2); margin-bottom: 22px; line-height: 1.6; }

/* ============================================================
   CUSTOM CURSOR (desktop only)
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s var(--ease);
  opacity: 0;
}
.cursor.show { opacity: 1; }
.cursor.big { width: 60px; height: 60px; background: var(--gold-light); }
@media (max-width: 1024px) { .cursor { display: none; } }

/* ============================================================
   REVEAL UTILITIES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.reveal-line .inner {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1s var(--ease);
  will-change: transform;
}
.reveal-line.in .inner { transform: translateY(0); }

/* small util */
.center { text-align: center; }
.between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.muted { color: var(--muted); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }

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