
:root {
  --paper: #efe4d0;
  --paper-soft: #f7f0e5;
  --paper-deep: #ddccb0;
  --olive: #36471b;
  --olive-2: #4d6428;
  --olive-3: #70854a;
  --ink: #1f2418;
  --muted: #5a6349;
  --gold: #b48a52;
  --gold-soft: rgba(180, 138, 82, 0.18);
  --line: rgba(54, 71, 27, 0.12);
  --white: #fffdf8;
  --shadow-1: 0 16px 40px rgba(31, 36, 24, 0.09);
  --shadow-2: 0 24px 60px rgba(31, 36, 24, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.checker-shell {
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}

.site-frame {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 36px;
  border: 8px solid var(--paper-deep);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.35), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
  box-shadow: var(--shadow-2);
}

.paper-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(rgba(0,0,0,0.025) 0.7px, transparent 0.8px) 0 0/14px 14px,
    radial-gradient(rgba(255,255,255,0.16) 0.8px, transparent 1px) 6px 6px/18px 18px;
  mix-blend-mode: multiply;
  opacity: .5;
}

.section-padding { padding-left: 40px; padding-right: 40px; }
.section-padding-top-small { padding-top: 10px; }


.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(54, 71, 27, 0.96);
  color: #f6eedf;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand-mini {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}
.brand-mini-mark {
  width: 104px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(244,236,219,0.92);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.brand-mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mini-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.brand-mini-copy strong {
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.brand-mini-copy small {
  font-size: 0.69rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,238,223,0.78);
}

.topbar-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.topbar-nav::-webkit-scrollbar { display: none; }
.topbar-nav a,
.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.topbar-nav a {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.04);
}
.topbar-nav a:hover,
.topbar-cta:hover { transform: translateY(-1px); }
.topbar-cta {
  background: #f4ecdb;
  color: var(--olive);
  padding: 0 18px;
}


.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 34px;
  align-items: center;
  padding-top: 44px;
}
.hero-copy { position: relative; z-index: 1; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(54, 71, 27, 0.14);
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(31, 36, 24, 0.05);
}
.pill-dark { background: var(--olive); color: #f7f0e5; border-color: transparent; }
.hero-logo {
  width: min(100%, 470px);
  margin-top: 22px;
  filter: drop-shadow(0 10px 24px rgba(54,71,27,0.10));
}
.hero h1 {
  margin: 24px 0 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--olive);
  max-width: 12ch;
}
.hero p {
  max-width: 62ch;
  margin: 0;
  color: #313726;
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid var(--olive);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--olive); color: #f7f0e5; }
.button-secondary { background: rgba(255,255,255,0.55); color: var(--olive); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.fact {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.fact strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--olive);
}
.fact span {
  display: block;
  margin-top: 6px;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}
.visual-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(54, 71, 27, 0.10);
  box-shadow: var(--shadow-2);
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-card-main {
  min-height: 360px;
}
.visual-card-main img { object-position: left center; }
.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.visual-grid .visual-card { min-height: 190px; }

.intro-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}
.intro-card {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.42));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.intro-card-soft { background: rgba(54, 71, 27, 0.96); color: #f6eedf; }
.intro-eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro-card h2,
.menu-toolbar-head h2,
.sauces-copy h2,
.qr-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.intro-card p,
.sauces-copy p,
.qr-copy p { line-height: 1.8; font-weight: 500; }

.featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}
.feature-tile {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.feature-tile-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feature-media {
  min-height: 240px;
  background: #e9dcc6;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-body {
  padding: 24px;
}
.feature-body h3 {
  margin: 16px 0 10px;
  font-size: 1.55rem;
  line-height: 1.18;
}
.feature-body p { margin: 0; color: var(--muted); line-height: 1.75; }
.feature-label {
  display: inline-flex;
  color: var(--olive);
  font-size: 1rem;
  font-weight: 900;
}

.menu-toolbar {
  display: grid;
  gap: 18px;
}
.menu-toolbar-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 360px);
  padding: 0 16px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.search-box svg { width: 20px; height: 20px; fill: var(--olive); }
.search-box input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: 0;
  color: var(--ink);
  font-weight: 600;
}
.search-box input::placeholder { color: #6f775f; }
.chip-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.chip-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(54, 71, 27, 0.08);
  color: var(--olive);
  border: 1px solid rgba(54, 71, 27, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-sections {
  display: grid;
  gap: 34px;
  padding-bottom: 14px;
}
.menu-section {
  scroll-margin-top: 96px;
}
.menu-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(54,71,27,0.14);
}
.menu-section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--olive);
}
.menu-section-subtitle {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.menu-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.menu-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7dccb;
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-card-body { padding: 20px; }
.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.menu-card-name {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--ink);
}
.menu-card-arabic {
  margin-top: 4px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--olive);
}
.menu-card-price {
  flex: 0 0 auto;
  color: var(--olive);
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}
.menu-card-desc {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.72;
}
.menu-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(54,71,27,.92);
  color: #f7f0e5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.split-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.split-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(54,71,27,0.12);
}
.split-card-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
}
.split-card p { margin: 16px 0 0; color: var(--muted); line-height: 1.8; }

.list-panels {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}
.list-panel {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.list-panel h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--olive);
}
.list-grid {
  display: grid;
  gap: 12px;
}
.list-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.list-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(54,71,27,0.16);
}
.list-row:last-child { border-bottom: 0; padding-bottom: 0; }
.list-row-name {
  font-weight: 700;
  color: var(--ink);
}
.list-row-arabic {
  display: block;
  margin-top: 3px;
  font-family: 'Cairo', sans-serif;
  font-size: .92rem;
  color: var(--olive);
}
.list-row-desc {
  display: block;
  margin-top: 4px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}
.list-row-price {
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--olive);
  white-space: nowrap;
}

.sauces-banner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: center;
}
.sauces-copy,
.qr-copy {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.sauces-media {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  background: rgba(255,255,255,0.6);
}
.sauces-media img { width: 100%; height: 100%; object-fit: cover; }

.qr-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 44px;
}
.qr-card {
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(54,71,27,0.96), rgba(41,53,20,0.98));
  box-shadow: var(--shadow-2);
}
.qr-card-inner {
  width: min(100%, 370px);
  padding: 26px;
  border-radius: 26px;
  background: #f6eedf;
  text-align: center;
}
.qr-card-inner img {
  width: min(100%, 260px);
  margin: 0 auto 18px;
  border-radius: 16px;
}
.qr-card-inner strong {
  display: block;
  font-size: 1.2rem;
  color: var(--olive);
}
.qr-card-inner span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(54,71,27,0.12);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}
.site-footer a {
  color: var(--olive);
  font-weight: 800;
}
.site-footer a:hover { text-decoration: underline; }

.hidden-by-search { display: none !important; }

@media (max-width: 1180px) {
  .hero,
  .featured,
  .cards-grid,
  .list-panels,
  .sauces-banner,
  .qr-section,
  .intro-strip { grid-template-columns: 1fr; }

  .feature-tile-large { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 16px;
  }
  .topbar-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .section-padding { padding-left: 22px; padding-right: 22px; }
  .brand-mini {
    padding: 8px 10px;
    gap: 10px;
  }
  .brand-mini-mark {
    width: 88px;
    height: 48px;
  }
  .brand-mini-copy strong { font-size: 0.9rem; }
  .brand-mini-copy small { font-size: 0.64rem; }
  .hero { padding-top: 28px; }
  .hero-facts { grid-template-columns: 1fr; }
  .menu-toolbar-head { flex-direction: column; align-items: stretch; }
  .split-grid,
  .list-grid.two-columns,
  .visual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .checker-shell { padding: 0; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%); }
  .site-frame { border-width: 5px; border-radius: 24px; }
  .topbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .brand-mini {
    width: 100%;
    justify-content: flex-start;
  }
  .brand-mini-mark {
    width: 84px;
    height: 46px;
  }
  .topbar-nav {
    justify-content: flex-start;
    padding-bottom: 0;
  }
  .topbar-nav a, .topbar-cta { font-size: 10px; min-height: 36px; padding: 0 12px; }
  .topbar-cta { width: fit-content; }
  .hero h1 { max-width: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .menu-section-header { flex-direction: column; align-items: flex-start; }
  .menu-card-body, .split-card, .list-panel, .sauces-copy, .feature-body, .intro-card { padding: 18px; }
  .visual-card-main { min-height: 260px; }
  .visual-grid .visual-card { min-height: 160px; }
  .site-footer { padding-left: 22px; padding-right: 22px; }
}
