:root {
  --bg: #0a0a09;
  --bg-soft: #10100f;
  --panel: #151513;
  --panel-strong: #1b1b18;
  --text: #f7f3ed;
  --muted: #bcb7ae;
  --line: #302e2a;
  --orange: #ee7623;
  --orange-soft: #f2a15f;
  --green: #98bd56;
  --green-dark: #263d1a;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  --header-height: 76px;
  --menu-jump-height: 58px;
  color-scheme: dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--orange);
  color: #111111;
  font-weight: 800;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-height);
  min-height: var(--header-height);
  padding: 0.5rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid rgba(255, 122, 24, 0.3);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 104px;
}

.brand-mark img {
  width: 80px;
  height: 56px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav a,
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--orange-soft);
}

.header-call {
  justify-content: center;
  border: 1px solid var(--orange);
  color: var(--orange-soft);
  border-radius: 4px;
  padding: 0 1rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.94) 0%,
      rgba(8, 8, 8, 0.82) 42%,
      rgba(8, 8, 8, 0.24) 100%
    ),
    url("assets/hero-pizza.webp") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 9, 0.86), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  font-weight: 800;
}

h1 {
  max-width: 12ch;
  font-size: 5.5rem;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: keep-all;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.25rem;
  text-transform: uppercase;
}

h4 {
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.75rem 1.15rem;
  font-weight: 900;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: #111111;
}

.button-secondary {
  border-color: var(--orange);
  color: var(--orange-soft);
  background: rgba(255, 122, 24, 0.08);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.quick-facts div {
  border-left: 3px solid var(--orange);
  padding-left: 0.85rem;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0.2rem 0 0;
  font-weight: 900;
}

.action-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.action-band a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.15rem clamp(1rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
}

.action-band a:last-child {
  border-right: 0;
}

.action-band span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.action-band strong {
  color: var(--text);
  font-size: 1.2rem;
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.intro-section,
.order-section,
.info-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.intro-section {
  background: #0d0d0d;
}

.intro-grid,
.split-section,
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.intro-grid p,
.split-section p,
.info-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.feature-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.feature-gallery img:first-child {
  grid-column: 1 / -1;
  height: 220px;
}

.order-section {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.menu-jump {
  position: sticky;
  top: var(--header-height);
  z-index: 30;
  min-height: var(--menu-jump-height);
  padding: 0;
  overflow: hidden;
  background: rgba(10, 10, 9, 0.96);
  border-bottom: 1px solid var(--line);
}

.menu-jump-inner {
  display: flex;
  gap: 0.55rem;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 0.55rem 0;
  overflow-x: auto;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

.menu-jump-inner::-webkit-scrollbar {
  height: 4px;
}

.menu-jump-inner::-webkit-scrollbar-track {
  background: transparent;
}

.menu-jump-inner::-webkit-scrollbar-thumb {
  background: var(--line);
}

.menu-jump a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.4rem 0.8rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
  background: transparent;
}

.menu-jump a:hover,
.menu-jump a.is-active {
  border-color: var(--orange);
  color: #17120e;
  background: var(--orange-soft);
}

.menu-wrap {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--muted);
}

.menu-section {
  scroll-margin-top: calc(
    var(--header-height) + var(--menu-jump-height) + 12px
  );
  margin-top: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem) 0;
  border-top: 1px solid var(--line);
}

.menu-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-table {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(72px, 0.16fr));
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
}

.price-row-head {
  background: var(--panel-strong);
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row span:not(:first-child) {
  text-align: right;
  font-weight: 900;
}

.price-row strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
}

.price-row small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.price-row.vegetarian strong {
  color: #b4e45f;
}

.simple-price-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

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

.simple-price-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-price-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.simple-price-grid div,
.menu-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  padding: 1rem;
}

.simple-price-grid span {
  display: block;
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.simple-price-grid strong {
  display: block;
  margin-top: 0.1rem;
  font-size: 2rem;
  line-height: 1;
}

.simple-price-grid small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.two-column-list > div {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1rem;
  background: var(--panel);
}

.two-column-list h4 {
  color: var(--orange-soft);
  text-transform: uppercase;
}

ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.35rem;
}

.premium {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.note,
.section-note {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 800;
}

.image-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
}

.image-section.reverse {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
}

.image-section > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.food-cutout-wrap {
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.food-cutout {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.32));
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

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

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

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

.manakish-grid .menu-item {
  overflow: hidden;
}

.manakish-grid img {
  width: calc(100% + 2rem);
  height: 180px;
  margin: -1rem -1rem 1rem;
  padding: 0.8rem;
  object-fit: contain;
  background: #0e0e0d;
  border-bottom: 1px solid var(--line);
}

.menu-item h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item h4 span {
  flex: 0 0 auto;
  color: var(--orange-soft);
}

.menu-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.info-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.large-info {
  color: var(--text) !important;
  font-size: 3rem !important;
  line-height: 1.05;
  font-weight: 900;
}

.info-grid > div {
  min-height: 100%;
  padding-top: 1.25rem;
  border-top: 3px solid var(--orange);
}

.halal-seal {
  width: 116px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin-top: 1.5rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--text);
  text-align: center;
  background: #0c0c0b;
}

.halal-seal span {
  font-size: 1.85rem;
  line-height: 1;
}

.halal-seal strong {
  color: var(--orange-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
}

address {
  color: var(--muted);
  font-style: normal;
  margin: 1rem 0;
}

.info-section a:not(.button) {
  color: var(--orange-soft);
  font-weight: 800;
}

.site-footer {
  padding: 1.5rem 0 6rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner a {
  color: var(--orange-soft);
  font-weight: 800;
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 64px;
  background: rgba(8, 8, 8, 0.96);
  border-top: 1px solid var(--orange);
}

.mobile-action-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  color: var(--text);
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.mobile-action-bar a:first-child {
  color: #111111;
  background: var(--orange);
}

.mobile-action-bar a:last-child {
  border-right: 0;
}

@media (max-width: 900px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  h3 {
    font-size: 2rem;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.96) 0%,
        rgba(8, 8, 8, 0.74) 50%,
        rgba(8, 8, 8, 0.9) 100%
      ),
      url("assets/hero-pizza.webp") center bottom / cover no-repeat;
  }

  .hero-content {
    padding-top: 3.2rem;
  }

  .quick-facts,
  .action-band,
  .intro-grid,
  .split-section,
  .info-grid,
  .image-section,
  .image-section.reverse {
    grid-template-columns: 1fr;
  }

  .action-band a {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-gallery img,
  .feature-gallery img:first-child {
    height: 170px;
  }

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

  .simple-price-grid.five div:last-child {
    grid-column: 1 / -1;
  }

  .menu-grid,
  .menu-grid.compact,
  .two-column-list {
    grid-template-columns: 1fr;
  }

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

  .price-row {
    grid-template-columns: minmax(150px, 1fr) repeat(3, minmax(56px, 0.18fr));
    gap: 0.45rem;
    padding: 0.85rem;
  }

  .price-row small {
    font-size: 0.82rem;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0.35rem 0.85rem;
  }

  .brand-mark {
    min-width: auto;
  }

  .brand-mark img {
    width: 68px;
    height: 50px;
  }

  .header-call {
    padding-inline: 0.8rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    gap: 0.9rem;
  }

  .menu-section {
    scroll-margin-top: calc(
      var(--header-height) + var(--menu-jump-height) + 10px
    );
  }

  .simple-price-grid.two,
  .simple-price-grid.three,
  .simple-price-grid.five {
    grid-template-columns: 1fr;
  }

  .simple-price-grid.five div:last-child {
    grid-column: auto;
  }

  .simple-price-grid strong {
    font-size: 1.75rem;
  }

  .manakish-grid {
    grid-template-columns: 1fr;
  }

  .manakish-grid img {
    height: 210px;
  }

  .food-cutout-wrap {
    min-height: 220px;
  }

  .price-table {
    border-radius: 0;
    margin-inline: -0.5rem;
    border-inline: 0;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .price-row-head {
    display: none;
  }

  .price-row span:not(:first-child) {
    text-align: left;
  }

  .price-row span:not(:first-child)::before {
    color: var(--muted);
    font-size: 0.78rem;
    margin-right: 0.35rem;
  }

  .price-row span:nth-child(2)::before {
    content: "M";
  }

  .price-row span:nth-child(3)::before {
    content: "L";
  }

  .price-row span:nth-child(4)::before {
    content: "XL";
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
