:root {
  --red: #d71919;
  --red-dark: #970f0f;
  --black: #090909;
  --ink: #171717;
  --muted: #666;
  --line: #e7e1d7;
  --cream: #fffaf0;
  --white: #fff;
  --gold: #f6c343;
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --radius: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 34px;
  color: #fff;
  background: rgba(7,7,7,.96);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-transform: uppercase; line-height: .9; }
.brand-mark { font-size: 34px; filter: drop-shadow(0 3px 8px rgba(0,0,0,.25)); }
.brand-text { font-size: 18px; letter-spacing: -.04em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.main-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 18px; font-size: 23px; }
.cart { position: relative; }
.cart span { position: absolute; top: -12px; right: -14px; display: grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 99px; background: var(--red); color: #fff; font-size: 11px; font-weight: 900; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 6px 0; background: #fff; }

.hero { position: relative; min-height: 530px; display: grid; align-items: center; overflow: hidden; color: #fff; background: #111; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.74) 38%, rgba(0,0,0,.15) 100%),
    radial-gradient(circle at 80% 35%, rgba(215,25,25,.25), transparent 26%),
    url('/images/hero.jpg') center/cover;
  transform: scale(1.02);
}
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; padding: 70px 0; }
.eyebrow { margin: 0 0 16px; color: #fff; font-size: 15px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow.dark { color: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 570px; margin-bottom: 16px; font-family: Anton, Impact, sans-serif; font-size: clamp(46px, 8vw, 82px); line-height: .92; text-transform: uppercase; letter-spacing: .01em; }
h1 em { display: block; color: #ff3a2e; font-family: "Permanent Marker", cursive; font-size: .58em; font-style: normal; text-transform: none; letter-spacing: 0; }
.hero-text { max-width: 465px; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.92); }
.hero-buttons, .button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 5px; font-size: 13px; font-weight: 900; text-transform: uppercase; border: 2px solid transparent; transition: transform .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.8); color: #fff; }
.btn-light { background: #fff; border-color: var(--line); }
.btn-dark { background: var(--black); color: #fff; }
.micro-note { margin: 16px 0 0 42px; font-size: 13px; color: rgba(255,255,255,.78); }
.micro-note span { color: var(--red); font-size: 24px; }
.hero-video { min-height: 360px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); display: grid; place-items: center; position: relative; background: rgba(255,255,255,.05); box-shadow: var(--shadow); }
.play-large { width: 104px; height: 104px; display: grid; place-items: center; border: 4px solid #fff; border-radius: 999px; font-size: 36px; background: rgba(0,0,0,.25); }
.latest-pill { position: absolute; left: 34px; bottom: 34px; display: flex; align-items: center; gap: 14px; }
.play-small { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--red); }
.latest-pill small { display: block; text-transform: uppercase; font-weight: 900; color: rgba(255,255,255,.75); }
.latest-pill strong { display: block; max-width: 330px; }

.section { padding: 46px 0; }
.section-tight { padding-top: 32px; }
.section-head {justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 24px; }
.section-head.centered { align-items: center; }
.section-head h2, .tools-intro h2, .journey-copy h2, .giveaway h2, .newsletter h2 { margin: 0; font-family: Anton, Impact, sans-serif; font-size: clamp(28px, 4vw, 42px); text-transform: uppercase; letter-spacing: .02em; }
.section-head a { color: var(--red); font-size: 13px; font-weight: 900; }
.learn-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-block: 1px solid var(--line); }
.learn-card { min-height: 170px; padding: 28px 22px; display: grid; justify-items: center; align-content: center; gap: 10px; text-align: center; border-right: 1px solid var(--line); }
.learn-card:first-child { border-left: 1px solid var(--line); }
.learn-card span { color: var(--red); font-size: 44px; }
.learn-card strong { text-transform: uppercase; font-weight: 900; }
.learn-card small { line-height: 1.35; color: #333; }

.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.thumb, .recipe-img, .journey-photo, .giveaway-photo, .gear-card div, .ingredients-card div, sauce-card div { background: #ddd center/cover; }
.gear-image, .ingredients-image, .sauce-image {
    height: 200px;
    width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem auto;
	padding: 10px 10px 0 10px;
}
/* =========================
   Gear & Ingredients Cards
   ========================= */

.gear-card,
.ingredients-card, .sauce-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.gear-card a,
.ingredients-card a, .sauce-card a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.gear-image,
.ingredients-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.gear-card h3,
.ingredients-card h3, .sauce-card {
    transition: color 0.25s ease;
}

/* Hover State */

.gear-card:hover,
.ingredients-card:hover, .sauce-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #d62828;
}

.gear-card:hover .gear-image,
.ingredients-card:hover .ingredients-image, .sauce-image {
    transform: scale(1.05);
}

.gear-card:hover h3,
.ingredients-card:hover h3, .sauce-card:hover h3 {
    color: #d62828;
}
.thumb { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 18px rgba(0,0,0,.12); }
.thumb span { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; }
.thumb b { position: absolute; right: 8px; bottom: 8px; padding: 3px 6px; border-radius: 4px; background: rgba(0,0,0,.75); color: #fff; font-size: 12px; }
.video-card h3 { margin: 12px 0 8px; font-size: 17px; line-height: 1.25; }
.video-card p { color: var(--muted); font-size: 13px; }
.video-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.video-card .thumb {
  background-size: cover;
  background-position: center;
  position: relative;
  aspect-ratio: 16 / 9;
}
.pizza-1 { background-image: url('https://images.unsplash.com/photo-1594007654729-407eedc4be65?auto=format&fit=crop&w=900&q=80'); }
.pizza-2 { background-image: url('https://images.unsplash.com/photo-1601924582970-9238bcb495d9?auto=format&fit=crop&w=900&q=80'); }
.pizza-3 { background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?auto=format&fit=crop&w=900&q=80'); }
.pizza-4 { background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=900&q=80'); }

.recipe-grid, .gear-grid, .ingredients-grid, .sauce-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.recipe-card, .gear-card, .ingredients-card { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: #fff; text-align: center; box-shadow: 0 8px 20px rgba(0,0,0,.04); }
.recipe-img { aspect-ratio: 4/3; }
.recipe-card h3, .gear-card h3, .ingredients-card h3, .sauce-card h3 { margin: 13px 12px 8px; font-size: 16px; line-height: 1.15; }
.recipe-card span { display: inline-block; margin-bottom: 15px; padding: 5px 10px; border: 1px solid #bbb; border-radius: 4px; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.dough-img { background-image: url('https://images.unsplash.com/photo-1600628421055-4d30de868b8f?auto=format&fit=crop&w=700&q=80'); }
.detroit-img { background-image: url('https://images.unsplash.com/photo-1579751626657-72bc17010498?auto=format&fit=crop&w=700&q=80'); }
.sauce-img { background-image: url('https://images.unsplash.com/photo-1472476443507-c7a5948772fc?auto=format&fit=crop&w=700&q=80'); }
.vodka-img { background-image: url('https://images.unsplash.com/photo-1621996346565-e3dbc646d9a9?auto=format&fit=crop&w=700&q=80'); }
.triple-img { background-image: url('https://images.unsplash.com/photo-1593560708920-61dd98c46a4e?auto=format&fit=crop&w=700&q=80'); }
.cheese-img { background-image: url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?auto=format&fit=crop&w=700&q=80'); }

.tools-band { margin: 24px 0 0; padding: 34px 0; color: #fff; background: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.85)), url('https://images.unsplash.com/photo-1617470702892-e01504297e84?auto=format&fit=crop&w=1800&q=80') center/cover; }
.tools-grid { display: grid; grid-template-columns: 1.6fr repeat(6, 1fr); gap: 22px; align-items: center; }
.tools-intro { padding-right: 30px; border-right: 1px solid rgba(246,195,67,.55); }
.tools-intro p { color: rgba(255,255,255,.78); line-height: 1.5; }
.tools-grid > a { min-height: 92px; display: grid; place-items: center; gap: 9px; text-align: center; font-weight: 900; font-size: 14px; }
.tools-grid > a:first-of-type { font-size: 28px; }
.tools-grid > a span:last-child { font-size: 13px; }

.split-area { display: grid; grid-template-columns: .8fr .95fr .95fr; gap: 26px; align-items: center; }
.journey-copy p, .giveaway p { color: #494949; line-height: 1.6; }
.journey-photo { min-height: 280px; border-radius: 12px; display: grid; place-items: center; background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), url('https://images.unsplash.com/photo-1556761223-4c4282c73f77?auto=format&fit=crop&w=900&q=80'); }
.journey-photo span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--red); }
.link-list { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.link-list a { display: flex; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); font-weight: 800; }
.link-list a:last-child { border-bottom: 0; }
.link-list span { color: var(--red); font-size: 22px; }

.giveaway { padding: 26px 0; background: var(--cream); border-block: 1px solid var(--line); }
.giveaway-grid { display: grid; grid-template-columns: 1fr 1.8fr .7fr; gap: 28px; align-items: center; }
.giveaway-photo { min-height: 190px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-size: 70px; background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), url('https://images.unsplash.com/photo-1542834369-f10ebf06d3cb?auto=format&fit=crop&w=800&q=80'); }
.stats { display: grid; grid-template-columns: auto 1fr; gap: 8px 12px; align-items: baseline; padding-left: 28px; border-left: 1px solid var(--line); }
.stats strong { font-size: 34px; font-weight: 900; }
.stats span { color: var(--muted); }

.gear-card, .ingredients-card, .sauce-card { text-align: left; }
.gear-card div, .ingredients-card div, sauce-card div { aspect-ratio: 4/3; background: linear-gradient(135deg, #efefef, #cfcfcf); }
.gear-card h3, .ingredients-card h3 , .sauce-card h3{ min-height: 36px; }
.gear-card p, .ingredients-card p, .sauce-card p { margin: 0 12px 14px; color: #111; font-size: 13px; }
.gear-card p span, .ingredients-card p span, .sauce-card p span { color: var(--muted); }

.newsletter { padding: 44px 0; color: #fff; background: linear-gradient(90deg, rgba(151,15,15,.95), rgba(215,25,25,.86)), url('https://images.unsplash.com/photo-1588013273468-315fd88ea34c?auto=format&fit=crop&w=1800&q=80') center/cover; }
.newsletter-grid { display: grid; grid-template-columns: auto 1fr 1fr; gap: 28px; align-items: center; }
.mail-icon { width: 86px; height: 86px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.75); font-size: 44px; }
.newsletter h2 { color: #fff; }
.newsletter p { margin-bottom: 0; color: rgba(255,255,255,.86); }
.signup-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.signup-form input { height: 52px; border: 0; border-radius: 5px; padding: 0 18px; font: inherit; }
.signup-form small { grid-column: 1 / -1; color: rgba(255,255,255,.75); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-footer {
  padding: 56px 0 24px;
  background: #080808;
  color: #d8d8d8;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(150px, 1fr));
  gap: 36px;
  align-items: start;
}

.site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #ffffff;
  text-decoration: none;
}

.site-footer .brand-mark {
  font-size: 2rem;
  line-height: 1;
}

.site-footer .brand-text {
  font-weight: 900;
  line-height: 0.95;
}

.footer-brand p {
  max-width: 310px;
  margin: 0;
  color: #aaa;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
  transform: translateY(-2px);
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: #c8c8c8;
  font-size: 0.92rem;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-bottom__note {
  max-width: 520px;
  text-align: right;
}


.request-hero {
    display: grid;
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 70px;
    align-items: center;
}

.request-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.request-video__wrapper {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border: 2px solid #171717;
    border-radius: 18px;
    background: #000;
    box-shadow: 8px 8px 0 #171717;
}

.request-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
}

.request-video__caption {
    max-width: 240px;
    margin-top: 16px;
    color: #666;
    font-size: .9rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 900px) {

    .request-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .request-video {
        max-width: 260px;
        margin: 0 auto;
    }

}
.request-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
}

.request-video__caption {
    margin-top: 18px;
    max-width: 320px;
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
    text-align: center;
}


/* =========================
   Breadcrumbs
   ========================= */

.breadcrumbs {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.5;
}

.breadcrumbs li + li::before {
  content: "/";
  margin: 0 0.625rem;
  color: #aaa;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.breadcrumbs li[aria-current="page"] {
  color: #111;
  font-weight: 600;
}

/* =========================
   Section Headings
   ========================= */

.section-head {
  margin-bottom: 2rem;
}

.section-head.centered {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 0.5rem;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

/* =========================
   Eyebrow Labels
   ========================= */

.eyebrow {
  margin-top: 0;
  margin-bottom: 0.625rem;
  color: #a6251c;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Optional decorative line beneath heading lockups */

.section-head::after {
  display: block;
  width: 3rem;
  height: 0.25rem;
  margin-top: 1rem;
  background: #a6251c;
  border-radius: 999px;
  content: "";
}

.section-head.centered::after {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width:900px){

    .request-hero{
        grid-template-columns:1fr;
        gap:40px;
    }

    .request-video{
        max-width:360px;
        margin:0 auto;
    }

}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-top: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    padding-top: 20px;
    border-top: 1px solid #292929;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 34px;
  }

  .footer-bottom__note {
    text-align: left;
  }
}

.video-embed {
    margin-top: 32px;
    overflow: hidden;
    border: 2px solid #171717;
    border-radius: 24px;
    box-shadow: 8px 8px 0 #171717;
}

.video-embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

/* =========================
   Generic Page Template
   ========================= */

.page-main {
  background: #fffaf2;
  color: #111;
}


.eyebrow {
  color: #d62828;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.accent-line {
  width: 56px;
  height: 4px;
  background: #d62828;
  margin: 1.5rem 0;
}

/* Hero */

.page-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 520px;
  background: #fff;
}

.page-hero__content {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.page-hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 720px;
  margin: 0;
}

.page-hero__content p:not(.eyebrow) {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
}

.page-hero__image {
  position: relative;
  min-height: 420px;
}

.page-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.75) 20%, rgba(255,255,255,0) 55%);
  z-index: 1;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Story */

.story-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.story-content h2,
.section-intro h2,
.mission-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.story-content p,
.section-intro p,
.mission-content p {
  font-size: 1rem;
  line-height: 1.75;
}

.outline-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid #d62828;
  color: #d62828;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
}

/* What I Do */

.what-i-do-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: #fffaf2;
  border: 1px solid #eee0d0;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  border-color: #d62828;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.feature-card p {
  line-height: 1.6;
}

.feature-card a {
  color: #d62828;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

/* Mission */

.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fffaf2;
}

.mission-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.mission-content {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-row a {
  color: #111;
  font-weight: 800;
  text-decoration: none;
}


.faq-section {
    padding: 4rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-item summary {
    cursor: pointer;
    padding: 1.25rem;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    line-height: 1.7;
}

.faq-item[open] {
    border-color: #d62828;
}

.faq-search {
    margin-top: 2rem;
}

.faq-search input {
    width: 100%;
    max-width: 500px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}


.video-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-page-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding: 0 0 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.video-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  border-color: var(--red);
}

.video-page-card h3,
.video-page-card p {
  padding-inline: 14px;
}



.pizza-score-cta {
  background: #fff8ed;
}

.pizza-score-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(28px, 6vw, 64px);
  border: 2px solid #171717;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 8px 8px 0 #171717;
}

.pizza-score-cta__content h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.pizza-score-cta__content > p {
  max-width: 720px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.pizza-score-cta__benefits {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.pizza-score-cta__benefits li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.pizza-score-cta__benefits li::before {
  position: absolute;
  left: 0;
  color: #c62828;
  content: "✓";
  font-weight: 900;
}

.pizza-score-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.pizza-score-cta__secondary {
  color: #171717;
  font-weight: 800;
}

.pizza-score-cta__score {
  padding: clamp(24px, 5vw, 42px);
  border: 2px solid #171717;
  border-radius: 20px;
  background: #171717;
  color: #ffffff;
  text-align: center;
  box-shadow: 6px 6px 0 #c62828;
}

.pizza-score-cta__score-label {
  margin-bottom: 12px;
  color: #f2b84b;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pizza-score-cta__score-number {
  color: #ffffff;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
}

.pizza-score-cta__score-number span {
  font-size: 0.28em;
}

.pizza-score-cta__diagnosis {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pizza-score-cta__diagnosis strong {
  display: block;
  margin-top: 4px;
  color: #f2b84b;
  font-size: 1.2rem;
}

@media (max-width: 850px) {
  .pizza-score-cta__inner {
    grid-template-columns: 1fr;
  }

  .pizza-score-cta__score {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .pizza-score-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pizza-score-cta__actions .btn {
    width: 100%;
  }

  .pizza-score-cta__secondary {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .video-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .video-page-grid {
    grid-template-columns: 1fr;
  }
}





/* Responsive */

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

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .page-hero,
  .story-grid,
  .mission-section {
    grid-template-columns: 1fr;
  }

  .page-hero__image {
    order: -1;
  }

  .page-hero__image::before {
    background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 60%);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .page-hero__content {
    padding: 2rem 1.25rem 3rem;
  }

  .page-hero__image {
    min-height: 300px;
  }

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

  .mission-content {
    padding: 2.5rem 1.25rem;
  }
}


@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 18px; }
  .nav-toggle { display: block; order: 2; }
  .main-nav { position: fixed; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.1); }
  .main-nav a { padding: 18px 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-open .main-nav { display: flex; }
  .header-actions { justify-self: end; }
  .hero-grid, .split-area { grid-template-columns: 1fr; }
  .hero-video { min-height: 280px; }
  .learn-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid, .gear-grid, .ingredients-grid, .sauce-grid { grid-template-columns: repeat(3, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .tools-intro { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid rgba(246,195,67,.55); padding: 0 0 24px; }
  .giveaway-grid, .newsletter-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats { padding-left: 0; border-left: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .site-header { height: 68px; padding: 0 16px; }
  .brand-mark { font-size: 28px; }
  .brand-text { font-size: 15px; }
  .header-actions { display: none; }
  .main-nav { top: 68px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 48px 0; }
  h1 { font-size: 50px; }
  .hero-buttons .btn, .button-row .btn { width: 100%; }
  .latest-pill { position: static; margin-top: auto; padding: 18px; align-self: end; }
  .hero-video { align-content: center; padding: 24px; }
  .section { padding: 34px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .learn-grid, .video-grid, .recipe-grid, .gear-grid, .ingredients-card, .tools-grid, .sauce-card { grid-template-columns: 1fr; }
  .learn-card { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .signup-form { grid-template-columns: 1fr; }
  .newsletter-grid { text-align: left; }
  .mail-icon { width: 64px; height: 64px; font-size: 32px; }
}
