:root {
  --bg: #120b07;
  --bg-soft: #22140c;
  --card: rgba(255, 247, 230, 0.08);
  --card-strong: rgba(255, 195, 74, 0.14);
  --line: rgba(255, 232, 194, 0.12);
  --text: #fff4de;
  --muted: #f0d8ae;
  --yellow: #ffd362;
  --orange: #ff9f1c;
  --orange-deep: #eb6f0a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 188, 69, 0.22), transparent 25%),
    radial-gradient(circle at 88% 14%, rgba(255, 126, 20, 0.2), transparent 24%),
    linear-gradient(135deg, #0e0906 0%, #1b110b 42%, #0f0805 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 92%);
}

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

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

.site-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.2;
  pointer-events: none;
}

.site-glow-left {
  top: -120px;
  left: -110px;
  background: #ffb300;
}

.site-glow-right {
  top: 40px;
  right: -120px;
  background: #ff6d00;
}

.page-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(22, 14, 9, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 210, 106, 0.24), rgba(255, 140, 0, 0.16));
  border: 1px solid rgba(255, 224, 170, 0.18);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy span,
.mini-label,
.eyebrow,
.hero-badge {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a,
.section-link {
  color: var(--muted);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-action {
  min-height: 48px;
  padding: 0 20px;
  color: #3a1b04;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.hero,
.section {
  margin-top: 34px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 26px;
  align-items: center;
  min-height: calc(100vh - 170px);
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Prata", serif;
  line-height: 1.03;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-text,
.product-body p,
.highlight-card p,
.combo-card p,
.sauce-list p,
.hero-card-body p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-width: 190px;
  padding: 14px 22px;
}

.button-primary {
  color: #331804;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 18px 30px rgba(255, 152, 0, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 247, 230, 0.05);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.category-strip article,
.product-card,
.highlight-card,
.combo-card,
.sauce-list article,
.hero-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-points li {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
}

.hero-card {
  overflow: hidden;
  border-radius: 34px;
}

.hero-card-image {
  position: relative;
  min-height: 360px;
}

.hero-card-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-image::after,
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 7, 5, 0.9), rgba(11, 7, 5, 0.08) 45%);
}

.hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: #3a1d06;
  font-size: 0.72rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffe08a, #ffa420);
}

.hero-card-body {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.hero-card-meta,
.product-meta,
.combo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-card-meta strong,
.product-meta strong,
.highlight-card strong,
.combo-meta strong {
  color: var(--yellow);
  font-size: 1.5rem;
}

.hero-card-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  border-radius: 999px;
  color: #321604;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd35d, #ff9618);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.category-strip article {
  padding: 18px 16px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

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

.product-card {
  overflow: hidden;
  border-radius: 28px;
}

.product-card-large {
  grid-column: span 2;
}

.product-image {
  position: relative;
  height: 260px;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-body h3,
.highlight-card h3,
.combo-card h3,
.sauce-list h3 {
  font-size: 1.3rem;
}

.product-meta span,
.combo-meta span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hits-layout,
.combo-grid,
.sauce-list {
  display: grid;
  gap: 18px;
}

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

.highlight-card,
.combo-card,
.sauce-list article {
  border-radius: 28px;
  padding: 24px;
}

.highlight-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 1.8rem;
  font-weight: 800;
}

.combo-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.combo-card-featured {
  background:
    radial-gradient(circle at top left, rgba(255, 213, 103, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(255, 160, 28, 0.2), rgba(255, 247, 230, 0.08));
}

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

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .product-grid,
  .hits-layout,
  .combo-grid,
  .sauce-list,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .product-card-large {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    position: static;
    gap: 14px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

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

  .hero-card-image,
  .product-image {
    height: 220px;
  }
}
