/* ============================================================
   INDIAN REPUBLIC CANTEEN — Design System & Global Styles
   Editorial luxury · Clay-inspired · Cream / Forest / Saffron
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color */
  --cream: #F6F1E7;
  --cream-deep: #EFE7D7;
  --forest: #1E3A2F;
  --forest-deep: #142921;
  --saffron: #AC5312;      /* 4.66:1 on cream — AA for text; brighter tone reserved for dark bg */
  --saffron-bright: #E07B2A;
  --charcoal: #211F1C;
  --steel: #5F6461;        /* 5.36:1 on cream — AA */
  --line: rgba(33, 31, 28, 0.14);
  --line-light: rgba(246, 241, 231, 0.18);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Scale (fluid) */
  --text-hero: clamp(2.75rem, 8vw, 7rem);
  --text-h1: clamp(2.5rem, 6vw, 5rem);
  --text-h2: clamp(1.9rem, 4vw, 3.25rem);
  --text-h3: clamp(1.3rem, 2.2vw, 1.75rem);
  --text-lead: clamp(1.05rem, 1.5vw, 1.3rem);
  --text-body: 1rem;
  --text-small: 0.85rem;
  --text-micro: 0.72rem;

  /* Space */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;
  --space-7: 9rem;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 250ms;
  --dur-med: 400ms;
  --dur-slow: 500ms;

  --radius: 2px;
  --nav-h: 76px;
  --container: 1400px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

::selection { background: var(--saffron); color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- 3. Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--cream);
  font-weight: 600;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.display {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display em {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--saffron);
}

.lead {
  font-size: var(--text-lead);
  line-height: 1.55;
  color: var(--steel);
  max-width: 52ch;
}

.section { padding-block: var(--space-6); }
.section--tight { padding-block: var(--space-5); }

.section-head {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  max-width: 60rem;
}

/* ---------- 4. Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.9rem 1.9rem;
  font-weight: 600;
  font-size: var(--text-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn .btn-arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 10px 24px -12px rgba(30, 58, 47, 0.55);
}
.btn--primary:hover { background: var(--forest-deep); }

.btn--saffron {
  background: var(--saffron);
  color: var(--cream);
  box-shadow: 0 10px 24px -12px rgba(201, 101, 28, 0.6);
}
.btn--saffron:hover { background: var(--saffron-bright); }

.btn--ghost {
  border: 1.5px solid currentColor;
  background: transparent;
}
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

.btn--light { background: var(--cream); color: var(--forest); }
.btn--light:hover { background: var(--cream-deep); }

/* ---------- 5. Media frames ---------- */
/* .media wraps every real photo. Aspect ratio is set by the context
   (.story-media, .dish-card, .magnet, .menu-peek); the image fills it. */
.media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--cream-deep);
}
.media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.media--dark { background: var(--forest-deep); }

/* Placeholder media (clearly labeled) — still used by the map embed slot */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(33,31,28,0.045) 22px 44px),
    linear-gradient(150deg, var(--cream-deep), #E2D6BE);
  border: 1px dashed rgba(33, 31, 28, 0.3);
  color: var(--steel);
}
.ph__label {
  padding: 0.5rem 0.9rem;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  max-width: 90%;
}
.ph__label strong { display: block; font-size: 0.8rem; }

/* ---------- 6. Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: transform var(--dur-med) var(--ease-out);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: var(--nav-h);
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(246, 241, 231, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}
.site-header.is-scrolled .nav-bar {
  border-bottom-color: var(--line);
  background: rgba(246, 241, 231, 0.94);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.brand__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav-links a {
  position: relative;
  padding-block: 0.4rem;
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a[aria-current="page"] { color: var(--forest); font-weight: 600; }

.nav-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Marquee food strip */
.marquee {
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
  border-bottom: 1px solid var(--forest-deep);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.45rem 1.25rem;
  white-space: nowrap;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee__group .dot { color: var(--saffron-bright); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(78vw, 22rem);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 6rem 2.5rem;
    background: var(--forest);
    color: var(--cream);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
    z-index: 90;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; font-family: var(--font-display); letter-spacing: 0; }
  .nav-links .nav-cta { margin-top: 1rem; }
  .nav-toggle { display: flex; position: relative; z-index: 95; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
/* Base layer: gradient sweep. Visible while the video loads, and the
   permanent backdrop when the video is skipped (reduced motion / small
   screens / save-data — see main.js). */
.hero__timelapse {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #0E241B 0%, var(--forest) 42%, #3A5A48 68%, #163025 100%);
  background-size: 220% 220%;
  animation: timelapse 18s ease-in-out infinite alternate;
}
@keyframes timelapse {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}

/* Poster image + looping footage, stacked over the gradient */
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__poster { z-index: 1; }
.hero__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.hero__video.is-playing { opacity: 1; }
/* Pull the daylight footage toward the brand's forest palette */
.hero__tint {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--forest-deep);
  mix-blend-mode: color;
  opacity: 0.45;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.5;
  background-image: radial-gradient(rgba(246,241,231,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(to top, rgba(13, 20, 16, 0.88) 0%, rgba(13, 20, 16, 0.42) 55%, rgba(13, 20, 16, 0.62) 100%);
}
.hero__inner {
  width: 100%;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  padding-top: calc(var(--nav-h) + 6rem);
  display: grid;
  gap: var(--space-4);
}

.hero__title {
  font-size: var(--text-hero);
  max-width: 12ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
}
.hero__tagline {
  max-width: 40ch;
  font-size: var(--text-lead);
  color: rgba(246, 241, 231, 0.82);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.hero__ticker {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-light);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.6);
  flex-wrap: wrap;
}

/* Floating icons (subtle) */
.float-icon {
  position: absolute;
  z-index: -1;
  color: rgba(224, 123, 42, 0.5);
  animation: floaty 7s ease-in-out infinite;
  pointer-events: none;
}
.float-icon--1 { top: 22%; right: 12%; animation-delay: 0s; }
.float-icon--2 { top: 42%; right: 26%; animation-delay: 2.2s; }
.float-icon--3 { top: 30%; left: 55%; animation-delay: 4.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-16px) rotate(5deg); }
}

/* ---------- 8. Story (split editorial) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.story-media {
  position: relative;
}
.story-media .media { aspect-ratio: 4 / 5; }
.story-media__badge {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  display: grid;
  place-items: center;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.25;
  padding: 1rem;
  transform: rotate(-8deg);
  box-shadow: 0 18px 36px -18px rgba(201, 101, 28, 0.7);
}
.story-copy { display: grid; gap: var(--space-3); }
.story-copy .stat-row {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
}
.stat span { font-size: var(--text-small); color: var(--steel); }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media__badge { right: 0.75rem; }
}

/* ---------- 9. Dish cards ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.dish-grid > :nth-child(2) { transform: translateY(2.5rem); }

.dish-card {
  display: grid;
  gap: var(--space-2);
  transition: transform var(--dur-med) var(--ease-out);
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card .media {
  aspect-ratio: 3 / 4;
  transition: box-shadow var(--dur-med) var(--ease-out);
}
.dish-card:hover .media { box-shadow: 0 24px 48px -24px rgba(33, 31, 28, 0.4); }
.dish-card:hover .media img { transform: scale(1.05); }
.dish-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
}
.dish-card__name { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 550; }
.dish-card__price { font-weight: 700; color: var(--saffron); white-space: nowrap; }
.dish-card__desc { color: var(--steel); font-size: var(--text-small); max-width: 34ch; }

@media (max-width: 900px) {
  .dish-grid { grid-template-columns: 1fr; }
  .dish-grid > :nth-child(2) { transform: none; }
}

/* ---------- 10. Experience band (dark) ---------- */
.band {
  background: var(--forest);
  color: var(--cream);
}
.band .lead { color: rgba(246, 241, 231, 0.72); }
.band .eyebrow { color: var(--saffron-bright); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}
.exp-item {
  padding: var(--space-4) var(--space-3);
  display: grid;
  gap: var(--space-2);
  border-bottom: 1px solid var(--line-light);
}
.exp-item + .exp-item { border-left: 1px solid var(--line-light); }
.exp-item h3 { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 520; }
.exp-item p { color: rgba(246, 241, 231, 0.68); font-size: var(--text-small); }
.exp-item .exp-num {
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--saffron-bright);
}
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-item + .exp-item { border-left: 0; }
}

/* ---------- 11. Fridge-magnet gallery ---------- */
.magnet-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-block: var(--space-2);
}
.magnet {
  position: relative;
  background: #FFFDF8;
  padding: 0.6rem 0.6rem 2.4rem;
  box-shadow: 0 14px 28px -14px rgba(33, 31, 28, 0.35);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.magnet .media { aspect-ratio: 1; }
.magnet__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0.55rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--steel);
}
.magnet::before {
  /* the "magnet" */
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--saffron-bright), var(--saffron) 70%);
  box-shadow: 0 4px 8px -2px rgba(33, 31, 28, 0.4);
  z-index: 2;
}
.magnet:nth-child(odd) { transform: rotate(-2.5deg); }
.magnet:nth-child(even) { transform: rotate(2deg) translateY(1.2rem); }
.magnet:nth-child(3n) { transform: rotate(-1deg) translateY(-0.6rem); }
.magnet:nth-child(3n)::before { background: radial-gradient(circle at 30% 30%, #35604D, var(--forest) 70%); }
.magnet:hover { transform: rotate(0deg) scale(1.04); box-shadow: 0 26px 48px -20px rgba(33, 31, 28, 0.45); z-index: 3; }

@media (max-width: 900px) { .magnet-board { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 12. Sticky-note testimonials ---------- */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
.note {
  position: relative;
  padding: 2.4rem 1.8rem 1.8rem;
  background: #FBF3D9;
  box-shadow: 0 16px 32px -18px rgba(33, 31, 28, 0.4);
  transition: transform var(--dur-med) var(--ease-out);
}
.note::before {
  /* tape */
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 5.5rem;
  height: 1.6rem;
  background: rgba(201, 101, 28, 0.28);
  backdrop-filter: blur(1px);
}
.note:nth-child(1) { transform: rotate(-1.6deg); }
.note:nth-child(2) { transform: rotate(1.2deg) translateY(1.4rem); background: #EAF0DF; }
.note:nth-child(3) { transform: rotate(-0.8deg); background: #F6E4D3; }
.note:hover { transform: rotate(0) translateY(-4px); }
.note blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--charcoal);
}
.note figcaption {
  margin-top: var(--space-2);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--steel);
}
.note .stars { color: var(--saffron); letter-spacing: 0.15em; font-size: var(--text-small); }
@media (max-width: 900px) {
  .notes-grid { grid-template-columns: 1fr; }
  .note:nth-child(2) { transform: rotate(1.2deg); }
}

/* ---------- 13. CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -12rem;
  top: -12rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 123, 42, 0.35), transparent 65%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: grid;
  gap: var(--space-3);
  justify-items: start;
}

/* ---------- 14. Page hero (interior pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--space-6));
  padding-bottom: var(--space-5);
}
.page-hero .display { max-width: 16ch; }
.page-hero--dark {
  background: var(--forest);
  color: var(--cream);
}
.page-hero--dark .lead { color: rgba(246, 241, 231, 0.72); }

/* ---------- 15. Menu page ---------- */
.menu-filters {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: var(--space-2);
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  min-height: 44px;
  padding: 0.55rem 1.3rem;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.filter-btn:hover { border-color: var(--forest); }
.filter-btn:active { transform: scale(0.96); }
.filter-btn[aria-pressed="true"] {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.menu-list {
  display: grid;
  gap: var(--space-5);
  padding-block: var(--space-5);
}
.menu-cat.is-hidden { display: none; }
.menu-cat__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.menu-cat__title em { color: var(--saffron); font-style: italic; }

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-5);
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem var(--space-2);
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.menu-item:hover { background: rgba(201, 101, 28, 0.045); }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 550;
}
.menu-item__price { font-weight: 700; color: var(--saffron); }
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: var(--text-small);
  color: var(--steel);
  max-width: 46ch;
}
.menu-item .diet {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  margin-right: 0.4rem;
  border: 1.5px solid;
  vertical-align: -1px;
  position: relative;
}
.diet::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: currentColor;
}
.diet--veg { color: #2E7D32; }
.diet--nonveg { color: #B3261E; }

/* Hover image swap panel (desktop) */
.menu-peek {
  position: fixed;
  z-index: 60;
  width: 15rem;
  aspect-ratio: 3 / 4;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94) rotate(-2deg);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.menu-peek.is-visible { opacity: 1; transform: scale(1) rotate(0deg); }
.menu-peek .media { position: absolute; inset: 0; box-shadow: 0 30px 60px -24px rgba(33,31,28,0.5); }
@media (max-width: 1024px), (hover: none) { .menu-peek { display: none; } }

@media (max-width: 900px) { .menu-items { grid-template-columns: 1fr; } }

/* ---------- 16. About page ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.value-card {
  padding: var(--space-4) var(--space-3);
  border: 1px solid var(--line);
  display: grid;
  gap: var(--space-2);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--saffron); }
.value-card h3 { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 520; }
.value-card p { color: var(--steel); font-size: var(--text-small); }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

.timeline { display: grid; gap: var(--space-4); max-width: 46rem; }
.timeline-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: var(--space-3);
  align-items: start;
}
.timeline-item .year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--saffron);
}
.timeline-item p { color: var(--steel); }

/* ---------- 17. Contact / Reservation ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: var(--space-3); }
.info-list dt {
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.3rem;
}
.info-list dd { color: var(--charcoal); }
.info-list dd a { text-decoration: underline; text-underline-offset: 3px; }

.map-frame { margin-top: var(--space-4); }
.map-frame .ph { aspect-ratio: 16 / 10; }

.res-form {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #FFFDF8;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px rgba(33, 31, 28, 0.35);
}
.res-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 640px) { .res-form .form-row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.field label .req { color: var(--saffron); }
.field input,
.field select,
.field textarea {
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 6.5rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30, 58, 47, 0.15);
}
.field .hint { font-size: var(--text-micro); color: var(--steel); }
.field .error {
  display: none;
  font-size: var(--text-small);
  font-weight: 600;
  color: #B3261E;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #B3261E; }
.field.has-error .error { display: block; }

.form-status {
  display: none;
  padding: 0.9rem 1.1rem;
  font-size: var(--text-small);
  font-weight: 600;
  border: 1px solid;
}
.form-status.is-success { display: block; color: var(--forest); border-color: var(--forest); background: rgba(30,58,47,0.06); }

.wa-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-small);
  color: var(--steel);
}
.wa-note svg { flex-shrink: 0; color: #25D366; }

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: var(--space-6) var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(246, 241, 231, 0.15);
}
.footer-brand p { color: rgba(246, 241, 231, 0.6); max-width: 30ch; margin-top: var(--space-2); font-size: var(--text-small); }
.footer-col h3 {
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-bright);
  margin-bottom: var(--space-2);
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li {
  font-size: var(--text-small);
  color: rgba(246, 241, 231, 0.75);
}
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-3);
  font-size: var(--text-micro);
  color: rgba(246, 241, 231, 0.45);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 19. 404 ---------- */
.page-404 {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--forest);
  color: var(--cream);
  padding: var(--space-4);
}
.page-404 .code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 15rem);
  line-height: 1;
  color: var(--saffron-bright);
  font-variation-settings: "SOFT" 80, "WONK" 1;
}
.page-404 .display { justify-self: center; }
.page-404 .lead { color: rgba(246, 241, 231, 0.7); margin-inline: auto; }
.page-404 .actions { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-3); }

/* ---------- 20. Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-inview { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .media img { transition: none; }
  .dish-card:hover .media img { transform: none; }
}

/* Subtle parallax targets */
[data-parallax] { will-change: transform; }
