/* =====================================================================
   SAFFRON — Modern Indian Fine Dining, Mayfair
   Jewel-box luxury: peacock teal ground, saffron + rani-pink accents.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --teal-900: #0c3b3c;
  --teal-800: #0e4244;
  --teal-700: #114b4d;
  --teal-600: #155658;
  --aubergine: #2a1430;
  --aubergine-700: #3a1c42;

  --saffron: #e8a020;
  --saffron-bright: #f0a500;
  --saffron-deep: #c4830f;
  --marigold: #f0b942;

  --rani: #b03060;
  --rani-bright: #cf3f74;

  --ivory: #f3ead8;
  --ivory-dim: rgba(243, 234, 216, 0.72);
  --ivory-faint: rgba(243, 234, 216, 0.42);

  --gold-line: rgba(232, 160, 32, 0.55);
  --gold-hair: rgba(232, 160, 32, 0.3);

  /* Type */
  --font-display: "Rozha One", Georgia, serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1220px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);

  /* Arch clip */
  --arch: polygon(
    0% 100%, 0% 45%,
    3% 36%, 8% 28%, 16% 22%, 24% 15%, 34% 10%, 42% 5%, 50% 0%,
    58% 5%, 66% 10%, 76% 15%, 84% 22%, 92% 28%, 97% 36%, 100% 45%,
    100% 100%
  );
}

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

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

body {
  background-color: var(--teal-900);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.12rem);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint jali lattice over the whole ground */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23e8a020' stroke-width='1' opacity='0.06'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3Cpath d='M30 12 L48 30 L30 48 L12 30 Z'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--saffron);
  color: var(--teal-900);
  padding: 0.6rem 1rem;
  font-weight: 700;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

.svg-defs { position: absolute; width: 0; height: 0; }

/* ---------- Shared type ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-line);
}
.kicker--rani { color: var(--rani-bright); }
.kicker--rani::before { background: rgba(207, 63, 116, 0.55); }

.h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
  color: var(--ivory);
}

.accent-saffron { color: var(--saffron-bright); font-style: italic; }

em { color: var(--saffron-bright); font-style: italic; }

p { margin: 0 0 1.1rem; color: var(--ivory-dim); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .35s ease, color .35s ease,
              border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.btn--saffron {
  background: var(--saffron);
  color: var(--teal-900);
  box-shadow: 0 8px 30px -12px rgba(232, 160, 32, 0.6);
}
.btn--saffron:hover {
  background: var(--saffron-deep);
  color: var(--ivory);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--gold-line);
}
.btn--outline:hover {
  background: var(--saffron);
  color: var(--teal-900);
  border-color: var(--saffron);
}
.btn--lg { padding: 1.15rem 2.4rem; font-size: 0.85rem; }

.link-arrow {
  position: relative;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-bottom: 4px;
}
.link-arrow::after {
  content: "→";
  margin-left: 0.5rem;
  color: var(--saffron);
  transition: margin-left .3s ease;
}
.link-arrow::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.link-arrow:hover::before { transform: scaleX(1); }
.link-arrow:hover::after { margin-left: 0.85rem; }

/* ---------- Dot string divider ---------- */
.dot-string {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.6rem 0;
}
.dot-string i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  flex: none;
}
.dot-string i:nth-child(even) { background: var(--rani); opacity: 0.9; }
.dot-string i:first-child,
.dot-string i:last-child { width: 4px; height: 4px; opacity: 0.6; }
.dot-string--center { justify-content: center; margin-left: auto; margin-right: auto; }

/* ---------- Spice color strip ---------- */
.spice-strip {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}
.spice-strip__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(243, 234, 216, 0.15);
}
.spice-strip__dot--turmeric { background: var(--saffron-bright); }
.spice-strip__dot--chili { background: var(--rani); }
.spice-strip__dot--cardamom { background: #5f7d4f; }

/* gold hairline rule helper */
.section--ivory { position: relative; }

/* ---------- Cusped Mughal arch ---------- */
.arch {
  position: relative;
  width: 100%;
}
.arch__border {
  position: absolute;
  inset: -10px -10px -10px -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.arch__border path {
  fill: none;
  stroke: var(--saffron);
  stroke-width: 1.4px;
  opacity: 0.85;
  transition: stroke .4s ease, filter .4s ease;
}
.arch:hover .arch__border path {
  stroke: var(--saffron-bright);
  filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.55));
}
.arch__reveal { overflow: hidden; }
.arch__mask {
  -webkit-clip-path: var(--arch);
  clip-path: var(--arch);
  overflow: hidden;
  background: var(--aubergine);
}
.arch__mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 0.5rem 0;
}
.nav.is-scrolled {
  background: rgba(10, 50, 51, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--gold-hair);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  color: var(--saffron);
}
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}
.nav__links a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ivory);
  padding-bottom: 3px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__reserve { padding: 0.7rem 1.3rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--saffron);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 var(--gutter) 1.25rem;
  background: rgba(10, 50, 51, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-hair);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 0.85rem 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(243, 234, 216, 0.08);
  color: var(--ivory);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Container helper ---------- */
.hero__inner, .story__inner, .journey__inner, .spice-room__inner,
.chef__inner, .reserve__inner, .footer__inner, .durbar__panel-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 16vh, 12rem);
  padding-bottom: var(--section-y);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(176, 48, 96, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(232, 160, 32, 0.1), transparent 55%),
    linear-gradient(180deg, var(--teal-800), var(--teal-900));
  overflow: hidden;
}
.hero__jali {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='%23e8a020' stroke-width='1.2' opacity='0.12'%3E%3Cpath d='M45 5 L85 45 L45 85 L5 45 Z'/%3E%3Cpath d='M45 22 L68 45 L45 68 L22 45 Z'/%3E%3Ccircle cx='45' cy='45' r='5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero__kicker { margin-bottom: 1.4rem; }
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
.hero__line { display: block; }
.hero__sub {
  max-width: 38ch;
  font-size: 1.08rem;
  color: var(--ivory-dim);
  margin-top: 1.6rem;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.hero__media { position: relative; }
.arch--hero { max-width: 460px; margin-left: auto; }

/* ---------- Story ---------- */
.story {
  background:
    linear-gradient(180deg, var(--aubergine), var(--aubergine-700));
  padding: var(--section-y) 0;
  border-top: 1px solid var(--gold-hair);
  border-bottom: 1px solid var(--gold-hair);
}
.story__inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.story__margin { display: flex; justify-content: center; padding-top: 1rem; }
.paisley { width: 90px; height: auto; }
.paisley__stroke {
  fill: none;
  stroke: var(--saffron);
  stroke-width: 1.4px;
  opacity: 0.85;
}
.paisley__dot { fill: var(--rani-bright); }
.story__copy { max-width: 62ch; }
.story__copy p { font-size: 1.1rem; }

.pullquote {
  margin: 2.2rem 0;
  padding: 1.6rem 0 1.6rem 1.8rem;
  border-left: 2px solid var(--saffron);
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  color: var(--ivory);
  margin-bottom: 0.7rem;
}
.pullquote cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
}
.pullquote--rani { border-left-color: var(--rani-bright); }
.pullquote--rani p { color: var(--ivory); }

/* ---------- The Journey ---------- */
.journey {
  padding: var(--section-y) 0;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(176, 48, 96, 0.1), transparent 60%),
    linear-gradient(180deg, var(--teal-900), var(--teal-800));
}
.journey__head { text-align: center; max-width: 56ch; margin: 0 auto 3rem; }
.journey__head .kicker { justify-content: center; }
.journey__intro { margin: 0 auto; }
.journey__group { max-width: 820px; margin: 0 auto; }

.courses {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: course;
}
.course {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gold-hair);
  position: relative;
}
.course:last-child { border-bottom: none; }
.course__region {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rani-bright);
  padding-top: 0.5rem;
}
.course__dish {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  margin: 0 0 0.35rem;
  color: var(--ivory);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.course__dish::before {
  counter-increment: course;
  content: counter(course, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--saffron);
  flex: none;
}
.course__desc { margin: 0; color: var(--ivory-dim); font-size: 1rem; }
/* continue counter across the three lists */
.journey__group .courses:nth-of-type(2) { counter-reset: course 3; }
.journey__group .courses:nth-of-type(3) { counter-reset: course 7; }

/* ---------- Spice Room ---------- */
.spice-room {
  padding: var(--section-y) 0;
  background:
    radial-gradient(700px 500px at 85% 100%, rgba(232, 160, 32, 0.1), transparent 55%),
    linear-gradient(180deg, var(--teal-800), var(--teal-900));
  border-top: 1px solid var(--gold-hair);
}
.spice-room__head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.spices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.spice {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--gold-hair);
  border-radius: 4px;
  background: rgba(12, 59, 60, 0.4);
  transition: border-color .4s ease, transform .4s ease, background .4s ease;
}
.spice:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  background: rgba(42, 20, 48, 0.35);
}
.spice__swatch {
  display: block;
  width: 86px; height: 86px;
  border-radius: 50%;
  margin: 0 auto 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(243, 234, 216, 0.18),
              0 12px 28px -14px rgba(0, 0, 0, 0.6);
  position: relative;
}
.spice__swatch::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(243, 234, 216, 0.22);
}
.spice__swatch--saffron     { background: radial-gradient(circle at 35% 30%, #ffcc55, #e8a020); }
.spice__swatch--cardamom    { background: radial-gradient(circle at 35% 30%, #8aa86c, #5f7d4f); }
.spice__swatch--chilli      { background: radial-gradient(circle at 35% 30%, #d2442f, #9a1f15); }
.spice__swatch--fenugreek   { background: radial-gradient(circle at 35% 30%, #b5b34a, #7c7a28); }
.spice__swatch--stoneflower { background: radial-gradient(circle at 35% 30%, #b8a99a, #6e5f50); }
.spice__swatch--blackcumin  { background: radial-gradient(circle at 35% 30%, #5a4636, #261a12); }
.spice__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
  color: var(--ivory);
}
.spice__note { margin: 0; font-size: 0.95rem; color: var(--ivory-dim); }

/* ---------- Chef ---------- */
.chef {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--aubergine-700), var(--aubergine));
  border-top: 1px solid var(--gold-hair);
  border-bottom: 1px solid var(--gold-hair);
}
.chef__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.arch--chef { max-width: 400px; }
.chef__copy { max-width: 58ch; }
.chef__copy p { font-size: 1.08rem; }

/* ---------- Gallery ---------- */
.gallery {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--teal-900), var(--teal-800));
}
.gallery__head {
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}
.gallery__head .kicker { justify-content: center; }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.85rem, 2vw, 1.5rem);
  align-items: end;
}
.gallery__item { margin: 0; }
.gallery__item:nth-child(odd) { transform: translateY(1.5rem); }
.gallery__item .arch__mask { aspect-ratio: 3 / 4; }
.gallery__item img { height: 100%; }

/* ---------- The Durbar Room ---------- */
.durbar {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.durbar__media { position: absolute; inset: 0; z-index: 0; }
.durbar__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.durbar__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 59, 60, 0.95) 0%, rgba(12, 59, 60, 0.78) 40%, rgba(42, 20, 48, 0.4) 100%);
}
.durbar__panel-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.durbar__panel {
  max-width: 46ch;
  background: rgba(12, 59, 60, 0.65);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  padding: clamp(1.75rem, 4vw, 3rem);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.durbar__panel p { font-size: 1.05rem; }
.durbar__meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--saffron);
  margin-top: 1.4rem;
  margin-bottom: 1.8rem;
}

/* ---------- Reserve ---------- */
.reserve {
  position: relative;
  padding: var(--section-y) 0;
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(176, 48, 96, 0.16), transparent 60%),
    linear-gradient(180deg, var(--teal-800), var(--teal-900));
  overflow: hidden;
}
.reserve__jali {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='%23e8a020' stroke-width='1.2' opacity='0.1'%3E%3Cpath d='M45 5 L85 45 L45 85 L5 45 Z'/%3E%3Cpath d='M45 22 L68 45 L45 68 L22 45 Z'/%3E%3Ccircle cx='45' cy='45' r='5'/%3E%3C/g%3E%3C/svg%3E");
}
.reserve__inner { position: relative; z-index: 1; }
.reserve__head { text-align: center; max-width: 54ch; margin: 0 auto 3.5rem; }
.reserve__head .kicker { justify-content: center; }
.reserve__headline { margin-bottom: 0.5rem; }
.reserve__note { margin: 0 auto 2rem; }
.reserve__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 920px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-hair);
  text-align: center;
}
.reserve__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 1rem;
}
.reserve__col p { font-size: 0.98rem; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer {
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
  background: var(--aubergine);
  border-top: 1px solid var(--gold-hair);
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.2em;
  color: var(--saffron);
  margin: 0.5rem 0 0.3rem;
}
.footer__strap {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin: 0 0 1.6rem;
}
.footer__links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  padding-bottom: 2px;
  transition: color .3s ease;
}
.footer__links a:hover { color: var(--saffron); }
.footer__fine {
  max-width: 56ch;
  font-size: 0.8rem;
  color: var(--ivory-faint);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .arch--hero { max-width: 420px; margin: 0 auto; }
  .chef__inner { grid-template-columns: 1fr; }
  .arch--chef { max-width: 360px; margin: 0 auto; }
  .spices { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item:nth-child(odd) { transform: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__reserve { display: none; }
  .nav__toggle { display: flex; }
  .reserve__cols { grid-template-columns: 1fr; gap: 2rem; }
  .story__inner { grid-template-columns: 1fr; }
  .story__margin { display: none; }
}

@media (max-width: 560px) {
  .spices { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .course { grid-template-columns: 1fr; gap: 0.4rem; }
  .course__region { padding-top: 0; }
  .hero__cta { gap: 1.2rem; }
  .durbar__panel { max-width: none; }
}

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
