﻿:root {
  --bg: #121314;
  --bg-soft: #1a1d20;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --ink: #ffffff;
  --ink-soft: #d6d6d6;
  --main: #faa32c;
  --main-soft: #fbc268;
  --main-deep: #bb6a00;
  --border: rgba(250, 163, 44, 0.3);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Oswald", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(250, 163, 44, 0.12), transparent 32%),
    radial-gradient(circle at 85% 0%, rgba(250, 163, 44, 0.08), transparent 35%),
    var(--bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header .container {
  width: min(1460px, 98%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(18, 19, 20, 0.9),
    rgba(18, 19, 20, 0.62)
  );
  border-bottom: 1px solid rgba(250, 163, 44, 0.18);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header-shell {
  position: relative;
  transition: padding 0.35s ease;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-right: 300px;
  position: relative;
  transition: min-height 0.35s ease, gap 0.35s ease;
}

.site-title {
  font-family: "Oswald", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-menu a {
  display: inline-block;
  font-weight: 800;
  font-size: 0.98rem;
  color: #f2f2f2;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}

.primary-menu a:hover {
  color: var(--main);
}

.primary-menu a.is-active {
  color: var(--main);
}

.nav-left {
  margin-right: 24px;
  padding-right: 0;
  flex: 0 0 auto;
  min-width: auto;
}

.nav-right {
  margin-left: 24px;
  padding-left: 0;
  flex: 0 0 auto;
  min-width: auto;
}

.nav-left .primary-menu,
.nav-right .primary-menu {
  min-width: 0;
}

.nav-left .primary-menu {
  justify-content: flex-start;
}

.nav-right .primary-menu {
  justify-content: flex-start;
}

.header-logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  z-index: 5;
  transition: bottom 0.35s ease, transform 0.35s ease;
}

.header-logo-badge {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f0e0e;
  border: 2px solid rgba(250, 163, 44, 0.65);
  box-shadow:
    0 0 0 7px rgba(250, 163, 44, 0.07),
    0 0 18px rgba(250, 163, 44, 0.58);
  transition: width 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

.header-logo-badge img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border-radius: 50%;
}

.header-phone-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(120deg, var(--main), #ffc56f);
  color: #0f1012;
  font-weight: 800;
  border-radius: 6px;
  padding: 12px 18px;
  box-shadow: 0 8px 20px rgba(250, 163, 44, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
}

.header-phone-btn:hover {
  transform: translateY(calc(-50% - 1px));
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 60;
  border: 1px solid rgba(250, 163, 44, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 7px;
  padding: 7px 12px;
  font-weight: 700;
}

.mobile-logo-link,
.mobile-nav,
.mobile-quick-nav {
  display: none;
}

.mobile-header-tools {
  position: absolute;
  right: 168px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-header-tools a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f3f3f3;
  opacity: 0.95;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mobile-header-tools a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mobile-header-tools a:hover {
  color: var(--main);
  border-color: rgba(250, 163, 44, 0.7);
  background: rgba(250, 163, 44, 0.08);
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(12, 13, 14, 0.97), rgba(12, 13, 14, 0.9));
  border-bottom-color: rgba(250, 163, 44, 0.26);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
  gap: 14px;
}

@media (max-width: 1366px) and (min-width: 721px) {
  .header-inner {
    padding-right: 260px;
  }

  .primary-menu a {
    font-size: 0.92rem;
    padding: 7px 9px;
  }

  .nav-left {
    margin-right: 18px;
  }

  .nav-right {
    margin-left: 18px;
  }

  .mobile-header-tools {
    right: 150px;
  }

  .header-phone-btn {
    padding: 10px 14px;
    font-size: 0.92rem;
  }
}

.site-header.is-scrolled .header-logo-link {
  bottom: -26px;
}

.site-header.is-scrolled .header-logo-badge {
  width: 88px;
  height: 88px;
  box-shadow:
    0 0 0 4px rgba(250, 163, 44, 0.09),
    0 0 14px rgba(250, 163, 44, 0.45);
}

.site-header.is-scrolled .primary-menu a {
  font-size: 0.93rem;
}

.site-header.is-scrolled .header-phone-btn {
  padding: 10px 16px;
}

.hero-landing {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 190px 0 80px;
}

.hero-layout {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--main-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-family: "Oswald", "Segoe UI", sans-serif;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-family: "Oswald", "Segoe UI", sans-serif;
}

p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.hero-copy {
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(120deg, var(--main), #ffbf63);
  color: #1a1a1a;
  box-shadow: 0 10px 26px rgba(250, 163, 44, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 15px 30px rgba(250, 163, 44, 0.43);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.glass-stats {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
}

.glass-item {
  padding: 14px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass-item p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.glass-item span {
  color: #dadada;
  font-size: 0.83rem;
}

.hero-stage {
  position: relative;
  min-height: 460px;
}

.platter-scene {
  position: relative;
  width: min(460px, 100%);
  height: 460px;
  margin-left: auto;
  perspective: 1200px;
}

.platter-shadow {
  position: absolute;
  width: 70%;
  height: 40px;
  left: 15%;
  bottom: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.55), transparent 65%);
  filter: blur(8px);
}

.platter {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.35), transparent 42%),
    radial-gradient(circle at 50% 55%, #2f3336 10%, #1f2225 62%);
  box-shadow: var(--shadow), inset 0 -24px 28px rgba(0, 0, 0, 0.5);
}

.platter-rim {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(250, 163, 44, 0.35);
  box-shadow: inset 0 0 18px rgba(250, 163, 44, 0.22);
}

.ingredient {
  position: absolute;
  transform: translateZ(18px);
  box-shadow: 0 9px 14px rgba(0, 0, 0, 0.35);
}

.ingredient-peanut {
  width: 22px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 32%, #ffd39f, #b76a20 70%);
}

.ingredient-kebab {
  width: 74px;
  height: 19px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #5b2508, #8e3b11 24%, #b64f1e 52%, #7c300b 100%);
}

.ingredient-papad {
  width: 86px;
  height: 54px;
  border-radius: 46% 54% 53% 47%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.4), transparent 34%),
    linear-gradient(130deg, #f4c86e, #c6871d);
}

.ingredient-onion {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #ca64ff;
  background: transparent;
}

.ingredient-lime {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #a8ec65 38%, #4f8e12 40%);
}

.i1 { top: 35%; left: 24%; }
.i2 { top: 45%; left: 18%; }
.i3 { top: 50%; left: 32%; }
.i4 { top: 35%; left: 43%; }
.i5 { top: 44%; left: 51%; transform: translateZ(20px) rotate(10deg); }
.i6 { top: 55%; left: 42%; transform: translateZ(20px) rotate(-14deg); }
.i7 { top: 28%; left: 56%; transform: translateZ(20px) rotate(18deg); }
.i8 { top: 58%; left: 58%; transform: translateZ(20px) rotate(-17deg); }
.i9 { top: 22%; left: 36%; }
.i10 { top: 63%; left: 30%; }
.i11 { top: 65%; left: 55%; }

.spice-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spice {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main);
  filter: blur(0.2px);
  opacity: 0.58;
  animation: drift 10s ease-in-out infinite;
}

.spice::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff4dd;
  left: 2px;
  top: 2px;
}

.spice-1 { top: 12%; left: 14%; animation-duration: 11s; }
.spice-2 { top: 24%; left: 86%; animation-duration: 9s; }
.spice-3 { top: 66%; left: 9%; animation-duration: 13s; }
.spice-4 { top: 76%; left: 81%; animation-duration: 8s; }
.spice-5 { top: 44%; left: 92%; animation-duration: 12s; }
.spice-6 { top: 9%; left: 54%; animation-duration: 10s; }
.spice-7 { top: 58%; left: 48%; animation-duration: 14s; }
.spice-8 { top: 84%; left: 36%; animation-duration: 9s; }

.section {
  padding: 84px 0;
}

.site-main {
  flex: 1 0 auto;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signature-grid {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.glass-card,
.glass-callout {
  border-radius: 18px;
  border: 1px solid rgba(250, 163, 44, 0.28);
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.glass-card {
  padding: 22px;
}

.story-grid {
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: 1.15fr 0.85fr;
}

.glass-callout {
  padding: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-band {
  position: relative;
  margin-top: 32px;
  padding: 0 0 22px;
}

.newsletter-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(250, 163, 44, 0.3), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 196, 111, 0.18), transparent 32%),
    linear-gradient(135deg, #17191c, #0b0d10 68%);
  border: 1px solid rgba(250, 163, 44, 0.28);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.newsletter-shell::before,
.newsletter-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.newsletter-shell::before {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -60px;
  background: radial-gradient(circle, rgba(250, 163, 44, 0.22), transparent 68%);
}

.newsletter-shell::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

.newsletter-copy,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-copy h2 {
  max-width: 14ch;
  margin-bottom: 14px;
}

.newsletter-copy p:last-of-type {
  max-width: 56ch;
  margin-bottom: 0;
}

.newsletter-highlights {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff1db;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.newsletter-form {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.newsletter-form input {
  width: 100%;
  height: 58px;
  margin-bottom: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(7, 8, 10, 0.72);
  color: #fff;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(250, 163, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(250, 163, 44, 0.12);
}

.newsletter-form button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--main), #ffc56f);
  color: #121212;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 16px 28px rgba(250, 163, 44, 0.22);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(250, 163, 44, 0.28);
}

.newsletter-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  margin-top: 18px;
  background: #05070a;
  border-top: 1px solid rgba(250, 163, 44, 0.24);
  padding-top: 58px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-link img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(250, 163, 44, 0.78);
  box-shadow:
    0 0 0 3px rgba(250, 163, 44, 0.12),
    0 0 14px rgba(250, 163, 44, 0.62),
    inset 0 0 8px rgba(250, 163, 44, 0.26);
}

.footer-brand p {
  margin: 14px 0 0;
  color: #c9c9c9;
  max-width: 32ch;
}

.footer-socials {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #efefef;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-socials a:hover {
  color: var(--main);
  border-color: rgba(250, 163, 44, 0.72);
  background: rgba(250, 163, 44, 0.08);
}

.footer-col h3 {
  margin: 0 0 16px;
  text-transform: none;
  font-size: 2.1rem;
}

.footer-list,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin: 0 0 16px;
  color: #fff;
}

.footer-list li strong {
  display: block;
  font-weight: 600;
}

.footer-list li span {
  display: block;
  margin-top: 4px;
  color: #d4b185;
}

.footer-list li a {
  color: #f1f1f1;
  font-weight: 600;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-list li a:hover {
  color: var(--main);
  padding-left: 4px;
}

.footer-list li:last-child strong {
  color: var(--main);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact li span {
  color: var(--main);
  font-size: 1.45rem;
}

.footer-contact li p {
  margin: 0;
  color: #e9e9e9;
}

.footer-contact li strong {
  display: block;
  color: #d6a66f;
}

.footer-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-gallery img {
  width: calc(33.333% - 6px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.footer-gallery img:hover {
  transform: scale(1.05);
  border-color: rgba(250, 163, 44, 0.72);
}

.footer-map-wrap {
  border: 1px solid rgba(250, 163, 44, 0.26);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.footer-map-wrap iframe {
  width: 100%;
  min-height: 170px;
  border: 0;
  display: block;
}

.footer-bottom {
  margin-top: 34px;
  min-height: 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  color: #c3c3c3;
  font-size: 1.1rem;
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.48;
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(1.45);
    opacity: 0.88;
  }
}

@media (max-width: 1024px) {
  .hero-layout,
  .story-grid,
  .newsletter-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 420px;
  }

  .platter-scene {
    margin: 0 auto;
  }

  .signature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header .container {
    width: min(1240px, 96%);
  }

  .header-inner {
    min-height: 78px;
    gap: 10px;
    padding-right: 240px;
  }

  .primary-menu {
    gap: 4px;
  }

  .primary-menu a {
    font-size: 0.87rem;
    padding: 7px 8px;
  }

  .nav-left {
    margin-right: 14px;
  }

  .nav-right {
    margin-left: 14px;
  }

  .header-logo-link {
    bottom: -40px;
  }

  .header-logo-badge {
    width: 100px;
    height: 100px;
  }

  .header-phone-btn {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .mobile-header-tools {
    right: 146px;
    gap: 2px;
  }

  .mobile-header-tools a {
    width: 24px;
    height: 24px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 64px;
  }

  .site-header.is-scrolled .header-logo-link {
    bottom: -20px;
  }

  .site-header.is-scrolled .header-logo-badge {
    width: 74px;
    height: 74px;
  }

  .hero-landing {
    padding-top: 150px;
  }

  .newsletter-copy h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    width: min(100%, 95%);
  }

  .header-shell {
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 10px;
  }

  .header-inner {
    display: none;
    margin-top: 44px;
    padding: 14px;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid rgba(250, 163, 44, 0.25);
    background: rgba(18, 19, 20, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  }

  .header-shell.is-open .header-inner {
    display: flex;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 0;
  }

  .header-logo-link {
    position: static;
    transform: none;
    bottom: auto;
    order: -1;
    margin: 0 auto;
  }

  .header-logo-badge {
    width: 86px;
    height: 86px;
    box-shadow:
      0 0 0 4px rgba(250, 163, 44, 0.09),
      0 0 12px rgba(250, 163, 44, 0.35);
  }

  .site-header.is-scrolled .header-logo-badge {
    width: 72px;
    height: 72px;
  }

  .main-nav .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .main-nav .primary-menu a {
    padding: 9px 12px;
    border-radius: 6px;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.03);
  }

  .header-phone-btn {
    margin-left: 0;
    text-align: center;
    padding: 10px 14px;
    position: static;
    transform: none;
  }

  .hero-landing {
    padding-top: 130px;
  }

  .glass-stats,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .platter-scene {
    height: 330px;
    min-height: 330px;
  }
}

/* Reference-style landing layout */
.texture-panel {
  background:
    radial-gradient(circle at 14% 20%, rgba(250, 163, 44, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 160, 40, 0.14), transparent 40%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.015) 0 2px, transparent 2px 6px),
    #090a0b;
}

.showcase-hero {
  padding: 180px 0 80px;
}

.hero-slider {
  position: relative;
  min-height: 460px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: grid;
  gap: 26px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-copy-wrap h1,
.hero-copy-wrap h2 {
  font-size: clamp(2rem, 4.3vw, 4rem);
  max-width: 11ch;
}

.hero-media-shot {
  min-height: 430px;
  border-radius: 28px;
  border: 1px solid rgba(250, 163, 44, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.hero-media-shot::before {
  content: "";
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 198, 112, 0.9), rgba(188, 108, 13, 0.6) 36%, rgba(26, 13, 8, 0.9) 60%);
  transform: scale(0.68);
  animation: spinDish 22s linear infinite;
}

.hero-media-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(7, 7, 7, 0.1), rgba(7, 7, 7, 0.7));
}

.shot-1 {
  background: linear-gradient(130deg, #272015, #131313);
}

.shot-2 {
  background:
    linear-gradient(180deg, rgba(250, 163, 44, 0.2), transparent),
    linear-gradient(120deg, #1d1912, #0a0a0a);
}

.shot-3 {
  background:
    radial-gradient(circle at 70% 20%, rgba(250, 163, 44, 0.22), transparent 42%),
    linear-gradient(120deg, #161616, #0b0c0e);
}

.offer-tag,
.play-chip {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 18px;
  background: var(--main);
  color: #131313;
  font-weight: 800;
  border-radius: 30px;
  padding: 10px 14px;
}

.play-chip {
  background: rgba(0, 0, 0, 0.7);
  color: var(--main);
  border: 1px solid rgba(250, 163, 44, 0.45);
}

.hero-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250, 163, 44, 0.5);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 800;
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(250, 163, 44, 0.6);
  background: transparent;
}

.hero-dot.is-active {
  background: var(--main);
}

.about-panel {
  background: #090a0b;
}

.about-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.about-photo {
  min-height: 360px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(250, 163, 44, 0.2), transparent 45%),
    linear-gradient(120deg, #252525, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-box {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(250, 163, 44, 0.42);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
}

.metric-box strong {
  font-size: 2rem;
  color: var(--main);
}

.core-features-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 7, 9, 0.9), rgba(6, 7, 9, 0.96)),
    url("./../images/bg graphics/bg.jpg") center / cover no-repeat;
}

.core-features-heading {
  text-align: center;
  margin-bottom: 48px;
}

.core-features-heading h2 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wave-line {
  display: inline-block;
  color: var(--main);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.core-features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.feature-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 38px 28px 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(250, 163, 44, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%);
  pointer-events: none;
}

.feature-icon {
  width: 106px;
  height: 106px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 215, 130, 0.18), transparent 38%),
    rgba(250, 163, 44, 0.08);
  border: 1px solid rgba(250, 163, 44, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #ffca72;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-tile h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1.1;
}

.feature-tile p {
  max-width: 28ch;
  margin: 16px auto 28px;
  color: #ececec;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-tile a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 163, 44, 0.85);
  background:
    radial-gradient(circle at top, rgba(250, 163, 44, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(250, 163, 44, 0.2);
}

.feature-tile:hover .feature-icon {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(250, 163, 44, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 36px rgba(250, 163, 44, 0.12);
}

.feature-tile:hover a {
  color: var(--main);
  border-color: rgba(250, 163, 44, 0.65);
  background: rgba(250, 163, 44, 0.08);
  letter-spacing: 0.04em;
  transform: translateY(-1px);
}

.home-catering-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(250, 163, 44, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.home-catering-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.home-catering-copy h2 {
  margin: 8px 0 14px;
  text-transform: uppercase;
}

.home-catering-copy p {
  max-width: 62ch;
}

.home-catering-copy .btn {
  margin-top: 12px;
}

.home-catering-cards {
  display: grid;
  gap: 16px;
}

.home-catering-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(250, 163, 44, 0.24);
  background:
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.home-catering-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.home-catering-card p {
  margin: 0;
}

.home-reservation-section {
  position: relative;
}

.appointment-strip {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(250, 163, 44, 0.24);
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 430px);
  gap: 40px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.appointment-bg,
.appointment-overlay,
.appointment-copy,
.home-reserve-form {
  position: relative;
  z-index: 1;
}

.appointment-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
  transform: scale(1.03);
}

.appointment-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.9) 0%, rgba(7, 10, 13, 0.78) 46%, rgba(7, 10, 13, 0.9) 100%),
    radial-gradient(circle at top left, rgba(250, 163, 44, 0.2), transparent 28%);
}

.appointment-copy h3 {
  margin: 8px 0 14px;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  max-width: 12ch;
}

.appointment-copy p {
  max-width: 54ch;
  font-size: 1.05rem;
  color: #e0e0e0;
}

.appointment-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.appointment-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff3dc;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-reserve-form {
  background: rgba(20, 23, 27, 0.88);
  border: 1px solid rgba(250, 163, 44, 0.38);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-reserve-form .group-booking-grid {
  gap: 16px;
}

.home-reserve-form .group-booking-field span {
  color: #f7f0e5;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.home-reserve-form .group-booking-field input,
.home-reserve-form .group-booking-field select {
  min-height: 54px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 14px;
}

.home-reserve-form .group-booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.home-reserve-form .group-booking-submit {
  min-height: 56px;
  border-radius: 12px;
  margin-top: 18px;
  font-size: 1.08rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(250, 163, 44, 0.2);
  transition: filter 0.3s ease, transform 0.25s ease;
}

.home-reserve-form .group-booking-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.reservation-field select,
.group-booking-field select,
.catering-booking-field select {
  color: #fff;
  background-color: rgba(34, 37, 41, 0.96);
}

.reservation-field select option,
.group-booking-field select option,
.catering-booking-field select option,
.reservation-field select optgroup,
.group-booking-field select optgroup,
.catering-booking-field select optgroup {
  color: #111;
  background: #fff;
}

.reservation-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(120deg, var(--main), #ffbe57);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 20px 18px;
  font-family: inherit;
  font-size: 1.18rem;
  transition: filter 0.3s ease, transform 0.25s ease;
}

.reservation-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.popular-wrap {
  background: url("./../images/bg graphics/bg.jpg") center / cover no-repeat;
  width: 100%;
  max-width: none;
  padding: 70px 90px;
}

.popular-wrap .eyebrow,
.popular-wrap h2 {
  text-align: center;
}

.popular-wrap .wave-line {
  display: block;
  text-align: center;
  margin-top: -6px;
}

.popular-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 22px;
}

.popular-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 14px;
}

.popular-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.popular-content {
  position: relative;
  padding-right: 22px;
}

.popular-content::after {
  content: "";
  position: absolute;
  left: calc(100% - 6px);
  right: -8px;
  top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.68);
}

.popular-content h3 {
  margin: 0;
  font-size: 1.45rem;
  text-transform: uppercase;
  line-height: 1;
}

.popular-content p {
  margin: 6px 0 0;
  color: #d5d5d5;
  font-size: 1.1rem;
}

.price-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--main);
  color: #121212;
  font-weight: 700;
  font-size: 0.95rem;
}

.price-zone small {
  margin-top: 6px;
  color: #c6c6c6;
  text-decoration: line-through;
  font-size: 0.88rem;
}

.popular-offer {
  margin-top: 30px;
  min-height: 132px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.popular-offer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 127, 17, 0.7), transparent 25%),
    radial-gradient(circle at 82% 40%, rgba(255, 196, 63, 0.35), transparent 28%),
    linear-gradient(120deg, #2b2b2b, #1e1e1e 56%, #242424);
}

.popular-offer h3,
.popular-offer .offer-btn {
  position: relative;
  z-index: 1;
}

.popular-offer h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  color: #f7f7f7;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--main);
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 13px 32px;
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.9), rgba(8, 9, 10, 0.9)),
    url("./../images/bg graphics/test-bg.jpg") center / cover no-repeat;
}

.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.testimonials-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.testimonials-title .eyebrow::after {
  content: "";
  width: 52px;
  height: 2px;
  background: var(--main);
}

.testimonials-title h2 {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.testimonials-nav {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
}

.testimonials-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1.5rem;
}

.news-grid,
.chef-grid {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.testimonials-viewport {
  margin-top: 34px;
  overflow: hidden;
}

.testimonials-grid {
  margin-top: 0;
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
}

.testimonial-bubble {
  position: relative;
  min-height: 270px;
  padding: 34px 28px 26px;
  border-radius: 10px;
  background: rgba(40, 40, 40, 0.8);
}

.testimonial-bubble::before {
  content: "99";
  position: absolute;
  right: 26px;
  top: 10px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.testimonial-bubble::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: var(--main);
  transform: rotate(45deg);
}

.testimonial-rating {
  margin: 0;
  color: var(--main);
  letter-spacing: 0.22em;
  font-size: 1.2rem;
}

.testimonial-text {
  margin-top: 18px;
  color: #dedede;
  line-height: 1.72;
  font-size: 1.02rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-left: 12px;
}

.testimonial-person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.9rem;
}

.testimonial-person p {
  margin: 4px 0 0;
  text-transform: uppercase;
  color: var(--main);
  font-size: 0.95rem;
}

.food-truck-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(250, 163, 44, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.food-truck-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.food-truck-copy {
  order: 2;
}

.food-truck-visual {
  order: 1;
}

.food-truck-copy h2 {
  margin: 8px 0 14px;
  text-transform: uppercase;
  max-width: 52ch;
}

.food-truck-copy p {
  max-width: 58ch;
}

.food-truck-points {
  margin: 24px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.food-truck-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff0d8;
}

.food-truck-visual {
  position: relative;
  min-height: 460px;
}

.food-truck-photo {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid rgba(250, 163, 44, 0.26);
  background:
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(26, 28, 31, 0.98), rgba(10, 12, 15, 0.98));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.food-truck-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.04), rgba(7, 10, 13, 0.24)),
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.14), transparent 26%);
}

.food-truck-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
/*
.food-truck-badge {
  position: absolute;
  z-index: 9;
  left: 24px;
  bottom: 24px;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(10, 12, 15, 0.78);
  border: 1px solid rgba(250, 163, 44, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.food-truck-badge strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.food-truck-badge p {
  margin: 8px 0 0;
  color: #ddd;
}

*/

.news-card,
.chef-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}

.food-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.food-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #111;
}

.food-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
  transition: background 0.35s ease;
}

.food-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.food-card:hover img {
  transform: scale(1.12);
}

.food-card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.15));
}

.food-menu-wrap {
  width: 100%;
  max-width: none;
  padding: 0 22px;
}

.food-menu-wrap .eyebrow,
.food-menu-wrap h2,
.food-menu-wrap .wave-line {
  text-align: center;
  display: block;
}

.chef-photo {
  min-height: 180px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(130deg, #323232, #111111);
}

@keyframes spinDish {
  from {
    transform: scale(0.68) rotate(0deg);
  }
  to {
    transform: scale(0.68) rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .showcase-hero {
    padding-top: 150px;
  }

  .hero-slide {
    position: relative;
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: auto;
  }

  .hero-media-shot {
    min-height: 320px;
  }

  .about-grid,
  .news-grid,
  .chef-grid {
    grid-template-columns: 1fr 1fr;
  }

  .appointment-strip {
    grid-template-columns: 1fr;
    padding: 42px;
    gap: 28px;
  }

  .food-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .food-menu-wrap {
    padding: 0 14px;
  }

  .core-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-catering-grid {
    grid-template-columns: 1fr;
  }

  .popular-wrap {
    padding: 56px 30px;
  }

  .popular-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .food-truck-grid {
    grid-template-columns: 1fr;
  }

  .food-truck-copy,
  .food-truck-visual {
    order: initial;
  }

  .appointment-strip {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .showcase-hero {
    padding-top: 130px;
  }

  .hero-copy-wrap h1,
  .hero-copy-wrap h2 {
    max-width: 100%;
  }

  .hero-media-shot {
    min-height: 260px;
  }

  .about-grid,
  .news-grid,
  .chef-grid {
    grid-template-columns: 1fr;
  }

  .appointment-strip {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    gap: 22px;
    border-radius: 24px;
  }

  .appointment-copy h3 {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .appointment-highlights span {
    width: 100%;
    justify-content: center;
  }

  .home-reserve-form {
    padding: 18px;
  }

  .home-reserve-form .group-booking-field input,
  .home-reserve-form .group-booking-field select {
    min-height: 50px;
    padding: 0 12px;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }

  .home-catering-card {
    padding: 20px;
  }

  .food-card,
  .food-card img {
    min-height: 220px;
  }

  .popular-wrap {
    padding: 42px 16px;
  }

  .popular-item {
    grid-template-columns: 62px 1fr;
    gap: 10px;
  }

  .popular-item img {
    width: 62px;
    height: 62px;
  }

  .popular-content::after {
    display: none;
  }

  .popular-content h3 {
    font-size: 1.2rem;
  }

  .popular-content p {
    font-size: 0.96rem;
  }

  .price-zone {
    grid-column: 2;
    align-items: flex-start;
    margin-top: 4px;
  }

  .popular-offer {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .core-features-grid {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    min-height: 0;
    padding: 34px 20px 28px;
  }

  .feature-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 22px;
  }

  .feature-icon svg {
    width: 48px;
    height: 48px;
  }

  .feature-tile h3 {
    font-size: 1.6rem;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-arrow {
    width: 44px;
    height: 44px;
  }

  .testimonial-bubble {
    min-height: 0;
    padding: 28px 20px 20px;
  }

  .testimonial-person h3 {
    font-size: 1.4rem;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .food-truck-visual,
  .food-truck-photo,
  .food-truck-photo img {
    min-height: 320px;
  }

  .food-truck-photo {
    padding: 14px;
  }

  .food-truck-photo img {
    min-height: 0;
    max-height: 320px;
  }

  .food-truck-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .food-truck-points span {
    width: 100%;
    justify-content: center;
  }

  .newsletter-band {
    margin-top: 22px;
    padding-bottom: 14px;
  }

  .newsletter-shell {
    padding: 26px 20px;
    border-radius: 22px;
    gap: 20px;
  }

  .newsletter-form {
    padding: 18px;
  }

  .newsletter-form input,
  .newsletter-form button {
    min-height: 54px;
    height: 54px;
  }

  .newsletter-highlights span {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col h3 {
    font-size: 1.7rem;
  }

  .footer-gallery img {
    width: calc(33.333% - 6px);
  }

  .footer-map-wrap iframe {
    min-height: 200px;
  }
}

/* Full-screen dish slider hero */
.hero-cover {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: url("./../images/bg graphics/bg.jpg") center / cover no-repeat;
}

.hero-cover-slider {
  position: absolute;
  inset: 0;
}

.hero-cover-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-cover-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 22, 23, 0.42) 0%,
    rgba(21, 22, 23, 0.25) 38%,
    rgba(21, 22, 23, 0.62) 100%
  );
}

.hero-cover-slide.is-active {
  opacity: 1;
  transform: scale(1.14);
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(21, 22, 23, 0.3) 100%),
    radial-gradient(circle at 85% 10%, rgba(250, 163, 44, 0.18), transparent 28%);
}

.hero-cover-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  transform: none;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 12, 13, 0.6);
  border: 1px solid rgba(250, 163, 44, 0.45);
  backdrop-filter: blur(6px);
}

.hero-cover-controls .hero-dots {
  display: none;
}

.hero-cover-controls .hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 12, 16, 0.75);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero-cover-controls .hero-arrow:hover {
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(250, 163, 44, 0.9);
  background: rgba(250, 163, 44, 0.18);
}

.hero-cover-controls .hero-arrow:active {
  transform: translateY(0) scale(0.98);
}

.about-us-section {
  background: #060708;
}

.about-us-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 52px;
  align-items: stretch;
}

.about-us-photo {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-us-content {
  position: relative;
  padding-right: 200px;
}

.about-us-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-us-head .eyebrow::after {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--main);
}

.about-us-head h2 {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.about-us-sub {
  font-size: 1.8rem;
  color: #efefef;
}

.about-us-badge {
  position: absolute;
  right: 0;
  top: 58px;
  width: 160px;
  background: #232323;
  text-align: center;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-us-badge::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: 58px;
  height: 84px;
  background: var(--main);
  z-index: -1;
}

.about-us-badge strong {
  display: block;
  margin: 0;
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 800;
  color: #fff;
}

.about-us-badge strong span {
  font-size: 1.7rem;
  color: var(--main);
  margin-left: 2px;
}

.about-us-badge p {
  margin: 12px 0 0;
  color: #d6d6d6;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-us-columns {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-us-columns p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.65;
}

.about-us-founder {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-us-founder img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(250, 163, 44, 0.5);
}

.about-us-founder h3 {
  margin: 0;
  font-size: 2rem;
  color: #fff;
}

.about-us-founder span {
  display: inline-block;
  margin-top: 4px;
  color: var(--main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.about-us-sign {
  margin-left: auto;
  font-family: "Oswald", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.3);
}

.inner-page {
  min-height: 100svh;
}

.inner-hero {
  padding: 370px 0 70px;
  background:
    linear-gradient(180deg, rgba(6, 8, 10, 0.78), rgba(6, 8, 10, 0.78)),
    url("./../images/bg graphics/bg.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(250, 163, 44, 0.28);
}

.inner-hero h1 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.inner-hero p {
  max-width: 66ch;
  color: #d7d7d7;
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.detail-card {
  border: 1px solid rgba(250, 163, 44, 0.26);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 26px;
}

.detail-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.detail-card p {
  margin: 0;
  color: #d8d8d8;
}

.group-hero {
  position: relative;
  background: url("./../images/dishes/menu-07.png") center / cover no-repeat;
}

.reserve-hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.group-hero .container {
  position: relative;
  z-index: 1;
}

.group-booking-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(250, 163, 44, 0.12), transparent 35%),
    #0c0f12;
}

.group-booking-wrap {
  border: 1px solid rgba(250, 163, 44, 0.24);
  background: rgba(8, 10, 13, 0.85);
  border-radius: 14px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.group-booking-copy h2 {
  margin: 8px 0 12px;
  text-transform: uppercase;
}

.group-booking-copy p {
  max-width: 64ch;
}

.group-booking-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 20px;
}

.group-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.group-booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.group-booking-field span {
  color: #f1f1f1;
  font-size: 0.98rem;
}

.group-booking-field input,
.group-booking-field select {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  min-height: 46px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-family: inherit;
  font-size: 1rem;
}

.group-booking-field input:focus,
.group-booking-field select:focus {
  outline: 0;
  border-color: rgba(250, 163, 44, 0.75);
  box-shadow: 0 0 0 2px rgba(250, 163, 44, 0.2);
}

.group-booking-submit {
  margin-top: 14px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  min-height: 48px;
  background: linear-gradient(120deg, var(--main), #ffc261);
  color: #111;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.reserve-booking-section {
  padding-bottom: 44px;
}

.reserve-gallery-section {
  background:
    linear-gradient(180deg, rgba(9, 11, 14, 0.95), rgba(9, 11, 14, 0.95)),
    url("./../images/bg graphics/tempbg.jpg") center / cover no-repeat;
}

.reserve-gallery-head {
  text-align: center;
  margin-bottom: 20px;
}

.reserve-gallery-head h2 {
  margin: 8px 0 0;
  text-transform: uppercase;
}

.reserve-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reserve-gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(250, 163, 44, 0.28);
}

.reserve-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
}

.reserve-gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.catering-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 8, 10, 0.76), rgba(6, 8, 10, 0.82)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.catering-services-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(250, 163, 44, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.catering-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 26px;
  align-items: start;
}

.catering-services-copy h2,
.catering-booking-copy h2 {
  margin: 8px 0 14px;
  text-transform: uppercase;
}

.catering-service-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.catering-service-item,
.catering-features-panel {
  border: 1px solid rgba(250, 163, 44, 0.24);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.catering-service-item {
  padding: 22px 24px;
}

.catering-service-item h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.catering-service-item p {
  margin: 0;
}

.catering-features-panel {
  padding: 26px;
  position: sticky;
  top: 120px;
  background:
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.catering-feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.catering-feature-list li {
  position: relative;
  padding-left: 26px;
  color: #e6e6e6;
  line-height: 1.6;
}

.catering-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--main), #ffd38a);
  box-shadow: 0 0 0 4px rgba(250, 163, 44, 0.12);
}

.catering-booking-section {
  background: #090c10;
}

.catering-booking-wrap {
  display: grid;
  gap: 24px;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid rgba(250, 163, 44, 0.24);
  background:
    radial-gradient(circle at top left, rgba(250, 163, 44, 0.08), transparent 28%),
    rgba(8, 10, 13, 0.94);
}

.catering-booking-copy p {
  max-width: 65ch;
}

.catering-booking-form {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.catering-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.catering-booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catering-booking-field span {
  color: #f2f2f2;
  font-size: 0.98rem;
}

.catering-booking-field input,
.catering-booking-field select,
.catering-booking-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.catering-booking-field textarea {
  resize: vertical;
  min-height: 130px;
}

.catering-booking-field input:focus,
.catering-booking-field select:focus,
.catering-booking-field textarea:focus {
  outline: 0;
  border-color: rgba(250, 163, 44, 0.74);
  box-shadow: 0 0 0 3px rgba(250, 163, 44, 0.14);
}

.catering-booking-field-full {
  grid-column: 1 / -1;
}

.catering-booking-submit {
  margin-top: 18px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--main), #ffc261);
  color: #111;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 16px 34px rgba(250, 163, 44, 0.18);
}

.catering-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(250, 163, 44, 0.24);
}

.about-hero {
  position: relative;
  min-height: 430px;
  padding: 160px 0 90px;
  background: url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0.68), rgba(5, 8, 12, 0.82));
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-crumbs {
  display: inline-block;
  margin-top: 12px;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.about-story-section {
  background: #06090d;
}

.about-story-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.about-story-copy h2 {
  margin: 10px 0 12px;
  text-transform: uppercase;
}

.about-story-copy ul {
  margin: 14px 0 18px;
  padding-left: 20px;
}

.about-story-copy li {
  margin-bottom: 6px;
  color: #ddd;
}

.about-story-photos {
  display: grid;
  gap: 12px;
}

.about-story-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-stats-strip {
  background: #0a0f14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.about-stats-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  text-align: center;
}

.about-stats-grid strong {
  display: block;
  color: var(--main);
  font-size: 2.4rem;
}

.about-stats-grid span {
  color: #d8d8d8;
}

.about-dishes-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-dishes-tile {
  margin: 0;
  overflow: hidden;
  min-height: 300px;
}

.about-dishes-tile img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.about-dishes-tile:hover img {
  transform: scale(1.08);
}

.about-video-section {
  background: #070b10;
}

.about-video-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.about-video-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 1.2rem;
}

.about-service-grid {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
}

.about-service-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  text-align: center;
}

.about-service-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 8px;
}

.about-service-grid h3 {
  margin: 0;
  font-size: 1.1rem;
}

.about-chefs-section {
  background: #060b11;
}

.about-chefs-section .eyebrow,
.about-chefs-section h2 {
  text-align: center;
}

.about-chef-grid {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
}

.about-chef-grid article {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.about-chef-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-chef-grid h3 {
  margin: 10px 0 4px;
  font-size: 1.1rem;
}

.about-chef-grid p {
  margin: 0;
  color: var(--main);
  font-size: 0.86rem;
}

.about-booking-banner {
  padding: 70px 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.76), rgba(6, 8, 12, 0.76)),
    url("./../images/bg graphics/tempbg.jpg") center / cover no-repeat;
  text-align: center;
}

.about-booking-banner h2 {
  margin: 0 0 14px;
  text-transform: uppercase;
}

.food-truck-page-hero {
  position: relative;
  overflow: hidden;
  background: #090c10;
}

.food-truck-page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  background-repeat: repeat;
}

.food-truck-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.82) 0%, rgba(7, 10, 13, 0.62) 48%, rgba(7, 10, 13, 0.88) 100%),
    radial-gradient(circle at 70% 18%, rgba(250, 163, 44, 0.14), transparent 24%);
}

.food-truck-page-hero-content {
  position: relative;
  z-index: 1;
}

.food-truck-hero-highlights {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.food-truck-hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff3de;
}

.food-truck-location-strip {
  padding: 28px 0;
  background:
    linear-gradient(120deg, rgba(250, 163, 44, 0.16), rgba(250, 163, 44, 0.04)),
    #0c1014;
  border-top: 1px solid rgba(250, 163, 44, 0.16);
  border-bottom: 1px solid rgba(250, 163, 44, 0.16);
}

.food-truck-location-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.food-truck-location-wrap h2 {
  margin: 8px 0 0;
  text-transform: uppercase;
}

.food-truck-location-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(250, 163, 44, 0.28);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.food-truck-location-link:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 163, 44, 0.68);
  background: rgba(250, 163, 44, 0.08);
}

.food-truck-location-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(250, 163, 44, 0.12);
  color: #ffca72;
  flex: 0 0 auto;
}

.food-truck-location-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.food-truck-location-address {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
  font-weight: 700;
  text-align: right;
}

.food-truck-story-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(250, 163, 44, 0.1), transparent 30%),
    #090d11;
}

.food-truck-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.food-truck-story-visual {
  position: relative;
}

.food-truck-story-photo {
  position: relative;
  padding: 20px;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid rgba(250, 163, 44, 0.22);
  background:
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(28, 30, 33, 0.98), rgba(12, 14, 17, 0.98));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.food-truck-story-photo img {
  width: 100%;
  min-height: 390px;
  height: auto;
  display: block;
  object-fit: contain;
}

.food-truck-story-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(10, 12, 15, 0.78);
  border: 1px solid rgba(250, 163, 44, 0.3);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.food-truck-story-card strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.food-truck-story-card p {
  margin: 8px 0 0;
}

.food-truck-story-copy h2 {
  margin: 8px 0 14px;
  text-transform: uppercase;
  max-width: 26ch;
}

.food-truck-story-copy p {
  max-width: 60ch;
}

.food-truck-service-grid {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.food-truck-service-card {
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(250, 163, 44, 0.22);
  background:
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.035);
}

.food-truck-service-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.food-truck-service-card p {
  margin: 0;
}

.food-truck-menu-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    #0a0d11;
}

.food-truck-menu-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(250, 163, 44, 0.24);
  background:
    radial-gradient(circle at top left, rgba(250, 163, 44, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.food-truck-menu-copy h2 {
  margin: 8px 0 14px;
  text-transform: uppercase;
  max-width: 15ch;
}

.food-truck-menu-copy p {
  max-width: 60ch;
  margin-bottom: 0;
}

.food-truck-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.72), rgba(8, 10, 12, 0.82)),
    url("https://res.cloudinary.com/dhygsly8g/image/upload/v1775738053/chakhna_food_truck_toronto_zcrjvg.jpg") center / cover no-repeat;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-info-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(250, 163, 44, 0.1), transparent 26%),
    #090d11;
}

.contact-info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.contact-info-card {
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(250, 163, 44, 0.2);
  background:
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.035);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(250, 163, 44, 0.1);
  color: #ffc971;
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.45rem;
}

.contact-info-card p {
  margin: 0;
}

.contact-main-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    #0a0e12;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-copy-panel {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(250, 163, 44, 0.22);
  background:
    radial-gradient(circle at top left, rgba(250, 163, 44, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.03);
}

.contact-copy-panel h2 {
  margin: 8px 0 14px;
  text-transform: uppercase;
  max-width: 11ch;
}

.contact-quick-links {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.contact-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-quick-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 163, 44, 0.62);
  background: rgba(250, 163, 44, 0.08);
}

.contact-form-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(250, 163, 44, 0.22);
  background:
    radial-gradient(circle at top right, rgba(250, 163, 44, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.contact-form-notice {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.contact-form-notice.is-success {
  background: rgba(38, 132, 76, 0.16);
  border-color: rgba(80, 200, 120, 0.28);
  color: #dff7e8;
}

.contact-form-notice.is-error {
  background: rgba(168, 55, 55, 0.16);
  border-color: rgba(255, 125, 125, 0.28);
  color: #ffe1e1;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-field span {
  color: #f2f2f2;
  font-size: 0.98rem;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: 0;
  border-color: rgba(250, 163, 44, 0.72);
  box-shadow: 0 0 0 3px rgba(250, 163, 44, 0.12);
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form-submit {
  margin-top: 18px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--main), #ffc261);
  color: #111;
  font-family: inherit;
  font-size: 1.04rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.contact-map-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    #090d11;
}

.contact-map-head {
  text-align: center;
  margin-bottom: 20px;
}

.contact-map-head h2 {
  margin: 8px 0 0;
  text-transform: uppercase;
}

.contact-map-wrap {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(250, 163, 44, 0.24);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.contact-map-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.drinks-tabs-wrap {
  border: 1px solid rgba(250, 163, 44, 0.28);
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0.9)),
    url("./../images/bg graphics/tempbg.jpg") center / cover no-repeat;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.drinks-menu-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(250, 163, 44, 0.12), transparent 35%),
    #0c0e12;
}

.drinks-menu-head {
  text-align: center;
  margin-bottom: 20px;
}

.drinks-menu-head h2 {
  margin: 8px 0 2px;
  text-transform: uppercase;
}

.drinks-hero {
  position: relative;
  background:
    url("./../images/dishes/menu-03.png") center / cover no-repeat;
  overflow: hidden;
}

.menu-hero {
  background:
    url("./../images/dishes/menu-05.png") center / cover no-repeat;
}

.drinks-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(10, 12, 16, 0.88), rgba(10, 12, 16, 0.58)),
    linear-gradient(180deg, rgba(10, 12, 16, 0.15), rgba(10, 12, 16, 0.5));
}

.drinks-hero .container {
  position: relative;
  z-index: 1;
}

.drinks-hero h1 {
  margin-bottom: 12px;
}

.drinks-hero p {
  max-width: 62ch;
}

.drinks-hero-highlights {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.drinks-hero-highlights span {
  border: 1px solid rgba(250, 163, 44, 0.5);
  background: rgba(255, 255, 255, 0.04);
  color: #f6d5a5;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.95rem;
}

.drinks-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

.drinks-tab-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #e5e5e5;
  min-width: 130px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.25s ease;
}

.drinks-tab-btn:hover {
  border-color: rgba(250, 163, 44, 0.72);
  color: #fff;
}

.drinks-tab-btn.is-active {
  background: linear-gradient(120deg, var(--main), #ffc86a 60%);
  border-color: var(--main);
  color: #111;
  box-shadow: 0 10px 24px rgba(250, 163, 44, 0.35);
}

.drinks-panel {
  display: none;
  margin-top: 26px;
  gap: 16px 24px;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.drinks-panel.is-active {
  display: grid;
}

.drink-item {
  display: grid;
  grid-template-columns: 98px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.drink-item img {
  width: 98px;
  height: 98px;
  object-fit: cover;
  border-radius: 8px;
}

.drink-item:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 163, 44, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.drink-item h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.drink-item p {
  margin: 6px 0 0;
  color: #d2d2d2;
}

.drink-item b {
  color: #e8b97b;
  font-size: 1.85rem;
  font-weight: 600;
  border-left: 1px dashed rgba(250, 163, 44, 0.55);
  padding-left: 14px;
}

@media (max-width: 720px) {
  .hero-cover-controls {
    right: 12px;
    bottom: 16px;
    padding: 8px 10px;
  }

  .hero-cover-controls .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.02rem;
  }

  .about-us-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-us-photo {
    min-height: 360px;
  }

  .about-us-content {
    padding-right: 0;
  }

  .about-us-badge {
    position: relative;
    top: 0;
    right: auto;
    margin-top: 16px;
  }

  .about-us-columns {
    grid-template-columns: 1fr;
  }

  .about-us-founder {
    flex-wrap: wrap;
  }

  .about-us-founder h3 {
    font-size: 1.5rem;
  }

  .about-us-sign {
    margin-left: 0;
    width: 100%;
  }

  .inner-hero {
    padding: 138px 0 50px;
  }

  .catering-booking-wrap,
  .catering-booking-form {
    padding: 22px 18px;
  }

  .food-truck-story-photo,
  .food-truck-menu-shell {
    padding: 20px;
  }

  .contact-copy-panel,
  .contact-form-card {
    padding: 20px;
  }

  .food-truck-location-link {
    width: 100%;
    justify-content: flex-start;
  }

  .food-truck-story-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .food-truck-hero-highlights span {
    width: 100%;
    justify-content: center;
  }

  .food-truck-story-photo {
    min-height: 320px;
  }

  .contact-map-wrap iframe {
    min-height: 320px;
  }

  .catering-service-item,
  .catering-features-panel {
    padding: 20px;
  }

  .catering-booking-grid {
    grid-template-columns: 1fr;
  }

  .reserve-gallery-grid {
    grid-template-columns: 1fr;
  }

  .reserve-gallery-item img {
    height: 220px;
  }

  .about-dishes-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-dishes-tile,
  .about-dishes-tile img {
    min-height: 190px;
  }

  .food-truck-location-wrap,
  .food-truck-menu-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .food-truck-story-grid,
  .food-truck-service-grid,
  .contact-info-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (min-width: 721px) {
  .about-us-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-us-content {
    padding-right: 0;
  }

  .about-us-badge {
    position: relative;
    top: 0;
    right: auto;
    margin: 8px 0 0 auto;
  }

  .about-dishes-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-dishes-tile,
  .about-dishes-tile img {
    min-height: 230px;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .drinks-panel {
    grid-template-columns: 1fr;
  }

  .drinks-tabs-wrap {
    padding: 26px;
  }

  .drinks-tab-btn {
    min-width: 118px;
  }

  .group-booking-grid {
    grid-template-columns: 1fr;
  }

  .catering-services-grid,
  .catering-booking-grid {
    grid-template-columns: 1fr;
  }

  .catering-features-panel {
    position: static;
    top: auto;
  }

  .reserve-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve-gallery-item img {
    height: 210px;
  }
}

/* Mobile stability fixes for header and footer */
@media (max-width: 720px) {
  .site-header .container {
    width: 100%;
    padding: 0 10px;
  }

  .header-shell {
    min-height: 68px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-logo-link {
    display: inline-flex;
    align-items: center;
    z-index: 3;
  }

  .mobile-logo-link img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(250, 163, 44, 0.22));
  }

  .mobile-header-tools {
    position: static;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 50px;
    z-index: 3;
  }

  .mobile-header-tools a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #f3f3f3;
    opacity: 0.95;
  }

  .mobile-header-tools a svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  .mobile-header-tools a:hover {
    color: var(--main);
    border-color: rgba(250, 163, 44, 0.7);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 34px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    font-size: 0;
    padding: 0;
    position: absolute;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
  }

  .nav-toggle::before {
    top: 10px;
    box-shadow: 0 7px 0 #fff;
  }

  .nav-toggle::after {
    top: 24px;
  }

  .header-inner {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    min-height: 0;
    margin-top: 0;
    padding: 16px;
    border: 1px solid rgba(250, 163, 44, 0.35);
    border-radius: 12px;
    background: rgba(12, 14, 18, 0.98);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.6);
  }

  .header-shell.is-open .header-inner {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
  }

  .mobile-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
  }

  .mobile-menu a:hover {
    color: var(--main);
    border-color: rgba(250, 163, 44, 0.45);
    background: rgba(250, 163, 44, 0.08);
  }

  .main-nav,
  .header-logo-link {
    display: none;
  }

  .header-phone-btn {
    position: static;
    display: block;
    transform: none;
    margin-top: 12px;
    text-align: center;
    width: 100%;
    border-radius: 9px;
  }

  .site-header.is-scrolled .header-shell {
    min-height: 62px;
  }

  .site-header.is-scrolled .mobile-logo-link img {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    margin-top: 0;
    padding-top: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand-link {
    font-size: 1.8rem;
  }

  .footer-col h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
  }

  .footer-socials {
    margin-top: 12px;
  }

  .footer-socials a {
    width: 28px;
    height: 28px;
  }

  .footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-gallery img {
    width: 100%;
  }

  .footer-map-wrap iframe {
    min-height: 180px;
  }

  .footer-bottom {
    min-height: 0;
    margin-top: 24px;
    padding: 14px 0 18px;
  }

  .footer-bottom p {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-quick-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(4, 6, 8, 0.98);
    border-top: 1px solid rgba(250, 163, 44, 0.48);
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.42);
  }

  .mobile-quick-nav a {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.03rem;
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s ease, background 0.25s ease;
  }

  .mobile-quick-nav a:last-child {
    border-right: 0;
  }

  .mobile-quick-nav a:hover,
  .mobile-quick-nav a.is-active {
    color: var(--main);
    background: rgba(250, 163, 44, 0.1);
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .drinks-tabs-wrap {
    padding: 16px;
    border-radius: 10px;
  }

  .drinks-tab-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .drinks-tab-btn {
    min-width: 0;
    width: 100%;
    padding: 10px 8px;
    font-size: 0.95rem;
  }

  .drinks-tab-buttons .drinks-tab-btn:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(60%, 220px);
  }

  .drinks-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 0;
  }

  .drink-item {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 12px;
    min-width: 0;
  }

  .drink-item img {
    width: 88px;
    height: 88px;
  }

  .drink-item h3 {
    font-size: 1.2rem;
    line-height: 1.06;
    word-break: break-word;
  }

  .drink-item p {
    margin-top: 4px;
    font-size: 0.95rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .drink-item b {
    grid-column: 2;
    display: inline-block;
    margin-top: 8px;
    padding-left: 0;
    padding-top: 8px;
    border-left: 0;
    border-top: 1px dashed rgba(250, 163, 44, 0.55);
    font-size: 1.45rem;
    line-height: 1;
  }
}

/* Final header alignment overrides */
@media (min-width: 721px) {
  .header-inner {
    justify-content: center;
    padding-right: 300px;
    gap: 0;
  }

  .nav-left,
  .nav-right {
    flex: 0 1 auto;
    min-width: 0;
    padding: 0;
    margin: 0;
  }

  .nav-left {
    margin-right: 140px;
  }

  .nav-right {
    margin-left: 140px;
  }

  .nav-left .primary-menu,
  .nav-right .primary-menu {
    justify-content: center;
    gap: 12px;
  }

  .primary-menu a {
    font-size: 0.95rem;
    padding: 8px 10px;
  }

  .mobile-header-tools {
    display: inline-flex;
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
  }

  .header-phone-btn {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
  }
}

@media (max-width: 1280px) and (min-width: 721px) {
  .header-inner {
    padding-right: 270px;
  }

  .nav-left {
    margin-right: 114px;
  }

  .nav-right {
    margin-left: 114px;
  }

  .nav-left .primary-menu,
  .nav-right .primary-menu {
    gap: 8px;
  }

  .primary-menu a {
    font-size: 0.89rem;
    padding: 7px 8px;
  }

  .mobile-header-tools {
    right: 146px;
  }

  .mobile-header-tools a {
    width: 24px;
    height: 24px;
  }

  .header-phone-btn {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) and (min-width: 721px) {
  .header-inner {
    min-height: 74px;
    padding-right: 238px;
  }

  .header-logo-link {
    bottom: -36px;
  }

  .header-logo-badge {
    width: 94px;
    height: 94px;
  }

  .nav-left {
    margin-right: 94px;
  }

  .nav-right {
    margin-left: 94px;
  }

  .primary-menu a {
    font-size: 0.83rem;
    padding: 6px 6px;
  }

  .mobile-header-tools {
    right: 130px;
    gap: 5px;
  }

  .mobile-header-tools a {
    width: 22px;
    height: 22px;
  }

  .mobile-header-tools a svg {
    width: 13px;
    height: 13px;
  }

  .header-phone-btn {
    padding: 9px 10px;
    font-size: 0.84rem;
  }
}

/* Header sequence lock:
   Left Nav -> Logo -> Right Nav -> Social Icons -> Button */
@media (min-width: 721px) {
  .header-inner {
    justify-content: flex-start !important;
    gap: 0 !important;
    padding-right: 0 !important;
  }

  .nav-left,
  .nav-right {
    flex: 0 0 auto !important;
    min-width: auto !important;
    padding: 0 !important;
  }

  .nav-left {
    margin: 0 0 0 0 !important;
    margin-right: 176px !important;
  }

  .nav-right {
    margin: 0 !important;
    margin-left: 176px !important;
    margin-right: 18px !important;
  }

  .nav-left .primary-menu {
    justify-content: flex-end !important;
  }

  .nav-right .primary-menu {
    justify-content: flex-start !important;
  }

  .mobile-header-tools {
    position: static !important;
    transform: none !important;
    right: auto !important;
    top: auto !important;
    display: inline-flex !important;
    align-items: center;
    margin-right: 12px;
    z-index: 6;
  }

  .header-phone-btn {
    position: static !important;
    transform: none !important;
    right: auto !important;
    top: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    z-index: 6;
  }
}

@media (max-width: 1366px) and (min-width: 721px) {
  .nav-left {
    margin-right: 148px !important;
  }

  .nav-right {
    margin-left: 148px !important;
    margin-right: 14px !important;
  }

  .primary-menu a {
    font-size: 0.9rem !important;
    padding: 7px 8px !important;
  }
}

@media (max-width: 1180px) and (min-width: 721px) {
  .nav-left {
    margin-right: 124px !important;
  }

  .nav-right {
    margin-left: 124px !important;
    margin-right: 10px !important;
  }

  .primary-menu a {
    font-size: 0.84rem !important;
    padding: 6px 6px !important;
  }

  .mobile-header-tools {
    margin-right: 8px !important;
    gap: 5px !important;
  }

  .mobile-header-tools a {
    width: 22px !important;
    height: 22px !important;
  }

  .mobile-header-tools a svg {
    width: 13px !important;
    height: 13px !important;
  }

  .header-phone-btn {
    padding: 9px 10px !important;
    font-size: 0.82rem !important;
  }
}

/* Reference header layout - final override */
@media (min-width: 721px) {
  .site-header .header-inner {
    min-height: 84px !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 14px !important;
  }

  .site-header .nav-left,
  .site-header .nav-right {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header .nav-left {
    padding-right: 170px !important;
  }

  .site-header .nav-right {
    padding-left: 170px !important;
    padding-right: 220px !important;
    margin-right: 12px !important;
  }

  .site-header .nav-left .primary-menu {
    justify-content: flex-end !important;
  }

  .site-header .nav-right .primary-menu {
    justify-content: flex-start !important;
  }

  .site-header .primary-menu {
    gap: 14px !important;
  }

  .site-header .primary-menu a {
    font-size: 0.95rem !important;
    padding: 6px 8px !important;
  }

  .site-header .header-logo-link {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -54px !important;
    z-index: 8 !important;
  }

  .site-header .header-logo-badge {
    width: 132px !important;
    height: 132px !important;
  }

  .site-header .mobile-header-tools {
    position: absolute !important;
    right: 168px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    z-index: 8 !important;
  }

  .site-header .header-phone-btn {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 8 !important;
  }
}

@media (max-width: 1366px) and (min-width: 721px) {
  .site-header .nav-left {
    padding-right: 144px !important;
  }

  .site-header .nav-right {
    padding-left: 144px !important;
    padding-right: 204px !important;
    margin-right: 10px !important;
  }

  .site-header .primary-menu {
    gap: 10px !important;
  }

  .site-header .primary-menu a {
    font-size: 0.9rem !important;
    padding: 6px 7px !important;
  }

  .site-header .mobile-header-tools {
    right: 152px !important;
    gap: 6px !important;
  }

  .site-header .mobile-header-tools a {
    width: 24px !important;
    height: 24px !important;
  }

  .site-header .header-phone-btn {
    padding: 10px 12px !important;
    font-size: 0.88rem !important;
  }
}

/* Laptop anti-overlap fix */
@media (max-width: 1440px) and (min-width: 1025px) {
  .site-header .header-inner {
    min-height: 80px !important;
  }

  .site-header .nav-left {
    padding-right: 182px !important;
  }

  .site-header .nav-right {
    padding-left: 182px !important;
    padding-right: 196px !important;
    margin-right: 8px !important;
  }

  .site-header .primary-menu {
    gap: 8px !important;
  }

  .site-header .primary-menu a {
    font-size: 0.84rem !important;
    padding: 5px 6px !important;
  }

  .site-header .header-logo-link {
    bottom: -46px !important;
  }

  .site-header .header-logo-badge {
    width: 114px !important;
    height: 114px !important;
  }

  .site-header .mobile-header-tools {
    right: 142px !important;
    gap: 5px !important;
  }

  .site-header .mobile-header-tools a {
    width: 22px !important;
    height: 22px !important;
  }

  .site-header .mobile-header-tools a svg {
    width: 13px !important;
    height: 13px !important;
  }

  .site-header .header-phone-btn {
    padding: 9px 10px !important;
    font-size: 0.82rem !important;
  }

  .site-header.is-scrolled .header-logo-link {
    bottom: -24px !important;
  }

  .site-header.is-scrolled .header-logo-badge {
    width: 76px !important;
    height: 76px !important;
  }
}

@media (max-width: 1120px) and (min-width: 721px) {
  .site-header .header-inner {
    min-height: 76px !important;
  }

  .site-header .nav-left {
    padding-right: 120px !important;
  }

  .site-header .nav-right {
    padding-left: 120px !important;
    padding-right: 178px !important;
    margin-right: 8px !important;
  }

  .site-header .primary-menu a {
    font-size: 0.84rem !important;
    padding: 5px 6px !important;
  }

  .site-header .header-logo-link {
    bottom: -40px !important;
  }

  .site-header .header-logo-badge {
    width: 100px !important;
    height: 100px !important;
  }

  .site-header .mobile-header-tools {
    right: 136px !important;
  }

  .site-header .mobile-header-tools a {
    width: 22px !important;
    height: 22px !important;
  }

  .site-header .mobile-header-tools a svg {
    width: 13px !important;
    height: 13px !important;
  }

  .site-header .header-phone-btn {
    padding: 9px 10px !important;
    font-size: 0.82rem !important;
  }
}

@media (min-width: 721px) {
  .site-header .header-inner,
  .site-header .header-logo-link,
  .site-header .header-logo-badge,
  .site-header .header-phone-btn {
    transition: all 0.32s ease !important;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 68px !important;
  }

  .site-header.is-scrolled .header-logo-link {
    bottom: -28px !important;
  }

  .site-header.is-scrolled .header-logo-badge {
    width: 84px !important;
    height: 84px !important;
    box-shadow:
      0 0 0 4px rgba(250, 163, 44, 0.1),
      0 0 14px rgba(250, 163, 44, 0.42) !important;
  }

  .site-header.is-scrolled .primary-menu a {
    font-size: 0.89rem !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .site-header.is-scrolled .header-phone-btn {
    padding: 9px 12px !important;
    font-size: 0.86rem !important;
  }
}

@media (max-width: 1120px) and (min-width: 721px) {
  .site-header.is-scrolled .header-logo-link {
    bottom: -22px !important;
  }

  .site-header.is-scrolled .header-logo-badge {
    width: 72px !important;
    height: 72px !important;
  }

  .site-header.is-scrolled .header-phone-btn {
    padding: 8px 10px !important;
    font-size: 0.8rem !important;
  }
}

/* Header redesign (reference): no social icons */
@media (min-width: 721px) {
  .site-header .mobile-header-tools {
    display: none !important;
  }

  .site-header .header-inner {
    min-height: 84px !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 14px !important;
  }

  .site-header .nav-left,
  .site-header .nav-right {
    flex: 0 1 auto !important;
    margin: 0 !important;
    min-width: 0 !important;
  }

  .site-header .nav-left {
    padding-right: 170px !important;
  }

  .site-header .nav-right {
    padding-left: 170px !important;
    padding-right: 0 !important;
  }

  .site-header .nav-left .primary-menu {
    justify-content: flex-end !important;
  }

  .site-header .nav-right .primary-menu {
    justify-content: flex-start !important;
  }

  .site-header .primary-menu {
    gap: 12px !important;
  }

  .site-header .primary-menu a {
    font-size: 0.95rem !important;
    padding: 7px 9px !important;
  }

  .site-header .header-logo-link {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -52px !important;
  }

  .site-header .header-logo-badge {
    width: 132px !important;
    height: 132px !important;
  }

  .site-header .header-phone-btn {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 68px !important;
  }

  .site-header.is-scrolled .header-logo-link {
    bottom: -28px !important;
  }

  .site-header.is-scrolled .header-logo-badge {
    width: 84px !important;
    height: 84px !important;
  }
}

@media (max-width: 1280px) and (min-width: 721px) {
  .site-header .nav-left {
    padding-right: 140px !important;
  }

  .site-header .nav-right {
    padding-left: 140px !important;
    padding-right: 0 !important;
  }

  .site-header .primary-menu {
    gap: 8px !important;
  }

  .site-header .primary-menu a {
    font-size: 0.88rem !important;
    padding: 6px 7px !important;
  }

  .site-header .header-phone-btn {
    padding: 10px 12px !important;
    font-size: 0.88rem !important;
  }
}
