/* =============================================================
   Amara Indian Kitchen — Concept Site Styles
   Extends the design system (Tandoor & Gold) with site-specific
   layout primitives, page templates, and responsive breakpoints.
   ============================================================= */

@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--amara-charcoal);
  color: var(--amara-cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }

/* ---------- Layout primitives --------------------------------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--amara-gold);
  margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .gur {
  font-family: 'Mukta', sans-serif; font-weight: 500;
  letter-spacing: 0; font-size: 15px; color: var(--amara-gold);
}
.rule { height: 1px; background: rgba(201,163,74,0.28); border: none; }

/* ---------- Buttons ------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter'; font-size: 12px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  height: 52px; padding: 0 28px; border: none; cursor: pointer;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms;
  text-decoration: none;
}
.btn--primary { background: var(--amara-tandoor); color: var(--amara-cream); }
.btn--primary:hover { background: var(--amara-tandoor-ink); }
.btn--secondary { background: transparent; color: var(--amara-cream); border: 1px solid var(--amara-gold); }
.btn--secondary:hover { background: rgba(201,163,74,0.1); border-color: var(--amara-gold-soft); }
.btn--ghost { background: transparent; color: var(--amara-cream); padding: 0; height: auto; border: none; }
.btn--ghost::after { content: ''; }
.btn--block { width: 100%; justify-content: center; }

/* Text links — cream with gold underline on hover */
.tlink {
  font-family: 'Inter'; font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--amara-cream); text-decoration: none;
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: border-color 180ms, color 180ms;
  display: inline-flex; align-items: center; gap: 10px;
}
.tlink:hover { border-bottom-color: var(--amara-gold); }
.tlink .arrow { transition: transform 180ms var(--ease-out); }
.tlink:hover .arrow { transform: translateX(3px); }

/* ---------- Scroll-triggered reveal --------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* =============================================================
   NAV — overlays the hero, charcoal-translucent otherwise
   ============================================================= */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  padding: 24px 0;
}
.nav.is-stuck {
  position: fixed; background: rgba(18,16,16,0.9);
  backdrop-filter: blur(14px) saturate(1.1);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,163,74,0.18);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--amara-cream); }
.nav__brand svg { color: var(--amara-gold); }
.nav__brand-name { font-family: 'Fraunces'; font-weight: 500; font-size: 22px; line-height: 1; letter-spacing: -0.01em; color: var(--amara-cream); }
.nav__brand-sub { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-gold); font-weight: 600; margin-top: 3px;}
.nav__links { display: flex; gap: 36px; justify-self: center;}
.nav__links a {
  color: var(--amara-cream); text-decoration: none;
  font-family: 'Inter'; font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: border-color 180ms, color 180ms;
}
.nav__links a:hover, .nav__links a.is-active { border-bottom-color: var(--amara-gold); }
.nav__cta { justify-self: end; display: flex; align-items: center; gap: 18px;}
.nav__cta .btn {
  height: 38px; padding: 0 18px;
  font-size: 10.5px; letter-spacing: 0.2em; gap: 8px;
  white-space: nowrap;
}
.nav__phone { font-family: 'Inter'; font-size: 12px; color: var(--amara-cream); letter-spacing: 0.18em; text-decoration: none; display: flex; align-items: center; gap: 8px;}
.nav__phone svg { color: var(--amara-gold); }
.nav__burger { display: none; background: transparent; border: none; color: var(--amara-cream); cursor: pointer; padding: 8px; }

/* Mobile slide-over nav */
.mnav { position: fixed; inset: 0; z-index: 90; display: none; }
.mnav.is-open { display: block; }
.mnav__scrim { position: absolute; inset: 0; background: rgba(10,9,8,0.7); backdrop-filter: blur(4px); opacity: 0; animation: fade 280ms var(--ease-out) forwards;}
.mnav__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 86%; max-width: 420px;
  background: var(--amara-charcoal); color: var(--amara-cream);
  padding: 28px 28px 40px; display: flex; flex-direction: column;
  border-left: 1px solid rgba(201,163,74,0.25);
  transform: translateX(30px); opacity: 0; animation: slideOverIn 320ms var(--ease-out) forwards;
}
@keyframes slideOverIn { to { transform: none; opacity: 1; } }
@keyframes fade { to { opacity: 1; } }
.mnav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mnav__close { background: transparent; border: none; color: var(--amara-cream); cursor: pointer; padding: 8px; }
.mnav__links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mnav__links a {
  font-family: 'Fraunces'; font-size: 34px; font-weight: 500; font-style: italic;
  color: var(--amara-cream); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid rgba(232,224,210,0.08);
  letter-spacing: -0.02em;
  transition: color 180ms;
}
.mnav__links a:hover, .mnav__links a.is-active { color: var(--amara-gold); }
.mnav__foot { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.mnav__foot .phone { font-family: 'Fraunces'; font-size: 20px; color: var(--amara-gold); text-decoration: none; font-style: italic; font-weight: 500;}
.mnav__foot .meta { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amara-mute); font-weight: 600; }

/* =============================================================
   HERO — home page
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 0 96px;
  color: var(--amara-cream);
  background: var(--amara-charcoal);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(0.88);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,16,16,0.55) 0%, rgba(18,16,16,0.2) 30%, rgba(18,16,16,0.55) 100%),
    linear-gradient(90deg, rgba(18,16,16,0.55) 0%, rgba(18,16,16,0) 65%);
}
.hero__content { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 40px; width: 100%; }
.hero__inner { max-width: 680px; }
.hero__title {
  font-family: 'Fraunces'; font-weight: 500; font-size: 112px; line-height: 0.98;
  letter-spacing: -0.03em; color: var(--amara-cream); margin: 0 0 32px;
  font-style: italic;
  text-wrap: balance;
}
.hero__sub {
  font-size: 20px; line-height: 1.6; max-width: 40ch;
  color: color-mix(in oklab, var(--amara-cream) 85%, transparent);
  margin: 0 0 44px; font-weight: 400;
}
.hero__ctas { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.hero__meta {
  position: absolute; bottom: 40px; left: 0; right: 0;
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: flex; gap: 28px; align-items: center;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: color-mix(in oklab, var(--amara-cream) 65%, transparent); font-weight: 500;
}
.hero__meta .dot { color: var(--amara-gold); }

/* =============================================================
   SECTIONS — shared
   ============================================================= */
.section { padding: 140px 0; position: relative; }
.section--alt { background: var(--amara-ink-brown); }
.section__head { max-width: 1240px; margin: 0 auto 72px; padding: 0 40px; }
.section__head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section__title {
  font-family: 'Fraunces'; font-weight: 500; font-size: 64px; line-height: 1.04;
  letter-spacing: -0.03em; margin: 0; color: var(--amara-cream); max-width: 22ch;
  text-wrap: balance;
}
.section__title em { font-style: italic; color: var(--amara-gold); font-weight: 500; }
.section__lede {
  font-size: 19px; line-height: 1.7; max-width: 52ch;
  color: color-mix(in oklab, var(--amara-cream) 78%, transparent);
  margin: 28px 0 0;
}

/* =============================================================
   HOME — Philosophy (60-word opening)
   ============================================================= */
.philo { padding: 160px 0 100px; }
.philo__inner { max-width: 1040px; margin: 0 auto; padding: 0 40px; }
.philo__text {
  font-family: 'Fraunces'; font-weight: 400; font-size: 44px; line-height: 1.25;
  letter-spacing: -0.02em; color: var(--amara-cream); margin: 0;
  text-wrap: balance;
}
.philo__text em { font-style: italic; color: var(--amara-gold); }
.philo__rule { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; }
.philo__rule .line { flex: 1; height: 1px; background: rgba(201,163,74,0.3); max-width: 120px;}
.philo__rule .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-gold); font-weight: 600;}

/* =============================================================
   HOME — Bento grid (4 dishes, asymmetric)
   ============================================================= */
.bento { padding: 40px 0 160px; }
.bento__inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.bento__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.bento__card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--amara-ink-brown);
  transition: transform 280ms var(--ease-out);
}
.bento__card:hover { transform: translateY(-2px); }
.bento__card:hover .bento__img { filter: brightness(1.06) saturate(1.08); }
.bento__card:hover .bento__name { color: var(--amara-gold); }
.bento__card.span-2 { grid-row: span 2; }
.bento__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: filter 320ms; filter: brightness(0.92) saturate(1.02);
}
.bento__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,16,0.1) 0%, rgba(18,16,16,0.2) 50%, rgba(10,9,8,0.88) 100%);
}
.bento__body { position: relative; padding: 32px; height: 100%; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.bento__tag { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amara-gold); font-weight: 600; margin-bottom: 12px; }
.bento__name { font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 34px; color: var(--amara-cream); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 10px; transition: color 220ms;}
.bento__gur { font-family: 'Mukta', sans-serif; color: var(--amara-gold); font-weight: 400; font-size: 17px; letter-spacing: 0; margin-left: 10px;}
.bento__desc { font-size: 14px; line-height: 1.55; color: color-mix(in oklab, var(--amara-cream) 75%, transparent); max-width: 42ch; margin: 0; }
.bento__card.span-2 .bento__name { font-size: 46px; }
.bento__card.span-2 .bento__body { min-height: 560px; padding: 40px; }

/* =============================================================
   HOME — Kitchen split (image + copy)
   ============================================================= */
.ksplit { padding: 140px 0; background: var(--amara-ink-brown); }
.ksplit__grid { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center;}
.ksplit__media { position: relative; }
.ksplit__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.ksplit__caption {
  position: absolute; bottom: 18px; left: 18px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--amara-cream); font-weight: 600;
  background: rgba(10,9,8,0.75); padding: 8px 12px;
}
.ksplit__title { font-family: 'Fraunces'; font-size: 54px; font-weight: 500; line-height: 1.08; letter-spacing: -0.025em; margin: 0 0 28px; color: var(--amara-cream);}
.ksplit__title em { font-style: italic; color: var(--amara-gold); }
.ksplit__body p { font-size: 17px; line-height: 1.7; margin: 0 0 20px; max-width: 52ch; color: color-mix(in oklab, var(--amara-cream) 86%, transparent); }

/* =============================================================
   HOME — Private dining teaser
   ============================================================= */
.private {
  padding: 120px 0; background: var(--amara-charcoal);
  border-top: 1px solid rgba(201,163,74,0.15);
  border-bottom: 1px solid rgba(201,163,74,0.15);
}
.private__inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.private__line {
  font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 40px;
  letter-spacing: -0.02em; line-height: 1.12; color: var(--amara-cream); margin: 0;
  text-wrap: balance;
}
.private__line em { color: var(--amara-gold); font-style: normal; font-family: 'Fraunces'; font-weight: 500; }
.private__right { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.private__meta { font-size: 13px; color: var(--amara-mute); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

/* =============================================================
   HOME — Inline reservation block (not modal)
   ============================================================= */
.res-block { padding: 140px 0; background: var(--amara-ink-brown); }
.res-block__wrap { max-width: 1040px; margin: 0 auto; padding: 0 40px; }
.res-card {
  background: var(--amara-paper); color: var(--amara-paper-ink);
  padding: 56px 56px 48px; position: relative;
}
.res-card__eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-tandoor); font-weight: 600; margin: 0 0 18px; }
.res-card__title { font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 52px; line-height: 1.08; letter-spacing: -0.025em; color: var(--amara-paper-ink); margin: 0 0 14px; text-wrap: balance; }
.res-card__sub { font-family: 'Fraunces'; font-weight: 400; font-size: 18px; color: var(--amara-paper-ink); margin: 0 0 36px; max-width: 52ch; line-height: 1.55; }
.res-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 24px;}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: 'Inter'; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amara-mute); font-weight: 600;}
.field select, .field input, .field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(26,22,18,0.28);
  padding: 8px 0; height: 40px;
  font-family: 'Inter'; font-size: 16px; color: var(--amara-paper-ink);
  outline: none; transition: border-color 160ms;
  appearance: none;
}
.field textarea { height: auto; min-height: 60px; resize: vertical; line-height: 1.55;}
.field select:focus, .field input:focus, .field textarea:focus { border-bottom-color: var(--amara-tandoor); border-bottom-width: 2px; padding-bottom: 7px; }
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231A1612' fill='none' stroke-width='1.5' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 20px; }
.res-card__foot { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 12px; }
.res-card__note { font-size: 13px; color: var(--amara-mute); font-style: italic; font-family: 'Fraunces'; font-weight: 400;}

/* =============================================================
   FOOTER
   ============================================================= */
.foot { background: var(--amara-charcoal-ink); color: var(--amara-cream); padding: 96px 0 36px; }
.foot__inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.1fr 1.6fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,163,74,0.22); }
.foot__brand { display: flex; gap: 16px; align-items: flex-start; }
.foot__brand svg { color: var(--amara-gold); }
.foot__name { font-family: 'Fraunces'; font-weight: 500; font-size: 30px; color: var(--amara-cream); line-height: 1;}
.foot__tag { font-family: 'Fraunces'; font-style: italic; font-size: 16px; color: color-mix(in oklab, var(--amara-cream) 60%, transparent); margin-top: 10px; max-width: 26ch; line-height: 1.4; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.foot__cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot__cols a { color: color-mix(in oklab, var(--amara-cream) 72%, transparent); text-decoration: none; font-size: 14px; transition: color 180ms;}
.foot__cols a:hover { color: var(--amara-gold); }
.foot__label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amara-gold); margin-bottom: 10px; font-weight: 600;}
.foot__base { max-width: 1240px; margin: 32px auto 0; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in oklab, var(--amara-cream) 38%, transparent); gap: 20px; flex-wrap: wrap;}
.foot__gur { font-family: 'Mukta', sans-serif; font-size: 17px; letter-spacing: 0; color: var(--amara-gold); text-transform: none; font-weight: 500;}

/* =============================================================
   MENU PAGE
   ============================================================= */
.page-hero {
  position: relative; padding: 200px 0 100px;
  background: var(--amara-charcoal);
  text-align: center;
  overflow: hidden;
}
.page-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.28; filter: saturate(1.05) brightness(0.7);
}
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,16,0.6) 0%, rgba(18,16,16,0.75) 60%, rgba(18,16,16,1) 100%);
}
.page-hero__inner { position: relative; max-width: 900px; margin: 0 auto; padding: 0 40px; }
.page-hero__title {
  font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 96px; line-height: 1;
  letter-spacing: -0.035em; color: var(--amara-cream); margin: 0 0 24px;
  text-wrap: balance;
}
.page-hero__title em { color: var(--amara-gold); }
.page-hero__sub { font-family: 'Fraunces'; font-weight: 400; font-size: 19px; line-height: 1.6; color: color-mix(in oklab, var(--amara-cream) 78%, transparent); max-width: 54ch; margin: 0 auto; font-style: italic; }

.menu-list { padding: 100px 0 60px; }
.menu-list__wrap { max-width: 980px; margin: 0 auto; padding: 0 40px; }
.mgroup { margin-bottom: 72px; }
.mgroup__head { display: flex; align-items: baseline; gap: 24px; margin-bottom: 34px; }
.mgroup__title { font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 34px; letter-spacing: -0.02em; color: var(--amara-gold); margin: 0;}
.mgroup__gur { font-family: 'Mukta', sans-serif; font-weight: 500; font-size: 22px; color: var(--amara-mute);}
.mgroup__line { flex: 1; height: 1px; background: rgba(201,163,74,0.28); }
.mdish { display: grid; grid-template-columns: 1fr auto; column-gap: 40px; padding: 22px 0; border-bottom: 1px dashed rgba(232,224,210,0.12);}
.mdish:last-child { border-bottom: none; }
.mdish__top { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.mdish__name { font-family: 'Fraunces'; font-weight: 500; font-size: 24px; letter-spacing: -0.015em; color: var(--amara-cream); transition: color 180ms; }
.mdish:hover .mdish__name { color: var(--amara-gold); }
.mdish__gur { font-family: 'Mukta', sans-serif; font-weight: 400; font-size: 16px; color: var(--amara-mute); }
.mdish__desc { font-family: 'Fraunces'; font-style: italic; font-weight: 400; font-size: 15.5px; line-height: 1.55; color: color-mix(in oklab, var(--amara-cream) 80%, transparent); max-width: 56ch; margin: 0;}
.mdish__tags { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.mdish__tag { font-family: 'Inter'; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amara-mute); font-weight: 600; }
.mdish__price { font-family: 'Fraunces'; font-size: 22px; font-weight: 500; color: var(--amara-gold); font-variant-numeric: oldstyle-nums; align-self: flex-start; padding-top: 2px; }

.tasting-callout { max-width: 980px; margin: 40px auto 60px; padding: 0 40px; }
.tasting-card {
  background: var(--amara-paper); color: var(--amara-paper-ink);
  padding: 48px 56px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.tasting-card__eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-tandoor); font-weight: 600; margin: 0 0 12px;}
.tasting-card__title { font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 38px; line-height: 1.1; letter-spacing: -0.025em; color: var(--amara-paper-ink); margin: 0 0 12px; max-width: 20ch;}
.tasting-card__sub { font-family: 'Fraunces'; font-weight: 400; font-size: 16px; color: var(--amara-paper-ink); margin: 0; line-height: 1.55; max-width: 44ch;}
.tasting-card__price { font-family: 'Fraunces'; font-size: 56px; font-weight: 500; color: var(--amara-tandoor); line-height: 1; font-variant-numeric: oldstyle-nums;}
.tasting-card__pper { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-mute); font-weight: 600; margin-top: 4px; text-align: right;}

.legend { max-width: 980px; margin: 0 auto; padding: 60px 40px 120px; }
.legend__head { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-gold); font-weight: 600; margin: 0 0 20px; }
.legend__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 32px; }
.legend__item { display: flex; align-items: baseline; gap: 10px; font-size: 13px; color: color-mix(in oklab, var(--amara-cream) 80%, transparent); line-height: 1.5; }
.legend__glyph { font-family: 'Inter'; font-size: 11px; font-weight: 700; color: var(--amara-gold); min-width: 24px; letter-spacing: 0.1em;}

/* =============================================================
   STORY PAGE
   ============================================================= */
.story-hero { position: relative; height: 85vh; min-height: 620px; overflow: hidden; }
.story-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(0.85); }
.story-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,16,16,0.4) 0%, rgba(18,16,16,0.1) 40%, rgba(18,16,16,0.9) 100%); }
.story-hero__cap {
  position: absolute; left: 40px; bottom: 40px; right: 40px;
  max-width: 1240px; margin: 0 auto;
}
.story-hero__caption { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-cream); font-weight: 600; }
.story-hero__title {
  font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 104px; line-height: 0.98;
  letter-spacing: -0.035em; color: var(--amara-cream); margin: 14px 0 0; max-width: 18ch;
}
.story-hero__title em { color: var(--amara-gold); }

.memoir { padding: 120px 0; }
.memoir__wrap { max-width: 780px; margin: 0 auto; padding: 0 40px; }
.memoir__lede {
  font-family: 'Fraunces'; font-weight: 400; font-size: 28px; line-height: 1.45;
  letter-spacing: -0.015em; color: var(--amara-cream); margin: 0 0 56px;
  font-style: italic; text-wrap: pretty;
}
.memoir__body p { font-family: 'Fraunces'; font-weight: 400; font-size: 19px; line-height: 1.75; color: color-mix(in oklab, var(--amara-cream) 88%, transparent); margin: 0 0 28px; text-wrap: pretty;}
.memoir__body p:first-of-type::first-letter {
  font-family: 'Fraunces'; font-weight: 500; font-style: italic;
  color: var(--amara-gold); font-size: 88px; line-height: 0.78;
  float: left; margin: 6px 16px 0 0;
}
.memoir__body h3 {
  font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 32px;
  color: var(--amara-gold); margin: 64px 0 20px; letter-spacing: -0.02em;
}

.pquote { padding: 60px 0 120px; }
.pquote__wrap { max-width: 1040px; margin: 0 auto; padding: 0 40px; position: relative; }
.pquote__mark { font-family: 'Fraunces'; font-size: 140px; line-height: 0.8; color: var(--amara-gold); opacity: 0.35; position: absolute; top: -40px; left: 40px; font-style: italic;}
.pquote__text {
  font-family: 'Fraunces'; font-style: italic; font-weight: 400; font-size: 42px; line-height: 1.25;
  letter-spacing: -0.02em; color: var(--amara-cream); margin: 0; max-width: 26ch; position: relative;
  text-wrap: balance;
}
.pquote__attr { margin-top: 40px; display: flex; align-items: center; gap: 18px; color: var(--amara-mute); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }
.pquote__attr .line { width: 48px; height: 1px; background: var(--amara-gold); }
.pquote__attr .sample { color: var(--amara-tandoor); font-weight: 700; }

/* Photo essay */
.photoessay { padding: 40px 0 120px; }
.photoessay__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.photoessay__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ph { position: relative; overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05);}
.ph__cap { position: absolute; bottom: 14px; left: 14px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--amara-cream); font-weight: 600; background: rgba(10,9,8,0.75); padding: 6px 10px; }
.ph--tall { grid-column: span 2; grid-row: span 2; aspect-ratio: 3/4; }
.ph--wide { grid-column: span 4; aspect-ratio: 16/9; }
.ph--sq { grid-column: span 2; aspect-ratio: 1; }
.ph--med { grid-column: span 3; aspect-ratio: 4/3; }

.fiction-note {
  max-width: 780px; margin: 0 auto; padding: 40px; text-align: center;
  font-family: 'Fraunces'; font-style: italic; font-size: 14px; color: var(--amara-mute); line-height: 1.6;
  border-top: 1px solid rgba(201,163,74,0.22); border-bottom: 1px solid rgba(201,163,74,0.22);
  margin-bottom: 120px;
}
.fiction-note strong { color: var(--amara-gold); font-weight: 500; font-style: normal; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Inter'; font-size: 11px;}

/* =============================================================
   RESERVATIONS PAGE
   ============================================================= */
.res-hero {
  padding: 180px 0 60px;
  background: var(--amara-charcoal);
  text-align: center;
  position: relative;
}
.res-hero__inner { max-width: 820px; margin: 0 auto; padding: 0 40px; }
.res-hero__title {
  font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 76px; line-height: 1.02;
  letter-spacing: -0.032em; color: var(--amara-cream); margin: 0 0 24px;
  text-wrap: balance;
}
.res-hero__title em { color: var(--amara-gold); }
.res-hero__sub { font-family: 'Fraunces'; font-weight: 400; font-style: italic; font-size: 18px; line-height: 1.6; color: color-mix(in oklab, var(--amara-cream) 80%, transparent); max-width: 58ch; margin: 0 auto; }

.booking { padding: 60px 0 120px; background: var(--amara-charcoal); }
.booking__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.booking__grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 40px; align-items: flex-start; }

.bform {
  background: var(--amara-paper); color: var(--amara-paper-ink);
  padding: 56px 56px 44px;
}
.bform__step { display: flex; align-items: center; gap: 16px; margin: 0 0 28px; }
.bform__step:not(:first-child) { margin-top: 48px; }
.bform__step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--amara-tandoor); color: var(--amara-cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 18px;
}
.bform__step-title {
  font-family: 'Fraunces'; font-style: italic; font-weight: 500; font-size: 26px;
  letter-spacing: -0.02em; color: var(--amara-paper-ink);
}
.exp-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 12px; }
.exp-card {
  position: relative; cursor: pointer;
  padding: 22px 20px 20px;
  border: 1px solid rgba(26,22,18,0.2);
  background: rgba(255,255,255,0.4);
  transition: border-color 180ms, background 180ms;
}
.exp-card input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.exp-card.is-on { border-color: var(--amara-tandoor); background: rgba(201,76,44,0.06); }
.exp-card__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.exp-card__label { font-family: 'Fraunces'; font-weight: 500; font-size: 20px; color: var(--amara-paper-ink); letter-spacing: -0.015em;}
.exp-card__tick { color: transparent; transition: color 180ms; }
.exp-card.is-on .exp-card__tick { color: var(--amara-tandoor); }
.exp-card__desc { font-family: 'Fraunces'; font-style: italic; font-size: 14.5px; line-height: 1.4; color: var(--amara-paper-ink); opacity: 0.78; margin-bottom: 10px; }
.exp-card__note { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--amara-mute); font-weight: 600; }

.bform__foot { margin-top: 40px; display: flex; align-items: center; gap: 24px; padding-top: 32px; border-top: 1px solid rgba(26,22,18,0.14); flex-wrap: wrap; }
.bform__foot-note { font-family: 'Fraunces'; font-style: italic; font-size: 14px; color: var(--amara-mute); margin: 0; max-width: 40ch; line-height: 1.5; }
.bform__foot-note em { color: var(--amara-tandoor); font-style: normal; font-weight: 500; }

.bside { display: flex; flex-direction: column; gap: 20px; }
.bcard { background: var(--amara-ink-brown); padding: 28px 28px 26px; color: var(--amara-cream); border: 1px solid rgba(201,163,74,0.18); }
.bcard--warm { background: var(--amara-paper); color: var(--amara-paper-ink); border: none; }
.bcard__eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-gold); font-weight: 600; margin: 0 0 18px;}
.bcard--warm .bcard__eyebrow { color: var(--amara-tandoor); }
.bcard__rows { display: flex; flex-direction: column; gap: 0; }
.bcard__row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(232,224,210,0.14); font-family: 'Fraunces'; font-size: 16px; color: var(--amara-cream);}
.bcard__row:last-child { border-bottom: none; }
.bcard__row.is-mute { color: var(--amara-mute); font-style: italic; }
.blist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.blist li { display: flex; gap: 12px; font-family: 'Fraunces'; font-size: 15px; line-height: 1.55; color: color-mix(in oklab, var(--amara-cream) 84%, transparent); }
.blist__g { color: var(--amara-gold); font-weight: 700; flex-shrink: 0; }
.blist li em { color: var(--amara-gold); font-style: normal; font-weight: 500; }
.bcard__p { font-family: 'Fraunces'; font-size: 16px; line-height: 1.6; margin: 0 0 20px; color: var(--amara-paper-ink);}

.visit-strip { padding: 120px 0 120px; background: var(--amara-ink-brown); }
.visit-strip__wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.visit-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.vitem { border-top: 1px solid rgba(201,163,74,0.3); padding-top: 28px; }
.vitem__label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amara-gold); font-weight: 600; margin-bottom: 18px; }
.vitem__body p { font-family: 'Fraunces'; font-size: 17px; line-height: 1.65; color: color-mix(in oklab, var(--amara-cream) 86%, transparent); margin: 0; }

/* =============================================================
   RESPONSIVE — 1440, 768, 375
   ============================================================= */
@media (max-width: 1200px) {
  .hero__title { font-size: 88px; }
  .page-hero__title { font-size: 76px; }
  .story-hero__title { font-size: 80px; }
  .section__title { font-size: 52px; }
  .philo__text { font-size: 36px; }
  .ksplit__title { font-size: 44px; }
  .res-card__title { font-size: 42px; }
  .pquote__text { font-size: 36px; }
}

@media (max-width: 960px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__cta .btn--primary { display: none; }

  .wrap, .section__head, .ksplit__grid, .private__inner, .res-block__wrap, .hero__content, .hero__meta, .philo__inner, .bento__inner, .menu-list__wrap, .tasting-callout, .legend, .memoir__wrap, .pquote__wrap, .photoessay__wrap, .foot__inner, .foot__base { padding-left: 24px; padding-right: 24px; }

  .hero { padding: 140px 0 90px; min-height: 100vh; }
  .hero__title { font-size: 64px; letter-spacing: -0.025em; }
  .hero__sub { font-size: 18px; }
  .hero__meta { gap: 16px; font-size: 10px; flex-wrap: wrap;}

  .section { padding: 96px 0; }
  .section__title { font-size: 40px; }
  .philo__text { font-size: 28px; }
  .page-hero { padding: 140px 0 80px; }
  .page-hero__title { font-size: 56px; }

  .bento__grid { grid-template-columns: 1fr; }
  .bento__card.span-2 { grid-row: auto; }
  .bento__body { min-height: 340px !important; padding: 28px !important; }
  .bento__card.span-2 .bento__name { font-size: 34px; }

  .ksplit__grid, .private__inner { grid-template-columns: 1fr; gap: 40px; }
  .ksplit__title { font-size: 36px; }
  .private__line { font-size: 28px; }

  .res-card { padding: 36px 28px; }
  .res-card__title { font-size: 32px; }
  .res-row { grid-template-columns: 1fr 1fr; }

  .foot__inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 40px; }
  .foot__cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .story-hero__title { font-size: 54px; max-width: 14ch; }
  .memoir__lede { font-size: 22px; }
  .memoir__body p { font-size: 17px; }
  .pquote__text { font-size: 28px; }

  .mgroup__head { flex-wrap: wrap; gap: 14px; }
  .mgroup__title { font-size: 28px; }
  .tasting-card { grid-template-columns: 1fr; padding: 32px; text-align: left; gap: 20px; }
  .tasting-card__title { font-size: 28px; }
  .tasting-card__price { font-size: 44px; }
  .legend__grid { grid-template-columns: repeat(2, 1fr); }

  .photoessay__grid { grid-template-columns: repeat(2, 1fr); }
  .ph--tall { grid-column: span 1; grid-row: auto; aspect-ratio: 3/4; }
  .ph--wide { grid-column: span 2; aspect-ratio: 16/10; }
  .ph--sq { grid-column: span 1; }
  .ph--med { grid-column: span 2; }

  .res-hero__title { font-size: 44px; }
  .booking__grid { grid-template-columns: 1fr; }
  .bform { padding: 36px 28px; }
  .exp-row { grid-template-columns: 1fr; }
  .visit-strip__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .hero__title { font-size: 48px; }
  .hero__ctas { gap: 20px; }
  .hero__ctas .btn { width: 100%; height: 56px; justify-content: center; }
  .hero__meta { font-size: 9px; gap: 10px; }

  .section__title { font-size: 30px; }
  .philo__text { font-size: 22px; line-height: 1.35; }
  .page-hero__title { font-size: 42px; }
  .page-hero__sub { font-size: 16px; }

  .res-row { grid-template-columns: 1fr; }
  .res-card { padding: 28px 20px; }
  .res-card__title { font-size: 26px; }

  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__base { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }

  .story-hero { min-height: 520px; height: 75vh; }
  .story-hero__title { font-size: 40px; }
  .story-hero__cap { left: 24px; right: 24px; bottom: 24px;}
  .memoir__body p:first-of-type::first-letter { font-size: 56px; }
  .pquote__text { font-size: 22px; }
  .pquote__mark { font-size: 80px; top: -16px; left: 24px; }

  .mgroup__title { font-size: 24px; }
  .mdish { grid-template-columns: 1fr; }
  .mdish__price { grid-column: 1; padding-top: 8px; }
  .tasting-card__price { font-size: 36px; }
  .legend__grid { grid-template-columns: 1fr; }

  .photoessay__grid { grid-template-columns: 1fr; gap: 12px; }
  .ph--tall, .ph--wide, .ph--sq, .ph--med { grid-column: span 1; aspect-ratio: 4/3; }

  .mnav__links a { font-size: 28px; padding: 14px 0; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__video { animation: none; }
}


/* =============================================================
   IshaanEx Portfolio — concept-site guardrails (injected at handoff)
   These sit on every concept site. Do not remove.
   ============================================================= */

.ix-concept-badges {
  position: fixed; bottom: 18px; left: 18px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  pointer-events: auto;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}
.ix-concept-back {
  background: #0F172A; color: #fff;
  padding: 8px 14px; border-radius: 999px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: background 180ms ease;
}
.ix-concept-back:hover { background: #1E293B; }
.ix-concept-label {
  background: #F58220; color: #fff;
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(245,130,32,0.35);
}
.ix-concept-disclaimer {
  background: #0A0908; color: rgba(232,224,210,0.55);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 12px; line-height: 1.65;
  text-align: center; padding: 32px 24px;
  border-top: 1px solid rgba(201,163,74,0.15);
}
.ix-concept-disclaimer a {
  color: #C9A34A; text-decoration: none;
  border-bottom: 1px solid rgba(201,163,74,0.3);
}
@media (max-width: 640px) {
  .ix-concept-badges { font-size: 10px; gap: 6px; bottom: 12px; left: 12px; }
  .ix-concept-back, .ix-concept-label { padding: 6px 10px; }
  .ix-concept-label { display: none; }
}
