:root {
  color-scheme: dark;
  --black: #050403;
  --ink: #100b08;
  --gold: #d99a2b;
  --gold-bright: #f2c663;
  --red: #b92118;
  --cream: #fff1cd;
  --muted: rgba(255, 241, 205, 0.72);
  --line: rgba(242, 198, 99, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.88), rgba(5, 4, 3, 0.28));
  backdrop-filter: blur(14px);
}

.site-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--gold-bright);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.85rem, 2.2vw, 2rem);
  color: rgba(255, 241, 205, 0.84);
  font-size: clamp(0.82rem, 1.8vw, 0.95rem);
  font-weight: 700;
}

.site-nav a {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--gold-bright);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  padding: clamp(5.8rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 7vw, 5rem);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96) 0%, rgba(5, 4, 3, 0.88) 38%, rgba(5, 4, 3, 0.52) 72%, rgba(5, 4, 3, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.58)),
    url("./assets/baba-koshari-flag-pyramids-bg.jpg?v=1") center / cover no-repeat,
    #050403;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8rem;
  background: linear-gradient(180deg, transparent, var(--black));
  pointer-events: none;
}

.hero-art {
  width: min(100%, 39rem, calc(100svh - 10rem));
  max-height: min(39rem, calc(100svh - 10rem));
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(1.03) contrast(1.02) drop-shadow(0 2.4rem 4rem rgba(0, 0, 0, 0.68));
}

.hero-logo-link {
  display: block;
  border-radius: 50%;
  outline-offset: 0.45rem;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.hero-logo-link:hover,
.hero-logo-link:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-0.2rem) scale(1.012);
}

.hero-logo-link:focus-visible {
  outline: 2px solid var(--gold-bright);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  place-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 42rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-bright);
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.8rem);
  line-height: 0.86;
  color: var(--cream);
  text-shadow: 0 0.25rem 1.6rem rgba(0, 0, 0, 0.82);
}

.hero-copy {
  width: min(100%, 34rem);
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

.status-note {
  width: min(100%, 34rem);
  margin-bottom: 1.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(242, 198, 99, 0.3);
  border-left: 0.25rem solid var(--gold-bright);
  background: rgba(255, 241, 205, 0.06);
  color: rgba(255, 241, 205, 0.84);
  font-size: clamp(0.92rem, 1.7vw, 1rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(180deg, #f1c35d, #b97819);
  color: #160c05;
  border-color: rgba(255, 226, 137, 0.72);
}

.button-secondary {
  background: rgba(255, 241, 205, 0.06);
  color: var(--cream);
}

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

.section {
  background: var(--black);
}

.section-inner {
  width: min(100% - 2.5rem, 72rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-heading {
  width: min(100%, 48rem);
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.menu-section {
  border-top: 1px solid rgba(242, 198, 99, 0.14);
  background:
    radial-gradient(circle at 8% 12%, rgba(185, 33, 24, 0.16), transparent 24rem),
    linear-gradient(180deg, #070504, #0d0805);
}

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

.menu-card {
  min-height: 15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(10, 7, 5, 0.96);
}

.menu-marker {
  width: 2rem;
  height: 0.18rem;
  display: block;
  margin-bottom: 1.15rem;
  background: var(--red);
}

.menu-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.menu-card p,
.split-section p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.catering-section {
  background:
    linear-gradient(90deg, rgba(217, 154, 43, 0.14), transparent 42%),
    #080504;
  border-top: 1px solid rgba(242, 198, 99, 0.12);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.split-section p {
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  border-top: 1px solid rgba(242, 198, 99, 0.16);
  background: #030202;
  color: rgba(255, 241, 205, 0.68);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .hero {
    min-height: 90vh;
    min-height: 90svh;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1.6rem;
    padding-top: 5rem;
  }

  .hero-visual {
    order: -1;
    padding-top: 1.5rem;
    place-items: center;
  }

  .hero-art {
    width: min(88vw, 28rem, 48svh);
    max-height: 48svh;
    opacity: 1;
  }

  .hero-content {
    width: 100%;
  }

  .menu-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 12rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 0.55rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

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

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