:root {
  --soot: #14110e;
  --soot-2: #1c1814;
  --parchment: #f4ece3;
  --parchment-dim: #d8cdc0;
  --ember: #c45c32;
  --ember-hot: #e06a38;
  --bourbon: #8a5a32;
  --muted: #b5a394;
  --line: rgba(244, 236, 227, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--soot);
  color: var(--parchment);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
}

h1,
h2,
.display {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(20, 17, 14, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.btn-ember {
  background: var(--ember);
  color: #1a100c;
}

.btn-ember:hover {
  background: var(--ember-hot);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--parchment);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.92) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.15) 0%, rgba(20, 17, 14, 0.28) 42%, rgba(20, 17, 14, 0.92) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  max-width: 14ch;
  margin: 12px 0 18px;
}

.lede {
  max-width: 42ch;
  color: var(--parchment-dim);
  font-size: 1.08rem;
  margin: 0 0 28px;
}

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

.made-in {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sections */
section {
  padding: 88px 0;
}

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

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 8px 0 0;
}

.section-head p {
  max-width: 36ch;
  color: var(--muted);
  margin: 0;
}

/* Sauces */
.sauce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sauce {
  background: var(--soot-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.sauce h3 {
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  margin: 8px 0 10px;
}

.sauce p {
  color: var(--parchment-dim);
  margin: 0;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.sauce-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 22px;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.story img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.story h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin: 10px 0 18px;
}

.story p {
  color: var(--parchment-dim);
  margin: 0 0 16px;
}

/* Thermometer */
.thermo {
  background:
    radial-gradient(1200px 400px at 80% 0%, rgba(196, 92, 50, 0.12), transparent 50%),
    var(--soot-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rungs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.rung {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
}

.peppers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 8px;
  min-height: 1.3em;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.rung strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.rung span {
  color: var(--muted);
  font-size: 0.8rem;
}


/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(196, 92, 50, 0.08), transparent 40%), var(--soot-2);
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 14px;
}

.contact-card p {
  color: var(--parchment-dim);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.88rem;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* 404 */
.dead-end {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

.dead-end h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 8px 0 12px;
}

@media (max-width: 900px) {
  .sauce-grid,
  .rungs,
  .story,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .story img {
    height: 320px;
  }

  section {
    padding: 64px 0;
  }
}
