/* ========================================================================
   Saffron Kitchen — styles.css
   Modern Indian restaurant, editorial / food-magazine aesthetic.
   ======================================================================== */

:root {
  /* Palette */
  --saffron: #D2691E;
  --burgundy: #6B1E2C;
  --burgundy-deep: #561621;
  --cream: #FFF8E7;
  --cream-2: #F7EDD3;
  --charcoal: #2A1810;
  --charcoal-2: #1B0F0A;
  --gold: #D4A574;
  --gold-soft: #E5C9A0;
  --line: rgba(42, 24, 16, 0.12);
  --muted: rgba(42, 24, 16, 0.62);

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", "Cormorant Garamond", cursive;

  /* Spacing */
  --container: 1200px;
  --pad: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 10vw, 140px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

/* ---------------- Typography helpers ---------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 18px;
}
.section-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 70px);
}
.section-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--burgundy);
  color: var(--cream);
}
.btn--primary:hover { background: var(--charcoal); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); }
.btn--link {
  padding: 16px 4px;
  background: transparent;
  color: var(--cream);
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(255,248,231,0.35);
  border-radius: 0;
}
.btn--link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.btn--full { width: 100%; }

/* ---------------- Top bar ---------------- */
.topbar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--charcoal);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.topbar__phone .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 4px rgba(210,105,30,0.18);
}
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__note { color: var(--muted); font-size: 12px; letter-spacing: 0.06em; }
.social {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--charcoal);
  transition: color .2s, background .2s;
}
.social:hover { color: var(--saffron); }

/* ---------------- Sticky nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(255, 248, 231, 0.96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--cream);
  transition: color .25s;
}
.nav.is-solid .brand { color: var(--charcoal); }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand--light { color: var(--cream); }
.brand--light .brand__mark { background: var(--saffron); color: var(--charcoal-2); }

.nav__links {
  display: flex; align-items: center; gap: 6px;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  padding: 10px 14px;
  position: relative;
  transition: color .25s;
}
.nav.is-solid .nav__links a { color: var(--charcoal); }
.nav__links a:hover { color: var(--gold); }
.nav.is-solid .nav__links a:hover { color: var(--burgundy); }
.nav__cta {
  margin-left: 12px;
  padding: 12px 22px !important;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px !important;
}

.hamburger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--cream);
  transition: all .3s var(--ease);
}
.nav.is-solid .hamburger span { background: var(--charcoal); }
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  height: calc(100vh - 42px - 78px);
  min-height: 620px;
  margin-top: -78px;          /* nav floats over */
  padding-top: 78px;
  color: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroIn 1.6s var(--ease) forwards;
}
@keyframes heroIn {
  0% { transform: scale(1.10); opacity: .6; }
  100% { transform: scale(1.04); opacity: 1; }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.20) 60%, rgba(42,24,16,0.85) 100%),
    radial-gradient(60% 50% at 20% 50%, rgba(107,30,44,0.35), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 26px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}
.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0 0 40px;
  color: rgba(255,248,231,0.9);
  letter-spacing: 0.01em;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.hero .btn--primary { background: var(--saffron); color: var(--charcoal-2); }
.hero .btn--primary:hover { background: var(--gold); }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid rgba(255,248,231,0.5);
  border-radius: 16px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--cream);
  margin: 8px auto 0;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ---------------- Welcome ---------------- */
.welcome {
  background: var(--cream);
  padding: var(--section) 0 calc(var(--section) * 0.7);
}
.welcome__inner { text-align: center; max-width: 880px; margin: 0 auto; }
.welcome__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.welcome__sig {
  font-family: var(--script);
  font-size: 28px;
  color: var(--burgundy);
  margin: 0;
}

/* ---------------- Menu ---------------- */
.menu {
  background: var(--cream-2);
  padding: var(--section) 0;
  position: relative;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
.dish {
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dish:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(42,24,16,0.4);
}
.dish__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}
.dish__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.dish__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.dish__row h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0;
  color: var(--charcoal);
}
.dish__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--burgundy);
}
.dish p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}
.dish__tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  width: 100%;
}

.menu__foot {
  margin-top: 60px;
  text-align: center;
}
.menu__note {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 17px;
}

/* ---------------- Chef ---------------- */
.chef {
  background: var(--charcoal-2);
  color: var(--cream);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}
.chef::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(210,105,30,0.18), transparent 70%);
  pointer-events: none;
}
.chef__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.chef__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.chef__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.chef__caption {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--cream);
  background: rgba(0,0,0,0.45);
  padding: 6px 14px;
  border-radius: 4px;
}
.chef__copy .eyebrow { color: var(--gold); }
.chef__copy .section-title { color: var(--cream); }
.chef__copy .section-title em { color: var(--saffron); }
.chef__bio {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,248,231,0.78);
  margin: 0 0 20px;
}
.chef__sig {
  font-family: var(--script);
  font-size: 38px;
  line-height: 1.2;
  color: var(--saffron);
  margin: 36px 0 4px;
  letter-spacing: 0.01em;
}
.chef__sig-name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  margin: 0;
  font-size: 18px;
}

/* ---------------- Gallery ---------------- */
.gallery {
  background: var(--cream);
  padding: var(--section) 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.g {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: zoom-in;
}
.g img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s;
}
.g::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,24,16,0.35));
  opacity: 0;
  transition: opacity .3s;
}
.g:hover img { transform: scale(1.05); }
.g:hover::after { opacity: 1; }
.g--tall { grid-row: span 2; }
.g--wide { grid-column: span 2; }

/* ---------------- Press ---------------- */
.press {
  background: var(--cream-2);
  padding: clamp(60px, 8vw, 90px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press__row {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}
.press__row li {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 0 12px;
  border-left: 1px solid var(--line);
}
.press__row li:first-child { border-left: 0; }
.press__name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.press__line {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ---------------- Reservations ---------------- */
.reserve {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: "";
  position: absolute;
  bottom: -160px; left: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(212,165,116,0.20), transparent 70%);
}
.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.reserve__copy .eyebrow { color: var(--gold); }
.reserve__copy .section-title { color: var(--cream); }
.reserve__copy .section-title em { color: var(--saffron); }
.reserve__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,248,231,0.78);
  margin: 0 0 28px;
  line-height: 1.5;
}
.reserve__lede a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.reserve__notes {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid rgba(255,248,231,0.12);
}
.reserve__notes li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,248,231,0.12);
  font-size: 15px;
  color: rgba(255,248,231,0.78);
  position: relative;
  padding-left: 24px;
}
.reserve__notes li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 13px;
  color: var(--saffron);
  font-size: 12px;
}

.reserve__form {
  background: var(--cream);
  color: var(--charcoal);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 4px;
  box-shadow: 0 40px 60px -30px rgba(0,0,0,0.5);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: block;
  margin-bottom: 14px;
}
.field > span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 84px; }
.form-msg {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--burgundy);
  font-size: 16px;
  min-height: 22px;
  text-align: center;
}
.form-msg.is-success { color: #2A6B3F; }

/* ---------------- Visit ---------------- */
.visit {
  background: var(--cream);
  padding: var(--section) 0;
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.visit__addr {
  font-style: normal;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 32px;
}
.visit__addr a { color: var(--burgundy); border-bottom: 1px solid var(--gold); }
.visit__sub {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 14px;
  font-weight: 500;
}
.visit__hours {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  border-top: 1px solid var(--line);
}
.visit__hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.visit__hours li span:first-child { color: var(--charcoal); font-weight: 500; }
.visit__hours li span:last-child { color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 17px; }
.visit__parking {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.visit__parking strong { font-style: normal; color: var(--saffron); letter-spacing: 0.04em; }

.visit__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(107,30,44,0.92), rgba(42,24,16,0.92)),
    repeating-linear-gradient(45deg, rgba(212,165,116,0.08) 0 2px, transparent 2px 24px);
  color: var(--cream);
  border-radius: 4px;
  min-height: 420px;
  text-align: center;
  padding: 40px;
  transition: transform .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.visit__map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,165,116,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,165,116,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.visit__map:hover { transform: translateY(-2px); }
.visit__map > * { position: relative; z-index: 1; }
.map__pin {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--charcoal-2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(210,105,30,0.25);
}
.map__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-soft);
}

/* ---------------- Footer ---------------- */
.footer {
  background: var(--charcoal-2);
  color: rgba(255,248,231,0.7);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,248,231,0.08);
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-soft);
  margin: 18px 0 10px;
}
.footer__small { font-size: 14px; color: rgba(255,248,231,0.55); margin: 0; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { padding: 6px 0; font-size: 15px; }
.footer__list a:hover { color: var(--saffron); }

.footer__bar {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,248,231,0.5);
}
.footer__bar a { color: var(--gold); border-bottom: 1px solid rgba(212,165,116,0.4); }
.footer__bar a:hover { color: var(--saffron); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(15,8,5,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: var(--cream);
  background: rgba(255,248,231,0.10);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--saffron); color: var(--charcoal-2); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .press__row { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
  .press__row li:nth-child(1),
  .press__row li:nth-child(4) { border-left: 0; }
  .chef__grid { gap: 50px; }
  .reserve__grid { gap: 50px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav__inner { height: 64px; }
  .nav__links {
    position: fixed;
    top: 64px; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: var(--charcoal-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -20px 0 40px rgba(0,0,0,0.3);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--cream); padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,248,231,0.08); }
  .nav__cta { margin-left: 0; margin-top: 14px; border-color: var(--saffron); color: var(--saffron) !important; }
  .hamburger { display: block; }
  .topbar__note { display: none; }

  .hero { height: calc(100vh - 42px - 64px); margin-top: -64px; padding-top: 64px; min-height: 560px; }
  .hero__title { font-size: clamp(54px, 16vw, 110px); }

  .chef__grid { grid-template-columns: 1fr; }
  .reserve__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 280px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 8px; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .g--wide { grid-column: span 2; }
  .g--tall { grid-row: span 1; }

  .press__row { grid-template-columns: repeat(2, 1fr); }
  .press__row li { border-left: 0 !important; }
}

@media (max-width: 480px) {
  .menu__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__ctas .btn { width: 100%; }
  .hero__tagline { font-size: 18px; }
  .topbar__phone { font-size: 12px; }
  .brand__name { font-size: 18px; }
  .brand__mark { width: 32px; height: 32px; font-size: 18px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g--wide { grid-column: span 1; }
  .reserve__form { padding: 24px 20px; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 22px; }
}

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