:root {
  --ink: #151211;
  --charcoal: #231d1b;
  --smoke: #f5f0e8;
  --paper: #fffaf1;
  --tomato: #d92f22;
  --hot: #ff6d2d;
  --gold: #f0ba53;
  --sage: #5f755e;
  --line: rgba(21, 18, 17, 0.14);
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(21, 18, 17, 0.24);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.button-row,
.bar,
.feature-list li {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tomato);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  justify-self: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a,
.header-cta {
  text-decoration: none;
}

.nav a:hover,
.header-cta:hover {
  color: var(--tomato);
}

.header-cta {
  justify-self: end;
  min-width: 92px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 860px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 18, 17, 0.92) 0%, rgba(21, 18, 17, 0.74) 28%, rgba(21, 18, 17, 0.2) 68%, rgba(21, 18, 17, 0.02) 100%),
    linear-gradient(0deg, rgba(21, 18, 17, 0.5), rgba(21, 18, 17, 0.02) 36%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, calc(100% - 36px));
  min-height: clamp(640px, 88vh, 860px);
  padding: clamp(70px, 9vw, 130px) 0 clamp(96px, 13vw, 140px) clamp(18px, 5vw, 72px);
}

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

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 15vw, 11rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
}

.microcopy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--tomato);
  color: var(--white);
}

.button.primary:hover {
  background: var(--hot);
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
}

.bar {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--sage);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bar span {
  min-height: 56px;
  padding: 18px clamp(16px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.bar span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p,
.product-copy p,
.split-copy p,
.faq-list p {
  color: rgba(21, 18, 17, 0.74);
  font-size: 1.08rem;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.story-teaser {
  background:
    linear-gradient(135deg, rgba(240, 186, 83, 0.18), rgba(217, 47, 34, 0.07)),
    var(--paper);
}

.story-teaser-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.story-teaser-copy {
  display: grid;
  gap: 18px;
}

.story-teaser-copy p {
  margin-bottom: 0;
  color: rgba(21, 18, 17, 0.74);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--tomato);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.card {
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(21, 18, 17, 0.06);
}

.card-kicker {
  display: block;
  margin-bottom: 52px;
  color: var(--tomato);
  font-weight: 950;
}

.product-section {
  background: var(--ink);
  color: var(--white);
}

.product-layout,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: clamp(390px, 52vw, 560px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(217, 47, 34, 0.24), rgba(240, 186, 83, 0.08)),
    #211b19;
  box-shadow: var(--shadow);
}

.product-photo {
  margin: 0;
  min-height: clamp(390px, 52vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #211b19;
  box-shadow: var(--shadow);
}

.product-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.apron-shape {
  position: relative;
  width: min(300px, 68vw);
  height: min(410px, 88vw);
  background: linear-gradient(150deg, #0f0d0c, #2f2927);
  clip-path: polygon(35% 0, 65% 0, 84% 100%, 16% 100%);
  border-radius: 18px 18px 8px 8px;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.05);
}

.apron-neck {
  position: absolute;
  left: 50%;
  top: -38px;
  width: 96px;
  height: 92px;
  border: 12px solid #0f0d0c;
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
  transform: translateX(-50%);
}

.apron-badge {
  position: absolute;
  left: 50%;
  top: 92px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 36px;
  background: var(--tomato);
  color: var(--white);
  font-weight: 950;
  transform: translateX(-50%) rotate(-3deg);
}

.apron-pocket {
  position: absolute;
  left: 50%;
  bottom: 82px;
  width: 150px;
  height: 76px;
  border: 5px solid rgba(255, 255, 255, 0.18);
  border-top: 0;
  transform: translateX(-50%);
}

.product-copy p,
.product-copy li {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.feature-list li {
  gap: 12px;
}

.feature-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hot);
}

.split-band {
  background: var(--smoke);
}

.split-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy p {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.story-hero {
  display: grid;
  align-items: center;
  min-height: clamp(560px, 76vh, 760px);
  padding: clamp(82px, 10vw, 150px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(21, 18, 17, 0.92), rgba(21, 18, 17, 0.58)),
    url("assets/hero-spicy-apron.png") center / cover;
  color: var(--white);
}

.story-hero-inner {
  margin-left: 0;
}

.story-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
}

.story-body {
  background: var(--paper);
}

.story-narrative {
  display: grid;
  gap: clamp(42px, 7vw, 82px);
}

.story-lede {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.story-lede h2 {
  margin-bottom: 6px;
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
}

.story-lede p,
.story-copy p,
.archive-panel figcaption {
  color: rgba(21, 18, 17, 0.74);
}

.story-lede p {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.12rem, 2vw, 1.36rem);
}

.story-chapter {
  display: grid;
  grid-template-columns: minmax(64px, 0.18fr) minmax(0, 0.82fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: start;
  max-width: 1000px;
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.story-chapter:nth-of-type(3) {
  justify-self: end;
}

.chapter-label {
  margin: 0;
  color: var(--tomato);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 950;
  line-height: 0.86;
}

.story-copy {
  display: grid;
  gap: 14px;
}

.story-copy h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
}

.story-copy p {
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.26rem);
}

.archive-panel {
  display: grid;
  gap: 14px;
  justify-self: center;
  width: min(620px, 100%);
  margin: 0;
  padding: clamp(10px, 2vw, 16px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(21, 18, 17, 0.07);
}

.archive-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--smoke);
}

.archive-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.archive-panel figcaption {
  max-width: 780px;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  font-weight: 950;
}

details p {
  max-width: 820px;
  margin-bottom: 24px;
}

code {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--smoke);
  font-size: 0.95em;
}

.final-cta {
  background: var(--tomato);
  color: var(--white);
  text-align: center;
}

.final-inner {
  display: grid;
  justify-items: center;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta .button.primary {
  background: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(21, 18, 17, 0.9), rgba(21, 18, 17, 0.52)),
      linear-gradient(0deg, rgba(21, 18, 17, 0.72), rgba(21, 18, 17, 0.05) 60%);
  }

  .hero-content {
    min-height: 720px;
    justify-content: flex-end;
    padding-right: 18px;
    padding-bottom: 76px;
  }

  .card-grid,
  .product-layout,
  .split-layout,
  .story-teaser-layout {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card-kicker {
    margin-bottom: 28px;
  }

  .site-footer {
    display: grid;
  }

  .story-chapter,
  .story-chapter:nth-of-type(3) {
    justify-self: stretch;
  }

  .story-chapter {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .chapter-label {
    font-size: 2.4rem;
  }

}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 130px;
    line-height: 1.05;
  }

  .header-cta {
    min-width: 78px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    min-height: 680px;
  }

  .button {
    width: 100%;
  }

  .bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bar span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
  }
}
