:root {
  color-scheme: light;
  --pit: #0b0d10;
  --charcoal: #111418;
  --steel: #2f3943;
  --smoke: #f5f1e8;
  --paper: #fffdf7;
  --ash: #d8d0c4;
  --ink: #151719;
  --muted: #5f6872;
  --ember: #c7391d;
  --ember-bright: #f05a32;
  --basil: #2e6043;
  --gold: #d8a94d;
  --line: rgba(17,20,24,.14);
  --shadow: 0 22px 72px rgba(11,13,16,.18);
  --radius: 1.15rem;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--smoke);
  color: var(--ink);
  font: 400 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 4%, rgba(240,90,50,.13), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(46,96,67,.10), transparent 32rem),
    linear-gradient(180deg, rgba(255,253,247,.72), rgba(245,241,232,.96));
  z-index: -1;
}
img, picture { max-width: 100%; display: block; }
img { height: auto; }
a { color: #9d2c18; text-decoration-thickness: .11em; text-underline-offset: .18em; }
a:hover { color: var(--basil); }
:focus-visible { outline: 4px solid var(--gold); outline-offset: 4px; border-radius: .35rem; }
.skip-link { position: absolute; top: .75rem; left: .75rem; transform: translateY(-160%); background: var(--paper); color: var(--pit); padding: .75rem 1rem; border: 3px solid var(--gold); z-index: 20; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { max-width: 760px; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(11,13,16,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: var(--paper); text-decoration: none; min-width: 0; }
.brand img { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.08); }
.brand-copy { display: grid; line-height: 1.12; }
.brand-copy strong { font-size: clamp(1.05rem, 2vw, 1.35rem); letter-spacing: .02em; text-transform: uppercase; }
.brand-copy span { color: rgba(255,253,247,.72); font-size: .82rem; }
.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a, .menu-toggle { color: var(--paper); text-decoration: none; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; font-size: .82rem; padding: .62rem .82rem; border-radius: 999px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(255,253,247,.1); color: #fff; }
.nav-links .shop-link { background: var(--ember); color: #fff; }
.menu-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,.22); }
.hero { padding: clamp(3.4rem, 8vw, 7.8rem) 0 clamp(3rem, 6vw, 5rem); background: linear-gradient(135deg, rgba(11,13,16,.99), rgba(28,35,42,.98) 58%, rgba(47,57,67,.96)); color: var(--paper); overflow: hidden; position: relative; }
.hero:before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 14% 22%, rgba(240,90,50,.22), transparent 28rem), radial-gradient(circle at 86% 18%, rgba(216,169,77,.10), transparent 25rem), linear-gradient(90deg, rgba(255,253,247,.06), transparent 38%); }
.hero > .container { position: relative; z-index: 1; }
.hero-grid, .page-hero-grid, .recipe-hero-grid, .story-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(2rem, 5vw, 4.25rem); align-items: center; }
.hero-solo { max-width: 880px; }
.hero h1, .page-hero h1, .recipe-hero h1, .story-hero h1 { margin: 0; line-height: .98; letter-spacing: -.055em; font-weight: 950; }
.hero h1 { font-size: clamp(3.15rem, 9vw, 7.5rem); max-width: 12.8ch; }
.page-hero h1, .recipe-hero h1, .story-hero h1 { font-size: clamp(2.5rem, 6vw, 5.4rem); max-width: 11ch; }
.hero-subhead { margin: .65rem 0 0; font-size: clamp(1.45rem, 3vw, 2.5rem); line-height: 1.05; letter-spacing: -.035em; color: var(--ember-dark); max-width: 16ch; }
.lead { font-size: clamp(1.12rem, 2vw, 1.36rem); max-width: 66ch; color: inherit; opacity: .88; }
.eyebrow, .kicker { margin: 0 0 .65rem; color: var(--ember-bright); font-weight: 950; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; }
.kicker { color: #9d2c18; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: .78rem 1.05rem; border-radius: 999px; font-weight: 900; text-transform: uppercase; letter-spacing: .045em; text-decoration: none; border: 2px solid transparent; }
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 12px 26px rgba(199,57,29,.28); }
.btn-primary:hover { color: #fff; background: #aa3019; }
.btn-secondary { background: transparent; color: var(--pit); border-color: rgba(17,20,24,.28); }
.hero .btn-secondary, .callout-dark .btn-secondary { color: var(--paper); border-color: rgba(255,255,255,.3); }
.btn-secondary:hover { background: rgba(17,20,24,.06); }
.hero-card { position: relative; margin: 0; }
.hero-card img, .page-hero-media img, .recipe-hero-media img, .story-feature img, .card-media img { width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.hero-card img { aspect-ratio: 1 / .92; border-radius: 1.4rem; border: 1px solid rgba(255,255,255,.14); }
.hero-card:before { content: ""; position: absolute; inset: -1rem; border: 1px solid rgba(240,90,50,.28); border-radius: 1.8rem; transform: rotate(-2deg); z-index: -1; }
figcaption { margin-top: .75rem; color: rgba(255,253,247,.72); font-weight: 800; }
.section, .section-sm { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4.8rem); }
.below-fold { content-visibility: auto; contain-intrinsic-size: auto 900px; }
.grid-2, .grid-3 { display: grid; gap: 1.35rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.align-center { align-items: center; }
.split-title { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 1.4rem; }
.split-title p:last-child { max-width: 50ch; margin: 0; color: var(--muted); }
.section-title h2, .callout h2, .card h2, .recipe-body h2, .story h2, .recipe-sidebar h2 { margin: 0 0 .7rem; line-height: 1.05; letter-spacing: -.03em; font-size: clamp(2rem, 4vw, 3.5rem); }
.section-title p { color: var(--muted); }
.intro-band { background: rgba(255,253,247,.58); border-block: 1px solid var(--line); }
.founder-panel { display: grid; gap: 1rem; }
.founder-photo-card { margin: 0; position: relative; }
.founder-photo-card img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(17,20,24,.14); }
.founder-photo-card figcaption { color: var(--muted); margin-top: .65rem; }
.stat-panel-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .65rem; }
.stat-panel-compact div { display: grid; align-items: start; justify-content: start; gap: .35rem; padding: .95rem; }
.stat-panel-compact span { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.stat-panel-compact strong { font-size: .8rem; line-height: 1.2; }
.stat-panel { display: grid; gap: .9rem; }
.stat-panel div { padding: 1.2rem; border-radius: var(--radius); background: var(--charcoal); color: var(--paper); display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.stat-panel span { font-size: clamp(2rem, 5vw, 4rem); font-weight: 950; color: var(--ember-bright); line-height: 1; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 44px rgba(11,13,16,.08); }
.card-media img { aspect-ratio: 1 / .82; }
.card-content { padding: clamp(1.1rem, 3vw, 1.55rem); }
.card h2, .card h3 { margin: 0 0 .55rem; line-height: 1.1; letter-spacing: -.025em; }
.card h3 { font-size: clamp(1.35rem, 2.3vw, 2rem); }
.card h2 a, .card h3 a { color: var(--pit); text-decoration: none; }
.card h2 a:hover, .card h3 a:hover { color: #9d2c18; }
.tall-card { min-height: 100%; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, var(--charcoal), var(--steel)); color: var(--paper); }
.tall-card .kicker { color: var(--ember-bright); }
.tall-card a { color: var(--paper); }
.microcards > div { background: rgba(255,253,247,.7); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.microcards strong { font-size: 1.1rem; }
.callout { border: 1px solid var(--line); border-radius: calc(var(--radius) + .35rem); background: var(--paper); padding: clamp(1.6rem, 5vw, 3rem); box-shadow: var(--shadow); }
.callout-dark { background: linear-gradient(135deg, var(--charcoal), #1f2830); color: var(--paper); }
.callout-dark .kicker { color: var(--ember-bright); }
.callout-dark a:not(.btn) { color: #fff; }
.compact-callout { align-self: stretch; }
.page-hero, .recipe-hero, .story-hero { padding: clamp(2.5rem, 6vw, 5rem) 0; background: linear-gradient(135deg, rgba(255,253,247,.78), rgba(245,241,232,.95)); border-bottom: 1px solid var(--line); }
.page-hero-media img, .recipe-hero-media img, .story-feature img { border-radius: var(--radius); aspect-ratio: 1 / .78; }
.breadcrumb { margin-bottom: 1rem; color: var(--muted); font-size: .92rem; }
.breadcrumb a { color: var(--muted); }
.bio-grid { align-items: start; }
.bio-card { overflow: hidden; }
.bio-photo img { width: 100%; aspect-ratio: .9 / 1; object-fit: cover; }
.quick-meta, .recipe-stats { list-style: none; padding: 0; margin: 1rem 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.quick-meta li, .recipe-stats li { border: 1px solid var(--line); background: rgba(255,253,247,.7); border-radius: 999px; padding: .45rem .7rem; font-weight: 800; font-size: .9rem; }
.recipe-stats li { display: grid; border-radius: .9rem; min-width: 110px; padding: .75rem .85rem; background: var(--paper); }
.recipe-stats span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.recipe-layout { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.recipe-sidebar { position: sticky; top: 98px; background: var(--charcoal); color: var(--paper); border-radius: var(--radius); padding: 1.25rem; }
.recipe-sidebar h2 { font-size: 1.25rem; }
.recipe-sidebar a { color: #fff; }
.check-list { padding-left: 1.1rem; }
.recipe-body, .article-body { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 2.5rem); }
.recipe-body h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: 1.4rem; }
.recipe-body h2:first-child, .article-body h2:first-child { margin-top: 0; }
ol, ul { padding-left: 1.35rem; }
li + li { margin-top: .35rem; }
.next-card { margin-top: 2rem; padding: 1rem; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(245,241,232,.7); display: grid; gap: .25rem; }
.next-card span { color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.next-card a { color: var(--pit); font-size: 1.25rem; font-weight: 950; text-decoration: none; }
.story-wrap { max-width: 880px; }
.story-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); }
.article-body p { font-size: 1.08rem; }
.pullquote { border-left: 5px solid var(--ember); padding-left: 1rem; font-size: clamp(1.35rem, 3vw, 2rem) !important; line-height: 1.2; font-weight: 950; color: var(--pit); }
.site-footer { background: var(--pit); color: rgba(255,253,247,.82); padding: 3rem 0 1.25rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-logo { width: 72px; height: 72px; border-radius: 50%; }
.site-footer a { color: var(--paper); }
.small, .legal { font-size: .9rem; color: rgba(255,253,247,.66); }
.legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1rem; }
.not-found { min-height: 58vh; display: grid; place-items: center; text-align: center; }
@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 76px; left: 1rem; right: 1rem; display: none; flex-direction: column; align-items: stretch; background: var(--charcoal); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: .75rem; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .85rem 1rem; }
  .hero-grid, .page-hero-grid, .recipe-hero-grid, .story-hero-grid, .grid-2, .grid-3, .recipe-layout, .footer-grid { grid-template-columns: 1fr; }
  .stat-panel-compact { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1, .recipe-hero h1, .story-hero h1 { max-width: 100%; }
  .split-title { display: grid; }
  .recipe-sidebar { position: static; }
}
@media (max-width: 560px) {
  .brand-copy span { display: none; }
  .nav-wrap { min-height: 68px; }
  .nav-links { top: 68px; }
  .hero { padding-top: 2.4rem; }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4rem); max-width: 10.5ch; }
  .button-row { flex-direction: column; }
  .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


.section-note { margin-top: 1.2rem; font-weight: 800; color: var(--muted); }
.card .text-link, .text-link { font-weight: 950; }
.recipe-hero-media .callout { margin: 0; height: 100%; display: grid; align-content: center; }
.founder-photo img, .founder-photo { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(17,20,24,.14); }
.microcards h2 { font-size: clamp(1.45rem, 2.4vw, 2.05rem); line-height: 1.08; margin: .2rem 0 .65rem; letter-spacing: -.025em; }
.article-body h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.08; margin-top: 1.6rem; letter-spacing: -.025em; }
.article-body .next-card p, .recipe-body .next-card p { margin: .35rem 0 0; }
@media (min-width: 901px) { .cards-wide .card { min-height: 100%; } }

.product-callout { max-width: 1040px; }
.ember-callout { position: relative; overflow: hidden; }
.ember-callout:before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 90% 10%, rgba(240,90,50,.22), transparent 18rem), linear-gradient(90deg, rgba(216,169,77,.08), transparent 45%); }
.ember-callout > * { position: relative; z-index: 1; }
.tag-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.tag-list li { border: 1px solid rgba(255,253,247,.18); background: rgba(255,253,247,.08); color: var(--paper); border-radius: 999px; padding: .45rem .7rem; font-weight: 900; font-size: .88rem; }
.callout h3 { margin: 0 0 .65rem; line-height: 1.1; letter-spacing: -.025em; font-size: clamp(1.45rem, 2.4vw, 2.05rem); }
.collab-links { margin-top: 1.35rem; }


.align-start { align-items: start; }
.cook-form-section { background: linear-gradient(180deg, rgba(255,253,247,.35), rgba(17,20,24,.055)); }
.cook-form-shell { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(1.1rem, 3vw, 2rem); align-items: start; }
.cook-form-aside { position: sticky; top: 98px; overflow: hidden; border-radius: calc(var(--radius) + .35rem); background: linear-gradient(150deg, var(--charcoal), #1d252d 62%, #2d1510); color: var(--paper); padding: clamp(1.35rem, 4vw, 2.15rem); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.10); }
.cook-form-aside:before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 90% 8%, rgba(240,90,50,.28), transparent 16rem), radial-gradient(circle at 20% 92%, rgba(216,169,77,.14), transparent 18rem); }
.cook-form-aside > * { position: relative; z-index: 1; }
.cook-form-aside h3 { margin: 0 0 .7rem; line-height: 1.02; letter-spacing: -.035em; font-size: clamp(2rem, 4vw, 3.2rem); }
.cook-form-aside p { color: rgba(255,253,247,.78); }
.cook-fit-list { list-style: none; margin: 1.25rem 0; padding: 0; display: grid; gap: .7rem; }
.cook-fit-list li { border: 1px solid rgba(255,253,247,.12); background: rgba(255,253,247,.075); border-radius: 1rem; padding: .9rem; }
.cook-fit-list strong { display: block; color: #fff; font-size: 1.02rem; }
.cook-fit-list span { display: block; color: rgba(255,253,247,.74); font-size: .94rem; line-height: 1.45; margin-top: .2rem; }
.aside-note { display: grid; gap: .2rem; margin-top: 1rem; padding: .95rem; border-radius: 1rem; background: rgba(199,57,29,.18); border: 1px solid rgba(240,90,50,.32); }
.aside-note strong { color: #fff; }
.aside-note span { color: rgba(255,253,247,.78); }
.collab-form { border: 1px solid rgba(17,20,24,.12); border-radius: calc(var(--radius) + .55rem); background: var(--paper); box-shadow: 0 26px 80px rgba(11,13,16,.16); overflow: hidden; }
.cook-form-card { padding: 0; }
.form-banner { padding: clamp(1.3rem, 4vw, 2rem); background: linear-gradient(135deg, #fffdf7, #f3ebdf); border-bottom: 1px solid var(--line); position: relative; }
.form-banner:after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, var(--ember), var(--gold), var(--basil)); }
.form-intro h3 { margin: 0 0 .45rem; line-height: 1.05; letter-spacing: -.035em; font-size: clamp(1.8rem, 3.4vw, 2.75rem); }
.form-intro p:last-child { margin: 0; color: var(--muted); max-width: 58ch; }
.form-block { border: 0; margin: 0; padding: clamp(1.15rem, 3vw, 1.55rem) clamp(1.15rem, 4vw, 2rem); border-bottom: 1px solid rgba(17,20,24,.09); }
.form-block legend { float: left; width: 100%; display: flex; align-items: center; gap: .65rem; margin: 0 0 1rem; color: var(--pit); font-weight: 950; font-size: 1.02rem; letter-spacing: -.01em; }
.form-block legend span { width: 32px; height: 32px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--ember); color: #fff; font-size: .88rem; box-shadow: 0 8px 20px rgba(199,57,29,.24); }
.form-block legend + * { clear: both; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.form-block .field:last-child, .form-grid .field { margin-bottom: 0; }
.field label, .fieldset legend, .acknowledgement { font-weight: 900; color: var(--pit); }
.field label span, .form-note { color: var(--muted); font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 2px solid rgba(17,20,24,.12); border-radius: 1rem; background: #fff; color: var(--ink); font: inherit; padding: .9rem .95rem; min-height: 50px; box-shadow: inset 0 1px 0 rgba(17,20,24,.03); transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease; }
.field input::placeholder, .field textarea::placeholder { color: rgba(95,104,114,.72); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%), linear-gradient(135deg, var(--steel) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.7rem; }
.field textarea { resize: vertical; min-height: 155px; line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(17,20,24,.24); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ember); outline: 4px solid rgba(216,169,77,.42); outline-offset: 2px; box-shadow: 0 0 0 1px rgba(199,57,29,.15); }
.fieldset { border: 0; padding: 0; margin: 0 0 1rem; }
.fieldset legend { margin-bottom: .55rem; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.checkbox-grid label, .acknowledgement { display: flex; align-items: flex-start; gap: .65rem; border: 1px solid rgba(17,20,24,.12); border-radius: 1rem; background: rgba(245,241,232,.68); padding: .9rem .95rem; line-height: 1.4; }
.checkbox-grid input, .acknowledgement input { margin-top: .28rem; width: 1.05rem; height: 1.05rem; accent-color: var(--ember); flex: 0 0 auto; }
.acknowledgement { margin: 0; }
.form-actions { padding: clamp(1.15rem, 3vw, 1.55rem) clamp(1.15rem, 4vw, 2rem) clamp(1.3rem, 4vw, 2rem); background: rgba(245,241,232,.52); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.form-submit { border: 0; cursor: pointer; min-width: 210px; min-height: 52px; }
.form-note { margin: 0; max-width: 34ch; font-size: .92rem; }
.form-honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 900px) { .cook-form-shell { grid-template-columns: 1fr; } .cook-form-aside { position: relative; top: auto; } }
@media (max-width: 700px) { .form-grid, .checkbox-grid { grid-template-columns: 1fr; } .form-actions { display: grid; } .form-submit { width: 100%; } }
@media (max-width: 560px) { .form-block, .form-banner, .form-actions { padding-left: 1rem; padding-right: 1rem; } .form-block legend { align-items: flex-start; } }

/* v14 branded Cook With Us form polish */
.cook-form-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(199,57,29,.12), transparent 24rem),
    radial-gradient(circle at 94% 18%, rgba(46,96,67,.10), transparent 26rem),
    linear-gradient(180deg, rgba(255,253,247,.62), rgba(245,241,232,.98));
}
.cook-form-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(30deg, rgba(11,13,16,.06) 12%, transparent 12.5%, transparent 87%, rgba(11,13,16,.06) 87.5%, rgba(11,13,16,.06)),
    linear-gradient(150deg, rgba(11,13,16,.06) 12%, transparent 12.5%, transparent 87%, rgba(11,13,16,.06) 87.5%, rgba(11,13,16,.06));
  background-size: 28px 48px;
}
.cook-form-section > .container { position: relative; z-index: 1; }
.premium-cook-intake {
  grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
}
.cook-story-panel {
  border-radius: 1.75rem;
  background:
    linear-gradient(145deg, rgba(11,13,16,.98), rgba(25,32,39,.98) 52%, rgba(52,22,14,.98)),
    radial-gradient(circle at 80% 0%, rgba(240,90,50,.2), transparent 20rem);
  box-shadow: 0 28px 90px rgba(11,13,16,.22);
}
.cook-story-panel .kicker { color: var(--ember-bright); }
.cook-story-panel h3 {
  font-size: clamp(2.15rem, 4.5vw, 3.65rem);
  max-width: 9.5ch;
}
.aside-lead {
  font-size: 1.05rem;
  line-height: 1.55;
}
.flavor-chip-wrap,
.product-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.flavor-chip-wrap {
  margin: 1.25rem 0;
}
.flavor-chip-wrap span,
.product-type-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .02em;
  font-size: .78rem;
}
.flavor-chip-wrap span {
  color: #fff;
  background: rgba(255,253,247,.10);
  border: 1px solid rgba(255,253,247,.18);
  padding: .42rem .68rem;
}
.flavor-chip-wrap span:before,
.product-type-chips span:before {
  content: "";
  width: .42rem;
  height: .42rem;
  margin-right: .42rem;
  border-radius: 50%;
  background: var(--ember-bright);
  box-shadow: 0 0 0 3px rgba(240,90,50,.14);
}
.good-fits-card {
  margin-top: 1.2rem;
  border-radius: 1.2rem;
  padding: .95rem;
  background: rgba(255,253,247,.075);
  border: 1px solid rgba(255,253,247,.14);
}
.good-fits-card h4 {
  margin: 0 0 .75rem;
  color: var(--paper);
  line-height: 1.05;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.good-fits-card .cook-fit-list { margin: 0; gap: .55rem; }
.good-fits-card .cook-fit-list li {
  padding: .78rem;
  border-radius: .85rem;
  background: rgba(11,13,16,.22);
}
.smoke-note {
  background: linear-gradient(135deg, rgba(199,57,29,.24), rgba(216,169,77,.12));
  border-color: rgba(240,90,50,.38);
}
.branded-cook-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11,13,16,.14);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, #fffdf7, #faf6ed 68%, #f4eddf);
  box-shadow: 0 34px 100px rgba(11,13,16,.18);
}
.branded-cook-form:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--basil) 0 28%, var(--paper) 28% 36%, var(--ember) 36% 70%, var(--gold) 70% 100%);
  z-index: 2;
}
.cook-form-hero {
  padding: clamp(1.45rem, 4vw, 2.25rem);
  background:
    radial-gradient(circle at 92% 16%, rgba(240,90,50,.16), transparent 16rem),
    linear-gradient(135deg, #fffdf7, #f1e8da);
}
.cook-form-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #9d2c18;
}
.cook-form-hero .kicker:before {
  content: "";
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 5px rgba(199,57,29,.12);
}
.cook-form-hero h3 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 10ch;
}
.cook-form-hero p {
  font-weight: 700;
}
.form-block-accent {
  position: relative;
  padding-top: clamp(1.3rem, 3vw, 1.8rem);
  background: rgba(255,253,247,.74);
}
.form-block-accent:nth-of-type(even) { background: rgba(245,241,232,.42); }
.form-block-accent legend {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: .035em;
}
.form-block-accent legend span {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--ember), #8f2816);
  box-shadow: 0 12px 28px rgba(199,57,29,.28);
}
.field-premium {
  gap: .34rem;
}
.field-premium label {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  font-size: .95rem;
  letter-spacing: .01em;
}
.field-help {
  margin: -.08rem 0 .22rem;
  color: var(--muted);
  font-weight: 700;
  font-size: .86rem;
  line-height: 1.35;
}
.field-premium input,
.field-premium select,
.field-premium textarea {
  border: 1px solid rgba(11,13,16,.16);
  border-bottom-width: 3px;
  border-radius: 1.05rem;
  background: linear-gradient(180deg, #ffffff, #fffdf7);
  min-height: 56px;
  padding: 1rem 1.05rem;
  box-shadow: 0 10px 28px rgba(11,13,16,.045), inset 0 1px 0 rgba(255,255,255,.9);
}
.field-premium textarea {
  min-height: 168px;
}
.field-premium input:hover,
.field-premium select:hover,
.field-premium textarea:hover {
  border-color: rgba(199,57,29,.4);
}
.field-premium input:focus,
.field-premium select:focus,
.field-premium textarea:focus {
  outline: 4px solid rgba(216,169,77,.42);
  outline-offset: 3px;
  border-color: var(--ember);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(199,57,29,.2), 0 16px 40px rgba(11,13,16,.08);
}
.product-type-chips {
  margin: -.15rem 0 1rem;
}
.product-type-chips span {
  color: #592012;
  background: rgba(199,57,29,.075);
  border: 1px solid rgba(199,57,29,.17);
  padding: .36rem .62rem;
}
.product-type-chips span:nth-child(2n):before { background: var(--basil); box-shadow: 0 0 0 3px rgba(46,96,67,.13); }
.product-type-chips span:nth-child(3n):before { background: var(--gold); box-shadow: 0 0 0 3px rgba(216,169,77,.16); }
.select-field select {
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ember) 50%),
    linear-gradient(135deg, var(--ember) 50%, transparent 50%),
    linear-gradient(180deg, #ffffff, #fffdf7);
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%, 0 0;
  background-size: 7px 7px, 7px 7px, 100% 100%;
}
.final-form-block { border-bottom: 0; }
.branded-check {
  position: relative;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border: 2px solid rgba(46,96,67,.18);
  background: linear-gradient(135deg, rgba(46,96,67,.08), rgba(216,169,77,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.branded-check:hover { border-color: rgba(46,96,67,.34); }
.branded-check input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .15rem;
  accent-color: var(--basil);
}
.branded-check span {
  color: var(--pit);
  font-weight: 850;
}
.form-actions-premium {
  border-top: 1px solid rgba(11,13,16,.1);
  background:
    radial-gradient(circle at 85% 0%, rgba(199,57,29,.14), transparent 14rem),
    linear-gradient(135deg, rgba(11,13,16,.98), rgba(31,40,48,.98));
  color: var(--paper);
  padding: clamp(1.25rem, 4vw, 2rem);
}
.form-actions-premium .form-submit {
  min-width: 235px;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(0,0,0,.2), 0 10px 28px rgba(199,57,29,.32);
}
.form-actions-premium .form-note {
  color: rgba(255,253,247,.75);
  max-width: 43ch;
}
.form-actions-premium .form-note a { color: #fff; }
@media (max-width: 980px) {
  .premium-cook-intake { grid-template-columns: 1fr; }
  .cook-story-panel { position: relative; top: auto; }
  .cook-story-panel h3 { max-width: 14ch; }
}
@media (max-width: 700px) {
  .product-type-chips { display: none; }
  .cook-form-hero h3 { max-width: 100%; }
  .form-actions-premium { align-items: stretch; }
  .form-actions-premium .form-submit { width: 100%; }
}
@media (max-width: 560px) {
  .premium-cook-intake { gap: 1rem; }
  .cook-story-panel,
  .branded-cook-form { border-radius: 1.25rem; }
  .flavor-chip-wrap span { font-size: .72rem; }
  .field-premium input,
  .field-premium select,
  .field-premium textarea { border-radius: .85rem; }
}

/* v15 Cook With Us form rebuild: branded smoke-ticket layout */
.smoke-request-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.25rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 8% 14%, rgba(240,90,50,.24), transparent 27rem),
    radial-gradient(circle at 88% 18%, rgba(216,169,77,.13), transparent 28rem),
    linear-gradient(135deg, #0b0d10 0%, #121820 52%, #24150f 100%);
  color: var(--paper);
}
.smoke-request-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(30deg, rgba(255,253,247,.16) 12%, transparent 12.5%, transparent 87%, rgba(255,253,247,.16) 87.5%, rgba(255,253,247,.16)),
    linear-gradient(150deg, rgba(255,253,247,.10) 12%, transparent 12.5%, transparent 87%, rgba(255,253,247,.10) 87.5%, rgba(255,253,247,.10));
  background-size: 36px 62px;
}
.smoke-request-section > .container { position: relative; z-index: 1; }
.smoke-request-shell {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}
.smoke-request-panel,
.smoke-request-form {
  border: 1px solid rgba(255,253,247,.12);
  border-radius: clamp(1.15rem, 3vw, 2rem);
  box-shadow: 0 36px 100px rgba(0,0,0,.34);
}
.smoke-request-panel {
  position: sticky;
  top: 98px;
  align-self: start;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  min-height: 640px;
  background:
    radial-gradient(circle at 86% 4%, rgba(240,90,50,.26), transparent 18rem),
    radial-gradient(circle at 4% 98%, rgba(46,96,67,.22), transparent 19rem),
    linear-gradient(160deg, rgba(255,253,247,.075), rgba(255,253,247,.035));
  backdrop-filter: blur(3px);
}
.smoke-request-panel:after {
  content: "SMOKE TEST";
  position: absolute;
  right: -3.4rem;
  bottom: 1.25rem;
  color: rgba(255,253,247,.045);
  font-weight: 950;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  letter-spacing: -.06em;
  line-height: .8;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  white-space: nowrap;
}
.smoke-request-panel > * { position: relative; z-index: 1; }
.smoke-request-panel .kicker { color: var(--ember-bright); }
.smoke-request-panel h2 {
  margin: 0 0 .85rem;
  max-width: 9ch;
  font-size: clamp(2.75rem, 5.8vw, 4.9rem);
  line-height: .9;
  letter-spacing: -.07em;
  color: #fff;
}
.smoke-request-panel p {
  margin: 0;
  max-width: 37ch;
  color: rgba(255,253,247,.80);
  font-size: 1.08rem;
  line-height: 1.58;
  font-weight: 650;
}
.smoke-panel-rule {
  width: min(100%, 18rem);
  height: 4px;
  margin: 1.35rem 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--basil), var(--paper), var(--ember), var(--gold));
}
.smoke-request-panel h3 {
  margin: 0 0 .8rem;
  color: var(--paper);
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.smoke-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .72rem;
}
.smoke-fit-list li {
  display: grid;
  grid-template-columns: 2.65rem 1fr;
  gap: .75rem;
  padding: .88rem;
  border-radius: 1.05rem;
  background: rgba(255,253,247,.075);
  border: 1px solid rgba(255,253,247,.12);
}
.smoke-fit-list li span {
  grid-row: span 2;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(199,57,29,.92);
  font-size: .72rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(199,57,29,.28);
}
.smoke-fit-list strong {
  color: #fff;
  line-height: 1.15;
  font-size: 1.02rem;
}
.smoke-fit-list em {
  color: rgba(255,253,247,.72);
  font-style: normal;
  line-height: 1.42;
  font-size: .92rem;
}
.smoke-panel-note {
  margin-top: 1rem;
  padding: 1rem;
  display: grid;
  gap: .25rem;
  border-radius: 1.05rem;
  background: linear-gradient(135deg, rgba(199,57,29,.25), rgba(216,169,77,.12));
  border: 1px solid rgba(240,90,50,.34);
}
.smoke-panel-note strong { color: #fff; }
.smoke-panel-note span { color: rgba(255,253,247,.76); line-height: 1.45; }
.smoke-request-form {
  position: relative;
  overflow: hidden;
  background: #fffdf7;
  color: var(--ink);
  border-color: rgba(255,253,247,.24);
}
.smoke-request-form:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  z-index: 3;
  background: linear-gradient(90deg, var(--basil) 0 27%, #fffdf7 27% 34%, var(--ember) 34% 72%, var(--gold) 72% 100%);
}
.smoke-form-topper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1.1rem;
  padding: clamp(1.35rem, 4vw, 2.35rem);
  background:
    radial-gradient(circle at 80% 10%, rgba(240,90,50,.21), transparent 18rem),
    linear-gradient(145deg, #111418, #202832 74%, #2b160f);
  color: var(--paper);
}
.smoke-form-eyebrow {
  margin: 0 0 .55rem;
  color: var(--ember-bright);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}
.smoke-form-topper h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 11ch;
}
.smoke-form-topper p:last-child {
  margin: .8rem 0 0;
  max-width: 51ch;
  color: rgba(255,253,247,.76);
  font-weight: 650;
}
.smoke-ticket-mark {
  flex: 0 0 auto;
  width: clamp(3.25rem, 7vw, 5.2rem);
  height: clamp(3.25rem, 7vw, 5.2rem);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,253,247,.22);
  background: rgba(255,253,247,.08);
  color: rgba(255,253,247,.58);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 950;
  letter-spacing: -.05em;
}
.smoke-form-body {
  padding: clamp(1rem, 3vw, 1.7rem);
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255,253,247,.96), rgba(245,241,232,.95));
}
.smoke-form-step {
  position: relative;
  border: 1px solid rgba(11,13,16,.10);
  border-radius: 1.25rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  margin: 0;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 44px rgba(11,13,16,.055);
}
.smoke-form-step-featured {
  background:
    radial-gradient(circle at 94% 0%, rgba(216,169,77,.16), transparent 15rem),
    #fffdf7;
  border-color: rgba(199,57,29,.18);
}
.smoke-form-step legend {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 0 .35rem 0 0;
  margin: 0 0 .95rem;
  color: var(--pit);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .98rem;
}
.smoke-form-step legend span {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--ember), #8e2513);
  box-shadow: 0 10px 22px rgba(199,57,29,.25);
  font-size: .82rem;
}
.smoke-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .9rem;
}
.smoke-field {
  display: grid;
  gap: .34rem;
  margin-bottom: .95rem;
}
.smoke-field-grid .smoke-field,
.smoke-form-step .smoke-field:last-child { margin-bottom: 0; }
.smoke-field label {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  color: #111418;
  font-weight: 950;
  line-height: 1.2;
}
.smoke-field label span { color: var(--muted); font-weight: 800; font-size: .86em; }
.smoke-field .field-help {
  margin: 0 0 .16rem;
  color: #68717b;
  font-size: .83rem;
  line-height: 1.34;
  font-weight: 750;
}
.smoke-field input,
.smoke-field select,
.smoke-field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(11,13,16,.16);
  border-left: 5px solid rgba(199,57,29,.84);
  border-radius: 1rem;
  padding: .95rem 1rem;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  box-shadow: 0 10px 26px rgba(11,13,16,.055), inset 0 1px 0 rgba(255,255,255,.9);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}
.smoke-field input::placeholder,
.smoke-field textarea::placeholder { color: rgba(95,104,114,.66); font-weight: 600; }
.smoke-field textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.48;
}
.smoke-field select {
  appearance: none;
  padding-right: 2.85rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #111418 50%),
    linear-gradient(135deg, #111418 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}
.smoke-field input:hover,
.smoke-field select:hover,
.smoke-field textarea:hover {
  border-color: rgba(199,57,29,.42);
  box-shadow: 0 14px 32px rgba(11,13,16,.08);
}
.smoke-field input:focus,
.smoke-field select:focus,
.smoke-field textarea:focus {
  outline: 4px solid rgba(216,169,77,.36);
  outline-offset: 3px;
  border-color: var(--ember);
  border-left-color: var(--ember);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(199,57,29,.18), 0 18px 40px rgba(11,13,16,.10);
}
.smoke-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: -.1rem 0 .95rem;
}
.smoke-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 30px;
  padding: .34rem .62rem;
  border-radius: 999px;
  background: rgba(199,57,29,.075);
  border: 1px solid rgba(199,57,29,.18);
  color: #592012;
  font-size: .76rem;
  font-weight: 950;
}
.smoke-chip-row span:before {
  content: "";
  width: .44rem;
  height: .44rem;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(199,57,29,.12);
}
.smoke-chip-row span:nth-child(2n):before { background: var(--basil); box-shadow: 0 0 0 3px rgba(46,96,67,.13); }
.smoke-chip-row span:nth-child(3n):before { background: var(--gold); box-shadow: 0 0 0 3px rgba(216,169,77,.15); }
.smoke-check {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin: .35rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(46,96,67,.22);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(46,96,67,.075), rgba(216,169,77,.085));
  color: #111418;
  line-height: 1.45;
  font-weight: 850;
}
.smoke-check input {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: .12rem;
  accent-color: var(--basil);
}
.smoke-form-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.6rem) clamp(1rem, 3vw, 1.7rem) clamp(1.25rem, 3vw, 1.8rem);
  background:
    radial-gradient(circle at 92% 0%, rgba(240,90,50,.18), transparent 14rem),
    linear-gradient(135deg, #111418, #202832);
  color: var(--paper);
}
.smoke-submit {
  min-height: 58px;
  min-width: 230px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(199,57,29,.36), 0 6px 0 rgba(0,0,0,.18);
}
.smoke-form-actions p {
  margin: 0;
  color: rgba(255,253,247,.75);
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 700;
}
.smoke-form-actions a { color: #fff; }
@media (max-width: 980px) {
  .smoke-request-shell { grid-template-columns: 1fr; }
  .smoke-request-panel { position: relative; top: auto; min-height: auto; }
  .smoke-request-panel h2 { max-width: 12ch; }
}
@media (max-width: 720px) {
  .smoke-request-section { padding-block: 2.4rem; }
  .smoke-field-grid,
  .smoke-form-actions { grid-template-columns: 1fr; }
  .smoke-submit { width: 100%; }
  .smoke-chip-row { display: none; }
  .smoke-form-topper { display: grid; }
  .smoke-ticket-mark { display: none; }
  .smoke-form-topper h2 { max-width: 100%; }
}
@media (max-width: 560px) {
  .smoke-request-shell { width: calc(100% + .4rem); margin-left: -.2rem; }
  .smoke-request-panel,
  .smoke-request-form { border-radius: 1.1rem; }
  .smoke-form-body { padding: .85rem; }
  .smoke-form-step { padding: .95rem; border-radius: 1rem; }
  .smoke-field input,
  .smoke-field select,
  .smoke-field textarea { border-radius: .85rem; }
}

/* v16: full replacement for Cook With Us form + cache-busted CSS filename */
.cook-lab-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(199,57,29,.26), transparent 30rem),
    radial-gradient(circle at 86% 10%, rgba(216,169,77,.16), transparent 28rem),
    linear-gradient(135deg, #080a0d 0%, #111418 45%, #1f2933 100%);
  color: var(--paper);
}
.cook-lab-section:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}
.cook-lab-section:after {
  content: "RED SAUCE ROOTS · SMOKEHOUSE ATTITUDE";
  position: absolute;
  left: 50%;
  bottom: -1.6rem;
  transform: translateX(-50%);
  white-space: nowrap;
  color: rgba(255,253,247,.035);
  font-weight: 950;
  letter-spacing: -.06em;
  font-size: clamp(3.6rem, 10vw, 10rem);
  line-height: .8;
  pointer-events: none;
}
.cook-lab-section .container { position: relative; z-index: 1; }
.cook-lab-heading {
  max-width: 880px;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}
.cook-lab-heading .eyebrow { color: var(--ember-bright); }
.cook-lab-heading h2 {
  margin: 0;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: .9;
  letter-spacing: -.065em;
}
.cook-lab-heading p {
  max-width: 68ch;
  margin: 1rem 0 0;
  color: rgba(255,253,247,.78);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  font-weight: 620;
}
.cook-lab-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}
.cook-lab-card,
.cook-lab-form {
  border-radius: clamp(1.15rem, 2vw, 1.65rem);
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}
.cook-lab-intro {
  position: sticky;
  top: 98px;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(240,90,50,.18), transparent 14rem),
    linear-gradient(145deg, rgba(255,253,247,.10), rgba(255,253,247,.045));
  border: 1px solid rgba(255,253,247,.15);
  backdrop-filter: blur(10px);
}
.cook-lab-intro:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--basil), var(--paper), var(--ember), var(--gold));
}
.cook-lab-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 1rem;
  padding: .34rem .72rem;
  border-radius: 999px;
  background: rgba(199,57,29,.22);
  border: 1px solid rgba(240,90,50,.38);
  color: #fff;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cook-lab-intro h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .93;
  letter-spacing: -.06em;
}
.cook-lab-intro p {
  color: rgba(255,253,247,.76);
  font-weight: 650;
}
.cook-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .46rem;
  margin: 1.2rem 0;
}
.cook-tags span {
  padding: .36rem .62rem;
  border-radius: 999px;
  background: rgba(255,253,247,.10);
  border: 1px solid rgba(255,253,247,.12);
  color: rgba(255,253,247,.88);
  font-size: .78rem;
  font-weight: 900;
}
.cook-fit-box {
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: 1.05rem;
  background: rgba(8,10,13,.34);
  border: 1px solid rgba(255,253,247,.12);
}
.cook-fit-box h4 {
  margin: 0 0 .6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
}
.cook-fit-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,253,247,.74);
}
.cook-fit-box li + li { margin-top: .55rem; }
.cook-lab-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,253,247,.14);
}
.cook-lab-note strong { color: #fff; }
.cook-lab-form {
  overflow: hidden;
  background: #111418;
  border: 1px solid rgba(255,253,247,.16);
}
.cook-form-titlebar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 86% 15%, rgba(216,169,77,.22), transparent 12rem),
    linear-gradient(135deg, #1a2027, #0b0d10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.cook-form-kicker {
  margin: 0 0 .4rem;
  color: var(--ember-bright);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cook-form-titlebar h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.85rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.cook-form-titlebar p:last-child {
  margin: .7rem 0 0;
  max-width: 54ch;
  color: rgba(255,253,247,.70);
  font-weight: 650;
}
.cook-form-titlebar > span {
  flex: 0 0 auto;
  width: clamp(3.2rem, 6vw, 4.8rem);
  height: clamp(3.2rem, 6vw, 4.8rem);
  display: grid;
  place-items: center;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, var(--ember), #78200f);
  color: #fff;
  font-weight: 950;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  box-shadow: 0 18px 38px rgba(199,57,29,.34);
}
.cook-form-inner {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(255,253,247,.05), rgba(255,253,247,.025));
}
.cook-form-group {
  margin: 0;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255,253,247,.11);
  border-radius: 1.25rem;
  background: #fffdf7;
  color: #111418;
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
}
.cook-form-feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(216,169,77,.14), transparent 16rem),
    #fffaf0;
  border-color: rgba(199,57,29,.22);
}
.cook-form-group legend {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 0 .4rem 0 0;
  margin: 0 0 1rem;
  color: #111418;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .94rem;
}
.cook-form-group legend span {
  display: inline-grid;
  place-items: center;
  min-width: 2.35rem;
  height: 2.35rem;
  border-radius: .78rem;
  background: #111418;
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(255,255,255,.08);
}
.cook-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .95rem;
}
.cook-field {
  display: grid;
  gap: .34rem;
  margin-bottom: 1rem;
}
.cook-field-grid .cook-field,
.cook-form-group .cook-field:last-child { margin-bottom: 0; }
.cook-field label {
  display: flex;
  gap: .35rem;
  align-items: baseline;
  color: #101317;
  font-weight: 950;
  line-height: 1.2;
}
.cook-field label span { color: var(--muted); font-size: .86em; font-weight: 800; }
.cook-field small {
  color: #64707b;
  font-weight: 700;
  line-height: 1.35;
}
.cook-field input,
.cook-field select,
.cook-field textarea {
  width: 100%;
  min-height: 56px;
  border: 2px solid rgba(17,20,24,.14);
  border-radius: .95rem;
  padding: .92rem .98rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(17,20,24,.035);
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.cook-field textarea {
  min-height: 165px;
  resize: vertical;
  line-height: 1.5;
}
.cook-field input::placeholder,
.cook-field textarea::placeholder { color: rgba(95,104,114,.65); font-weight: 600; }
.cook-field input:hover,
.cook-field select:hover,
.cook-field textarea:hover { border-color: rgba(199,57,29,.34); }
.cook-field input:focus,
.cook-field select:focus,
.cook-field textarea:focus {
  outline: 4px solid rgba(216,169,77,.38);
  outline-offset: 3px;
  border-color: var(--ember);
  box-shadow: 0 0 0 1px rgba(199,57,29,.18), 0 14px 30px rgba(17,20,24,.12);
}
.cook-select select {
  appearance: none;
  padding-right: 2.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #111418 50%),
    linear-gradient(135deg, #111418 50%, transparent 50%);
  background-position: calc(100% - 21px) 50%, calc(100% - 14px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}
.cook-check {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin: .3rem 0 0;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(46,96,67,.26);
  background: linear-gradient(135deg, rgba(46,96,67,.08), rgba(216,169,77,.12));
  color: #111418;
  font-weight: 850;
  line-height: 1.45;
}
.cook-check input {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: .12rem;
  accent-color: var(--basil);
}
.cook-submit-bar {
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.45rem);
  background:
    linear-gradient(90deg, rgba(46,96,67,.95), rgba(199,57,29,.95));
  color: #fff;
}
.cook-submit-btn {
  min-height: 58px;
  padding: .95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: #fffdf7;
  color: #111418;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 12px 0 rgba(0,0,0,.14), 0 20px 36px rgba(0,0,0,.22);
}
.cook-submit-btn:hover { transform: translateY(-1px); }
.cook-submit-btn:focus-visible { outline: 4px solid #fff; outline-offset: 4px; }
.cook-submit-bar p {
  margin: 0;
  max-width: 56ch;
  color: rgba(255,255,255,.84);
  font-size: .94rem;
  line-height: 1.45;
  font-weight: 720;
}
.cook-submit-bar a { color: #fff; }
.form-honeypot { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
@media (max-width: 980px) {
  .cook-lab-layout { grid-template-columns: 1fr; }
  .cook-lab-intro { position: relative; top: auto; }
}
@media (max-width: 720px) {
  .cook-lab-section { padding: 2.7rem 0; }
  .cook-field-grid,
  .cook-submit-bar { grid-template-columns: 1fr; }
  .cook-submit-btn { width: 100%; }
  .cook-form-titlebar { display: grid; }
  .cook-form-titlebar > span { display: none; }
}
@media (max-width: 560px) {
  .cook-lab-heading h2 { max-width: 100%; }
  .cook-lab-layout { width: calc(100% + .4rem); margin-left: -.2rem; }
  .cook-lab-intro,
  .cook-lab-form { border-radius: 1rem; }
  .cook-form-inner { padding: .78rem; }
  .cook-form-group { padding: .95rem; border-radius: .95rem; }
  .cook-field input,
  .cook-field select,
  .cook-field textarea { border-radius: .8rem; }
}

/* v17 form spacing fix: make fieldset legends render inside the card instead of sitting across the border. */
.cook-form-group {
  position: relative;
  padding-top: clamp(1.15rem, 3vw, 1.55rem);
  overflow: visible;
}
.cook-form-group legend {
  float: left;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 1.15rem 0;
  padding: 0 0 .85rem 0;
  border-bottom: 1px solid rgba(17,20,24,.10);
  line-height: 1.1;
}
.cook-form-group legend + * {
  clear: both;
}
.cook-form-group::after {
  content: "";
  display: block;
  clear: both;
}
.cook-form-group legend span {
  flex: 0 0 auto;
}
.cook-form-feature legend {
  border-bottom-color: rgba(199,57,29,.16);
}
.cook-field-grid {
  margin-bottom: 1rem;
}
.cook-field-grid:last-child {
  margin-bottom: 0;
}
.cook-form-group > .cook-field:not(:last-child),
.cook-form-group > .cook-select:not(:last-child) {
  margin-bottom: 1.15rem;
}
.cook-form-feature .cook-field-grid + .cook-field {
  margin-top: .15rem;
}
@media (max-width: 720px) {
  .cook-form-group legend {
    align-items: flex-start;
    gap: .55rem;
    font-size: .86rem;
    letter-spacing: .045em;
    line-height: 1.15;
  }
  .cook-form-group legend span {
    min-width: 2.15rem;
    height: 2.15rem;
    border-radius: .7rem;
  }
  .cook-field-grid {
    gap: .85rem;
  }
}
@media (max-width: 480px) {
  .cook-form-inner { gap: .9rem; }
  .cook-form-group { padding: 1rem .85rem; }
  .cook-field label { font-size: .98rem; }
  .cook-field small { font-size: .88rem; }
}
