:root {
  /* ---- Mawlawi Navy / Gold / Ivory palette ---- */
  --bg: #0e1c40;            /* deep royal navy */
  --bg-2: #0a1530;          /* darker section band */
  --panel: #13254f;         /* cards */
  --ink: #f5ecd8;           /* soft ivory */
  --muted: #cbb98f;         /* warm muted gold-grey */
  --gold: #d4a63e;          /* brand gold */
  --gold-2: #e7c877;        /* lighter gold (hover) */
  --gold-soft: #c99a3a;
  --paper: #fbf6ea;         /* ivory reviews band */
  --line: rgba(245, 236, 216, 0.13);   /* neutral hairline */
  --divider: rgba(245, 236, 216, 0.08);
  --gold-hair: rgba(212, 166, 62, 0.34);
  --glow: rgba(212, 166, 62, 0.30);
  --maxw: 1120px;
  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .4em;
}

a { color: var(--gold-2); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 28, 64, .92);
  backdrop-filter: blur(10px);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(110% 180% at 50% 118%, rgba(212,166,62,.18) 0%, rgba(212,166,62,.06) 28%, transparent 60%);
  opacity: .5;
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 0;
  pointer-events: none; background: linear-gradient(90deg, transparent, var(--gold-hair) 20%, var(--gold-hair) 80%, transparent);
}
.nav {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; padding: 14px 22px; max-width: var(--maxw); margin: 0 auto;
}
.nav-links { justify-self: center; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold-hair); }
.brand .name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink); }
.brand .name small { display: block; font-family: var(--font-body); font-size: .52rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); font-size: .76rem; letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: color .25s ease, text-shadow .25s ease; }
.nav-links a:hover { color: var(--gold); text-shadow: 0 0 14px var(--glow); }
.nav-cta {
  background: transparent; color: var(--gold) !important; font-weight: 600;
  padding: 9px 18px; border-radius: 4px; font-size: .74rem; letter-spacing: 1px;
  border: 1px solid var(--gold-hair); text-transform: uppercase;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nav-cta:hover { background: var(--gold); color: #150d05 !important; box-shadow: 0 0 20px var(--glow); border-color: var(--gold); text-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; text-align: center;
  padding: 104px 22px 96px;
  background:
    radial-gradient(1100px 560px at 50% -6%, rgba(212,166,62,.20), transparent 60%),
    linear-gradient(180deg, rgba(14,28,64,.70), rgba(10,21,48,.78) 55%, rgba(10,21,48,.94)),
    url('images/hero.jpg') center 42% / cover no-repeat;
  background-color: var(--bg-2);
  border-bottom: 1px solid var(--divider);
}
.hero .hero-badge {
  width: 128px; height: 128px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 26px; border: 2px solid var(--gold);
  box-shadow: 0 10px 34px rgba(0,0,0,.45);
}
.hero .eyebrow { color: var(--gold); letter-spacing: 5px; text-transform: uppercase; font-size: .74rem; font-weight: 600; margin-bottom: 18px; }
.hero .kh { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold-2); font-weight: 600; margin-bottom: .1em; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 6px;
  font-size: clamp(2.1rem, 5.6vw, 3.9rem); margin-bottom: .32em;
}
.hero p.lead { color: var(--muted); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 4px; font-weight: 600;
  letter-spacing: 1.5px; font-size: .76rem; text-transform: uppercase; cursor: pointer;
  border: 1px solid transparent; transition: background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn-primary { background: var(--gold); color: #150d05; border-color: var(--gold); font-weight: 700; box-shadow: 0 2px 16px rgba(212,166,62,.30); }
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); box-shadow: 0 0 28px var(--glow); color: #150d05; }
.btn-ghost { border-color: var(--gold-hair); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 20px var(--glow); }

/* ---------- Hours strip ---------- */
.hours-strip {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 11px; flex-wrap: wrap;
  justify-content: center; font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
}
.hours-strip b { color: var(--gold); font-weight: 500; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; box-shadow: 0 0 8px var(--glow); }

/* ---------- Sections ---------- */
section { padding: 82px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .eyebrow { color: var(--gold); letter-spacing: 4px; text-transform: uppercase; font-size: .7rem; font-weight: 600; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: .35em;
}
.section-head p { color: var(--muted); max-width: 660px; margin: 14px auto 0; }
.alt { background: var(--bg-2); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }

/* Cream "Guest Book" reviews band, to break up the navy */
#reviews {
  background: var(--paper);
  border-top: 1px solid var(--gold-hair);
  border-bottom: 1px solid var(--gold-hair);
}
#reviews .section-head .eyebrow { color: var(--gold-soft); }
#reviews .section-head h2 { color: #0e1c40; }
emr-simple-slider { display: block; margin-top: 10px; }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 38px 28px; text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.card:hover { border-color: var(--gold); box-shadow: 0 0 26px var(--glow); transform: translateY(-3px); }
.card .ico { margin-bottom: 18px; line-height: 0; }
.card .ico svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; display: inline-block; }
.card h3 { font-size: 1.15rem; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; margin-bottom: .55em; }
.card p { color: var(--muted); margin: 0; font-size: .94rem; }

/* ---------- Signature dishes (placeholder cards) ---------- */
.fav-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fav-card {
  margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.fav-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 0 26px var(--glow); }
.fav-img {
  height: 200px; background-size: cover; background-position: center;
  background-color: #0a1530;
}
.fav-card figcaption { padding: 20px 22px 24px; text-align: center; }
.fav-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .5em;
}
.fav-card .dish-kh { color: var(--gold-2); font-family: var(--font-serif); font-size: 1.05rem; margin: 0 0 .55em; direction: rtl; }
.fav-card p { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.5; }
.menu-note { text-align: center; margin-top: 44px; color: var(--muted); }

/* ---------- Find Us (kept as-is from Mawlawi) ---------- */
#visit .section-head { margin-bottom: 38px; }
.contact-strip {
  display: flex; justify-content: center; max-width: 840px; margin: 0 auto;
  border: 1px solid var(--gold-hair); border-radius: 6px; overflow: hidden;
}
.contact-strip .ci { flex: 1; text-align: center; padding: 26px 24px; border-right: 1px solid rgba(212,166,62,.22); }
.contact-strip .ci:last-child { border-right: none; }
.contact-strip .lbl { font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 10px; }
.contact-strip .val { font-size: 18px; line-height: 1.45; color: var(--ink); font-family: var(--font-serif); }
.contact-strip .val a { color: var(--ink); }
.contact-strip .val a:hover { color: var(--gold-2); }
.contact-cta { text-align: center; margin: 30px 0 34px; }
.map-embed { max-width: 960px; margin: 0 auto; border-radius: 6px; overflow: hidden; border: 1px solid var(--gold-hair); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--divider); padding: 52px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; }
.footer-grid h4 { color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-size: .7rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .92rem; }
.footer-grid a { display: block; margin-bottom: 7px; }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--gold-hair); }
.footer-brand .name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink); }
.footer-tagline { color: var(--gold-soft); font-family: var(--font-display); font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; margin: 0 0 4px; }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--panel); border: 1px solid var(--gold-hair); color: var(--ink);
  transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #150d05; box-shadow: 0 0 20px var(--glow); }
.socials svg { width: 20px; height: 20px; fill: currentColor; display: block; transition: transform .6s ease; }
.socials a.tiktok:hover svg { transform: rotate(360deg); }
.copyright { text-align: center; color: #7d88a6; font-size: .8rem; letter-spacing: .5px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--divider); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 16px; }
  .nav-links {
    order: 3; width: 100%; margin: 0; padding: 2px 0 0;
    display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px;
    overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; padding: 8px 14px; border: 1px solid var(--gold-hair); border-radius: 999px; font-size: .64rem; white-space: nowrap; }
  .nav-links a:hover { color: var(--gold); border-color: var(--gold); text-shadow: none; }
  .nav-cta { flex: 0 0 auto; margin: 0; padding: 8px 14px; }
  .hero { padding: 72px 22px 64px; }
  .hero h1 { letter-spacing: 4px; }
  .features { grid-template-columns: 1fr; }
  .fav-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .contact-strip { flex-direction: column; }
  .contact-strip .ci { border-right: none; border-bottom: 1px solid rgba(212,166,62,.22); }
  .contact-strip .ci:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 520px) {
  .fav-grid { grid-template-columns: 1fr; }
}
