/* ============================================================
   CASABLANCA — Croydon · style.css
   Warm, modern, Moroccan-inspired design system
   ============================================================ */

:root {
  --espresso: #241309;
  --espresso-2: #332012;
  --espresso-3: #3f2a1a;
  --cream: #f7f0e3;
  --cream-2: #efe5d2;
  --paper: #fffdf7;
  --terracotta: #b1502a;
  --terracotta-dark: #94411f;
  --tan: #b39682;
  --tan-light: #d8c5b4;
  --gold: #dd9c33;
  --green: #3d7a5c;
  --ink: #2b1c12;
  --muted: #82705f;
  --line: #e4d7c2;

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Outfit", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --arch: 999px 999px 22px 22px;
  --shadow-soft: 0 10px 40px rgb(38 21 13 / .10);
  --shadow-lift: 0 18px 60px rgb(38 21 13 / .16);
  --wrap: 1180px;

  /* subtle zellige eight-point star, tiled */
  --pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.07' stroke-width='1.2'%3E%3Cpath d='M36 6l7.5 22.5L66 36l-22.5 7.5L36 66l-7.5-22.5L6 36l22.5-7.5z'/%3E%3Ccircle cx='36' cy='36' r='7'/%3E%3Cpath d='M0 0h72v72H0z' stroke-opacity='.045'/%3E%3C/g%3E%3C/svg%3E");
  --pattern-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23241309' stroke-opacity='.055' stroke-width='1.2'%3E%3Cpath d='M36 6l7.5 22.5L66 36l-22.5 7.5L36 66l-7.5-22.5L6 36l22.5-7.5z'/%3E%3Ccircle cx='36' cy='36' r='7'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 4vw, 36px); }

::selection { background: var(--terracotta); color: #fff; }

/* ---------- typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta);
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title { font-size: clamp(34px, 4.6vw, 54px); font-weight: 700; letter-spacing: -.01em; }
.section-head { display: grid; gap: 14px; max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.lead { font-size: clamp(16px, 1.9vw, 19px); color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; letter-spacing: .01em; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 8px 24px rgb(177 80 42 / .35); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgb(255 255 255 / .35); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgb(255 255 255 / .08); transform: translateY(-2px); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: var(--espresso-3); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--espresso); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 76px;
}
.site-header.scrolled {
  background: rgb(247 240 227 / .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgb(38 21 13 / .06);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 26px; width: auto; transition: filter .25s ease, opacity .2s ease; }
.brand:hover img { opacity: .8; }
/* over hero (transparent header) show white logo via filter swap */
.site-header:not(.scrolled) .brand img.logo-swap { filter: invert(1) brightness(2); }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.main-nav a {
  text-decoration: none; font-weight: 500; font-size: 15.5px;
  color: rgb(255 255 255 / .85);
  transition: color .18s ease;
  position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); border-radius: 2px; transition: width .22s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--ink); }
.site-header.scrolled .main-nav a:hover { color: var(--terracotta); }

.nav-call {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  background: var(--terracotta); color: #fff !important; font-weight: 600; font-size: 14.5px;
  box-shadow: 0 6px 18px rgb(177 80 42 / .35);
  transition: background .18s ease, transform .18s ease;
}
.nav-call:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.nav-call svg { width: 15px; height: 15px; fill: currentColor; }
.nav-call::after { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; z-index: 70; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; position: absolute; left: 10px; right: 10px; height: 2.4px;
  border-radius: 2px; background: #fff; transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after { background: var(--ink); }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; left: 0; right: 0; }
.nav-toggle span::after { top: 8px; left: 0; right: 0; }
body.nav-open .nav-toggle span { background: transparent !important; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); background: #fff; }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); background: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 65;
    flex-direction: column; justify-content: center; gap: 30px;
    background: rgb(36 19 9 / .97);
    opacity: 0; pointer-events: none; transition: opacity .28s ease;
  }
  .main-nav a { font-size: 24px; font-family: var(--ff-display); font-weight: 600; color: #fff !important; }
  .site-header.scrolled .main-nav a { color: #fff !important; }
  body.nav-open .main-nav { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 85% -10%, #4a2f1b 0%, transparent 55%),
    radial-gradient(900px 700px at -10% 110%, #3a2413 0%, transparent 50%),
    var(--espresso);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--pattern);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.25));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.25));
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-top: clamp(130px, 16vh, 180px);
  padding-bottom: clamp(70px, 10vh, 120px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: "✦"; font-size: 11px; }
.hero-logo { width: min(520px, 88%); height: auto; margin-bottom: 8px; }
.hero-tag {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.4vw, 26px); color: var(--tan-light);
  margin-bottom: 18px;
}
.hero-sub {
  max-width: 46ch; color: rgb(255 255 255 / .72);
  font-size: clamp(15.5px, 1.8vw, 17.5px); margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* order-online dropdown */
.order-drop { position: relative; }
.order-drop > summary { list-style: none; }
.order-drop > summary::-webkit-details-marker { display: none; }
.order-menu {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 20;
  min-width: 230px; padding: 8px;
  background: #fff; color: var(--ink); border-radius: 16px;
  box-shadow: var(--shadow-lift);
  animation: pop .18s ease;
}
@keyframes pop { from { opacity: 0; transform: translateY(6px); } }
.order-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px;
}
.order-menu a:hover { background: var(--cream); color: var(--terracotta); }
.order-menu a small { margin-left: auto; font-weight: 500; color: var(--muted); }

.hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; }
.hero-point { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgb(255 255 255 / .78); }
.hero-point svg { width: 19px; height: 19px; fill: var(--gold); flex: none; }

/* hero visual */
.hero-visual { position: relative; justify-self: center; width: min(460px, 100%); }
.hero-arch {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  border: 6px solid rgb(255 255 255 / .12);
  box-shadow: 0 30px 80px rgb(0 0 0 / .45);
  aspect-ratio: 4 / 5;
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-arch::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .25), inset 0 -80px 120px rgb(36 19 9 / .35);
}
/* rotating stamp */
.stamp {
  position: absolute; top: -34px; right: -30px; width: 128px; height: 128px; z-index: 3;
  filter: drop-shadow(0 10px 24px rgb(0 0 0 / .4));
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stamp text { font-family: var(--ff-body); font-size: 11.4px; font-weight: 700; letter-spacing: .32em; fill: var(--cream); }
.stamp .stamp-bg { fill: var(--terracotta); }
.stamp .stamp-star { fill: var(--gold); }

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: rgb(255 253 247 / .97); color: var(--ink);
  border-radius: 16px; padding: 13px 18px;
  box-shadow: var(--shadow-lift);
  font-size: 14px; font-weight: 600; line-height: 1.3;
}
.float-card small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; }
.float-card .fc-ico {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--terracotta);
}
.float-card .fc-ico svg { width: 21px; height: 21px; fill: currentColor; }
.fc-hours { bottom: 34px; left: -44px; animation: bob 6s ease-in-out infinite; }
.fc-rating { top: 84px; left: -58px; animation: bob 7s ease-in-out .8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  color: rgb(255 255 255 / .5); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after { content: ""; width: 1.5px; height: 34px; background: linear-gradient(rgb(255 255 255 / .6), transparent); animation: drip 2s ease-in-out infinite; }
@keyframes drip { 50% { transform: translateY(6px); opacity: .5; } }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .hero-logo { margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-points { justify-content: center; }
  .hero-visual { margin-top: 26px; }
  .fc-hours { left: -8px; }
  .fc-rating { left: -12px; }
  .stamp { right: -12px; }
  .order-menu { left: 50%; transform: translateX(-50%); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--terracotta); color: var(--cream);
  overflow: hidden; white-space: nowrap;
  padding: 13px 0;
  border-block: 1px solid rgb(0 0 0 / .12);
}
.marquee-track { display: inline-flex; gap: 0; animation: marquee 30s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 26px; padding-inline: 13px;
  font-weight: 600; font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
}
.marquee span::after { content: "✦"; color: var(--gold); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .stamp, .fc-hours, .fc-rating, .hero-scroll::after { animation: none !important; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: clamp(70px, 10vw, 130px); position: relative; }
.about::before {
  content: ""; position: absolute; inset: 0; background-image: var(--pattern-dark); pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.5), transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.5), transparent);
}
.about .wrap { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(36px, 6vw, 80px); align-items: center; }

.about-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-visual .av {
  border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-soft);
  border: 5px solid var(--paper);
}
.about-visual .av img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .av-1 { aspect-ratio: 3/4.1; }
.about-visual .av-2 { aspect-ratio: 3/4.1; margin-top: 44px; }
.about-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--espresso); color: var(--cream);
  border-radius: 999px; width: 120px; height: 120px;
  display: grid; place-items: center; text-align: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 15px; line-height: 1.25;
  box-shadow: 0 14px 40px rgb(36 19 9 / .4);
  border: 4px solid var(--cream);
  rotate: -6deg;
}
.about-badge b { font-size: 26px; color: var(--gold); display: block; font-weight: 900; }

.about-body { display: grid; gap: 22px; }
.about-body .lead { color: var(--ink); font-size: clamp(17px, 2vw, 20px); }
.about-body p + p { color: var(--muted); }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  padding: 18px; border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.feature-ico {
  width: 44px; height: 44px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark)); color: #fff;
}
.feature-ico svg { width: 22px; height: 22px; fill: currentColor; }
.feature h4 { font-family: var(--ff-body); font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
.feature p { font-size: 13.8px; color: var(--muted); line-height: 1.45; }

@media (max-width: 900px) {
  .about .wrap { grid-template-columns: minmax(0, 1fr); }
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding-block: clamp(70px, 10vw, 130px);
  background:
    radial-gradient(800px 400px at 110% 0%, #f3e9d5 0%, transparent 60%),
    var(--cream-2);
  border-block: 1px solid var(--line);
  position: relative;
}
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: clamp(30px, 4vw, 46px);
}
.menu-tab {
  padding: 11px 20px; border-radius: 999px;
  background: var(--paper); border: 1.5px solid var(--line);
  font-weight: 600; font-size: 14.5px; color: var(--muted);
  transition: all .18s ease;
}
.menu-tab:hover { border-color: var(--tan); color: var(--ink); transform: translateY(-1px); }
.menu-tab.is-active {
  background: var(--espresso); border-color: var(--espresso); color: var(--cream);
  box-shadow: 0 8px 22px rgb(36 19 9 / .25);
}

.menu-panel { animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

.menu-section { margin-bottom: clamp(34px, 5vw, 54px); }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.menu-section-head h3 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 700; color: var(--espresso);
  display: inline-flex; align-items: center; gap: 14px;
}
.menu-section-head h3::after { content: ""; width: 46px; height: 2px; background: var(--gold); border-radius: 2px; }
.menu-note { font-size: 14px; color: var(--muted); font-style: italic; }

.menu-items {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4.5vw, 64px); row-gap: 20px;
}
.menu-item { break-inside: avoid; }
.item-row { display: flex; align-items: baseline; gap: 10px; }
.item-name { font-weight: 600; font-size: 16.5px; color: var(--espresso); display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.item-dots { flex: 1; border-bottom: 2px dotted #c9b8a0; transform: translateY(-4px); min-width: 24px; }
.item-price { font-family: var(--ff-display); font-weight: 700; font-size: 17px; color: var(--terracotta); white-space: nowrap; }
.item-desc { font-size: 14px; color: var(--muted); margin-top: 4px; max-width: 52ch; line-height: 1.5; }

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
  position: relative; top: -1.5px;
}
.badge svg { width: 11px; height: 11px; fill: currentColor; }
.badge-v { background: #e3efe5; color: var(--green); }
.badge-sig { background: #f7e5cf; color: #9a6210; }

.menu-extras {
  margin-top: 18px; padding: 14px 18px;
  background: var(--paper); border: 1px dashed var(--tan);
  border-radius: 14px;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.extras-label {
  font-family: var(--ff-display); font-weight: 700; font-size: 15px; color: var(--terracotta);
  letter-spacing: .04em; text-transform: uppercase; font-size: 13px;
}
.menu-extras ul { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.menu-extras li { font-size: 14px; color: var(--muted); }
.menu-extras li b { color: var(--ink); font-weight: 600; }

.menu-cta { text-align: center; margin-top: clamp(36px, 5vw, 54px); display: grid; gap: 14px; justify-items: center; }
.menu-cta p { color: var(--muted); font-size: 15px; }

@media (max-width: 760px) {
  .menu-items { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding-block: clamp(70px, 9vw, 110px); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure {
  margin: 0; border-radius: var(--arch); overflow: hidden;
  aspect-ratio: 3/3.9; box-shadow: var(--shadow-soft);
  border: 5px solid var(--paper);
  position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgb(36 19 9 / .82));
  color: var(--cream); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-align: center;
}
.gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(4) { translate: 0 26px; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(4) { translate: 0 0; }
}

/* ============================================================
   CATERING
   ============================================================ */
.catering {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(900px 500px at 15% 0%, #4a2f1b 0%, transparent 55%),
    var(--espresso);
}
.catering::before { content: ""; position: absolute; inset: 0; background-image: var(--pattern); opacity: .8; pointer-events: none; }
.catering .wrap {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(36px, 6vw, 80px); align-items: center;
  padding-block: clamp(70px, 10vw, 120px);
}
.catering .kicker { color: var(--gold); }
.catering h2 { color: #fff; }
.catering .lead { color: rgb(255 255 255 / .75); }
.catering-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.catering-visual { position: relative; }
.catering-visual .cv {
  border-radius: var(--arch); overflow: hidden; aspect-ratio: 4/4.6;
  border: 6px solid rgb(255 255 255 / .12);
  box-shadow: 0 30px 80px rgb(0 0 0 / .45);
}
.catering-visual img { width: 100%; height: 100%; object-fit: cover; }
.halal-seal {
  position: absolute; top: -28px; left: -28px; width: 116px; height: 116px;
  animation: spin 26s linear infinite reverse;
  filter: drop-shadow(0 10px 24px rgb(0 0 0 / .4));
}
.halal-seal .seal-bg { fill: var(--green); }
.halal-seal text { font-family: var(--ff-body); font-size: 11.6px; font-weight: 700; letter-spacing: .3em; fill: #fff; }
@media (max-width: 900px) {
  .catering .wrap { grid-template-columns: minmax(0, 1fr); }
  .catering-visual { max-width: 420px; margin-inline: auto; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding-block: clamp(70px, 10vw, 120px); text-align: center; position: relative; }
.reviews .stars { display: inline-flex; gap: 6px; margin-bottom: 22px; }
.reviews .stars svg { width: 26px; height: 26px; fill: var(--gold); }
.review-quote {
  font-family: var(--ff-display); font-weight: 500; font-style: italic;
  font-size: clamp(21px, 3vw, 30px); line-height: 1.4;
  max-width: 21em; margin-inline: auto; color: var(--espresso);
}
.review-meta { margin-top: 18px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.reviews .btn { margin-top: 30px; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream-2); border-top: 1px solid var(--line); padding-block: clamp(70px, 10vw, 120px); }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 4vw, 44px); align-items: stretch; }
.visit-cards { display: grid; gap: 16px; align-content: start; }
.vcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 18px; align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.vcard-ico {
  width: 48px; height: 48px; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--espresso); color: var(--gold);
}
.vcard-ico svg { width: 23px; height: 23px; fill: currentColor; }
.vcard h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.vcard p, .vcard li { color: var(--muted); font-size: 15px; }
.vcard a { color: var(--terracotta); font-weight: 600; text-decoration: none; }
.vcard a:hover { text-decoration: underline; }
.hours-list { display: grid; gap: 5px; margin-top: 4px; }
.hours-list li { display: flex; justify-content: space-between; gap: 24px; }
.hours-list b { color: var(--ink); font-weight: 600; }
.hours-list .closed { color: var(--terracotta); font-weight: 600; }
.visit-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); min-height: 420px; background: var(--paper);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: minmax(0, 1fr); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--espresso); color: rgb(255 255 255 / .75); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background-image: var(--pattern); opacity: .5; pointer-events: none; }
.footer-main {
  position: relative;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 70px);
  padding-block: clamp(50px, 7vw, 80px);
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgb(255 255 255 / .08); color: var(--cream);
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.footer-social a:hover { background: var(--terracotta); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--ff-body); color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgb(255 255 255 / .72); text-decoration: none; font-size: 15px; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col li { font-size: 15px; }
.footer-bottom {
  position: relative;
  border-top: 1px solid rgb(255 255 255 / .1);
  padding-block: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: rgb(255 255 255 / .45);
}
.footer-bottom a { color: inherit; }
@media (max-width: 820px) { .footer-main { grid-template-columns: minmax(0, 1fr); } }

/* ---------- reveal on scroll (only when JS is available) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--espresso); color: var(--cream);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lift);
  opacity: 0; pointer-events: none; translate: 0 10px;
  transition: opacity .25s ease, translate .25s ease, background .2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; translate: 0 0; }
.to-top:hover { background: var(--terracotta); }
.to-top svg { width: 20px; height: 20px; fill: currentColor; }
