:root {
  --black: #030302;
  --charcoal: #11100d;
  --ink: #17130d;
  --gold: #d7a642;
  --gold-light: #f4dc8f;
  --gold-dark: #8e5d15;
  --pepper: #b92018;
  --pepper-bright: #e84221;
  --cream: #fff8e8;
  --muted: #cfc4ad;
  --line: rgba(244, 220, 143, 0.24);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(215, 166, 66, 0.13), transparent 32%),
    radial-gradient(circle at 78% 16%, rgba(185, 32, 24, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 232, 0.03), transparent 35%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(215, 166, 66, 0.18);
  background: rgba(3, 3, 2, 0.84);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 150px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  background: rgba(215, 166, 66, 0.12);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-light);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  min-height: calc(100vh - 91px);
  padding: clamp(46px, 7vw, 96px) clamp(20px, 5vw, 76px) clamp(34px, 4vw, 60px);
  overflow: hidden;
}

.hero-copy {
  max-width: 660px;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5.2rem, 15vw, 13rem);
  line-height: 0.84;
  letter-spacing: 0;
  color: var(--gold);
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
}

h2 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.35rem;
}

.hero-tagline {
  max-width: 550px;
  margin-bottom: 28px;
  color: #f1e7d2;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

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

.button.primary {
  color: #0b0702;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 46%, var(--gold-dark));
  box-shadow: 0 16px 34px rgba(215, 166, 66, 0.22);
}

.button.secondary {
  color: var(--gold-light);
  border-color: var(--line);
  background: rgba(255, 248, 232, 0.04);
}

.hero-media {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 2, 0.78), transparent 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 76px);
  border: 1px solid var(--line);
  background: var(--line);
}

.intro-band div {
  padding: 24px;
  background: rgba(17, 16, 13, 0.94);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.flavor-copy p:not(.eyebrow),
.story-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

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

.marinade-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(215, 166, 66, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(215, 166, 66, 0.16), rgba(185, 32, 24, 0.08), rgba(255, 248, 232, 0.035));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.marinade-copy h3 {
  color: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.marinade-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.marinade-image {
  overflow: hidden;
  border: 1px solid rgba(244, 220, 143, 0.28);
  border-radius: 8px;
  background: #090806;
}

.marinade-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.product-card {
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.055), rgba(255, 248, 232, 0.018));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.product-card.featured {
  border-color: rgba(215, 166, 66, 0.52);
  background: linear-gradient(180deg, rgba(215, 166, 66, 0.15), rgba(185, 32, 24, 0.06));
}

.product-card p {
  color: var(--muted);
  line-height: 1.65;
}

.product-card .heat {
  margin: 22px 0 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  height: 180px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sauce::before {
  bottom: 22px;
  width: 72px;
  height: 132px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 18%), linear-gradient(180deg, #3a0b06, var(--pepper-bright) 44%, #651107);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.36);
}

.sauce::after {
  bottom: 148px;
  width: 36px;
  height: 28px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.sauce.mild::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 18%), linear-gradient(180deg, #5e2109, #d99024 52%, #7c3210);
}

.spice::before {
  bottom: 40px;
  width: 138px;
  height: 80px;
  border-radius: 0 0 54px 54px;
  border: 4px solid rgba(244, 220, 143, 0.7);
  background: linear-gradient(180deg, #d89532, #772313);
}

.spice::after {
  bottom: 115px;
  width: 118px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8d2b16, #e7a83b, #5b170d);
}

.gallery-section {
  padding-top: 0;
}

.gallery-feature {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(215, 166, 66, 0.42);
  border-radius: 8px;
  background: #080705;
  box-shadow: var(--shadow);
}

.gallery-feature img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 220, 143, 0.22);
  border-radius: 8px;
  background: #080705;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.flavor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  align-items: center;
  gap: 28px;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 76px);
  background: linear-gradient(100deg, rgba(185, 32, 24, 0.22), rgba(215, 166, 66, 0.08) 52%, rgba(3, 3, 2, 0.3));
  border-block: 1px solid rgba(215, 166, 66, 0.18);
}

.heat-scale {
  display: grid;
  gap: 12px;
}

.heat-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 16px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  text-align: left;
  background: rgba(3, 3, 2, 0.5);
  cursor: pointer;
}

.heat-item span {
  grid-row: span 2;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.5rem;
}

.heat-item strong {
  font-size: 1.12rem;
}

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

.heat-item.active {
  border-color: rgba(244, 220, 143, 0.68);
  background: linear-gradient(135deg, rgba(215, 166, 66, 0.18), rgba(185, 32, 24, 0.18));
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.story-image {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.story-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.story-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.story-copy li {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  color: #efe5cf;
  background: rgba(255, 248, 232, 0.04);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(20px, 5vw, 76px) clamp(58px, 7vw, 90px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(215, 166, 66, 0.44);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(215, 166, 66, 0.18), rgba(185, 32, 24, 0.14), rgba(255, 248, 232, 0.04));
}

.cta-section h2 {
  max-width: 700px;
  margin-bottom: 10px;
}

.contact-line {
  margin-bottom: 0;
  font-weight: 800;
}

.contact-line a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(244, 220, 143, 0.5);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 76px);
  border-top: 1px solid rgba(215, 166, 66, 0.18);
  color: var(--muted);
}

.site-footer span {
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.1rem;
}

.site-footer p {
  margin: 0;
}

.site-footer .copyright {
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(3, 3, 2, 0.96);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
  }

  .hero,
  .flavor-section,
  .story-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-media img {
    min-height: 340px;
  }

  .product-grid,
  .intro-band,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .marinade-feature {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer .copyright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 122px;
    height: 52px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 260px;
  }

  .hero-media img {
    min-height: 260px;
  }

  .button {
    width: 100%;
  }

  .product-card {
    min-height: auto;
  }

  .marinade-image img {
    min-height: 220px;
  }

  .gallery-feature img,
  .gallery-item,
  .gallery-item.tall {
    min-height: 240px;
  }

  .heat-item {
    grid-template-columns: 46px 1fr;
  }
}
