/* ==========================================================================
   MADLI'S, Authentic Satay, Made with Heritage
   Design system: "Heritage Warm" (Option A)
   Palette: hunter green / warm cream / charcoal / spice red / navy
   ========================================================================== */

:root {
  --green: #23453A;
  --green-dark: #1A342C;
  --green-soft: #2E5548;
  --cream: #F3ECDD;
  --cream-light: #FAF6EC;
  --cream-dark: #E9DfC9;
  --charcoal: #292524;
  --red: #B4402A;
  --red-dark: #963522;
  --navy: #22304A;
  --ink-soft: #55504B;
  --line: rgba(41, 37, 36, 0.14);
  --line-cream: rgba(243, 236, 221, 0.22);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1160px;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(41, 37, 36, 0.12);
  --shadow-soft: 0 6px 18px rgba(41, 37, 36, 0.08);
  --header-h: 62px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* Subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
}
/* Small rotated-diamond ornaments (Islamic geometric accent) */
.eyebrow::before { content: ""; width: 7px; height: 7px; background: currentColor; transform: rotate(45deg); border-radius: 1px; flex: none; }
.eyebrow--center::after { content: ""; width: 7px; height: 7px; background: currentColor; transform: rotate(45deg); border-radius: 1px; flex: none; }

.lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn--red { background: var(--red); color: var(--cream-light); }
.btn--red:hover { background: var(--red-dark); }
.btn--green { background: var(--green); color: var(--cream-light); }
.btn--green:hover { background: var(--green-dark); }
.btn--ghost { border: 1.5px solid currentColor; color: var(--green); background: transparent; }
.btn--ghost-cream { border: 1.5px solid rgba(243,236,221,0.55); color: var(--cream-light); background: transparent; }
.btn--ghost-cream:hover { background: rgba(243,236,221,0.12); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 236, 221, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(41,37,36,0.08); }

/* Split nav, links either side of a centered brand (Emerald Arch style) */
.header .wrap { width: min(1200px, 94%); }
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 36px; }
.nav-side { display: flex; align-items: center; gap: 18px; }
.nav-side--l { justify-self: end; }
.nav-side--r { justify-self: start; }
.nav-side a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-side a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-side a:not(.btn):hover::after, .nav-side a.is-active::after { transform: scaleX(1); }
.nav-side a.is-active { color: var(--green); font-weight: 600; }
.nav-side .btn { padding: 8px 15px; font-size: 0.74rem; }

/* Language switch */
.lang-switch { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; flex: none; }
.lang-btn { padding: 4px 9px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); background: transparent; transition: background 0.2s, color 0.2s; }
.lang-btn.is-on { background: var(--green); color: var(--cream-light); }
.nav .lang-switch { margin-top: 22px; border-color: rgba(243,236,221,0.5); }
.nav .lang-btn { color: var(--cream); font-family: var(--font-body); font-size: 0.9rem; }
.nav .lang-btn.is-on { background: var(--cream-light); color: var(--green); }

.brand { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1; justify-self: center; }
.brand__logo { height: 34px; width: auto; display: block; }
@media (max-width: 640px) { .brand__logo { height: 30px; } }
.footer__logo { height: 42px; width: auto; display: block; margin-bottom: 6px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--green);
}
.brand__since {
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
  font-weight: 600;
}

/* .nav is the full-screen mobile overlay only */
.nav { display: none; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 70; }
.nav-toggle span { width: 24px; height: 2px; background: var(--green); transition: 0.3s ease; }
.nav-toggle.is-open span { background: var(--cream-light); width: 26px; height: 2.5px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header { background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: flex; }
  .nav-side { display: none; }
  .header__inner { display: flex; justify-content: space-between; }
  .brand { align-items: flex-start; text-align: left; }
  .nav {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 5;
    overflow-y: auto;
    background: var(--green);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { color: var(--cream); font-family: var(--font-display); font-size: 1.7rem; padding: 10px 0; position: relative; }
  .nav a.is-active { color: var(--cream-light); }
  .nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0; bottom: 4px;
    width: 100%; height: 2px;
    background: var(--red);
  }
  .nav .btn { display: inline-flex; margin-top: 22px; padding: 16px 40px; font-size: 1.05rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 58%, #2C5344 100%);
  color: var(--cream-light);
  padding: calc(var(--header-h) + 60px) 0 90px;
  overflow: hidden;
}
.hero--inner { min-height: 0; padding: calc(var(--header-h) + 40px) 0 46px; }
.hero--inner .hero__lead { font-size: 0.95rem; }
.hero--inner .hero__script { margin-bottom: 10px; font-size: 1.02rem; }

/* Subtle Islamic geometric lattice: overlapping squares form an 8-pointed star (khatam) */
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23F3ECDD' stroke-width='1'%3E%3Crect x='22' y='22' width='40' height='40'/%3E%3Crect x='22' y='22' width='40' height='40' transform='rotate(45 42 42)'/%3E%3Ccircle cx='42' cy='42' r='7'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__glow {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  right: -220px; top: -180px;
  background: radial-gradient(circle, rgba(180,64,42,0.34) 0%, transparent 62%);
  pointer-events: none;
}

.hero__grid { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: center; }
.hero__content { max-width: 620px; }

.hero__script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: #D9A24B;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: block;
}
.hero h1 { color: var(--cream-light); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: #E8C287; }
.hero__lead { color: rgba(243, 236, 221, 0.82); font-size: 1.08rem; max-width: 54ch; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.hero__badge { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(243,236,221,0.75); }
.hero__badge svg { width: 18px; height: 18px; opacity: 0.85; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; }
}

/* --- Arch hero variant (Emerald Arch influence, Heritage Warm palette) --- */
.hero--arch { text-align: center; min-height: auto; padding: calc(var(--header-h) + 44px) 0 0; }
.hero--arch h1 { margin-bottom: 16px; }
.hero--arch .hero__lead { margin-bottom: 26px; }
.hero--arch .hero__actions { margin-bottom: 26px; }
.hero--arch .hero__script { font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
.hero--arch h1 { max-width: 17ch; margin-inline: auto; }
.hero--arch .hero__lead { margin-inline: auto; }
.hero--arch .hero__actions { justify-content: center; }
.hero--arch .hero__badges { justify-content: center; margin-bottom: 8px; }

.hero__side {
  position: absolute;
  top: 54%;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(243, 236, 221, 0.28);
  white-space: nowrap;
  pointer-events: none;
}
.hero__side--l { left: -34px; transform: rotate(-90deg); }
.hero__side--r { right: -34px; transform: rotate(90deg); }
@media (max-width: 980px) { .hero__side { display: none; } }

.arch { width: min(500px, 86%); margin: 34px auto 0; position: relative; }
.arch__win {
  border-radius: 340px 340px 18px 18px;
  background: var(--green-soft);
  border: 2px solid rgba(217, 162, 75, 0.55);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 48px 40px;
  position: relative;
  color: rgba(243, 236, 221, 0.75);
}
.arch__win::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 326px 326px 10px 10px;
  border: 1px dashed rgba(243, 236, 221, 0.3);
  pointer-events: none;
}
.arch__win svg { width: 54px; height: 54px; opacity: 0.85; }
.arch__win span { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; max-width: 30ch; line-height: 2; opacity: 0.8; }
.arch__medal {
  position: absolute;
  top: 16px; right: -30px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #D9A24B;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
  padding: 16px;
  transform: rotate(10deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}
@media (max-width: 760px) { .arch__medal { display: none; } }
@media (max-width: 640px) { .arch__win { min-height: 300px; } .arch__win--photo { min-height: 340px; } }

/* center the inner-page heroes to match */
.hero--inner .wrap { text-align: center; }
.hero--inner .hero__lead { margin-inline: auto; }

/* ==========================================================================
   Photo placeholders (until client photography arrives)
   ========================================================================== */
.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(155deg, rgba(243,236,221,0.06), rgba(243,236,221,0.02)),
    var(--green-soft);
  border: 1px solid rgba(243, 236, 221, 0.16);
  color: rgba(243, 236, 221, 0.75);
  min-height: 300px;
  text-align: center;
  padding: 24px;
}
.ph--cream {
  background: linear-gradient(155deg, rgba(35,69,58,0.05), rgba(35,69,58,0.01)), var(--cream-dark);
  border: 1px solid var(--line);
  color: var(--green);
}
.ph--tall { min-height: 420px; }
.ph--short { min-height: 210px; }
.ph svg.ph__icon { width: 54px; height: 54px; opacity: 0.85; }
.ph__label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; opacity: 0.8; max-width: 30ch; line-height: 1.6; }
.ph::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed currentColor;
  border-radius: calc(var(--radius) - 6px);
  opacity: 0.25;
  pointer-events: none;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 68px 0; position: relative; }
.section--cream-light { background: var(--cream-light); }
.section--green { background: var(--green); color: var(--cream-light); }
.section--green .lead { color: rgba(243,236,221,0.8); }
.section--green h2, .section--green h3 { color: var(--cream-light); }
.section--charcoal { background: var(--charcoal); color: var(--cream-light); }

.section__head { max-width: 680px; margin-bottom: 36px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head h2 { margin: 16px 0 18px; }

/* Alternating story rows */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 16px 0;
}
.story-row--flip .story-row__media { order: 2; }
.story-row h2 { margin: 16px 0 20px; }
.story-row .lead { margin-bottom: 28px; }
@media (max-width: 900px) {
  .story-row { grid-template-columns: 1fr; gap: 32px; }
  .story-row--flip .story-row__media { order: 0; }
}

/* Signature dishes strip */
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sig-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sig-grid--4 .sig-card__img { height: 200px; }
@media (max-width: 900px) { .sig-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sig-grid--4 { grid-template-columns: 1fr; } }
.sig-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sig-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sig-card .ph { border-radius: 0; min-height: 230px; border: 0; }
.sig-card .ph::after { inset: 8px; }
.sig-card__body { padding: 26px 26px 30px; }
.sig-card__body h3 { margin-bottom: 8px; color: var(--green); }
.sig-card__body p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 14px; }
.sig-card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--red); }
@media (max-width: 900px) { .sig-grid { grid-template-columns: 1fr; } }

/* Menu category preview cards */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 170px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--cream-light);
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}
.cat-card:hover { transform: translateY(-4px); background: var(--green-dark); }
.cat-card svg { width: 34px; height: 34px; opacity: 0.6; margin-bottom: auto; }
.cat-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.cat-card__count { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* Real photos & illustrations */
.photo-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame--tall { height: 460px; }
.illo {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  min-height: 420px;
}
.illo img { max-width: 100%; max-height: 420px; object-fit: contain; mix-blend-mode: multiply; }
.sig-card__img { width: 100%; height: 230px; object-fit: cover; display: block; }
.arch__win--photo { padding: 0; overflow: hidden; min-height: 430px; }
.arch__win--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.arch__win--photo::before { z-index: 2; }

/* Green section with khatam lattice background */
.section--pattern { position: relative; overflow: hidden; }
.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23F3ECDD' stroke-width='1'%3E%3Crect x='22' y='22' width='40' height='40'/%3E%3Crect x='22' y='22' width='40' height='40' transform='rotate(45 42 42)'/%3E%3Ccircle cx='42' cy='42' r='7'/%3E%3C/g%3E%3C/svg%3E");
}
.section--pattern .wrap { position: relative; }

/* Compact menu category tag list (home) */
.menu-tags {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  max-width: 760px;
  margin: 34px auto 38px;
}
@media (max-width: 560px) { .menu-tags { grid-template-columns: repeat(2, auto); } }
.menu-tags a {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: rgba(243, 236, 221, 0.88);
  padding: 2px 4px;
  transition: color 0.25s;
}
.menu-tags a:hover { color: #D9A24B; }
.menu-tags li { display: flex; align-items: center; justify-content: center; }
.menu-tags li + li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--red);
  transform: rotate(45deg);
  margin: 0 16px;
  flex: none;
}
.menu-tags li:nth-child(4n+1)::before { display: none; }
@media (max-width: 560px) { .menu-tags li:nth-child(2n+1)::before { display: none; } }

/* Natural-aspect photo frame (no crop) */
.photo-frame--natural { height: auto; }
.photo-frame--natural img { height: auto; }

/* Photo gallery grid (catering) */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-grid .photo-frame { height: 250px; }
.gallery-grid .photo-frame img { transition: transform 0.4s ease; }
.gallery-grid .photo-frame:hover img { transform: scale(1.04); }

/* ==========================================================================
   Heritage animated scene (grandfather fanning satay)
   ========================================================================== */
.gf-scene {
  position: relative;
  width: min(360px, 88%);
  margin-inline: auto;
  aspect-ratio: 408 / 612;
}
.gf-aura {
  position: absolute;
  inset: -10% -8% -4%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(58% 42% at 50% 64%, rgba(217,162,75,0.45), rgba(217,162,75,0) 70%),
    radial-gradient(56% 56% at 50% 44%, rgba(46,85,72,0.30), rgba(46,85,72,0) 72%);
  filter: blur(8px);
  animation: gfAura 5s ease-in-out infinite;
}
.gf-embers {
  position: absolute;
  left: 22%; top: 66%;
  width: 56%; height: 12%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206,86,42,0.55), rgba(206,86,42,0) 70%);
  filter: blur(5px);
  animation: gfEmber 2.2s ease-in-out infinite;
}
.gf-base, .gf-fan { position: absolute; display: block; }
.gf-base { inset: 0; width: 100%; z-index: 2; }
.gf-fan {
  left: 13.7%; top: 29.7%;
  width: 54.9%;
  z-index: 3;
  transform-origin: 32% 46%;
  animation: gfFan 2.6s ease-in-out infinite;
  will-change: transform;
}
.gf-smoke { position: absolute; left: 40%; top: 50%; width: 46%; height: 32%; z-index: 2; pointer-events: none; }
.gf-smoke span {
  position: absolute;
  bottom: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,236,221,0.85), rgba(243,236,221,0) 70%);
  opacity: 0;
  animation: gfRise 3.6s linear infinite;
}
.gf-smoke span:nth-child(1) { left: 14%; animation-delay: 0s; }
.gf-smoke span:nth-child(2) { left: 40%; animation-delay: 0.9s; }
.gf-smoke span:nth-child(3) { left: 62%; animation-delay: 1.8s; }
.gf-smoke span:nth-child(4) { left: 84%; animation-delay: 2.6s; }
@keyframes gfFan { 0%, 100% { transform: rotate(1deg); } 50% { transform: rotate(-3.5deg); } }
@keyframes gfAura { 0%, 100% { opacity: 0.82; transform: scale(1); } 50% { opacity: 1; transform: scale(1.045); } }
@keyframes gfEmber { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.95; } }
@keyframes gfRise {
  0% { opacity: 0; transform: translateY(0) scale(0.7); }
  18% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-94px) scale(1.9); }
}
@media (prefers-reduced-motion: reduce) {
  .gf-fan, .gf-aura, .gf-embers, .gf-smoke span { animation: none; }
  .gf-aura { opacity: 0.9; }
}

/* Reviews - compact cards */
.rev-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1060px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rev-grid { grid-template-columns: 1fr; } }
.rev-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.rev-card__top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 10px; }
.rev-card cite { font-style: normal; font-weight: 600; color: var(--green); font-size: 0.84rem; }
.rev-card .stars { color: #D9A24B; letter-spacing: 2px; font-size: 0.7rem; white-space: nowrap; }
.rev-card blockquote { font-style: italic; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.65; }
.rev-foot { text-align: center; margin-top: 26px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* Credibility strip */
.cred {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}
.cred__item { display: flex; align-items: center; gap: 11px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
.cred__item svg { width: 22px; height: 22px; color: var(--red); }

/* Visit block */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: 22px; margin-top: 30px; }
.info-list__item { display: flex; gap: 16px; align-items: flex-start; }
.info-list__item svg { width: 21px; height: 21px; flex: none; margin-top: 4px; color: var(--red); }
.info-list__item strong { display: block; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.info-list__item span, .info-list__item a { color: var(--ink-soft); font-size: 0.95rem; }
.info-list__item a:hover { color: var(--red); }

.section--green .info-list__item strong { color: #D9A24B; }
.section--green .info-list__item span, .section--green .info-list__item a { color: rgba(243,236,221,0.85); }

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  filter: saturate(0.85);
  box-shadow: var(--shadow-soft);
}

/* Hours table */
.hours { margin-top: 26px; border-top: 1px solid var(--line); }
.hours__row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.hours__row span:first-child { font-weight: 600; color: var(--green); }
.hours__row--closed span:last-child { color: var(--red); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.section--green .hours__row { border-color: var(--line-cream); }
.section--green .hours__row span:first-child { color: var(--cream-light); }

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--green);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0 8px 20px rgba(41,37,36,0.12);
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav__inner { display: flex; gap: 4px; padding: 0 4%; width: max-content; margin-inline: auto; }
.menu-nav a {
  display: block;
  padding: 15px 17px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243,236,221,0.66);
  border-bottom: 3px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.menu-nav a:hover { color: var(--cream-light); }
.menu-nav a.is-active { color: var(--cream-light); border-bottom-color: var(--red); }

.menu-section { padding: 52px 0 22px; scroll-margin-top: calc(var(--header-h) + 60px); }
.menu-section__head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }
.menu-section__head h2 { color: var(--green); }
.menu-section__note { font-size: 0.86rem; color: var(--ink-soft); font-style: italic; }
.menu-section > .wrap > .lead { margin-bottom: 8px; }

.menu-sub { margin-top: 40px; }
.menu-sub__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.menu-sub__title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-sub__desc { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; margin-bottom: 14px; max-width: 70ch; }

/* Menu item rows: two-column masonry-ish on desktop */
.menu-items { columns: 2; column-gap: 54px; margin-top: 18px; }
.menu-items--one { columns: 1; }
@media (max-width: 820px) { .menu-items { columns: 1; } }

.mi {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  break-inside: avoid;
  font-size: 0.95rem;
}
.mi__name { font-weight: 500; color: var(--charcoal); }
.mi__name .spice { color: var(--red); font-size: 0.8em; }
.mi__desc { display: block; font-size: 0.82rem; color: var(--ink-soft); font-weight: 400; margin-top: 2px; line-height: 1.55; }
.mi__dots { flex: 1; border-bottom: 1.5px dotted rgba(41,37,36,0.28); transform: translateY(-4px); min-width: 24px; }
.mi__price { font-weight: 600; color: var(--green); white-space: nowrap; font-size: 0.92rem; }
.mi__price small { font-weight: 500; color: var(--ink-soft); font-size: 0.78em; }

/* variant price table (Chicken / Beef / Prawns etc.) */
.mi--block { display: block; }
.mi__vars { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 7px; }
.mi__vars span { font-size: 0.85rem; color: var(--ink-soft); }
.mi__vars b { color: var(--green); font-weight: 600; margin-left: 6px; }

/* cold/hot legend chip */
.legend {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 12px 20px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 10px 0 6px;
}
.legend b { color: var(--green); }

/* Signature banner on menu page */
.menu-hero-band {
  background: var(--charcoal);
  color: var(--cream-light);
  padding: 60px 0;
}
.menu-hero-band .wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .menu-hero-band .wrap { grid-template-columns: 1fr; } }

/* download strip */
.menu-cta {
  text-align: center;
  padding: 40px 0 60px;
}

/* ==========================================================================
   Our Story, timeline
   ========================================================================== */
.timeline { position: relative; max-width: 760px; margin: 40px auto 0; padding-left: 42px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--red), var(--green));
  opacity: 0.5;
}
.tl-item { position: relative; padding-bottom: 54px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -39px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: var(--cream);
  border: 3px solid var(--red);
}
.tl-item__year {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}
.tl-item p { color: var(--ink-soft); max-width: 58ch; }

.quote-band {
  background: var(--green);
  color: var(--cream-light);
  text-align: center;
  padding: 62px 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='%23F3ECDD' stroke-width='2'%3E%3Crect x='110' y='110' width='200' height='200'/%3E%3Crect x='110' y='110' width='200' height='200' transform='rotate(45 210 210)'/%3E%3Ccircle cx='210' cy='210' r='36'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.quote-band .wrap { position: relative; }
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  max-width: 24ch;
  margin: 0 auto 18px;
}
.quote-band cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; color: #D9A24B; }

/* ==========================================================================
   Catering / Updates
   ========================================================================== */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .feature-cards { grid-template-columns: 1fr; } }
.f-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.f-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.f-card svg { width: 34px; height: 34px; color: var(--red); margin-bottom: 18px; }
.f-card h3 { color: var(--green); margin-bottom: 10px; }
.f-card p { font-size: 0.92rem; color: var(--ink-soft); }

.notice {
  background: var(--cream-light);
  border: 1px dashed rgba(41,37,36,0.3);
  border-radius: var(--radius);
  padding: 30px 34px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 720px;
}
.notice strong { color: var(--green); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(150deg, var(--red-dark), var(--red));
  color: var(--cream-light);
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23F3ECDD' stroke-width='1'%3E%3Crect x='22' y='22' width='40' height='40'/%3E%3Crect x='22' y='22' width='40' height='40' transform='rotate(45 42 42)'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: var(--cream-light); max-width: 22ch; margin: 0 auto 16px; }
.cta-band p { color: rgba(243,236,221,0.85); max-width: 52ch; margin: 0 auto 34px; }
.cta-band .btn--green { background: var(--charcoal); }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--charcoal); color: rgba(243,236,221,0.72); padding: 0 0 0; font-size: 0.9rem; }
/* Thin geometric band along the footer top (khatam diamonds) */
.footer::before {
  content: "";
  display: block;
  height: 14px;
  margin-bottom: 42px;
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14' viewBox='0 0 28 14'%3E%3Crect x='10' y='3' width='8' height='8' fill='none' stroke='%23D9A24B' stroke-width='1' transform='rotate(45 14 7)'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 34px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer .brand__name { color: var(--cream-light); }
.footer__tag { font-family: var(--font-display); font-style: italic; color: #D9A24B; margin: 14px 0 18px; }
.footer h4 { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream-light); margin-bottom: 18px; font-weight: 600; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--cream-light); }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(243,236,221,0.25);
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); color: var(--cream-light); }
.footer__social svg { width: 16px; height: 16px; }

.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer__badges span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(243,236,221,0.28);
  border-radius: 6px;
  padding: 5px 10px;
}
.footer__bottom {
  border-top: 1px solid rgba(243,236,221,0.14);
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(243,236,221,0.45);
}

/* ==========================================================================
   Floating WhatsApp + mobile action bar
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 75;
  background: var(--green-dark);
  border-top: 1px solid rgba(243,236,221,0.15);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 6px;
  color: var(--cream-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-bar a + a { border-left: 1px solid rgba(243,236,221,0.15); }
.mobile-bar svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  .wa-float { bottom: 78px; }
  body { padding-bottom: 52px; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Mobile optimization
   ========================================================================== */
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section__head { margin-bottom: 36px; }
  .menu-section { padding: 52px 0 18px; }
  .quote-band, .cta-band { padding: 62px 0; }

  .hero--arch { padding-top: calc(var(--header-h) + 26px); }
  .hero__lead { font-size: 0.98rem; }
  .hero__actions { gap: 10px; margin-bottom: 18px; }
  .hero__badges { display: none; } /* credibility strip right below repeats these */
  .arch { width: 94%; margin-top: 26px; }

  .btn { padding: 12px 22px; font-size: 0.86rem; }
  .hero__script { margin-bottom: 12px; }

  .cred { gap: 10px 22px; padding: 22px 0; }
  .cred__item { font-size: 0.68rem; }

  .story-row { gap: 24px; padding: 24px 0; }
  .sig-card__img { height: 190px; }
  .illo { min-height: 300px; padding: 26px; }
  .illo img { max-height: 300px; }
  .photo-frame--tall { height: 320px; }

  .menu-tags { margin: 26px auto 30px; }
  .menu-tags a { font-size: 0.98rem; }
  .menu-tags li + li::before { margin: 0 10px; }

  .rev-grid { gap: 12px; }
  .gallery-grid { gap: 12px; }
  .gallery-grid .photo-frame { height: 150px; }

  .timeline { padding-left: 32px; margin-top: 40px; }
  .tl-item { padding-bottom: 40px; }
  .tl-item::before { left: -31px; width: 11px; height: 11px; }

  .info-list { gap: 16px; }
  .footer__grid { gap: 28px; padding-bottom: 40px; }
  .footer { font-size: 0.86rem; }
  .map-frame { min-height: 320px; }
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Quote used as a section heading (home, The Menu section) */
.quote-head {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
  max-width: 24ch;
  margin: 14px auto 10px;
  color: var(--cream-light);
}
.quote-head + cite { display: block; font-style: normal; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: #D9A24B; margin-bottom: 6px; }

/* Catering enquiry form */
.enquire-box {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 5%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 860px) { .enquire-box { grid-template-columns: 1fr; gap: 28px; padding: 30px 6%; } }
.enquire-box h2 { color: var(--green); margin: 12px 0 12px; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.enquire-box p { color: var(--ink-soft); font-size: 0.94rem; }
.form-grid { display: grid; gap: 14px; }
.form-grid label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 6px; }
.form-grid input, .form-grid textarea {
  width: 100%;
  font: inherit;
  font-size: 0.94rem;
  padding: 12px 14px;
  border: 1px solid rgba(41,37,36,0.25);
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
.form-grid textarea { min-height: 96px; resize: vertical; }
.form-grid .btn { justify-self: start; margin-top: 4px; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); }

/* --- Hero variant B: full-bleed photo background --- */
.hero--photo {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 60px) 0 64px;
  background-size: cover;
  background-position: center 20%;
  color: var(--cream-light);
}
.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,14,10,0.5) 0%, rgba(16,14,10,0.08) 34%, rgba(20,38,31,0.62) 68%, rgba(16,26,21,0.94) 100%),
    linear-gradient(98deg, rgba(20,38,31,0.72) 0%, rgba(20,38,31,0.28) 52%, rgba(20,38,31,0.05) 100%);
}
.hero--photo .wrap { position: relative; max-width: var(--wrap); }
.hero--photo .hero__content-b { max-width: 640px; }
.hero--photo .hero__script { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
.hero--photo h1 { color: var(--cream-light); margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.hero--photo .hero__lead { max-width: 46ch; margin-bottom: 28px; color: rgba(243,236,221,0.9); text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hero--photo .hero__actions { margin-bottom: 26px; }
.hero--photo .hero__badge { color: rgba(243,236,221,0.85); }
.hero--photo .hero__medal-b {
  position: absolute;
  right: 4%;
  bottom: 64px;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: #D9A24B;
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-weight: 700; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.6; padding: 14px; transform: rotate(8deg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
@media (max-width: 760px) {
  .hero--photo { min-height: 86vh; padding-bottom: 48px; background-position: 38% 20%; }
  .hero--photo .hero__medal-b { display: none; }
  .hero--photo .hero__badges { display: flex; }  /* photo hero keeps badges: no cred strip overlap issue */
}

/* Menu page hero description forced compact (2 lines) */
.menu-desc { font-size: 0.82rem; line-height: 1.6; max-width: 640px; margin-inline: auto; }
@media (max-width: 560px) { .menu-desc { font-size: 0.78rem; max-width: 42ch; } }
