/* Self-hosted fonts — OFL licenses in assets/fonts/ */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-display-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/playfair-display-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-display-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-700.woff2') format('woff2');
}

/* Mehmaan Cuisine — shared styles */
:root {
  --ink: #0E1318;
  --ink-soft: #11171c;
  --ink-card: #151c22;
  --cream: #FDFBF7;
  --gold: #C5A059;
  --gold-light: #d6b477;
  --gold-dim: #a88645;
  --muted: #bbb9b2;
  --muted-2: #8f8d86;
  --line: rgba(197, 160, 89, 0.24);
  --line-strong: rgba(197, 160, 89, 0.45);
  --danger: #c45c5c;
  --radius: 3px;
  --header-h: 78px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font: 400 16px/1.75 var(--font-sans);
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
button:disabled { cursor: not-allowed; opacity: 0.55; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 96px; }
.section-title { font-size: clamp(2.1rem, 4.5vw, 3.6rem); margin: 0 0 1rem; }
.section-title em { font-style: italic; color: var(--gold-light); }

.skip {
  position: fixed; left: 16px; top: -100px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 12px 16px;
  font-weight: 600; border-radius: var(--radius);
}
.skip:focus { top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: background .2s, transform .2s, border-color .2s, color .2s;
}
.btn:hover { background: rgba(197,160,89,.12); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  box-shadow: 0 5px 28px rgba(197,160,89,.22);
}
.btn-gold:hover { background: var(--gold-light); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn.is-disabled, a.is-disabled {
  opacity: 0.55; cursor: not-allowed; pointer-events: auto;
}
.btn.is-disabled:hover, a.is-disabled:hover { transform: none; background: inherit; }

.coming-note {
  display: block; font-size: 11px; color: var(--muted-2);
  margin-top: 4px; letter-spacing: 0.02em;
}
.placeholder-chip {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border: 1px dashed var(--gold);
  border-radius: 999px; color: var(--gold-light);
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  background: rgba(197,160,89,.06);
}
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(14,19,24,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.65rem; min-height: var(--header-h);
}
.brand-logo {
  display: block; width: 108px; flex-shrink: 0; line-height: 0;
}
.brand-logo img { width: 100%; height: auto; }
.nav-desktop {
  display: none; align-items: center; gap: 1.6rem;
}
.nav-link {
  font-size: 14px; color: var(--muted); position: relative;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--gold); }
.nav-link[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
}
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-toggle { display: flex; align-items: center; gap: 2px; }
.lang {
  padding: 8px 6px; font-size: 13px; color: var(--muted); font-weight: 600;
}
.lang[aria-pressed="true"] { color: var(--gold); }
.lang-sep { color: var(--muted-2); font-size: 12px; }
.header-book { display: none; flex-direction: column; align-items: flex-end; gap: 2px; }
.header-book .coming-note { text-align: right; max-width: 160px; line-height: 1.3; }
.mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: var(--cream);
}
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 0.5rem 0 1.25rem;
}
.mobile-nav a {
  display: block; padding: 0.85rem 0; color: var(--muted); font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--gold); }

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .mobile-toggle { display: none; }
  .header-book { display: inline-flex; }
  .brand-logo { width: 118px; }
}

/* Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(88vh, 720px);
  display: grid; align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background: var(--ink);
}
.hero-photo {
  position: absolute; z-index: -2;
  inset: 0 0 0 38%;
  width: 62%; height: 100%;
  object-fit: cover; object-position: center 45%;
  filter: saturate(0.92) brightness(0.85);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, #0e1318 4%, #0e1318f0 28%, #0e131866 58%, #0e131820),
    linear-gradient(0deg, #0e1318 0%, transparent 42%),
    linear-gradient(180deg, #0e131855 0%, transparent 30%);
}
.hero-inner { padding-block: 80px 72px; max-width: 560px; }
.hero-mark {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border-left: 28px solid var(--gold);
  padding-left: 14px; margin: 0 0 1.5rem; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.04em; margin: 0 0 1.25rem;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-copy {
  color: #d0cec8; font-size: 17px; margin: 0 0 2rem; max-width: 440px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem;
  font-size: 12px; color: #d1cec5;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

@media (max-width: 767px) {
  .hero { min-height: 640px; }
  .hero-photo {
    inset: 0; width: 100%; opacity: 0.5;
    filter: saturate(0.9) brightness(0.7);
  }
  .hero::before {
    background:
      linear-gradient(180deg, #0e1318cc 0%, #0e131866 40%, #0e1318ee 100%),
      linear-gradient(90deg, #0e1318aa, transparent);
  }
  .hero-inner { padding-block: 64px 56px; max-width: none; }
  .hero-copy { font-size: 16px; }
}


/* Tablet hero: keep photo atmospheric without crushing copy */
@media (min-width: 768px) and (max-width: 959px) {
  /* tablet story */
  .story-note { max-width: 190px; padding: 1rem 1.1rem; }
  .story-note p:last-child { font-size: 1.15rem; }
  .section { padding-block: 72px; }
  .hero { min-height: 620px; }
  .hero-photo {
    inset: 0 0 0 42%;
    width: 58%;
    opacity: 0.85;
    filter: saturate(0.9) brightness(0.78);
  }
  .hero::before {
    background:
      linear-gradient(90deg, #0e1318 8%, #0e1318f2 38%, #0e131860 70%, #0e131830),
      linear-gradient(0deg, #0e1318 0%, transparent 40%);
  }
  .hero-inner { max-width: 380px; padding-block: 72px 64px; }
  .hero h1 { font-size: clamp(2.6rem, 5.5vw, 3.6rem); }
  .story-visual img { height: 320px; }
  .brand-logo { width: 100px; }
  .wrap { width: calc(100% - 40px); }
}

/* Intro / story */
.story-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 768px) {
  .story-grid { grid-template-columns: 1fr 1.1fr; gap: 2.5rem; }
}
@media (min-width: 960px) {
  .story-grid { gap: 4rem; }
}
.story-visual {
  position: relative; padding: 12px 18px 28px 0;
}
.story-visual::before {
  content: ''; position: absolute; inset: 0 0 12px 16px;
  border: 1px solid var(--line); pointer-events: none;
}
.story-visual img {
  width: 100%; height: 380px; object-fit: cover; object-position: center;
  border-radius: 160px 160px 3px 3px;
  filter: brightness(0.9);
}
.story-note {
  position: absolute; bottom: 0; right: 0;
  background: #192025; padding: 1.25rem 1.5rem;
  border: 1px solid var(--line); max-width: 230px;
}
.story-note p:last-child { margin: 0; font-size: 1.35rem; }
.quote-line {
  margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-serif); font-size: 1.25rem;
}
.quote-line svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* Cards / panels */
.menu-section {
  background: radial-gradient(ellipse at top, rgba(197,160,89,.05), transparent 55%), var(--ink-soft);
  border-block: 1px solid var(--line);
}
.menu-placeholder-card, .menu-card {
  padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.02);
}
.menu-placeholder-card h3, .menu-card h3 { margin: 0 0 0.75rem; font-size: 1.5rem; }
.menu-card-top { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.menu-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 700px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}

/* Home menu teaser — balanced two-column block */
.menu-teaser-block {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
.menu-teaser-copy { max-width: 420px; }
.menu-teaser-intro { margin: 0 0 1.75rem; font-size: 16px; line-height: 1.7; }
.menu-teaser-cta { margin-top: 0.25rem; }
.menu-teaser-panel { min-width: 0; }
.menu-teaser-panel-inner {
  height: 100%;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(197,160,89,.12), rgba(255,255,255,.02) 45%, rgba(255,255,255,.03));
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.menu-teaser-panel-head h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}
.menu-teaser-panel-head p.muted { margin: 0; font-size: 14px; }
.menu-teaser-rows {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.menu-teaser-rows li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-teaser-rows .ph-line {
  flex: 1; margin: 0; height: 10px;
  background: linear-gradient(90deg, rgba(197,160,89,.18), rgba(197,160,89,.05));
}
.menu-teaser-rows .ph-line.short { max-width: 55%; flex: 0 1 55%; }
.menu-teaser-rows .ph-price {
  width: 48px; height: 10px; flex-shrink: 0; border-radius: 2px;
  background: linear-gradient(90deg, rgba(197,160,89,.28), rgba(197,160,89,.1));
}
@media (min-width: 768px) {
  .menu-teaser-block {
    grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.2fr);
    gap: 2.25rem 2.75rem;
    align-items: center;
  }
  .menu-teaser-panel-inner { padding: 2rem 1.85rem 1.65rem; min-height: 280px; }
}
.ph-line {
  height: 12px; border-radius: 2px; margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(197,160,89,.12), rgba(197,160,89,.04));
}
.ph-line.short { width: 55%; }

.event-panel {
  display: grid; gap: 2rem; padding: 2rem;
  background: linear-gradient(125deg, rgba(197,160,89,.1), transparent), var(--ink-card);
  border: 1px solid var(--line);
}
@media (min-width: 768px) {
  .event-panel {
    grid-template-columns: 1.25fr 1fr; gap: 2rem; padding: 2.25rem 2rem;
    align-items: center;
  }
  .event-list { border-left: 1px solid var(--line-strong); padding-left: 1.75rem; }
}
@media (min-width: 960px) {
  .event-panel { gap: 2.5rem; padding: 3rem 3.5rem; }
  .event-list { padding-left: 2.5rem; }
}
.event-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.event-item:last-child { margin-bottom: 0; }
.event-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.event-item h3 { margin: 0 0 0.35rem; font-size: 1.45rem; }
.event-item p { margin: 0; font-size: 14px; color: var(--muted); }

/* Find us / location */
.location-block {
  background: var(--ink-soft); border-block: 1px solid var(--line);
}
.location-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
@media (min-width: 960px) {
  .location-grid { gap: 3rem; }
}
.parking-callout {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.15rem 1.25rem; margin: 1.25rem 0;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(197,160,89,.14), rgba(197,160,89,.04));
  border-radius: var(--radius);
}
.parking-callout.parking-featured {
  padding: 1.35rem 1.4rem;
  margin: 1.5rem 0;
  border-width: 1px;
  box-shadow: 0 0 0 1px rgba(197,160,89,.08), 0 12px 40px rgba(0,0,0,.2);
}
.parking-badge {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(14,19,24,.55);
  letter-spacing: 0;
  line-height: 1;
}
.parking-featured .parking-badge { width: 60px; height: 60px; font-size: 1.9rem; }
.parking-callout svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.parking-callout strong,
.parking-callout .parking-headline {
  display: block; color: var(--gold-light); margin-bottom: 0.2rem;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em;
}
.parking-featured .parking-headline {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.15rem;
}
.parking-callout p,
.parking-callout .parking-sub { margin: 0; font-size: 14px; color: var(--muted); }
.parking-featured .parking-sub { color: var(--gold-light); font-size: 15px; }
.info-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.info-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.65rem 0; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.info-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.map-card { border: 1px solid var(--line); background: rgba(255,255,255,.02); overflow: hidden; }
.map-frame {
  position: relative;
  min-height: 320px;
  background:
    radial-gradient(ellipse at center, rgba(197,160,89,.08), transparent 60%),
    linear-gradient(160deg, #1a2229 0%, #12181e 100%);
}
.map-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; text-align: center; padding: 1.5rem;
  color: var(--muted); pointer-events: none;
  background-image:
    linear-gradient(rgba(197,160,89,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: center;
}
.map-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(14,19,24,.55) 75%);
  pointer-events: none;
}
.map-fallback > * { position: relative; z-index: 1; }
.map-fallback svg {
  width: 40px; height: 40px; color: var(--gold); margin-bottom: 0.55rem; opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}
.map-fallback .serif {
  margin: 0; font-size: 1.4rem; color: var(--cream);
}
.map-fallback p { margin: 0; font-size: 13px; letter-spacing: 0.04em; }
.map-card iframe {
  position: relative; z-index: 1;
  display: block; width: 100%; height: 320px; border: 0;
  /* Mild tint for dark UI — avoid invert (it made the map near-black) */
  filter: grayscale(0.2) saturate(0.85) brightness(0.92) contrast(1.02);
  background: transparent;
}
.map-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem 1.25rem;
}

/* Atmosphere strip */
.atmosphere {
  display: grid; gap: 1rem;
}
@media (min-width: 700px) {
  .atmosphere { grid-template-columns: 1.4fr 1fr; }
}
.atmosphere figure {
  margin: 0; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ink-card);
}
.atmosphere img {
  width: 100%; height: 260px; object-fit: cover;
  filter: brightness(0.88);
}
.atmosphere figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.75rem 1rem; font-size: 12px; color: var(--muted);
  background: linear-gradient(transparent, rgba(14,19,24,.85));
}
.atmosphere .accent img { height: 260px; object-fit: cover; object-position: center; }

/* Forms */
.field { display: block; font-size: 13px; color: #dbd8d1; margin-bottom: 1rem; }
.field input, .field select, .field textarea {
  display: block; width: 100%; margin-top: 8px;
  background: var(--ink); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); color: var(--cream);
  padding: 12px; min-height: 48px; font-size: 16px;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); outline: none;
}
.form-grid { display: grid; gap: 0 1.25rem; }
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-banner, .status {
  border-left: 2px solid var(--gold);
  padding: 12px 16px; background: rgba(197,160,89,.08);
  font-size: 14px; margin-bottom: 1.25rem; color: var(--muted);
}
.form-card { padding: 1.5rem; border-radius: var(--radius); }
@media (min-width: 600px) { .form-card { padding: 2rem 2.25rem; } }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  padding: 0.8rem 0; border-bottom: 1px solid var(--line);
  font-size: 14px; text-align: left; vertical-align: top;
}
.hours th { font-weight: 400; color: var(--muted); width: 38%; }
.hours td { text-align: right; }

/* Gallery */
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  display: block; width: 100%; padding: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--ink-card); cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-slot.placeholder-slot {
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  background: rgba(197,160,89,.04); padding: 1rem; text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8,10,12,.92);
  display: grid; place-items: center;
  padding: 1.5rem;
}
body.lightbox-open { overflow: hidden; }
.lightbox-inner {
  position: relative; width: min(960px, 100%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.lightbox-inner img {
  max-height: min(78vh, 720px); width: auto; max-width: 100%;
  object-fit: contain; border: 1px solid var(--line);
}
.lightbox-toolbar {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  flex-wrap: wrap;
}
.lightbox-btn {
  min-width: 44px; min-height: 44px; padding: 0.5rem 0.9rem;
  border: 1px solid var(--line); color: var(--cream); border-radius: var(--radius);
}
.lightbox-btn:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close { position: absolute; top: -0.25rem; right: 0; }

/* page-hero redefined below */

/* Two-col layouts */
.split { display: grid; gap: 2.5rem; }
@media (min-width: 860px) {
  .split { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
  .split-reverse { grid-template-columns: 1.1fr 0.9fr; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  background: #0b0f13;
}
.footer-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 1.75rem; }
}
@media (min-width: 960px) {
  .footer-grid { gap: 2.5rem; }
}
.footer-brand .brand-logo { width: 100px; margin-bottom: 1rem; }
.footer-tag {
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--muted); margin: 0 0 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a { color: var(--muted); font-size: 14px; }
.footer-nav a:hover { color: var(--gold); }
.footer-meta { font-size: 13px; color: var(--muted); }
.footer-meta p { margin: 0 0 0.5rem; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  font-size: 12px; color: var(--muted-2);
}
.social-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--muted);
}
.social-row a:hover:not(.is-disabled) { color: var(--gold); border-color: var(--gold); }
.social-row svg { width: 18px; height: 18px; }

/* Mobile bottom bar */
.bottom-bar {
  position: fixed; z-index: 45;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px; right: 12px;
  padding: 8px; border-radius: 8px;
  background: rgba(20,27,34,.96);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  display: flex; gap: 8px;
}
.bottom-bar .btn { flex: 1; flex-direction: column; gap: 2px; min-height: 52px; padding: 8px; font-size: 12px; }
.bottom-bar .coming-note { font-size: 9px; margin: 0; }
@media (min-width: 768px) {
  .bottom-bar { display: none; }
}
body { padding-bottom: 0; }
@media (max-width: 767px) {
  body { padding-bottom: 84px; }
  .site-footer { padding-bottom: 1.5rem; }
  .wrap { width: calc(100% - 36px); }
  .section { padding-block: 64px; }
}

/* Utility */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.flex-gap { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.text-sm { font-size: 14px; }
.center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .gallery-item:hover img { transform: none; }
  .btn:hover { transform: none; }
}


/* Hidden helpers */
.is-hidden, [hidden] { display: none !important; }

/* Owner preview banner */
.preview-banner {
  background: linear-gradient(90deg, rgba(197,160,89,.2), rgba(197,160,89,.08));
  border-bottom: 1px solid var(--line-strong);
  padding: 0.65rem 0;
  font-size: 13px;
  color: var(--gold-light);
  text-align: center;
}
.preview-banner strong { color: var(--cream); }

/* Page hero with photo / decorative art */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 4.5rem 0 3.25rem;
  border-bottom: 1px solid var(--line);
}
.page-hero--photo::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, #0e1318 0%, #0e1318f0 38%, #0e131870 65%, #0e131840),
    linear-gradient(0deg, #0e1318e6 0%, transparent 55%);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  opacity: 0.55;
  filter: saturate(0.92) brightness(0.7);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 0 0 0.75rem; }
.page-hero p { margin: 0; max-width: 540px; color: var(--muted); font-size: 17px; }

/* Decorative gold divider / jali motif */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; margin: 0.5rem 0 1.5rem; color: var(--gold);
}
.ornament-line {
  height: 1px; width: min(80px, 18vw);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.ornament svg { width: 28px; height: 28px; opacity: 0.85; }
.jali-bg {
  position: relative;
}
.jali-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(197,160,89,.05) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(197,160,89,.04) 0 1px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none; opacity: 0.9;
}

/* Arch frame accent */
.arch-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 160px 160px 4px 4px;
  overflow: hidden;
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Rich empty menu presentation */
.menu-coming {
  display: grid; gap: 2rem;
  padding: 2.5rem 2rem;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse at top, rgba(197,160,89,.1), transparent 55%),
    rgba(255,255,255,.02);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.menu-coming h2 { margin: 0.5rem 0 0.75rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-coming .menu-teaser-rows { text-align: left; max-width: 420px; margin: 1.25rem auto 0; }
.menu-feature-strip {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}
.menu-feature-strip figure {
  margin: 0; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--ink-card);
}
.menu-feature-strip img {
  width: 100%; height: 140px; object-fit: cover; filter: brightness(0.88);
}
.menu-feature-strip figcaption {
  padding: 0.65rem 0.85rem; font-size: 12px; color: var(--muted);
}
@media (max-width: 700px) {
  .menu-feature-strip { grid-template-columns: 1fr; }
  .menu-feature-strip img { height: 160px; }
}

/* Events rich cards */
.offer-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 700px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}
.offer-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(197,160,89,.08), transparent 50%), rgba(255,255,255,.02);
  border-radius: var(--radius);
  height: 100%;
}
.offer-card svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: 1rem; }
.offer-card h3 { margin: 0 0 0.5rem; font-size: 1.45rem; }
.offer-card p { margin: 0; font-size: 14px; color: var(--muted); }

/* Visit / directions alt card */
.visit-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
}
.visit-card h3 { margin: 0 0 0.75rem; font-size: 1.6rem; }

/* Nav density at desktop — slightly tighter for 6 links + smaller logo */
@media (min-width: 960px) {
  .nav-desktop { gap: 1.25rem; }
  .nav-link { font-size: 13.5px; }
}
