:root {
  --bg: #120f0e;
  --bg-soft: #1a1513;
  --panel: rgba(255, 248, 239, 0.06);
  --panel-strong: rgba(255, 248, 239, 0.1);
  --text: #f8efe3;
  --muted: rgba(248, 239, 227, 0.7);
  --gold: #d5aa64;
  --gold-deep: #b8853c;
  --red: #8f2020;
  --red-deep: #4f1515;
  --line: rgba(236, 215, 181, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(213, 170, 100, 0.14), transparent 18%),
    radial-gradient(circle at 10% 30%, rgba(143, 32, 32, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(213, 170, 100, 0.12), transparent 20%),
    radial-gradient(circle at left center, rgba(143, 32, 32, 0.16), transparent 28%),
    linear-gradient(145deg, #0d0b0a, #15110f 48%, #0f0c0b);
  font-family: "Tajawal", "Cairo", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.hero {
  position: relative;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(213, 170, 100, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(160deg, rgba(31, 23, 21, 0.96), rgba(17, 13, 12, 0.98));
  border: 1px solid var(--line);
  border-radius: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(236, 215, 181, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.topbar,
.hero-grid,
.content,
.contact-section {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 10px 12px;
  background: rgba(255, 248, 239, 0.03);
  border: 1px solid rgba(236, 215, 181, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(236, 215, 181, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold);
}

.brand small {
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-action {
  padding: 14px 20px;
  color: #1a1410;
  background: linear-gradient(180deg, #e4c07d, #c68f44);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(198, 143, 68, 0.22);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.88fr;
  gap: 26px;
  align-items: center;
}

.hero-copy {
  padding: 10px 4px 10px 8px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cairo", "Tajawal", Arial, sans-serif;
  font-size: clamp(2.2rem, 3vw, 4rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 62ch;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.primary-action {
  color: #1a1410;
  background: linear-gradient(180deg, #e4c07d, #c68f44);
  box-shadow: 0 14px 28px rgba(198, 143, 68, 0.18);
}

.secondary-action {
  background: rgba(255, 248, 239, 0.05);
  border: 1px solid var(--line);
}

.hero-tags,
.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  margin-bottom: 18px;
}

.hero-tags span,
.quick-nav a {
  padding: 11px 16px;
  background: rgba(255, 248, 239, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hero-stats div {
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "Cairo", "Tajawal", Arial, sans-serif;
  font-size: 1.6rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-info div {
  min-width: 220px;
  flex: 1 1 220px;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero-info b,
.contact-card p {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.92rem;
}

.hero-info span {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-poster {
  min-width: 0;
}

.poster-frame {
  display: grid;
  gap: 16px;
  padding: 20px;
  background:
    radial-gradient(circle at top, rgba(213, 170, 100, 0.18), transparent 32%),
    linear-gradient(160deg, #261b19, #171210 60%, #120f0e);
  border: 1px solid rgba(236, 215, 181, 0.18);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.poster-frame > img {
  width: 88px;
  height: 88px;
  margin-inline: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(236, 215, 181, 0.5);
}

.poster-photo {
  min-height: 290px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42)),
    url("assets/shawarma-wrap.jpg") center/cover no-repeat;
  border-radius: 22px;
  border: 1px solid rgba(236, 215, 181, 0.16);
}

.poster-note {
  display: grid;
  gap: 6px;
  text-align: center;
}

.poster-note strong {
  font-size: 1.2rem;
}

.poster-note span {
  color: var(--muted);
}

.poster-contact {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255, 248, 239, 0.05);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}

.poster-contact small {
  color: var(--muted);
  font-size: 0.9rem;
}

.poster-contact b {
  color: var(--gold);
  font-size: 1.2rem;
}

.content {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.quick-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  background: rgba(18, 15, 14, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.quick-nav a {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.quick-nav a:hover {
  transform: translateY(-2px);
  background: rgba(255, 248, 239, 0.1);
  border-color: rgba(236, 215, 181, 0.26);
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.signature-strip article {
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(145deg, rgba(112, 28, 28, 0.72), rgba(39, 20, 18, 0.9));
  border: 1px solid rgba(236, 215, 181, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.signature-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.signature-strip strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.section-banner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.04), transparent 60%),
    linear-gradient(145deg, rgba(24, 20, 18, 0.96), rgba(18, 15, 14, 0.98));
  border: 1px solid var(--line);
  border-radius: 26px;
}

.section-banner p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 800;
}

.section-banner h2 {
  margin: 0;
  font-family: "Cairo", "Tajawal", Arial, sans-serif;
  font-size: clamp(1.35rem, 1.6vw, 2rem);
}

.section-banner > span {
  color: var(--muted);
  max-width: 360px;
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  gap: 22px;
}

.menu-grid-primary {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.menu-grid-secondary {
  grid-template-columns: 0.9fr 1.1fr;
}

.menu-grid-pizza,
.menu-grid-dessert {
  grid-template-columns: 1fr;
}

.menu-grid-western {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-card {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(160deg, rgba(33, 26, 23, 0.96), rgba(19, 15, 14, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(213, 170, 100, 0.9), transparent);
  opacity: 0.55;
}

.feature-card {
  background:
    radial-gradient(circle at top left, rgba(213, 170, 100, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(122, 28, 28, 0.96), rgba(59, 19, 19, 0.98));
}

.wide-card {
  padding-bottom: 10px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-title h2 {
  margin: 0;
  font-family: "Cairo", "Tajawal", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.35vw, 1.8rem);
  color: var(--gold);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stack-list,
.price-pills,
.chips-grid {
  display: grid;
  gap: 12px;
}

.stack-list div,
.price-pills div,
.chips-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.stack-list div:hover,
.price-pills div:hover,
.chips-grid div:hover {
  transform: translateY(-2px);
  background: var(--panel-strong);
  border-color: rgba(236, 215, 181, 0.24);
}

.chips-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-pills {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-list span,
.price-pills span,
.chips-grid span {
  font-size: 1.02rem;
  line-height: 1.7;
}

.stack-list b,
.price-pills b,
.chips-grid b {
  flex: 0 0 auto;
  min-width: 58px;
  padding: 8px 12px;
  color: #1a1410;
  background: linear-gradient(180deg, #e4c07d, #c68f44);
  border-radius: 999px;
  text-align: center;
  font-size: 1rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(236, 215, 181, 0.08);
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th {
  color: #fff7dd;
  background: linear-gradient(180deg, #8b2323, #5a1717);
  font-size: 0.98rem;
}

td {
  background: rgba(255, 248, 239, 0.045);
  font-size: 1rem;
}

tbody tr:nth-child(even) td {
  background: rgba(213, 170, 100, 0.07);
}

td:first-child,
th:first-child {
  text-align: right;
}

.dual-lists {
  display: grid;
  grid-template-columns: 1.1fr 0.64fr;
  gap: 18px;
}

.sweet-box {
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(213, 170, 100, 0.08), transparent 30%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.sweet-box h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-section {
  margin-top: 24px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(213, 170, 100, 0.1), transparent 24%),
    linear-gradient(160deg, rgba(31, 23, 21, 0.96), rgba(18, 14, 13, 0.98));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-card > div {
  padding: 16px 18px;
  background: rgba(255, 248, 239, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .hero-grid,
  .menu-grid-primary,
  .menu-grid-secondary,
  .menu-grid-western,
  .dual-lists,
  .contact-card,
  .signature-strip {
    grid-template-columns: 1fr;
  }

  .poster-photo {
    min-height: 240px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-banner {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 100%);
    padding-top: 10px;
  }

  .hero {
    padding: 14px;
    border-radius: 24px;
  }

  .hero::before {
    inset: 10px;
    border-radius: 18px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .topbar-action {
    text-align: center;
  }

  .hero-tags,
  .quick-nav {
    justify-content: center;
  }

  .hero-info {
    flex-direction: column;
  }

  .menu-card,
  .contact-card,
  .quick-nav,
  .signature-strip article,
  .section-banner {
    padding: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .price-pills,
  .chips-grid {
    grid-template-columns: 1fr;
  }

  .stack-list div,
  .price-pills div,
  .chips-grid div {
    padding: 13px 14px;
  }

  .section-title {
    flex-direction: column;
    align-items: start;
  }

  .quick-nav {
    top: 8px;
  }

  table {
    min-width: 460px;
  }
}
