:root {
  --black: #070707;
  --charcoal: #121212;
  --white: #ffffff;
  --soft-white: #f8f3ea;
  --gold: #f7b51b;
  --orange: #f36b1d;
  --red: #b91c1c;
  --deep-red: #7f1d1d;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

.top-strip {
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.nav-call {
  padding: 13px 19px;
  color: #0a0a0a;
  background: var(--gold);
}

.nav-call:hover,
.button:hover,
.special-card a:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 181, 27, 0.24), transparent 31%),
    radial-gradient(circle at 88% 8%, rgba(185, 28, 28, 0.24), transparent 34%),
    linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
}

.hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.5;
}

.glow-one {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 160px;
  background: var(--gold);
}

.glow-two {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: 80px;
  background: var(--red);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.eyebrow.dark {
  color: var(--orange);
}

.eyebrow.red {
  color: var(--red);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
  font-weight: 1000;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 56px;
  padding: 0 27px;
}

.button-gold {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 18px 35px rgba(243, 107, 29, 0.25);
}

.button-dark {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
}

.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
}

.hero-stats div {
  padding: 18px 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 1000;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: linear-gradient(135deg, rgba(247, 181, 27, 0.26), rgba(243, 107, 29, 0.12), rgba(185, 28, 28, 0.25));
  filter: blur(32px);
  border-radius: 46px;
}

.featured-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: 42px;
  background: linear-gradient(145deg, #171717, #080808);
  padding: 28px;
  box-shadow: var(--shadow);
}

.featured-header,
.featured-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.featured-header img {
  width: 150px;
}

.badge,
.featured-bottom span {
  border-radius: 999px;
  font-weight: 950;
}

.badge {
  padding: 13px 16px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 25px rgba(185, 28, 28, 0.28);
}

.pizza-art {
  margin: 30px auto 26px;
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--soft-white);
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.pizza-crust {
  width: 100%;
  height: 100%;
  padding: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #eba638, #c57422 72%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}

.pizza-cheese {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffe082 0 9%, transparent 10%),
    radial-gradient(circle at 70% 26%, #ffe082 0 7%, transparent 8%),
    linear-gradient(135deg, #facc15, #f97316);
  overflow: hidden;
}

.top {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.top-1,
.top-3,
.top-6 {
  width: 34px;
  height: 34px;
  background: var(--deep-red);
}

.top-2,
.top-5,
.top-8 {
  width: 28px;
  height: 28px;
  background: #166534;
}

.top-4,
.top-7 {
  width: 40px;
  height: 24px;
  background: #111827;
  border-radius: 999px;
}

.top-1 { left: 20%; top: 23%; }
.top-2 { left: 62%; top: 18%; }
.top-3 { left: 72%; top: 50%; }
.top-4 { left: 42%; top: 43%; transform: rotate(-18deg); }
.top-5 { left: 26%; top: 62%; }
.top-6 { left: 52%; top: 72%; }
.top-7 { left: 14%; top: 43%; transform: rotate(24deg); }
.top-8 { left: 74%; top: 74%; }

.featured-bottom p {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.featured-bottom h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.05em;
}

.featured-bottom span {
  padding: 11px 15px;
  color: #0a0a0a;
  background: var(--gold);
  white-space: nowrap;
}

.menu-section {
  background: var(--soft-white);
  color: #0a0a0a;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.menu-section h2,
.specials-section h2,
.location-box h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 1000;
}

.section-text,
.centered-intro p,
.location-box p {
  color: rgba(0, 0, 0, 0.68);
  font-size: 1.08rem;
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category-grid a {
  position: relative;
  padding: 24px 54px 24px 22px;
  min-height: 82px;
  display: flex;
  align-items: center;
  border: 2px solid rgba(0, 0, 0, 0.09);
  border-radius: 24px;
  background: #ffffff;
  font-weight: 1000;
  font-size: 1.08rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: border 0.18s ease, transform 0.18s ease;
}

.category-grid a::after {
  content: "→";
  position: absolute;
  right: 22px;
  color: var(--red);
  font-size: 1.35rem;
}

.category-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.specials-section {
  background: #ffffff;
  color: #0a0a0a;
}

.centered-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.centered-intro p:last-child {
  max-width: 620px;
  margin: 0 auto;
}

.special-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.special-card {
  position: relative;
  overflow: hidden;
  min-height: 342px;
  padding: 34px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  background: #fff8ed;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.card-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
}

.special-card span {
  display: inline-flex;
  margin: 8px 0 26px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--gold);
  background: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.special-card h3 {
  margin-bottom: 14px;
  font-size: 1.85rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 1000;
}

.special-card p {
  min-height: 92px;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.7;
}

.special-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
  transition: transform 0.18s ease, background 0.18s ease;
}

.special-card a:hover {
  background: var(--deep-red);
}

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

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

.why-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
}

.icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 1.6rem;
  font-weight: 1000;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 1000;
}

.why-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.why-card a {
  color: var(--gold);
  font-weight: 950;
}

.location-section {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  padding: 6px 0;
}

.location-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  padding: 58px;
  border-radius: 38px;
  background: #0a0a0a;
}

.location-box p {
  color: rgba(255, 255, 255, 0.72);
}

.location-details {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.location-details p {
  margin-bottom: 14px;
}

.location-details a {
  color: var(--gold);
  font-weight: 950;
}

.final-actions {
  margin-top: 24px;
}

.site-footer {
  padding: 36px 0;
  background: #050505;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-inner img {
  width: 110px;
}

.footer-inner p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .location-box {
    grid-template-columns: 1fr;
  }

  .special-card-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1140px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .navbar {
    min-height: 78px;
  }

  .brand img {
    width: 104px;
  }

  .nav-call {
    padding: 11px 13px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: 3.55rem;
  }

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

  .button {
    width: 100%;
  }

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

  .featured-card,
  .special-card,
  .why-card,
  .location-box,
  .location-details {
    border-radius: 26px;
    padding: 24px;
  }

  .featured-header,
  .featured-bottom,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-bottom span {
    white-space: normal;
  }
}
