/* ============================================================
   INDIAN BLUES — Chesterfield
   High-end restaurant & takeaway website
   ============================================================ */

:root {
  --navy-950: #050a1c;
  --navy-900: #081026;
  --navy-800: #0c1734;
  --navy-700: #12204a;
  --gold: #c9a24b;
  --gold-light: #e6c87e;
  --gold-deep: #a37f2e;
  --cream: #f5eddc;
  --cream-dim: #cfc7b2;
  --muted: #8f97b8;
  --line: rgba(201, 162, 75, 0.28);
  --line-soft: rgba(201, 162, 75, 0.14);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --radius: 14px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --header-h: 84px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--navy-950); }

/* Accessible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy-950);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 12px; color: var(--navy-950); }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--cream); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.kicker::before, .kicker.center::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker.center::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title { font-size: clamp(30px, 4.4vw, 48px); margin: 14px 0 18px; }
.section-title em { font-style: italic; color: var(--gold-light); }

.lead { color: var(--cream-dim); font-size: 18px; max-width: 60ch; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 60px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--navy-950);
  box-shadow: 0 12px 30px -10px rgba(201, 162, 75, 0.55);
}
.btn-gold:hover { color: var(--navy-950); transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(201, 162, 75, 0.65); }
.btn-ghost { background: transparent; color: var(--cream); }
.btn-ghost:hover { background: rgba(201, 162, 75, 0.12); color: var(--gold-light); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.site-header.scrolled {
  background: rgba(6, 11, 30, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  height: 68px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.02em; }
.brand-text span { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a.nav-link {
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--gold-light); }
.main-nav a.nav-link:hover::after, .main-nav a.nav-link.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--cream); font-size: 14px; letter-spacing: 0.06em; font-weight: 500; }
.header-phone svg { width: 15px; height: 15px; }
.header-phone:hover { color: var(--gold-light); }
.header-cta .btn { padding: 12px 24px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 46px; height: 46px;
  cursor: pointer;
  padding: 11px;
}
.nav-toggle span { display: block; height: 2px; background: var(--cream); margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg picture, .split-media .frame picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroDrift 18s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.12) translateY(-14px); } }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 10, 28, 0.82) 0%, rgba(5, 10, 28, 0.45) 40%, rgba(5, 10, 28, 0.92) 100%),
    radial-gradient(90% 70% at 50% 45%, rgba(5, 10, 28, 0.15), rgba(5, 10, 28, 0.75));
}
.hero-content { padding-top: var(--header-h); text-align: center; width: 100%; }
.hero h1 { font-size: clamp(42px, 7.2vw, 86px); font-weight: 600; margin: 22px 0 20px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { max-width: 620px; margin: 0 auto 34px; color: var(--cream-dim); font-size: clamp(16px, 2vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.hero-meta {
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 34px;
  font-size: 14px;
  color: var(--cream-dim);
  border-right: 1px solid var(--line-soft);
}
.hero-meta-item:last-child { border-right: 0; }
.hero-meta-item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.hero-meta-item strong { display: block; color: var(--cream); font-size: 15px; letter-spacing: 0.04em; }
.hero-meta-item a { color: inherit; }
.hero-meta-item a:hover { color: var(--gold-light); }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: hintPulse 2s ease-in-out infinite; }
@keyframes hintPulse { 50% { opacity: 0.25; } }

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light), var(--gold), var(--gold-deep));
  color: var(--navy-950);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-0.6deg) scale(1.02);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}
.marquee span::after { content: "✦"; font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.split.reverse > .split-media { order: 2; }

.split-media { position: relative; }
.split-media .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media .frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.split-media:hover .frame img { transform: scale(1.045); }
.split-media .corner {
  position: absolute;
  width: 90px; height: 90px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}
.corner.tl { top: -14px; left: -14px; border-width: 1px 0 0 1px; }
.corner.br { bottom: -14px; right: -14px; border-width: 0 1px 1px 0; }

.badge-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  background: rgba(8, 16, 38, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.badge-card .stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; }
.badge-card strong { display: block; font-family: var(--font-display); font-size: 18px; margin-top: 4px; }
.badge-card small { color: var(--muted); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; }

.split-body p { color: var(--cream-dim); margin-bottom: 18px; }
.split-body p strong { color: var(--gold-light); font-weight: 600; }

.feature-list { list-style: none; margin: 26px 0 30px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--cream-dim); font-size: 16px; }
.feature-list svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
.feature-list strong { color: var(--cream); font-weight: 600; }

/* ---------- Signature dishes ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head .lead { margin: 0 auto; }

.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dish-card {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.dish-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dish-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.dish-card:hover::before { opacity: 1; }
.dish-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.dish-top h3 { font-size: 21px; }
.dish-price { font-family: var(--font-display); color: var(--gold-light); font-size: 20px; white-space: nowrap; }
.dish-card p { color: var(--muted); font-size: 14.5px; margin-top: 10px; line-height: 1.6; }
.dish-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 5px 13px;
}

/* ---------- Sunday deal banner ---------- */
.deal {
  background:
    radial-gradient(120% 160% at 50% -30%, rgba(201, 162, 75, 0.16), transparent 60%),
    var(--navy-950);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.deal-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 64px);
  background: linear-gradient(160deg, rgba(201, 162, 75, 0.09), rgba(8, 16, 38, 0.6) 55%);
  position: relative;
  overflow: hidden;
}
.deal-inner::after {
  content: "SUNDAY";
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 120px;
  letter-spacing: 0.2em;
  color: rgba(201, 162, 75, 0.05);
  pointer-events: none;
}
.deal h2 { font-size: clamp(30px, 4vw, 44px); margin: 12px 0 16px; }
.deal h2 em { color: var(--gold-light); font-style: italic; }
.deal p { color: var(--cream-dim); max-width: 52ch; }
.deal-includes { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.deal-includes span {
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--cream);
  background: rgba(201, 162, 75, 0.07);
}
.deal small { display: block; margin-top: 16px; color: var(--muted); font-size: 12.5px; }
.deal-price { text-align: center; }
.deal-price .amount {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.deal-price .per { color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; margin-top: 8px; }
.deal-price .btn { margin-top: 24px; }

/* ---------- Craft / spices ---------- */
.craft { background: var(--navy-950); }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  text-align: center;
  padding: 44px 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 32, 74, 0.5), rgba(5, 10, 28, 0.6));
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line); }
.service-card .icon {
  width: 66px; height: 66px;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.07);
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; }
.service-card .mini-cta { margin-top: 18px; display: inline-block; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

/* ---------- Customer testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card {
  margin: 0;
  padding: 38px 30px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: 10px; left: 22px;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
.quote-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--cream);
}
.quote-card figcaption {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.quote-cta { text-align: center; margin-top: 40px; }

/* ---------- Announcement strip (seasonal) ---------- */
.announce {
  background:
    radial-gradient(120% 220% at 50% -70%, rgba(201, 162, 75, 0.18), transparent 65%),
    var(--navy-900);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  flex-wrap: wrap;
  text-align: center;
}
.announce svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.announce p { margin: 0; color: var(--cream-dim); font-size: clamp(14.5px, 2vw, 16.5px); }
.announce p strong { font-family: var(--font-display); color: var(--gold-light); font-weight: 600; }
.announce .btn { padding: 11px 24px; font-size: 11.5px; }



/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 19px;
  text-align: left;
  padding: 24px 48px 24px 4px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--gold);
  transition: transform 0.3s ease;
  font-family: var(--font-body);
  font-weight: 300;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { color: var(--cream-dim); font-size: 15.5px; padding: 0 40px 24px 4px; }
.faq-a a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Visit / contact strip ---------- */
.visit { background: var(--navy-950); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: stretch; }
.info-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.info-row strong { display: block; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-row a, .info-row span { color: var(--cream); font-size: 16.5px; }
.info-row a:hover { color: var(--gold-light); }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 380px;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.35) contrast(1.05); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(70px, 10vw, 120px)) 0 clamp(56px, 7vw, 84px);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: var(--page-hero-img, none) center/cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(5, 10, 28, 0.9), rgba(5, 10, 28, 0.75) 50%, var(--navy-900));
}
.page-hero h1 { font-size: clamp(38px, 6vw, 64px); margin: 16px 0 14px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: var(--cream-dim); max-width: 640px; margin: 0 auto; }

/* ---------- Menu page ---------- */
.menu-nav-wrap {
  position: sticky;
  top: 68px; /* sits just below the fixed header once scrolled */
  z-index: 90;
  background: rgba(6, 11, 30, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.menu-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: none;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-dim);
  border: 1px solid var(--line-soft);
  border-radius: 40px;
  padding: 9px 18px;
  transition: all 0.25s ease;
}
.menu-nav a:hover, .menu-nav a.active { color: var(--navy-950); background: var(--gold); border-color: var(--gold); }

.menu-section { padding: clamp(48px, 6vw, 72px) 0 0; }
.menu-section-head { text-align: center; margin-bottom: 34px; }
.menu-section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin-top: 10px; }
.menu-section-head p { color: var(--muted); font-size: 14.5px; margin-top: 8px; font-style: italic; }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(30px, 5vw, 64px); row-gap: 20px; }
.menu-item { padding-bottom: 16px; border-bottom: 1px dashed rgba(201, 162, 75, 0.16); break-inside: avoid; }
.menu-item-top { display: flex; align-items: baseline; gap: 10px; }
.menu-item-top h3 { font-size: 17.5px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.menu-item-top .dots { flex: 1; border-bottom: 1px dotted rgba(201, 162, 75, 0.35); transform: translateY(-4px); }
.menu-item-top .price { font-family: var(--font-display); color: var(--gold-light); font-size: 18px; white-space: nowrap; }
.menu-item .desc { color: var(--muted); font-size: 14px; margin-top: 4px; }
.menu-item .heat { display: inline-flex; gap: 2px; vertical-align: middle; margin-left: 6px; }
.menu-item .heat svg { width: 12px; height: 12px; color: #d84f35; }
.price-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 22px; font-style: italic; }

.classics-table { max-width: 900px; margin: 0 auto; }
.classics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; margin-bottom: 34px; }
.classic-item { border-bottom: 1px dashed rgba(201, 162, 75, 0.16); padding-bottom: 12px; }
.classic-item h3 { font-size: 16.5px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.classic-item p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.protein-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.protein-table .prow {
  display: flex;
  justify-content: space-between;
  padding: 13px 22px;
  font-size: 15px;
  background: rgba(18, 32, 74, 0.35);
}
.protein-table .prow:nth-child(even) { background: rgba(5, 10, 28, 0.4); }
.protein-table .prow span:first-child { letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; font-size: 13.5px; color: var(--cream-dim); }
.protein-table .prow span:last-child { font-family: var(--font-display); color: var(--gold-light); font-size: 17px; }

.menu-key {
  max-width: 900px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  background: rgba(201, 162, 75, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  align-items: center;
  justify-content: center;
}
.menu-key strong { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-light); }
.menu-key span { display: inline-flex; align-items: center; gap: 8px; color: var(--cream-dim); font-size: 14px; }
.menu-key .heat { display: inline-flex; gap: 2px; }
.menu-key .heat svg { width: 12px; height: 12px; color: #d84f35; }
.allergy-note { max-width: 820px; margin: 26px auto 0; text-align: center; color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.veg-price-head { display: flex; justify-content: flex-end; gap: 46px; max-width: 900px; margin: 0 auto 14px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); }

.menu-cta-band { margin-top: clamp(56px, 7vw, 84px); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, rgba(201, 162, 75, 0.14), rgba(18, 32, 74, 0.5)),
    var(--navy-950);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.cta-band h2 { font-size: clamp(28px, 4.4vw, 46px); margin: 14px 0 16px; }
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { color: var(--cream-dim); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-actions { margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 64px); align-items: start; }

.booking-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(30px, 4vw, 46px);
  background: linear-gradient(170deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow);
}
.booking-panel h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.booking-panel > p { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* `display: grid` above outranks the UA stylesheet's `[hidden] { display: none }`,
   so main.js setting `form.hidden = true` on success would otherwise leave the
   filled-in form on screen above the confirmation. */
.form-grid[hidden] { display: none; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(5, 10, 28, 0.7);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
  color-scheme: dark;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 96px; }
.booking-panel .btn { width: 100%; margin-top: 22px; }
.booking-panel .btn:disabled { opacity: 0.65; cursor: wait; transform: none; }
/* Helpful (not error) notice inside the booking form — same-day guidance */
.form-notice {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  background: rgba(201, 162, 75, 0.08);
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.55;
}
.form-notice svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: 3px; }
.form-notice strong { color: var(--gold-light); font-weight: 600; }
.form-notice a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

.form-status {
  grid-column: 1 / -1;
  color: #e0a08c;
  font-size: 14px;
  border: 1px solid rgba(224, 122, 95, 0.4);
  border-radius: 10px;
  padding: 12px 16px;
  background: rgba(224, 122, 95, 0.08);
}
.form-status a { color: #f0c8b8; text-decoration: underline; text-underline-offset: 3px; }
.form-success { text-align: center; padding: 26px 10px 6px; }
.form-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px -8px rgba(201, 162, 75, 0.55);
}
.form-success-icon svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--cream-dim); font-size: 15px; max-width: 42ch; margin: 0 auto; }
.form-success-pending { margin-top: 14px !important; font-size: 14px !important; color: var(--gold-light) !important; }
.form-success-pending em { font-style: italic; }
.form-success-alt { margin-top: 16px !important; font-size: 13.5px !important; color: var(--muted) !important; }
.form-success-alt a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.booking-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }
.booking-note a { text-decoration: underline; text-underline-offset: 3px; }

.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: rgba(18, 32, 74, 0.35);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.contact-card:hover { border-color: var(--line); transform: translateY(-3px); }
.contact-card .icon { width: 48px; height: 48px; flex: none; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); }
.contact-card .icon svg { width: 20px; height: 20px; }
.contact-card strong { display: block; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-card a, .contact-card span { color: var(--cream); font-size: 17px; }
.contact-card a:hover { color: var(--gold-light); }
.contact-card small { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 4px; border-bottom: 1px dashed rgba(201, 162, 75, 0.16); font-size: 15px; }
.hours-table td:first-child { color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; color: var(--gold-light); font-family: var(--font-display); font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line-soft);
  padding: clamp(56px, 7vw, 80px) 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); font-family: var(--font-body); font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--cream-dim); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--cream-dim); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal {
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 90ch;
  text-wrap: pretty;
}

/* ---------- Floating mobile order bar ---------- */
.mobile-order-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 95;
  display: none;
  gap: 10px;
}
.mobile-order-bar .btn { flex: 1; padding: 14px 10px; font-size: 12.5px; box-shadow: 0 14px 34px rgba(0,0,0,.5); }

/* ---------- Legal pages ---------- */
.legal .wrap { max-width: 800px; }
.legal h2 { font-size: 24px; margin: 36px 0 12px; color: var(--gold-light); }
.legal p { color: var(--cream-dim); font-size: 16px; margin-bottom: 14px; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--cream); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Ornaments ---------- */
.divider-orn { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto; }
.divider-orn::before, .divider-orn::after { content: ""; width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-orn::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-orn svg { width: 18px; height: 18px; color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  :root { --header-h: 72px; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 11, 30, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 22px;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    box-shadow: 0 30px 50px rgba(0,0,0,.5);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a.nav-link { padding: 15px 4px; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
  .main-nav a.nav-link::after { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: block; }

  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .deal-inner { grid-template-columns: 1fr; text-align: center; }
  .deal p { margin: 0 auto; }
  .deal-includes { justify-content: center; }
  .deal-inner::after { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .visit-grid, .contact-grid { grid-template-columns: 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .classics-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; }
  .hero-meta-item { border-right: 0; border-bottom: 1px solid var(--line-soft); justify-content: center; text-align: left; }
  .mobile-order-bar { display: flex; }
  .site-footer { padding-bottom: 70px; }
  .badge-card { right: 10px; bottom: -18px; }
  .form-grid { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
}

@media (max-width: 520px) {
  .dish-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Order Online page ---------- */
.page-hero-compact {
  padding: calc(var(--header-h) + clamp(48px, 7vw, 76px)) 0 clamp(36px, 5vw, 56px);
}

.order-section { padding-top: 0; }

.order-shell {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  background: #fff; /* Presto shop renders on white */
  min-height: 700px;
}

.order-shell iframe#iframe { display: block; background: #fff; }

.order-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--navy-900);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.order-loading.done { opacity: 0; visibility: hidden; pointer-events: none; }
.order-loading p { color: var(--muted); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }

.order-spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 75, 0.25);
  border-top-color: var(--gold);
  animation: order-spin 0.9s linear infinite;
}
@keyframes order-spin { to { transform: rotate(360deg); } }

.order-fallback {
  margin-top: 22px;
  text-align: center;
}
.order-fallback p { color: var(--muted); font-size: 14.5px; }
.order-fallback a { color: var(--gold-light); }

.order-info { padding-top: clamp(28px, 4vw, 44px); }
