/* ==========================================================================
   Souvlaki & Kebab Corner — Invercargill
   Brand: charcoal + gold, orange accent (drawn from the shop logo)
   ========================================================================== */

:root{
  /* Brand */
  --ink:        #0e0e0e;
  --ink-2:      #1a1917;
  --ink-3:      #242220;
  --gold:       #e0a82e;
  --gold-soft:  #f0c65e;
  --gold-deep:  #b4831c;
  --orange:     #f26522;
  --cream:      #f7f4ed;
  --cream-2:    #efeae0;
  --line:       rgba(255,255,255,.12);
  --line-dark:  rgba(0,0,0,.10);

  /* Text */
  --text:       #22201d;
  --text-mute:  #6b665e;
  --on-dark:    #f4f1ea;
  --on-dark-mute: #b9b2a6;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.18);

  /* Layout */
  --wrap: 1180px;
  --gut: clamp(18px, 4vw, 40px);
  --nav-h: 84px;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--text);
  font-family:"Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
/* The UA `[hidden]` rule is display:none, which loses to our
   .dish-grid{display:grid} / .center-cta{display:flex} etc.
   These panels are toggled by the API layer, so make it stick. */
[hidden]{ display:none !important; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; }
h1,h2,h3,h4{
  font-family:"Anton", "Barlow Condensed", Impact, sans-serif;
  font-weight:400;
  letter-spacing:.01em;
  line-height:1.04;
  text-transform:uppercase;
  margin:0;
}
p{ margin:0 0 1em; }
:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; border-radius:4px; }

.wrap{ width:min(var(--wrap), 100% - var(--gut)*2); margin-inline:auto; }
.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;
}
.skip{
  position:absolute; left:12px; top:-60px; z-index:200;
  background:var(--gold); color:#000; padding:10px 18px; border-radius:0 0 var(--r-sm) var(--r-sm);
  font-weight:700; transition:top .2s;
}
.skip:focus{ top:0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  padding:.95em 1.9em;
  font-family:"Barlow", sans-serif;
  font-weight:700; font-size:.95rem; letter-spacing:.09em; text-transform:uppercase;
  border:2px solid transparent; border-radius:var(--r-sm);
  cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn--gold{ background:var(--gold); color:#141210; box-shadow:0 6px 18px rgba(224,168,46,.35); }
.btn--gold:hover{ background:var(--gold-soft); box-shadow:0 10px 26px rgba(224,168,46,.45); }
.btn--ghost{ border-color:rgba(255,255,255,.55); color:#fff; }
.btn--ghost:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn--dark{ background:var(--ink); color:var(--cream); }
.btn--dark:hover{ background:var(--ink-3); box-shadow:var(--shadow-md); }
.btn--sm{ padding:.7em 1.3em; font-size:.82rem; }
.btn--block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--ink);
  border-bottom:1px solid var(--line);
}
.site-header__inner{
  display:flex; align-items:center; gap:24px;
  min-height:var(--nav-h);
}
.brand{ display:flex; align-items:center; gap:12px; margin-right:auto; padding:10px 0; }
.brand img{ width:46px; height:46px; border-radius:50%; flex:none; }
.brand__text{ line-height:1; }
.brand__top{
  display:block; font-family:"Barlow",sans-serif; font-weight:600;
  font-size:.72rem; letter-spacing:.24em; color:var(--gold); text-transform:uppercase;
}
.brand__main{
  display:block; font-family:"Anton",sans-serif; font-size:1.32rem;
  letter-spacing:.02em; color:#fff; text-transform:uppercase; margin-top:3px;
}
.brand__sub{
  display:block; font-family:"Barlow",sans-serif; font-weight:500;
  font-size:.6rem; letter-spacing:.4em; color:var(--gold); text-transform:uppercase; margin-top:4px;
}

.nav{ display:flex; align-items:center; gap:6px; }
.nav a{
  position:relative; display:block; padding:10px 14px;
  font-weight:600; font-size:.86rem; letter-spacing:.11em; text-transform:uppercase;
  color:var(--on-dark-mute); transition:color .18s;
}
.nav a:hover{ color:#fff; }
.nav a.is-active{ color:var(--gold); }
.nav a.is-active::after{
  content:""; position:absolute; left:14px; right:14px; bottom:2px;
  height:2px; background:var(--gold); border-radius:2px;
}
/* Buttons inside the nav keep their own colours — `.nav a` must not win */
.nav a.btn{ color:#141210; }
.nav a.btn:hover{ color:#141210; }
.nav a.btn--ghost{ color:#fff; }
.nav a.btn--ghost:hover{ color:var(--ink); }
.nav__item{ position:relative; }
.nav__item--has-menu > a::after{
  content:"›"; display:inline-block; transform:rotate(90deg); margin-left:.5em; font-size:1.1em; line-height:0;
}
.nav__item--has-menu > a.is-active::after{ content:"›"; position:static; height:auto; background:none; }
.submenu{
  position:absolute; top:100%; left:0; min-width:214px;
  background:var(--ink-2); border:1px solid var(--line); border-radius:var(--r-md);
  padding:8px; box-shadow:var(--shadow-lg);
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .18s, transform .18s, visibility .18s;
}
.nav__item--has-menu:hover .submenu,
.nav__item--has-menu:focus-within .submenu{ opacity:1; visibility:visible; transform:translateY(0); }
.submenu a{ padding:9px 14px; border-radius:var(--r-sm); letter-spacing:.06em; }
.submenu a:hover{ background:rgba(255,255,255,.06); color:var(--gold); }

.nav-toggle{
  display:none; width:46px; height:46px; background:transparent;
  border:1px solid var(--line); border-radius:var(--r-sm); cursor:pointer;
  align-items:center; justify-content:center;
}
.nav-toggle span{ display:block; width:20px; height:2px; background:#fff; position:relative; }
.nav-toggle span::before,.nav-toggle span::after{
  content:""; position:absolute; left:0; width:20px; height:2px; background:#fff; transition:transform .2s, top .2s;
}
.nav-toggle span::before{ top:-6px; } .nav-toggle span::after{ top:6px; }
.nav-toggle[aria-expanded="true"] span{ background:transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position:relative; background:var(--ink); color:var(--on-dark);
  overflow:hidden; isolation:isolate;
}

/* The food photograph — full-bleed across the hero.
   The shot's own dark marble occupies the left third, which is what the
   headline sits on; the scrim below only tops up contrast. */
.hero__photo{
  position:absolute; z-index:0; inset:0;
  background-color:#12100e;
  background-image:url("../img/hero.jpg");
  background-size:cover;
  background-position:72% center;
  background-repeat:no-repeat;
}
/* WebP (~105KB) to browsers that take it, JPEG (~300KB) to the rest */
@supports (background-image:image-set(url("../img/hero.webp") type("image/webp"))){
  .hero__photo{
    background-image:image-set(
      url("../img/hero.webp") type("image/webp"),
      url("../img/hero.jpg")  type("image/jpeg"));
  }
}

/* Tops up contrast behind the headline without washing out the food */
.hero__scrim{
  position:absolute; z-index:1; inset:0; pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(11,9,8,.93) 0%,
      rgba(11,9,8,.88) 24%,
      rgba(11,9,8,.66) 40%,
      rgba(11,9,8,.28) 55%,
      rgba(11,9,8,.05) 68%,
      transparent 78%),
    linear-gradient(180deg, rgba(11,9,8,.55) 0%, transparent 20%),
    linear-gradient(0deg,   rgba(11,9,8,.60) 0%, transparent 26%),
    radial-gradient(58% 46% at 12% 88%, rgba(11,9,8,.72), transparent 72%);
}

.hero__inner{
  position:relative; z-index:2;
  padding:clamp(44px,6.5vw,80px) 0 clamp(92px,9vw,120px);
}
.hero__copy{ max-width:min(720px, 62%); }
.hero__kicker, .hero h1, .hero__lede{ max-width:610px; }

.hero__kicker{
  font-family:"Dancing Script", cursive; font-weight:600;
  font-size:clamp(1.5rem,3vw,2.05rem); color:var(--gold); margin-bottom:.2em;
}
.hero h1{
  font-size:clamp(2.15rem,4.35vw,3.35rem); color:#fff;
  text-shadow:0 3px 24px rgba(0,0,0,.6);
}
.hero h1 .gold{ color:var(--gold); }
.hero__lede{
  margin-top:1.05em; color:#d8d3c9; font-size:1.03rem; line-height:1.6;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
}
@media (max-width:820px){ .hero__lede br{ display:none; } }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:1.9em; }

/* Feature row — small gold icons split by hairline dividers, as per the design */
.hero__points{
  display:flex; flex-wrap:nowrap; align-items:center;
  margin-top:2.3em;
}
.point{
  display:flex; gap:10px; align-items:center;
  padding:2px 17px; border-left:1px solid rgba(255,255,255,.22);
}
.point:first-child{ padding-left:0; border-left:0; }
.point svg{ flex:none; width:20px; height:20px; color:var(--gold); }
.point b{
  display:block; font-size:.745rem; letter-spacing:.055em; text-transform:uppercase;
  color:#fff; line-height:1.25; white-space:nowrap;
}
.point span{
  display:block; font-size:.68rem; color:var(--on-dark-mute);
  letter-spacing:.02em; line-height:1.35; white-space:nowrap;
}

/* Halal stamp — thin light ring over the photograph, bottom right */
.halal-stamp{
  position:absolute; z-index:3; right:clamp(20px,4.5vw,66px); bottom:clamp(96px,11vw,148px);
  width:clamp(94px,9.5vw,124px); aspect-ratio:1; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; gap:1px;
  border:1.5px solid rgba(255,255,255,.92);
  background:radial-gradient(circle, rgba(14,11,9,.62) 55%, rgba(14,11,9,.34) 100%);
  backdrop-filter:blur(2px);
  font-family:"Barlow",sans-serif; color:#fff;
  text-shadow:0 1px 6px rgba(0,0,0,.7);
  box-shadow:0 10px 34px rgba(0,0,0,.5), 0 0 26px 10px rgba(11,9,8,.34);
}
.halal-stamp i{ font-style:normal; display:block; line-height:1.1; }
.halal-stamp .n{ font-weight:600; font-size:.72rem; letter-spacing:.02em; }
.halal-stamp .ar{ font-size:1.45rem; font-weight:700; letter-spacing:.01em; margin:1px 0 2px; }
.halal-stamp .en{ font-size:.66rem; font-weight:500; letter-spacing:.2em; }

/* ---------- Diet strip ---------- */
.diet-strip{ position:relative; margin-top:-58px; z-index:5; }
.diet-strip__inner{
  background:#fff; border-radius:var(--r-lg); box-shadow:var(--shadow-md);
  display:grid; grid-template-columns:repeat(5,minmax(0,1fr));
  padding:22px 8px;
}
.diet{
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:8px 6px; border-right:1px solid var(--line-dark);
  font-weight:700; font-size:.85rem; letter-spacing:.11em; text-transform:uppercase;
}
.diet:last-child{ border-right:0; }
.diet svg{ width:24px; height:24px; color:var(--ink); flex:none; }

/* ---------- Sections ---------- */
.section{ padding:clamp(56px,8vw,96px) 0; }
.section--dark{ background:var(--ink); color:var(--on-dark); }
.section--tint{ background:var(--cream-2); }
.section-head{ text-align:center; margin-bottom:clamp(30px,4vw,46px); }
.eyebrow{
  display:inline-flex; align-items:center; gap:14px;
  font-weight:700; font-size:.78rem; letter-spacing:.26em; text-transform:uppercase;
  color:var(--gold-deep); margin-bottom:.7em;
}
.eyebrow::before,.eyebrow::after{ content:""; width:46px; height:1px; background:var(--gold); opacity:.6; }
.section--dark .eyebrow{ color:var(--gold); }
.section-head h2{ font-size:clamp(1.9rem,4vw,2.9rem); }
.section--dark .section-head h2{ color:#fff; }
.section-head p{ max-width:60ch; margin:.9em auto 0; color:var(--text-mute); }
.section--dark .section-head p{ color:var(--on-dark-mute); }

/* ---------- Dish cards ---------- */
.dish-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:20px;
}
.dish{
  background:#fff; border-radius:var(--r-md); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
}
.dish:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.dish__media{
  aspect-ratio:4/3; position:relative; display:grid; place-items:center;
  background:linear-gradient(150deg,#2b2724,#4a3f31 55%,#6d5636);
  overflow:hidden;
}
.dish__media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform .35s ease;
}
.dish:hover .dish__media img{ transform:scale(1.05); }
.dish__body{ padding:14px 15px 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
.dish__name{
  font-family:"Barlow",sans-serif; font-weight:700; font-size:.92rem;
  letter-spacing:.07em; text-transform:uppercase; margin:0;
}
.dish__foot{ display:flex; align-items:center; margin-top:auto; }
.dish__price{ font-weight:700; font-size:1.02rem; color:var(--text); line-height:1.25; }
/* "$18.99 – $20.98" needs to sit alongside the + button without wrapping badly */
.dish__price--range{ font-size:.82rem; letter-spacing:-.01em; white-space:nowrap; }
.dish__foot{ gap:10px; }
.center-cta{ display:flex; justify-content:center; margin-top:34px; }

/* ---------- Promo banner ---------- */
.promo{
  background:var(--ink); color:var(--on-dark); position:relative; overflow:hidden;
}
.promo::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(700px 340px at 82% 50%, rgba(242,101,34,.18), transparent 65%);
}
.promo__inner{
  position:relative; display:grid; grid-template-columns:auto 1fr auto auto;
  align-items:center; gap:clamp(20px,4vw,46px); padding:34px 0;
}
.promo__icon{ width:56px; height:56px; color:var(--gold); flex:none; }
.promo h3{ font-size:clamp(1.3rem,2.6vw,1.85rem); color:#fff; }
.promo__sub{ margin:.45em 0 0; color:var(--on-dark-mute); font-size:.95rem; }
.promo__offer .big{
  font-family:"Anton",sans-serif; font-size:clamp(1.3rem,2.6vw,1.8rem);
  color:var(--gold); text-transform:uppercase; line-height:1.1;
}
.promo__offer .small{
  font-family:"Anton",sans-serif; color:#fff; font-size:clamp(.95rem,1.7vw,1.15rem);
  text-transform:uppercase; line-height:1.2;
}
.promo__code{
  display:inline-flex; align-items:center; gap:12px; margin-top:12px;
  border:1px dashed rgba(255,255,255,.45); border-radius:var(--r-sm); padding:9px 16px;
  font-size:.8rem; letter-spacing:.16em; text-transform:uppercase; color:var(--on-dark-mute);
}
.promo__code b{ color:#fff; font-size:1rem; letter-spacing:.1em; }

/* ---------- Reviews ---------- */
.review-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:22px; }
.review{
  background:#fff; border-radius:var(--r-md); padding:22px 24px;
  box-shadow:var(--shadow-sm); border:1px solid rgba(0,0,0,.05);
  display:flex; flex-direction:column; gap:12px;
}
.review__top{ display:flex; align-items:center; gap:12px; }
.review__src{ width:26px; height:26px; flex:none; }
.stars{ color:var(--gold); letter-spacing:.14em; font-size:1rem; }
.review p{ margin:0; font-size:.97rem; }
.review__who{ font-weight:600; color:var(--text-mute); font-size:.9rem; margin-top:auto; }
.section--tint .review{ background:#fff; }

/* Rating summary */
.rating-badge{
  display:inline-flex; align-items:center; gap:16px;
  background:#fff; border-radius:var(--r-lg); padding:18px 26px; box-shadow:var(--shadow-sm);
}
.rating-badge .score{ font-family:"Anton",sans-serif; font-size:2.6rem; color:var(--ink); line-height:1; }
.rating-badge .meta{ font-size:.9rem; color:var(--text-mute); }

/* ---------- Menu page ---------- */
.page-head{
  background:var(--ink); color:var(--on-dark); position:relative; overflow:hidden;
  padding:clamp(46px,7vw,78px) 0;
}
.page-head::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(700px 380px at 70% 30%, rgba(224,168,46,.15), transparent 62%);
}
.page-head__inner{ position:relative; text-align:center; }
.page-head h1{ font-size:clamp(2.1rem,5vw,3.4rem); color:#fff; }
.page-head p{ max-width:62ch; margin:1em auto 0; color:var(--on-dark-mute); }
.crumbs{ font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:.9em; }
.crumbs a:hover{ text-decoration:underline; }

.menu-nav{
  position:sticky; top:var(--nav-h); z-index:60;
  background:rgba(247,244,237,.94); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-dark);
}
.menu-nav__inner{ display:flex; gap:8px; overflow-x:auto; padding:12px 0; scrollbar-width:thin; }
.menu-nav a{
  flex:none; padding:.55em 1.15em; border-radius:999px; border:1px solid rgba(0,0,0,.14);
  font-weight:700; font-size:.8rem; letter-spacing:.09em; text-transform:uppercase;
  transition:background .16s, color .16s, border-color .16s;
}
.menu-nav a:hover,.menu-nav a.is-active{ background:var(--ink); color:var(--cream); border-color:var(--ink); }

.menu-cat{ padding-top:clamp(38px,5vw,60px); scroll-margin-top:calc(var(--nav-h) + 70px); }
.menu-cat__head{ display:flex; align-items:baseline; gap:16px; margin-bottom:8px; }
.menu-cat__head h2{ font-size:clamp(1.5rem,3.2vw,2.15rem); }
.menu-cat__head .rule{ flex:1; height:1px; background:rgba(0,0,0,.14); }
.menu-cat__note{ color:var(--text-mute); font-size:.95rem; margin-bottom:22px; }

.menu-list{ display:grid; grid-template-columns:repeat(auto-fit,minmax(330px,1fr)); gap:6px 42px; }
.menu-item{
  display:grid; grid-template-columns:1fr auto; gap:4px 14px;
  padding:15px 0; border-bottom:1px dashed rgba(0,0,0,.14);
}
.menu-item__name{
  font-family:"Barlow",sans-serif; font-weight:700; font-size:1.02rem;
  letter-spacing:.02em; text-transform:none; display:flex; align-items:center; gap:9px; flex-wrap:wrap;
}
.menu-item__price{ font-weight:700; white-space:nowrap; color:var(--ink); }
.menu-item__desc{ grid-column:1/-1; margin:0; color:var(--text-mute); font-size:.93rem; }
.tag{
  display:inline-block; font-size:.62rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:.25em .6em; border-radius:4px; vertical-align:middle;
}
.tag--v{ background:#e4f3e2; color:#2f6b2a; }
.tag--vg{ background:#dff0e8; color:#1f6b4a; }
.tag--gf{ background:#fdefdc; color:#96601a; }
.tag--keto{ background:#eae4f6; color:#5a3f96; }
.tag--hot{ background:#fde3dc; color:#a8331a; }
.tag--pop{ background:var(--gold); color:#141210; }

.legend{ display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:36px; padding-top:22px; border-top:1px solid var(--line-dark); font-size:.86rem; color:var(--text-mute); }
.legend span{ display:inline-flex; align-items:center; gap:7px; }

.notice{
  background:#fff8e6; border:1px solid #f0d99b; border-left:4px solid var(--gold);
  border-radius:var(--r-sm); padding:14px 18px; font-size:.92rem; color:#6b5518; margin-top:26px;
}

/* ---------- Feature / content blocks ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,64px); align-items:center; }
.split h2{ font-size:clamp(1.7rem,3.6vw,2.6rem); margin-bottom:.55em; }
.split--reverse .split__media{ order:2; }
.split__media{
  aspect-ratio:4/3; border-radius:var(--r-lg); overflow:hidden; position:relative;
  background:linear-gradient(150deg,#2b2724,#4a3f31 55%,#6d5636);
  display:grid; place-items:center; box-shadow:var(--shadow-md);
}
.split__media picture{ position:absolute; inset:0; }
.split__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.split__media::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 50% 45%, rgba(224,168,46,.18), transparent 58%);
}

.tick-list{ list-style:none; padding:0; margin:1.4em 0 0; display:grid; gap:12px; }
.tick-list li{ display:flex; gap:12px; align-items:flex-start; }
.tick-list svg{ width:20px; height:20px; color:var(--gold-deep); flex:none; margin-top:4px; }
.section--dark .tick-list svg{ color:var(--gold); }

.card-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:22px; }
.card{
  background:#fff; border-radius:var(--r-md); padding:26px 24px;
  box-shadow:var(--shadow-sm); border:1px solid rgba(0,0,0,.05);
}
.card svg{ width:34px; height:34px; color:var(--gold-deep); margin-bottom:14px; }
.card h3{ font-size:1.15rem; margin-bottom:.5em; }
.card p{ color:var(--text-mute); font-size:.95rem; margin:0; }
.section--dark .card{ background:var(--ink-2); border-color:var(--line); }
.section--dark .card h3{ color:#fff; }
.section--dark .card p{ color:var(--on-dark-mute); }
.section--dark .card svg{ color:var(--gold); }

/* ---------- Find us ---------- */
.findus{ display:grid; grid-template-columns:1fr 1.15fr; gap:clamp(28px,5vw,54px); align-items:start; }
.info-list{ display:grid; gap:20px; margin:0; padding:0; }
.info-row{ display:flex; gap:15px; align-items:flex-start; }
.info-row svg{ width:22px; height:22px; color:var(--gold-deep); flex:none; margin-top:5px; }
.info-row > div{ flex:1; min-width:0; }
.info-row .info-label{
  font-weight:700; font-size:.76rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--text-mute); margin:0 0 3px;
}
.info-row .info-value{ margin:0; font-size:1.05rem; }
.info-row a:hover{ color:var(--gold-deep); text-decoration:underline; }
.map-frame{
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md);
  border:1px solid rgba(0,0,0,.08); background:#e8e4db; aspect-ratio:16/12;
}
.map-frame iframe{ width:100%; height:100%; border:0; display:block; }

.hours-table{ width:100%; border-collapse:collapse; }
.hours-table th,.hours-table td{ text-align:left; padding:11px 0; border-bottom:1px solid var(--line-dark); }
.hours-table th{ font-weight:600; font-size:.98rem; }
.hours-table td{ text-align:right; font-variant-numeric:tabular-nums; color:var(--text-mute); }
.hours-table tr.is-today th,.hours-table tr.is-today td{ color:var(--gold-deep); font-weight:700; }
.section--dark .hours-table th,.section--dark .hours-table td{ border-color:var(--line); }
.section--dark .hours-table td{ color:var(--on-dark-mute); }
.section--dark .hours-table tr.is-today th,.section--dark .hours-table tr.is-today td{ color:var(--gold); }

.open-pill{
  display:inline-flex; align-items:center; gap:9px; padding:.5em 1em; border-radius:999px;
  font-size:.82rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
}
.open-pill::before{ content:""; width:9px; height:9px; border-radius:50%; background:currentColor; }
.open-pill.is-open{ background:#e3f4e6; color:#1f7a3a; }
.open-pill.is-closed{ background:#fae4e0; color:#a53b25; }

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg,var(--gold-deep),var(--gold) 55%,var(--gold-soft));
  color:#171310; text-align:center; padding:clamp(44px,6vw,68px) 0;
}
.cta-band h2{ font-size:clamp(1.7rem,4vw,2.7rem); }
.cta-band p{ max-width:56ch; margin:.9em auto 1.6em; color:#4a3a12; font-weight:500; }
.cta-band .btn--dark{ background:var(--ink); color:var(--gold); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:var(--on-dark-mute); padding-top:clamp(46px,6vw,70px); }
.footer-grid{
  display:grid; grid-template-columns:1.3fr .8fr 1.1fr 1.1fr 1fr; gap:clamp(22px,3.5vw,40px);
  padding-bottom:44px;
}
.footer-brand .brand{ margin:0 0 16px; padding:0; }
.footer-brand p{ font-size:.93rem; max-width:34ch; }
.footer h4,.site-footer h4{
  font-size:.8rem; letter-spacing:.2em; color:#fff; margin-bottom:18px;
}
.site-footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.site-footer a:hover{ color:var(--gold); }
.site-footer .hours-list li{ display:flex; justify-content:space-between; gap:14px; font-size:.9rem; }
.site-footer .hours-list li.is-today{ color:var(--gold); font-weight:700; }
.site-footer .hours-list span:last-child{ font-variant-numeric:tabular-nums; }
.footer-contact li{ display:flex; gap:11px; align-items:flex-start; font-size:.93rem; }
.footer-contact svg{ width:17px; height:17px; color:var(--gold); flex:none; margin-top:4px; }

.order-box{
  border:1px solid var(--gold); border-radius:var(--r-md); padding:26px 20px; text-align:center;
  background:rgba(224,168,46,.05);
}
.order-box svg{ width:40px; height:40px; color:var(--gold); margin:0 auto 12px; }
.order-box h4{ font-family:"Anton",sans-serif; font-size:1.15rem; letter-spacing:.03em; color:var(--gold); margin-bottom:8px; }
.order-box p{ font-size:.85rem; margin:0; }

.socials{ display:flex; gap:12px; margin-top:20px; }
.socials a{
  width:38px; height:38px; border-radius:50%; display:grid; place-items:center;
  border:1px solid var(--line); color:var(--on-dark-mute); transition:.18s;
}
.socials a:hover{ background:var(--gold); border-color:var(--gold); color:#141210; }
.socials svg{ width:17px; height:17px; }

.footer-bottom{
  border-top:1px solid var(--line); padding:20px 0;
  display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;
  font-size:.82rem;
}
.footer-bottom .by{ display:inline-flex; align-items:center; gap:8px; }
.footer-bottom .by b{ color:var(--gold); font-family:"Anton",sans-serif; letter-spacing:.04em; }


/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .footer-grid{ grid-template-columns:1fr 1fr 1fr; }
  .footer-order{ grid-column:span 3; }
}
@media (max-width:940px){
  :root{ --nav-h:70px; }
  .nav-toggle{ display:flex; }
  .nav{
    position:fixed; inset:var(--nav-h) 0 0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--ink); padding:18px var(--gut) 40px; overflow-y:auto;
    transform:translateX(100%); transition:transform .25s ease; visibility:hidden;
  }
  .nav.is-open{ transform:none; visibility:visible; }
  .nav a{ padding:15px 0; font-size:1rem; border-bottom:1px solid var(--line); }
  .nav a.btn{ border-bottom:0; padding:.95em 1.9em; font-size:.9rem; justify-content:center; }
  .nav a.is-active::after{ display:none; }
  .nav .btn{ margin-top:20px; }
  .submenu{
    position:static; opacity:1; visibility:visible; transform:none; box-shadow:none;
    border:0; background:transparent; padding:0 0 0 16px; display:none;
  }
  .nav__item--has-menu.is-open .submenu{ display:block; }
  .submenu a{ font-size:.9rem; opacity:.85; }
  /* Tablet & below: serve the lighter crop and darken further, since the
     copy now sits over the whole frame rather than just the marble side. */
  .hero__photo{
    background-image:url("../img/hero-mobile.jpg");
    background-position:64% center;
  }
  @supports (background-image:image-set(url("../img/hero-mobile.webp") type("image/webp"))){
    .hero__photo{
      background-image:image-set(
        url("../img/hero-mobile.webp") type("image/webp"),
        url("../img/hero-mobile.jpg")  type("image/jpeg"));
    }
  }
  .hero__scrim{
    background:
      linear-gradient(90deg, rgba(11,9,8,.92) 0%, rgba(11,9,8,.80) 48%, rgba(11,9,8,.62) 100%),
      linear-gradient(180deg, rgba(11,9,8,.78) 0%, transparent 26%),
      linear-gradient(0deg,   rgba(11,9,8,.86) 0%, transparent 32%);
  }
  .hero__inner{ padding-bottom:clamp(104px,14vw,132px); }
  .hero__copy{ max-width:none; }
  .hero__points{ margin-top:2em; }
  .point{ padding:2px 16px; }
  .halal-stamp{ right:16px; bottom:clamp(92px,13vw,116px); width:88px; }
  .halal-stamp .ar{ font-size:1.2rem; }
  .diet-strip__inner{ grid-template-columns:repeat(2,1fr); gap:4px; }
  .diet{ border-right:0; justify-content:flex-start; padding-left:18px; }
  .promo__inner{ grid-template-columns:1fr; text-align:center; justify-items:center; gap:20px; }
  .split{ grid-template-columns:1fr; }
  .split--reverse .split__media{ order:0; }
  .findus{ grid-template-columns:1fr; }
  .menu-nav{ top:var(--nav-h); }
}
@media (max-width:620px){
  body{ font-size:16px; }
  /* Phone: four feature points become a 2x2 grid, dividers off */
  .hero__points{ display:grid; grid-template-columns:1fr 1fr; gap:16px 12px; }
  .point{ padding:0; border-left:0; }
  .point b{ font-size:.72rem; white-space:normal; }
  .point span{ font-size:.66rem; white-space:normal; }
  .halal-stamp{ width:76px; right:14px; top:18px; bottom:auto; }
  .halal-stamp .n{ font-size:.6rem; }
  .halal-stamp .ar{ font-size:1.05rem; }
  .halal-stamp .en{ font-size:.55rem; letter-spacing:.14em; }
  .brand img{ width:40px; height:40px; }
  .brand__main{ font-size:1.1rem; }
  .dish-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-order{ grid-column:span 2; }
  .footer-brand{ grid-column:span 2; }
  .menu-list{ grid-template-columns:1fr; }
  .footer-bottom{ justify-content:center; text-align:center; }
}

@media print{
  .site-header,.cta-band,.menu-nav,.site-footer{ display:none; }
  body{ background:#fff; }
}

/* Catering enquiry form — stack paired fields on narrow screens */
@media (max-width:620px){
  .form-row{ grid-template-columns:1fr !important; }
}
input:focus, textarea:focus{ outline:2px solid var(--gold); outline-offset:1px; }


/* ==========================================================================
   SIPO API components — status strip, live hours, menu, floating order
   ========================================================================== */

/* ---------- Status strip (injected by api/statusManager.js) ---------- */
.status-strip{
  /* Mounted inside .site-header by api/statusManager.js, so it rides along with
     the sticky header and stays visible for the whole page. */
  position:relative; z-index:1;
  background:var(--ink-2); color:var(--on-dark);
  border-bottom:1px solid var(--line);
  font-size:.83rem; letter-spacing:.04em;
}
.status-strip-inner{
  width:min(var(--wrap), 100% - var(--gut)*2); margin-inline:auto;
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:8px 0; text-align:center;
}
.status-strip-dot{
  width:9px; height:9px; border-radius:50%; background:var(--gold); flex:none;
}
.status-strip.open{ background:#0f2a17; border-bottom-color:rgba(74,222,128,.25); }
.status-strip.open .status-strip-dot{
  background:#4ade80; box-shadow:0 0 0 0 rgba(74,222,128,.6); animation:pulse 2.4s infinite;
}
.status-strip.open .status-strip-text{ color:#c9f2d6; }
.status-strip.closed{ background:#2a1210; border-bottom-color:rgba(248,113,113,.25); }
.status-strip.closed .status-strip-dot{ background:#f87171; }
.status-strip.closed .status-strip-text{ color:#f6cdc7; }
.status-strip.error .status-strip-dot{ background:var(--gold); }
.status-strip.error .status-strip-text{ color:var(--on-dark-mute); }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(74,222,128,.55); }
  70%{ box-shadow:0 0 0 7px rgba(74,222,128,0); }
  100%{ box-shadow:0 0 0 0 rgba(74,222,128,0); }
}
@media (prefers-reduced-motion:reduce){ .status-strip.open .status-strip-dot{ animation:none; } }

/* ---------- Grouped hours rows (live from the API) ---------- */
.hours-table{ display:grid; }
.hours-row{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  padding:11px 0; border-bottom:1px solid var(--line-dark);
}
.hours-row .day{ font-weight:600; font-size:.98rem; }
.hours-row .time{ font-variant-numeric:tabular-nums; color:var(--text-mute); text-align:right; }
.hours-row .time.closed-day{ color:#b4483a; }
.hours-row.is-today .day,
.hours-row.is-today .time{ color:var(--gold-deep); font-weight:700; }
.section--dark .hours-row{ border-color:var(--line); }
.section--dark .hours-row .time{ color:var(--on-dark-mute); }
.section--dark .hours-row.is-today .day,
.section--dark .hours-row.is-today .time{ color:var(--gold); }

.site-footer .hours-list li.is-today{ color:var(--gold); font-weight:700; }
.site-footer .hours-list .time.closed-day{ color:#f0a08f; }

/* ---------- Menu placeholders (no photo yet) ---------- */
.dish__ph, .split__ph{
  display:grid; place-items:center; width:100%; height:100%; color:var(--gold);
}
.dish__ph svg{ width:44%; max-width:74px; height:auto; opacity:.34; }
.split__ph svg{ width:38%; max-width:190px; height:auto; opacity:.3; }
.dish__desc{
  margin:0; font-size:.86rem; line-height:1.5; color:var(--text-mute);
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* ---------- Menu page: category tabs ---------- */
.menu-tabs{
  display:flex; gap:8px; flex-wrap:wrap; justify-content:center;
  margin-bottom:clamp(28px,4vw,42px);
}
.menu-tab{
  padding:.6em 1.25em; border-radius:999px; cursor:pointer;
  border:1px solid rgba(0,0,0,.16); background:transparent;
  font-weight:700; font-size:.8rem; letter-spacing:.09em; text-transform:uppercase;
  transition:background .16s, color .16s, border-color .16s;
}
.menu-tab:hover{ border-color:var(--ink); }
.menu-tab.is-active{ background:var(--ink); color:var(--cream); border-color:var(--ink); }

/* ---------- Loading + empty states ---------- */
.menu-loading{ text-align:center; padding:46px 0; color:var(--text-mute); }
.menu-loading .spinner{
  display:block; width:30px; height:30px; margin:0 auto 14px;
  border:3px solid rgba(0,0,0,.12); border-top-color:var(--gold); border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce){ .menu-loading .spinner{ animation-duration:2.4s; } }

.menu-empty{
  text-align:center; max-width:560px; margin-inline:auto;
  padding:clamp(34px,5vw,52px) 26px;
  background:#fff; border:1px solid rgba(0,0,0,.07); border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm);
}
.menu-empty > svg{ width:52px; height:52px; color:var(--gold-deep); opacity:.55; margin:0 auto 16px; }
.menu-empty h3{ font-size:1.4rem; margin-bottom:.5em; }
.menu-empty p{ color:var(--text-mute); margin:0 auto; max-width:44ch; }
.menu-empty__cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:24px; }

/* ---------- Reviews ---------- */
.review{ position:relative; }
.review__quote{ width:28px; height:28px; color:var(--gold); opacity:.85; }
.review-cta{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  margin-top:clamp(28px,4vw,40px); padding:clamp(24px,3.5vw,34px) clamp(24px,4vw,40px);
  background:var(--ink); color:var(--on-dark); border-radius:var(--r-lg);
}
.review-cta h3{ color:#fff; font-size:clamp(1.25rem,2.4vw,1.6rem); }
.review-cta p{ margin:.5em 0 0; color:var(--on-dark-mute); font-size:.95rem; }

/* ---------- Buttons: outline variant ---------- */
.btn--outline{ border-color:rgba(255,255,255,.5); color:#fff; }
.btn--outline:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.cta-band .btn--outline{ border-color:rgba(23,19,16,.55); color:#171310; }
.cta-band .btn--outline:hover{ background:var(--ink); color:var(--gold); border-color:var(--ink); }
.cta-band__actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Floating order button ---------- */
.floating-order{
  position:fixed; right:22px; bottom:22px; z-index:115;
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 22px; border-radius:999px;
  background:var(--gold); color:#141210;
  font-weight:700; font-size:.86rem; letter-spacing:.08em; text-transform:uppercase;
  box-shadow:0 10px 30px rgba(224,168,46,.42), 0 2px 10px rgba(0,0,0,.2);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.floating-order:hover{
  background:var(--gold-soft); transform:translateY(-3px);
  box-shadow:0 16px 40px rgba(224,168,46,.5), 0 2px 10px rgba(0,0,0,.22);
}
.floating-order svg{ width:19px; height:19px; flex:none; }

@media (max-width:940px){
  /* Icon-only circular button on small screens — the label is desktop-only */
  .floating-order{
    right:16px; bottom:16px;
    width:58px; height:58px; padding:0; gap:0;
    justify-content:center; border-radius:50%;
  }
  .floating-order__label{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
  }
  .floating-order svg{ width:24px; height:24px; }
  .review-cta{ flex-direction:column; align-items:flex-start; }
}
