/* Tikka Bar — static landing
   Palette: tandoor charcoal, saffron, spice amber */

:root {
  --forest: #2a1612;
  --forest-deep: #1a0e0b;
  --forest-mid: #3d221a;
  --sage: #e8d9c8;
  --sage-soft: #f0e6d8;
  --cream: #f6f0e8;
  --cream-deep: #ebe2d4;
  --ink: #1c1410;
  --muted: #6b5648;
  --white: #ffffff;
  --accent: #d97706;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(42, 22, 18, 0.18);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Sora", system-ui, sans-serif;
  --container: 1120px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--forest);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--white);
  color: var(--forest);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--forest-mid);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--forest);
}

.btn--light:hover {
  background: var(--sage-soft);
  color: var(--forest);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--forest);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Header — cream so the dark logo mark stays legible */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 36, 28, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--forest);
  text-decoration: none;
}

.logo:hover {
  color: var(--forest-mid);
}

.logo__mark {
  flex-shrink: 0;
  display: block;
  width: 48px;
  height: auto;
  border-radius: 4px;
}

.logo--dark {
  color: var(--forest);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--forest);
}

.nav__order {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__actions .btn--outline {
  color: var(--forest);
  border-color: rgba(26, 48, 32, 0.45);
}

.header__actions .btn--outline:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--white);
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 55% 40%;
  filter: brightness(0.82) saturate(1.1) contrast(1.05) blur(1.5px);
  transform: scale(1.08);
  animation: hero-kenburns 22s var(--ease) infinite alternate;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 14, 0.94) 0%,
    rgba(18, 32, 24, 0.88) 28%,
    rgba(26, 48, 32, 0.72) 52%,
    rgba(26, 48, 32, 0.58) 78%,
    rgba(26, 48, 32, 0.5) 100%
  );
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@keyframes hero-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero__title {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 12ch;
  text-shadow: 0 2px 24px rgba(10, 20, 14, 0.55);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 16px rgba(10, 20, 14, 0.45);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.store-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.store-facts dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.store-facts dd {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.store-facts dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.store-facts dd a:hover {
  color: var(--white);
}

.store-facts--bar dd a:hover {
  color: var(--forest);
}

.hero__visual {
  position: relative;
  min-height: 460px;
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  inset: 8% 6% 10% 4%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 62% 38%,
      rgba(232, 240, 235, 0.28) 0%,
      rgba(47, 90, 60, 0.18) 38%,
      transparent 70%
    );
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.hero__orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__orbit--outer {
  top: 4%;
  right: 2%;
  width: min(78%, 370px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 228, 221, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: orbit-pulse 10s var(--ease) infinite;
}

.hero__orbit--inner {
  bottom: 2%;
  left: 0;
  width: min(56%, 250px);
  aspect-ratio: 1;
  border: 1px dashed rgba(217, 228, 221, 0.22);
  animation: orbit-spin 28s linear infinite;
}

.hero__dish {
  position: absolute;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(10, 20, 14, 0.35);
  border: 3px solid rgba(247, 245, 240, 0.92);
  box-shadow:
    0 0 0 3px rgba(47, 90, 60, 0.55),
    0 28px 50px rgba(0, 0, 0, 0.42),
    0 8px 18px rgba(10, 20, 14, 0.35);
  z-index: 2;
}

.hero__dish::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}

.hero__dish::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: inherit;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 42%
  );
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: soft-light;
}

.hero__dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero__dish--primary {
  width: min(74%, 360px);
  aspect-ratio: 1;
  top: 6%;
  right: 4%;
  z-index: 2;
  transform: rotate(-4deg);
  animation: float-primary 7.5s var(--ease) infinite;
}

.hero__dish--primary img {
  object-position: 50% 46%;
}

.hero__dish--secondary {
  width: min(50%, 236px);
  aspect-ratio: 1;
  bottom: 4%;
  left: 2%;
  z-index: 3;
  border-width: 4px;
  transform: rotate(7deg);
  animation: float-secondary 8.5s var(--ease) infinite;
  box-shadow:
    0 0 0 3px rgba(47, 90, 60, 0.65),
    0 22px 40px rgba(0, 0, 0, 0.45),
    0 6px 14px rgba(10, 20, 14, 0.35);
}

.hero__dish--secondary img {
  object-position: 48% 42%;
}

.hero__speck {
  position: absolute;
  border-radius: 50%;
  background: rgba(217, 228, 221, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 4;
  pointer-events: none;
  animation: speck-drift 9s ease-in-out infinite;
}

.hero__speck--1 {
  width: 10px;
  height: 10px;
  top: 22%;
  left: 22%;
}

.hero__speck--2 {
  width: 7px;
  height: 7px;
  top: 58%;
  right: 10%;
  background: rgba(47, 90, 60, 0.55);
  animation-delay: -2.8s;
}

.hero__speck--3 {
  width: 14px;
  height: 14px;
  bottom: 18%;
  left: 42%;
  background: rgba(247, 245, 240, 0.28);
  animation-delay: -5s;
}

@keyframes float-primary {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-14px); }
}

@keyframes float-secondary {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-10px); }
}

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.025); }
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes speck-drift {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-10px); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero — cover layout (full-bleed + facts bar) */
.hero--cover {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: min(78vh, 700px);
  padding: clamp(5rem, 12vw, 8rem) 0;
}

.hero--cover .hero__grid {
  display: block;
}

.hero--cover .hero__content {
  max-width: 36rem;
  animation: hero-rise 0.9s var(--ease) both;
}

.hero--cover .hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.hero--cover .hero__lead {
  margin: 0 0 2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero--cover .hero__cta {
  margin-bottom: 0;
}

.hero--cover .hero__eyebrow {
  margin: 0 0 0.85rem;
}

.store-facts-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 36, 28, 0.08);
  padding: 1.5rem 0;
}

.store-facts--bar {
  gap: 1.5rem;
  width: 100%;
  padding-top: 0;
  border-top: 0;
}

.store-facts--bar > div {
  min-width: 0;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(26, 36, 28, 0.12);
}

.store-facts--bar > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.store-facts--bar dt {
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.store-facts--bar dd {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections shared */
.section-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label--center,
.section-title--center {
  text-align: center;
}

.section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
}

/* About */
.about {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4.5vw, 3.25rem);
  align-items: center;
}

.about__text {
  color: var(--muted);
  max-width: 48ch;
}

.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin: 1.75rem 0 2rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest);
}

.about__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--accent);
}

.about__collage {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  aspect-ratio: 5 / 4;
  width: 100%;
  height: auto;
}

.about__img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(18, 32, 24, 0.1);
}

.about__img--a {
  grid-column: 1;
  grid-row: 1 / 3;
  object-position: 50% 42%;
}

.about__img--c {
  grid-column: 2;
  grid-row: 1;
  object-position: 48% 40%;
}

.about__img--d {
  grid-column: 2;
  grid-row: 2;
  object-position: 42% 52%;
}

/* Categories */
.categories {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    radial-gradient(
      ellipse 70% 55% at 12% 20%,
      rgba(47, 90, 60, 0.06),
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 45% at 90% 80%,
      rgba(26, 48, 32, 0.05),
      transparent 58%
    ),
    var(--cream);
  overflow: hidden;
}

.categories__header {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.categories__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.55;
}

.categories__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(140px, 18vw);
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.categories__item {
  min-height: 0;
}

.categories__item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.categories__item--wide {
  grid-column: span 2;
}

.categories__tile {
  position: relative;
  display: block;
  height: 100%;
  min-height: 140px;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(18, 32, 24, 0.12);
  isolation: isolate;
}

.categories__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(10, 20, 14, 0.72) 100%
  );
  z-index: 1;
  transition: opacity 0.45s var(--ease);
}

.categories__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.7s var(--ease);
}

.categories__name {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(10, 20, 14, 0.45);
  transition: transform 0.45s var(--ease);
}

.categories__tile:hover,
.categories__tile:focus-visible {
  color: var(--white);
}

.categories__tile:hover img,
.categories__tile:focus-visible img {
  transform: scale(1.08);
}

.categories__tile:hover .categories__name,
.categories__tile:focus-visible .categories__name {
  color: var(--white);
  transform: translateY(-2px);
}

.categories__tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.categories__tile--view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at 78% 22%,
      color-mix(in srgb, var(--accent) 35%, transparent),
      transparent 42%
    ),
    linear-gradient(145deg, var(--forest-mid, var(--forest)), var(--forest-deep, var(--forest)));
  background-size: 140% 140%;
  background-position: 30% 40%;
  box-shadow: 0 16px 36px color-mix(in srgb, var(--forest) 22%, transparent);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    background-position 0.7s var(--ease);
}

.categories__tile--view-all::after {
  display: none;
}

.categories__view-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  z-index: 1;
  padding: 0.75rem;
  text-align: center;
}

.categories__view-all-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.categories__view-all-arrow {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--accent);
  transform: translateX(0);
  transition:
    transform 0.45s var(--ease),
    color 0.4s var(--ease);
}

.categories__view-all-hint {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-soft, var(--cream));
  opacity: 0.85;
  transition: opacity 0.4s var(--ease), letter-spacing 0.45s var(--ease);
}

.categories__tile--view-all:hover,
.categories__tile--view-all:focus-visible {
  color: var(--white);
  transform: translateY(-3px);
  background-position: 70% 30%;
  box-shadow: 0 22px 44px color-mix(in srgb, var(--forest) 32%, transparent);
}

.categories__tile--view-all:hover .categories__view-all-label,
.categories__tile--view-all:focus-visible .categories__view-all-label {
  color: var(--accent);
}

.categories__tile--view-all:hover .categories__view-all-arrow,
.categories__tile--view-all:focus-visible .categories__view-all-arrow {
  transform: translateX(4px);
  color: var(--white);
}

.categories__tile--view-all:hover .categories__view-all-hint,
.categories__tile--view-all:focus-visible .categories__view-all-hint {
  opacity: 1;
  letter-spacing: 0.1em;
}

.page-menu .menu {
  padding-top: clamp(5.5rem, 10vw, 7.5rem);
  min-height: 60vh;
}


/* Menu */
.menu {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream-deep);
}

.menu__header {
  margin-bottom: 2rem;
}

.menu__tabs {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  display: flex;
  flex-wrap: nowrap;
  justify-content: safe center;
  align-items: stretch;
  gap: 0.35rem 1.15rem;
  margin: 0 0 2.5rem;
  padding: 0.65rem 0.25rem 0;
  border-bottom: 1px solid rgba(42, 34, 27, 0.12);
  background: var(--cream-deep);
  box-shadow: 0 10px 24px -18px color-mix(in srgb, var(--forest) 35%, transparent);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--forest) 35%, transparent) transparent;
}

.menu__tabs::-webkit-scrollbar {
  height: 4px;
}

.menu__tabs::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--forest) 30%, transparent);
  border-radius: 999px;
}

.menu__tab {
  flex: 0 0 auto;
  white-space: nowrap;
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 0.25rem;
  margin-bottom: -1px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.menu__tab:hover,
.menu__tab.is-active {
  color: var(--forest);
}

.menu__tab.is-active {
  border-bottom-color: var(--accent);
}

.menu__panel[hidden] {
  display: none;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.15rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(18, 32, 24, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.menu-card__img {
  width: 130px;
  height: 130px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.menu-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--forest);
}

.menu-card__desc {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
  min-height: 3.9em;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-card__price {
  font-weight: 700;
  color: var(--forest);
  font-size: 1.05rem;
}

.menu-card__add {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}

.menu-card__add:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.06);
}

.menu-card__add[hidden],
[data-order-section][hidden],
[data-uzeats][hidden],
[data-uzeats-fallback][hidden] {
  display: none !important;
}

.menu__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--outline-dark:hover {
  background: var(--forest);
  color: var(--white);
}

.menu.is-showing-all .menu__panel + .menu__panel {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26, 48, 32, 0.1);
}

.menu__panel-label {
  display: none;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  text-align: center;
}

.menu.is-showing-all .menu__panel-label {
  display: block;
}

/* Experience */
.experience {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.experience__media {
  position: absolute;
  inset: 0;
}

.experience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}

.experience__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 36rem;
}

.experience__content h2 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.experience__content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* Highlights */
.highlights {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.45), transparent 40%),
    var(--sage-soft);
}

.highlights__header {
  margin-bottom: 2.5rem;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.highlight {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(280px, 32vw, 360px);
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
  color: var(--white);
  background: none;
  padding: 0;
  box-shadow: none;
}

.highlight__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease);
  z-index: 0;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 21, 0.12) 20%,
    rgba(6, 22, 21, 0.78) 100%
  );
  z-index: 1;
  transition: opacity 0.45s var(--ease);
}

.highlight__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.35rem 1.4rem;
  max-width: 36ch;
}

.highlight h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  color: var(--white);
  text-shadow: 0 2px 14px rgba(20, 6, 10, 0.35);
  transition: transform 0.45s var(--ease);
}

.highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
}

.highlight:hover .highlight__bg,
.highlight:focus-within .highlight__bg {
  transform: scale(1.1);
}

.highlight:hover h3,
.highlight:focus-within h3 {
  transform: translateY(-2px);
}

/* Contact — dark panel + map */
.contact {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--forest-deep);
  color: var(--cream);
}

.contact__header {
  max-width: 36rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.contact .section-label {
  color: var(--accent);
}

.contact .section-title {
  color: var(--white);
}

.contact__lead {
  margin: 0.75rem auto 0;
  max-width: 42ch;
  color: color-mix(in srgb, var(--cream) 72%, transparent);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: stretch;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact__info {
  font-style: normal;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.contact__facts {
  display: grid;
  gap: 1.25rem;
  margin: 0;
}

.contact__fact {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__fact:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact__fact dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact__fact dd {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--cream) 88%, transparent);
}

.contact__fact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.contact__fact a:hover {
  color: var(--accent);
}

.contact__phone {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact__hours-note {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--cream) 58%, transparent);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.contact__actions .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.contact__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.contact__map {
  position: relative;
  min-height: 280px;
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  background: var(--forest-mid);
  filter: grayscale(0.15) contrast(1.05);
}

/* Footer */
.site-footer {
  background: var(--sage);
  color: var(--forest);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}

.footer__brand p {
  color: var(--muted);
  max-width: 32ch;
  font-size: 0.92rem;
  margin-top: 0.85rem;
}

.footer__col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer__col a:hover {
  color: var(--forest);
}

.footer__col li + li {
  margin-top: 0.55rem;
}

.footer__social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer__social-list svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer__bar {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 0;
  font-size: 0.85rem;
}

.footer__bar a {
  color: var(--sage);
}

.footer__bar p {
  margin: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, 28vw);
  }

  .categories__item--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .categories__item--wide {
    grid-column: span 2;
  }

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

@media (max-width: 900px) {

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

  .contact__map iframe {
    min-height: 260px;
  }

  .hero__grid,
  .about__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    max-width: none;
  }

  .hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 20, 14, 0.9) 0%,
      rgba(18, 32, 24, 0.82) 50%,
      rgba(26, 48, 32, 0.72) 100%
    );
  }

  .hero--cover {
    min-height: min(72vh, 640px);
    padding: clamp(3.5rem, 10vw, 5.5rem) 0;
  }

  .hero--cover .hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(10, 20, 14, 0.86) 0%,
      rgba(18, 32, 24, 0.74) 50%,
      rgba(26, 48, 32, 0.62) 100%
    );
  }

  .hero__visual {
    min-height: 380px;
    max-width: 440px;
    margin-inline: auto;
    width: 100%;
  }

  .hero__dish--primary {
    width: min(78%, 320px);
    top: 4%;
    right: 6%;
  }

  .hero__dish--secondary {
    width: min(52%, 210px);
    bottom: 6%;
    left: 4%;
  }

  .hero__orbit--outer {
    width: min(82%, 340px);
  }

  .hero__orbit--inner {
    width: min(58%, 230px);
  }

  .about__collage {
    aspect-ratio: 5 / 4;
  }

  .store-facts {
    grid-template-columns: 1fr;
  }

  .store-facts--bar {
    gap: 1.1rem;
  }

  .store-facts--bar > div {
    padding: 0 0 1.1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(26, 36, 28, 0.1);
  }

  .store-facts--bar > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .header__actions {
    display: none;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid rgba(26, 36, 28, 0.1);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header__actions {
    display: none;
  }

  .nav__order {
    display: block;
    margin-top: 0.5rem;
  }

  .nav__order .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__dish--primary {
    width: min(76%, 280px);
  }

  .hero__dish--secondary {
    width: min(50%, 168px);
  }

  .categories__header {
    margin-bottom: 1.75rem;
  }

  .categories__gallery {
    gap: 0.65rem;
    grid-auto-rows: minmax(120px, 34vw);
  }

  .categories__name {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.6rem;
    font-size: 1rem;
  }

  .hero--cover {
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }

  .about__collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(240px, 52vw) minmax(140px, 28vw);
    aspect-ratio: auto;
  }

  .about__img--a {
    grid-column: 1 / -1;
    grid-row: 1;
    object-position: 50% 40%;
  }

  .about__img--c {
    grid-column: 1;
    grid-row: 2;
  }

  .about__img--d {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg img,
  .hero__content,
  .hero__dish,
  .hero__orbit,
  .hero__speck,
  .about__img--b,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
  }

  .hero__content,
  .hero__orbit,
  .hero__speck,
  .about__img--b,
  .reveal {
    transform: none;
  }

  .hero__dish--primary {
    transform: rotate(-4deg);
  }

  .hero__dish--secondary {
    transform: rotate(7deg);
  }

  .hero__bg img {
    transform: scale(1.08);
  }

  .categories__tile img,
  .categories__name {
    transition: none !important;
  }

  .categories__tile:hover img,
  .categories__tile:focus-visible img {
    transform: scale(1.03);
  }
}
