/* ==========================================================================
   Blackrock Recipes - "Basalt Ledger" design system
   Basalt charcoal + bone paper + ember accent. Display: Bricolage Grotesque,
   text: Newsreader, labels: IBM Plex Mono. Signature shapes: capsule "core
   samples", notched specimen cards, perforated price tags, numbered ledgers.
   ========================================================================== */

:root {
  --basalt: #1b1a17;
  --basalt-2: #262420;
  --basalt-3: #34312b;
  --ash: #6c665c;
  --ash-2: #948c7f;
  --bone: #f2ede3;
  --bone-2: #e7dfd0;
  --bone-3: #d9cfbb;
  --chalk: #fffcf6;
  --ember: #c4461b;
  --ember-deep: #983311;
  --ember-soft: #f3d6c6;
  --moss: #56663a;
  --moss-soft: #dde3cc;
  --saffron: #d99a2b;
  --line: rgba(27, 26, 23, .14);
  --line-strong: rgba(27, 26, 23, .32);
  --line-light: rgba(242, 237, 227, .16);

  --f-display: "Bricolage Grotesque", "Arial Narrow", system-ui, sans-serif;
  --f-text: "Newsreader", Georgia, "Times New Roman", serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --wrap: 1320px;
  --gutter: clamp(16px, 4vw, 44px);
  --notch: 26px;
  --radius: 4px;
  --shadow: 0 1px 0 rgba(27, 26, 23, .06), 0 18px 40px -24px rgba(27, 26, 23, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--basalt);
  font-family: var(--f-text);
  font-size: 1.125rem;
  line-height: 1.6;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: var(--ember); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--ember-deep); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
em { font-style: italic; }
h1 em, h2 em, .display em { font-family: var(--f-text); font-weight: 400; font-style: italic; letter-spacing: -.01em; color: var(--ember); }
mark { background: var(--ember-soft); color: inherit; padding: 0; border-radius: 2px; box-shadow: 0 0 0 1px var(--ember-soft); }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ember); color: var(--chalk); padding: 10px 16px; font-family: var(--f-mono); font-size: .8rem; }
.skip:focus { top: 12px; color: var(--chalk); }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 820px; }
.hp { position: absolute; left: -9999px; }

/* ---------- type helpers ---------- */
.kicker {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 .9rem;
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
}
.kicker--light { color: var(--ash-2); }
.kicker__no {
  display: inline-grid; place-items: center;
  min-width: 2.1rem; height: 1.35rem; padding: 0 .35rem;
  border: 1px solid currentColor; border-radius: 99px; font-size: .68rem;
}
.display { font-size: clamp(2.8rem, 7.2vw, 6.4rem); font-weight: 800; line-height: .92; letter-spacing: -.045em; margin-bottom: .35em; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); max-width: 34rem; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--basalt); --fg: var(--bone);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .7rem 1.35rem;
  background: linear-gradient(var(--ember), var(--ember)) no-repeat left / 0 100%, var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg); border-radius: var(--radius);
  font-family: var(--f-mono); font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-size .35s var(--ease), color .2s, border-color .2s;
}
.btn:hover { background-size: 100% 100%; color: var(--chalk); border-color: var(--ember); }
.btn--ember { --bg: var(--ember); --fg: var(--chalk); background: linear-gradient(var(--basalt), var(--basalt)) no-repeat left / 0 100%, var(--ember); }
.btn--ember:hover { border-color: var(--basalt); }
.btn--dark { --bg: var(--basalt); --fg: var(--bone); }
.btn--ghost { --bg: transparent; --fg: var(--basalt); border-color: var(--line-strong); }
.btn--sm { min-height: 38px; padding: .45rem .9rem; font-size: .72rem; }
.btn--wide { width: 100%; }
.btn.is-disabled { opacity: .55; pointer-events: none; }
.arrow-link { font-family: var(--f-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; border-bottom: 1px solid var(--ember); padding-bottom: 2px; white-space: nowrap; }

/* ---------- strata stripe ---------- */
.strata { display: grid; grid-template-columns: 5fr 2fr 1fr 3fr; height: 5px; }
.strata span:nth-child(1) { background: var(--basalt); }
.strata span:nth-child(2) { background: var(--ember); }
.strata span:nth-child(3) { background: var(--saffron); }
.strata span:nth-child(4) { background: var(--moss); }

/* ---------- masthead ---------- */
.masthead { background: var(--bone); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.masthead.is-scrolled { box-shadow: 0 10px 30px -22px rgba(0, 0, 0, .45); }
.masthead__row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(12px, 2.5vw, 40px); padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--basalt); }
.brand:hover { color: var(--basalt); }
.brand__mark { width: 40px; height: 40px; color: var(--basalt); flex: none; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(60deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__word { font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.04em; }
.brand__sub { font-family: var(--f-mono); font-size: .58rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ash); margin-top: 4px; white-space: nowrap; }

.seek { position: relative; display: flex; align-items: center; max-width: 620px; width: 100%; margin-inline: auto; background: var(--chalk); border: 1px solid var(--line-strong); border-radius: 99px; padding-left: 16px; transition: border-color .2s, box-shadow .2s; }
.seek:focus-within { border-color: var(--basalt); box-shadow: 0 0 0 4px rgba(196, 70, 27, .14); }
.seek__icon { width: 18px; height: 18px; fill: none; stroke: var(--ash); stroke-width: 2; flex: none; }
.seek input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 12px 10px; font-size: 1rem; outline: none; }
.seek input::-webkit-search-cancel-button { display: none; }
.seek__kbd { font-family: var(--f-mono); font-size: .7rem; border: 1px solid var(--line-strong); border-radius: 4px; padding: 1px 7px; color: var(--ash); margin-right: 6px; }
.seek__go { border: 0; background: var(--basalt); color: var(--bone); border-radius: 99px; padding: 0 18px; margin: 4px; min-height: 40px; font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
.seek__go:hover { background: var(--ember); }
.seek__list { position: absolute; left: 0; right: 0; top: calc(100% + 8px); list-style: none; margin: 0; padding: 6px; background: var(--chalk); border: 1px solid var(--line-strong); border-radius: 14px; box-shadow: var(--shadow); z-index: 60; }
.seek__list a { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; padding: 8px; border-radius: 10px; text-decoration: none; }
.seek__list a:hover, .seek__list [aria-selected="true"] a { background: var(--bone-2); color: var(--basalt); }
.seek__list img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.seek__list .s-title { font-family: var(--f-display); font-weight: 600; font-size: .98rem; line-height: 1.15; }
.seek__list .s-cat { display: block; font-family: var(--f-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ash); margin-top: 2px; }
.seek__list .s-lock { font-family: var(--f-mono); font-size: .6rem; text-transform: uppercase; color: var(--ember); }
.seek__list .s-all { display: block; text-align: center; padding: 10px; font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; border-top: 1px solid var(--line); margin-top: 4px; border-radius: 0; }
.seek__list .s-empty { padding: 12px; color: var(--ash); font-size: .95rem; }

.masthead__tools { display: flex; align-items: center; gap: 8px; }
.tool-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; font-family: var(--f-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; white-space: nowrap; }
.tool-link svg, .cart-pill svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cart-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 8px 7px 14px; border-radius: 99px; background: var(--basalt); color: var(--bone); text-decoration: none; font-family: var(--f-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; }
.cart-pill:hover { color: var(--chalk); background: var(--ember-deep); }
.cart-pill__count { min-width: 26px; height: 26px; display: grid; place-items: center; padding: 0 6px; border-radius: 99px; background: var(--ember); color: var(--chalk); font-weight: 500; }
.cart-pill.is-bumped .cart-pill__count { animation: bump .45s var(--ease); }
@keyframes bump { 40% { transform: scale(1.35); } }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; cursor: pointer; place-items: center; }
.burger__bars, .burger__bars::before, .burger__bars::after { display: block; width: 18px; height: 2px; background: var(--basalt); position: relative; content: ""; }
.burger__bars::before { position: absolute; top: -6px; }
.burger__bars::after { position: absolute; top: 6px; }

.index-nav { display: flex; align-items: stretch; gap: clamp(8px, 2vw, 30px); border-top: 1px solid var(--line); }
.index-nav a { position: relative; display: inline-flex; align-items: baseline; gap: 7px; padding: 11px 0 12px; font-family: var(--f-display); font-weight: 600; font-size: .98rem; text-decoration: none; letter-spacing: -.01em; }
.index-nav__no { font-family: var(--f-mono); font-size: .64rem; color: var(--ash); font-weight: 400; }
.index-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.index-nav a:hover::after, .index-nav a[aria-current="page"]::after { transform: scaleX(1); }
.index-nav a[aria-current="page"] { color: var(--ember-deep); }
.index-nav__aside { margin-left: auto; display: flex; align-items: center; }
.index-nav__aside a::after { display: none; }
.index-nav__cta { font-family: var(--f-mono) !important; font-size: .72rem !important; text-transform: uppercase; letter-spacing: .08em; color: var(--ember-deep); }
.index-nav__member { font-family: var(--f-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--moss); display: inline-flex; align-items: center; gap: 6px; }
.index-nav__member::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--moss); }

.drawer { position: fixed; inset: 0; z-index: 80; background: var(--basalt); color: var(--bone); padding: 18px var(--gutter) 30px; display: flex; flex-direction: column; overflow-y: auto; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.drawer__title { font-family: var(--f-mono); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ash-2); }
.drawer__close { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-light); background: transparent; color: var(--bone); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.drawer__nav a { display: flex; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-light); font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 8vw, 2.6rem); letter-spacing: -.03em; text-decoration: none; color: var(--bone); }
.drawer__nav a span { font-family: var(--f-mono); font-size: .75rem; color: var(--ember); font-weight: 400; }
.drawer__foot { margin-top: auto; padding-top: 30px; font-family: var(--f-mono); font-size: .8rem; color: var(--ash-2); }
body.drawer-open { overflow: hidden; }

/* ---------- flashes & toasts ---------- */
.flashes { padding-top: 16px; }
.flash { margin: 0 0 10px; padding: 12px 16px; border-left: 4px solid var(--basalt); background: var(--chalk); font-size: 1rem; }
.flash--success { border-color: var(--moss); background: var(--moss-soft); }
.flash--error { border-color: var(--ember); background: var(--ember-soft); }
.flash--info { border-color: var(--saffron); }
.toast { position: fixed; right: 16px; bottom: 16px; z-index: 90; max-width: min(360px, calc(100vw - 32px)); background: var(--basalt); color: var(--bone); padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow); font-size: .98rem; display: flex; gap: 12px; align-items: center; }
.toast a { color: var(--saffron); font-family: var(--f-mono); font-size: .75rem; text-transform: uppercase; white-space: nowrap; }

/* ---------- sections ---------- */
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(32px, 5vw, 64px); }
.section--panel { background: var(--bone-2); }
.section-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 30px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .kicker { grid-column: 1 / -1; margin: 0; }
.section-head__title { font-size: clamp(2rem, 4.6vw, 3.6rem); margin: 0; letter-spacing: -.035em; }
.section-head__title--sm { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.section-head__note { grid-column: 1 / -1; max-width: 40rem; margin: 6px 0 0; color: var(--ash); }
.section-head--stack { grid-template-columns: 1fr; align-items: start; }
.section-head--stack .btn { justify-self: start; margin-top: 12px; }

/* ---------- home: ledger hero ---------- */
.ledger-hero { background: var(--basalt); color: var(--bone); padding-top: clamp(40px, 6vw, 80px); overflow: hidden; position: relative; }
.ledger-hero::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 119px, rgba(242, 237, 227, .04) 119px 120px); pointer-events: none; }
.ledger-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.ledger-hero .display em { color: var(--saffron); }
.ledger-hero .lede { color: #d8d1c3; }
.hero-seek { display: flex; gap: 0; margin: 28px 0 18px; max-width: 560px; background: var(--chalk); border-radius: var(--radius); padding: 5px; }
.hero-seek input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 10px 14px; color: var(--basalt); font-size: 1.05rem; outline: none; }
.hero-seek--light { border: 1px solid var(--line-strong); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.chips a { display: inline-block; padding: 7px 14px; border: 1px solid var(--line-light); border-radius: 99px; font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; color: var(--bone); transition: background .2s, color .2s; }
.chips a:hover { background: var(--bone); color: var(--basalt); }
.chips--dark a { color: var(--basalt); border-color: var(--line-strong); }
.chips--dark a:hover { background: var(--basalt); color: var(--bone); }

.cores { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 14px; align-items: start; height: clamp(380px, 46vw, 600px); }
.core { margin: 0; position: relative; height: 100%; }
.core__img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.core--a { height: 100%; }
.core--b { height: 78%; margin-top: 18%; }
.core--c { height: 70%; margin-top: 6%; }
.core figcaption { position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%) rotate(-90deg); transform-origin: center; white-space: nowrap; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; background: var(--basalt); color: var(--bone); padding: 4px 10px; border-radius: 99px; display: none; }

.ledger-stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: clamp(40px, 6vw, 70px) auto 0; border-top: 1px solid var(--line-light); }
.ledger-stats div { padding: 22px 0 26px; border-right: 1px solid var(--line-light); padding-left: 18px; }
.ledger-stats div:first-child { padding-left: 0; }
.ledger-stats div:last-child { border-right: 0; }
.ledger-stats dt { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash-2); }
.ledger-stats dd { margin: 4px 0 0; font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -.04em; line-height: 1; }
.band-dark { background: var(--basalt); color: var(--bone); }
.ledger-stats--flat { margin-top: 0; border-top: 0; }

/* ---------- specimen (recipe) cards ---------- */
.specimen { position: relative; display: flex; flex-direction: column; background: var(--chalk); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.specimen:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.specimen__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; clip-path: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch), 100% 100%, 0 100%); background: var(--bone-2); }
.specimen__img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.specimen:hover .specimen__img { transform: scale(1.05); }
.specimen__no { position: absolute; left: 10px; top: 10px; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .08em; background: rgba(27, 26, 23, .82); color: var(--bone); padding: 3px 8px; border-radius: 99px; }
.stamp { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 5px; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px 5px 8px; background: var(--ember); color: var(--chalk); transform: rotate(-3deg); border-radius: 3px; box-shadow: 0 4px 12px -4px rgba(0, 0, 0, .4); }
.stamp svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.stamp--free { background: var(--chalk); color: var(--moss); border: 1px solid var(--moss); transform: rotate(2deg); padding: 4px 9px; }
.specimen__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.specimen__cat { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); margin: 0 0 8px; }
.specimen__title { font-size: 1.28rem; font-weight: 700; line-height: 1.12; margin: 0 0 12px; letter-spacing: -.02em; }
.specimen__title a { text-decoration: none; }
.specimen__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.specimen__desc { color: var(--ash); font-size: 1rem; line-height: 1.5; margin: 0 0 14px; }
.specimen__meta { list-style: none; margin: auto 0 0; padding: 12px 0 0; border-top: 1px dashed var(--line-strong); display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; font-family: var(--f-mono); font-size: .7rem; color: var(--basalt-3); }
.specimen__meta li { display: inline-flex; align-items: center; gap: 5px; }
.specimen__meta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.lvl__bars { display: inline-flex; gap: 2px; align-items: flex-end; height: 12px; }
.lvl__bars i { width: 3px; background: var(--bone-3); border-radius: 1px; }
.lvl__bars i:nth-child(1) { height: 5px; }
.lvl__bars i:nth-child(2) { height: 8px; }
.lvl__bars i:nth-child(3) { height: 12px; }
.lvl--1 .lvl__bars i:nth-child(-n+1), .lvl--2 .lvl__bars i:nth-child(-n+2), .lvl--3 .lvl__bars i:nth-child(-n+3) { background: var(--ember); }
.specimen__rating { margin-left: auto; }
.stars { position: relative; display: inline-block; width: 70px; height: 13px; background: var(--bone-3); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 13'%3E%3Cg%3E%3Cpath d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(14)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(28)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(42)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(56)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3C/g%3E%3C/svg%3E") no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 13'%3E%3Cg%3E%3Cpath d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(14)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(28)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(42)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3Cpath transform='translate(56)' d='M6.5 0l1.9 4.1 4.6.5-3.4 3.1 1 4.5-4.1-2.4-4.1 2.4 1-4.5L0 4.6l4.6-.5z'/%3E%3C/g%3E%3C/svg%3E") no-repeat; }
.stars__fill { position: absolute; inset: 0 auto 0 0; background: var(--saffron); }
.is-locked .specimen__title a { padding-right: 4px; }

/* bento for featured */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.bento .specimen--feature { grid-column: span 2; grid-row: span 2; }
.bento .specimen--feature .specimen__media { aspect-ratio: auto; flex: 1; min-height: 300px; }
.bento .specimen--feature .specimen__img { position: absolute; inset: 0; }
.bento .specimen--feature .specimen__title { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.specimen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.specimen-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* row variant (search results, weeknight) */
.specimen--row { flex-direction: row; }
.specimen--row .specimen__media { flex: 0 0 38%; aspect-ratio: auto; min-height: 190px; clip-path: polygon(0 0, 100% 0, 100% 100%, var(--notch) 100%, 0 calc(100% - var(--notch))); }
.specimen--row .specimen__title { font-size: 1.45rem; }

.weeknight { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.weeknight .section-head { position: sticky; top: 150px; margin: 0; }
.weeknight__list { display: grid; gap: 16px; }

/* ---------- kitchen index ---------- */
.kitchen-index { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; border-top: 1px solid var(--line-strong); counter-reset: k; }
.kitchen-index__item { border-bottom: 1px solid var(--line-strong); }
.kitchen-index a { position: relative; display: grid; grid-template-columns: 2.6rem minmax(0, 1fr) auto; grid-template-rows: auto auto; align-items: baseline; column-gap: 12px; padding: 16px 12px 16px 6px; text-decoration: none; overflow: hidden; transition: background .3s var(--ease), color .3s; }
.kitchen-index__no { font-family: var(--f-mono); font-size: .72rem; color: var(--ash); grid-row: span 2; }
.kitchen-index__name { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.35rem, 2.2vw, 1.9rem); letter-spacing: -.03em; line-height: 1.05; }
.kitchen-index__tag { grid-column: 2; font-size: .95rem; color: var(--ash); font-style: italic; line-height: 1.3; margin-top: 3px; }
.kitchen-index__count { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-family: var(--f-mono); font-size: .8rem; padding: 4px 10px; border: 1px solid var(--line-strong); border-radius: 99px; position: relative; z-index: 2; }
.kitchen-index__peek { position: absolute; right: 70px; top: 50%; width: 120px; height: 150px; border-radius: 999px; overflow: hidden; transform: translateY(-50%) rotate(8deg) scale(.6); opacity: 0; transition: transform .45s var(--ease), opacity .3s; pointer-events: none; z-index: 1; }
.kitchen-index__peek img { width: 100%; height: 100%; object-fit: cover; }
.kitchen-index a:hover, .kitchen-index a:focus-visible { background: var(--basalt); color: var(--bone); }
.kitchen-index a:hover .kitchen-index__tag, .kitchen-index a:hover .kitchen-index__no { color: var(--ash-2); }
.kitchen-index a:hover .kitchen-index__count { border-color: var(--ember); background: var(--ember); color: var(--chalk); }
.kitchen-index a:hover .kitchen-index__peek { opacity: 1; transform: translateY(-50%) rotate(8deg) scale(1); }

/* ---------- ember band + tickets ---------- */
.band-ember { background: var(--ember); color: var(--chalk); padding-block: clamp(56px, 8vw, 100px); position: relative; overflow: hidden; }
.band-ember::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(255, 255, 255, .07); }
.band-ember .kicker { color: rgba(255, 252, 246, .75); }
.band-ember__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.band-ember__title { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -.04em; }
.band-ember p { font-size: 1.15rem; max-width: 34rem; }
.tickets { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ticket { position: relative; display: flex; flex-direction: column; padding: 26px 22px 20px; background: var(--chalk); color: var(--basalt); text-decoration: none; border-radius: 6px; -webkit-mask: radial-gradient(circle 12px at 0 62%, transparent 98%, #000) , radial-gradient(circle 12px at 100% 62%, transparent 98%, #000); -webkit-mask-composite: source-in; mask: radial-gradient(circle 12px at 0 62%, transparent 98%, #000) intersect, radial-gradient(circle 12px at 100% 62%, transparent 98%, #000); transition: transform .3s var(--ease); }
.ticket:hover { transform: translateY(-5px) rotate(-1deg); color: var(--basalt); }
.ticket--best { background: var(--basalt); color: var(--bone); }
.ticket--best:hover { color: var(--bone); }
.ticket__flag { position: absolute; top: 12px; right: 12px; font-family: var(--f-mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; background: var(--saffron); color: var(--basalt); padding: 3px 8px; border-radius: 99px; }
.ticket__plan { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.ticket__price { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 3.6vw, 2.8rem); letter-spacing: -.04em; line-height: 1; margin: 18px 0 2px; }
.ticket__per { font-size: .95rem; opacity: .7; padding-bottom: 20px; border-bottom: 2px dashed currentColor; margin-bottom: 14px; }
.ticket__go { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- tag (product) cards & shelf ---------- */
.tag-card { position: relative; display: flex; flex-direction: column; background: var(--chalk); border: 1px solid var(--line); border-radius: 10px 10px 4px 4px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tag-card:hover { transform: translateY(-4px) rotate(-.6deg); box-shadow: var(--shadow); }
.tag-card__media { display: block; aspect-ratio: 1 / 1; background: var(--bone-2); overflow: hidden; }
.tag-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tag-card:hover .tag-card__img { transform: scale(1.06); }
.tag-card__body { position: relative; display: flex; flex-direction: column; flex: 1; padding: 22px 16px 16px; border-top: 2px dashed var(--line-strong); }
.tag-card__hole { position: absolute; top: -11px; left: 50%; width: 20px; height: 20px; margin-left: -10px; border-radius: 50%; background: var(--bone); border: 1px solid var(--line-strong); }
.section--panel .tag-card__hole { background: var(--bone-2); }
.tag-card__cat { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); margin: 0 0 6px; }
.tag-card__name { font-size: 1.08rem; font-weight: 600; line-height: 1.2; margin: 0 0 14px; letter-spacing: -.01em; }
.tag-card__name a { text-decoration: none; }
.tag-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tag-card__price { font-family: var(--f-mono); font-weight: 500; font-size: 1rem; }
.tag-card__add { display: inline-flex; align-items: center; gap: 4px; min-height: 38px; padding: 0 14px; border: 1px solid var(--basalt); border-radius: 99px; background: transparent; font-family: var(--f-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; transition: background .2s, color .2s; white-space: nowrap; }
.tag-card__add:hover { background: var(--basalt); color: var(--bone); }
.tag-card__add.is-added { background: var(--moss); border-color: var(--moss); color: var(--chalk); }
.tag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.tag-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.shelf { position: relative; }
.shelf__track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 22vw, 290px); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 10px max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))) 26px; scrollbar-width: thin; scrollbar-color: var(--basalt) transparent; }
.shelf__track > * { scroll-snap-align: start; }
.shelf__controls { display: flex; justify-content: flex-end; gap: 10px; }
.shelf__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--basalt); background: transparent; cursor: pointer; font-size: 1.2rem; }
.shelf__btn:hover { background: var(--basalt); color: var(--bone); }

/* ---------- mosaic ---------- */
.mosaic { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(110px, 12vw, 170px); gap: 6px; background: var(--basalt); padding: 6px; }
.mosaic__cell { position: relative; margin: 0; overflow: hidden; }
.mosaic__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s; filter: saturate(.9); }
.mosaic__cell:hover .mosaic__img { transform: scale(1.06); filter: saturate(1.1); }
.mosaic__cell figcaption { position: absolute; left: 10px; bottom: 10px; right: 10px; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; color: var(--chalk); background: rgba(27, 26, 23, .7); padding: 5px 8px; border-radius: 4px; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.mosaic__cell:hover figcaption { opacity: 1; transform: none; }
.mosaic__cell--1 { grid-column: 1 / span 4; grid-row: span 2; }
.mosaic__cell--2 { grid-column: 5 / span 3; }
.mosaic__cell--3 { grid-column: 8 / span 5; grid-row: span 2; }
.mosaic__cell--4 { grid-column: 5 / span 3; }
.mosaic__cell--5 { grid-column: 1 / span 3; }
.mosaic__cell--6 { grid-column: 4 / span 5; }
.mosaic__cell--7 { grid-column: 9 / span 4; grid-row: span 2; }
.mosaic__cell--8 { grid-column: 1 / span 5; }
.mosaic__label { grid-column: 6 / span 3; display: flex; flex-direction: column; justify-content: center; padding: 14px 18px; color: var(--bone); background: var(--basalt-2); }
.mosaic__line { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.5rem); line-height: 1.1; margin: 0; letter-spacing: -.02em; }

/* ---------- dispatches ---------- */
.dispatches { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.dispatch { display: grid; grid-template-columns: 110px minmax(0, 1fr) 240px; gap: clamp(16px, 3vw, 40px); padding: 26px 0; border-bottom: 1px solid var(--line-strong); align-items: center; }
.dispatch__date { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; line-height: 1; letter-spacing: -.03em; }
.dispatch__date span { display: block; font-family: var(--f-mono); font-weight: 400; font-size: .7rem; letter-spacing: .1em; color: var(--ash); margin-top: 6px; }
.dispatch__topic { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-deep); margin: 0 0 8px; }
.dispatch__title { font-size: clamp(1.35rem, 2.4vw, 1.9rem); margin: 0 0 8px; letter-spacing: -.025em; }
.dispatch__title a { text-decoration: none; }
.dispatch__title a:hover { text-decoration: underline; }
.dispatch__excerpt { color: var(--ash); margin: 0; }
.dispatch__pic { aspect-ratio: 3 / 2; border-radius: 999px; overflow: hidden; }
.dispatch__pic img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- listing pages ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ash); margin-bottom: 18px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs--light { color: var(--ash-2); }
.folio { padding-block: clamp(34px, 5vw, 70px); border-bottom: 1px solid var(--line); }
.folio__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.folio__title { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -.045em; line-height: .95; margin-bottom: .3em; }
.folio__lede { font-size: 1.2rem; max-width: 36rem; color: var(--basalt-3); }
.folio__facts { display: flex; flex-wrap: wrap; gap: 0; margin: 26px 0 0; border: 1px solid var(--line-strong); width: fit-content; max-width: 100%; }
.folio__facts div { padding: 10px 20px; border-right: 1px solid var(--line-strong); }
.folio__facts div:last-child { border-right: 0; }
.folio__facts dt { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); }
.folio__facts dd { margin: 0; font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -.03em; }
.folio__art { display: grid; grid-template-columns: minmax(0, 1fr) 30%; gap: 12px; }
.folio__banner { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 0 180px 180px 0; }
.folio__banner--solo { border-radius: 180px 0 0 180px; aspect-ratio: 16 / 11; }
.folio__banner img { width: 100%; height: 100%; object-fit: cover; }
.folio__thumbs { display: grid; gap: 12px; grid-template-rows: 1fr 1fr; }
.folio__thumbs figure { margin: 0; overflow: hidden; border-radius: 999px; }
.folio__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.folio__kitchens { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 24px; border-top: 1px solid var(--line-strong); }
.folio__kitchens li { break-inside: avoid; border-bottom: 1px solid var(--line); }
.folio__kitchens a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 2px; font-family: var(--f-display); font-weight: 600; text-decoration: none; }
.folio__kitchens a:hover { color: var(--ember-deep); }
.folio__kitchens span { font-family: var(--f-mono); font-size: .75rem; color: var(--ash); }

.kitchen-rail { border-bottom: 1px solid var(--line); background: var(--bone-2); }
.kitchen-rail__track { display: flex; gap: 6px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.kitchen-rail__track::-webkit-scrollbar { display: none; }
.kitchen-rail a, .shelf-tabs a { flex: none; padding: 8px 14px; border-radius: 99px; font-family: var(--f-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; border: 1px solid transparent; white-space: nowrap; }
.kitchen-rail a:hover, .shelf-tabs a:hover { border-color: var(--line-strong); color: var(--basalt); }
.kitchen-rail a[aria-current="page"], .shelf-tabs a[aria-current="page"] { background: var(--basalt); color: var(--bone); }

.listing-bar { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line-strong); }
.listing-bar__count { margin: 0; font-family: var(--f-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.listing-bar__count strong { font-family: var(--f-display); font-size: 1.8rem; letter-spacing: -.03em; margin-right: 4px; }
.sieve { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; }
.sieve__field { display: flex; flex-direction: column; gap: 4px; }
.sieve__label { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); }
.sieve select { appearance: none; -webkit-appearance: none; min-height: 42px; padding: 8px 34px 8px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--chalk) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231b1a17' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right 12px center / 11px; font-size: .95rem; cursor: pointer; }
.js .sieve[data-autosubmit] .sieve__apply { display: none; }

.pager { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line-strong); }
.pager__info { margin: 0; font-family: var(--f-mono); font-size: .75rem; color: var(--ash); }
.pager__list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; align-items: center; }
.pager__num, .pager__step { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 99px; font-family: var(--f-mono); font-size: .78rem; text-decoration: none; }
.pager__num:hover, .pager__step:hover { background: var(--basalt); color: var(--bone); }
.pager__num.is-current { background: var(--ember); border-color: var(--ember); color: var(--chalk); }
.pager__step.is-disabled { opacity: .35; }
.pager__gap { font-family: var(--f-mono); color: var(--ash); padding: 0 4px; }

.empty { text-align: center; padding: clamp(40px, 7vw, 90px) 20px; border: 1px dashed var(--line-strong); background: var(--chalk); }
.empty__title { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.03em; margin-bottom: .4em; }
.empty .chips { justify-content: center; margin: 22px 0; }
.empty .btn { margin-top: 12px; }
.empty__kitchens { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; font-family: var(--f-display); font-weight: 600; }

/* ---------- search ---------- */
.probe { background: var(--basalt); color: var(--bone); padding-block: clamp(30px, 5vw, 60px); }
.probe .kicker { color: var(--ash-2); }
.probe__form { display: flex; gap: 10px; margin-bottom: 20px; border-bottom: 2px solid var(--bone); padding-bottom: 8px; }
.probe__input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--bone); font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 5vw, 3.8rem); letter-spacing: -.035em; padding: 4px 0; outline: none; }
.probe__input::placeholder { color: var(--basalt-3); }
.probe__go { align-self: center; }
.probe .sieve select { background-color: var(--basalt-2); color: var(--bone); border-color: var(--line-light); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23f2ede3' stroke-width='1.6'/%3E%3C/svg%3E"); }
.probe .sieve__label { color: var(--ash-2); }
.probe .btn--ghost { --fg: var(--bone); border-color: var(--line-light); }
.results-meta { font-family: var(--f-mono); font-size: .8rem; margin-bottom: 20px; }
.results-meta strong { font-family: var(--f-display); font-size: 1.6rem; }
.results-meta span { color: var(--ash); }
.result-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

/* ---------- recipe detail ---------- */
.recipe-head { padding-top: clamp(24px, 4vw, 50px); border-bottom: 1px solid var(--line); }
.recipe-head__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: end; }
.recipe-head__no { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.recipe-head__no span { padding: 4px 10px; border: 1px solid var(--line-strong); border-radius: 99px; }
.recipe-head__access { border-color: var(--moss) !important; color: var(--moss); }
.recipe-head__access--members { background: var(--ember); border-color: var(--ember) !important; color: var(--chalk); }
.recipe-head__title { font-size: clamp(2.3rem, 5vw, 4.4rem); font-weight: 800; letter-spacing: -.045em; line-height: .96; }
.recipe-head__lede { font-size: 1.2rem; color: var(--basalt-3); }
.recipe-head__rating { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: .78rem; }
.recipe-head__rating span { color: var(--ash); }
.recipe-head__media { margin: 0; position: relative; }
.recipe-head__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%); }
.recipe-head__media figcaption { position: absolute; right: 12px; bottom: 12px; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .06em; background: rgba(27, 26, 23, .75); color: var(--bone); padding: 3px 8px; border-radius: 99px; }
.spec-row { display: grid; grid-template-columns: repeat(5, auto) 1fr; margin: 30px 0 0; border-top: 1px solid var(--line-strong); }
.spec-row > div { padding: 16px 26px 18px 0; margin-right: 26px; border-right: 1px solid var(--line); }
.spec-row dt { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }
.spec-row dd { margin: 2px 0 0; font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; white-space: nowrap; }
.spec-row__actions { display: flex; gap: 8px; align-items: center; justify-content: flex-end; border-right: 0 !important; margin-right: 0 !important; padding-right: 0 !important; }

.recipe-body { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(28px, 5vw, 70px); padding-block: clamp(36px, 6vw, 70px); align-items: start; }
.mise { position: sticky; top: 140px; }
.mise__card { background: var(--chalk); border: 1px solid var(--line-strong); padding: 22px 22px 18px; }
.mise__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; border-bottom: 2px solid var(--basalt); padding-bottom: 12px; margin-bottom: 6px; }
.mise__title { font-size: 1.5rem; margin: 0; }
.mise__progress { margin: 0; font-family: var(--f-mono); font-size: .7rem; color: var(--ash); white-space: nowrap; }
.mise__list { list-style: none; margin: 0; padding: 0; }
.mise__list li { border-bottom: 1px dashed var(--line); }
.mise__list label { display: grid; grid-template-columns: 22px minmax(72px, auto) 1fr; gap: 10px; align-items: baseline; padding: 11px 0; cursor: pointer; font-size: 1.02rem; line-height: 1.35; }
.mise__list input { width: 18px; height: 18px; accent-color: var(--ember); translate: 0 3px; }
.mise__qty { font-family: var(--f-mono); font-size: .8rem; color: var(--ember-deep); }
.mise__name em { color: var(--ash); }
.mise__list label:has(input:checked) .mise__name, .mise__list label:has(input:checked) .mise__qty { text-decoration: line-through; opacity: .5; }
.mise__ghost span { display: block; height: 14px; margin: 16px 0; background: linear-gradient(90deg, var(--bone-3), var(--bone-2)); border-radius: 3px; width: 80%; filter: blur(2px); }
.mise__more { margin: 12px 0 0; font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ember-deep); }

.method__title { display: flex; align-items: baseline; justify-content: space-between; font-size: clamp(2rem, 3.5vw, 2.8rem); border-bottom: 2px solid var(--basalt); padding-bottom: 12px; margin-bottom: 8px; }
.method__title span { font-family: var(--f-mono); font-weight: 400; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ash); }
.steps { list-style: none; margin: 0; padding: 0; }
.step { display: grid; grid-template-columns: clamp(64px, 8vw, 100px) 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: opacity .3s; }
.step__no { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); line-height: .85; letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1.3px var(--basalt); transition: color .3s; }
.step:hover .step__no { color: var(--ember); -webkit-text-stroke-color: var(--ember); }
.step__body { margin: 0; font-size: 1.16rem; line-height: 1.65; }
.step.is-done { opacity: .45; }
.step.is-done .step__no { color: var(--moss); -webkit-text-stroke-color: var(--moss); }
.steps__hint { font-family: var(--f-mono); font-size: .68rem; color: var(--ash); text-transform: uppercase; letter-spacing: .08em; margin-top: 12px; }
.tip { margin-top: 30px; padding: 22px 26px; background: var(--basalt); color: var(--bone); border-left: 6px solid var(--saffron); }
.tip .kicker { color: var(--saffron); }
.tip__text { font-size: 1.2rem; font-style: italic; margin: 0; }

.vault { position: relative; margin-top: 10px; }
.vault__ghost { filter: blur(3px); opacity: .5; pointer-events: none; }
.vault__line { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.vault__line b { font-family: var(--f-display); font-size: 3rem; line-height: .8; color: var(--bone-3); }
.vault__line span { display: block; height: 12px; background: var(--bone-3); border-radius: 3px; margin: 6px 0; grid-column: 2; }
.vault__line span + span { width: 70%; }
.vault__panel { position: relative; margin-top: -120px; background: var(--chalk); border: 2px solid var(--basalt); padding: clamp(24px, 4vw, 40px); box-shadow: 12px 12px 0 var(--ember); }
.vault__icon { width: 34px; height: 34px; fill: none; stroke: var(--ember); stroke-width: 1.8; margin-bottom: 10px; }
.vault__title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.vault__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.contact-sheet { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; background: var(--basalt); padding: 14px; }
.contact-sheet__frame { margin: 0; background: var(--basalt-2); padding: 8px 8px 10px; }
.contact-sheet__frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.contact-sheet__frame figcaption { color: var(--ash-2); font-size: .9rem; margin-top: 8px; line-height: 1.35; }
.contact-sheet__frame figcaption span { font-family: var(--f-mono); color: var(--saffron); font-size: .72rem; }

/* ---------- store ---------- */
.supply-hero { background: var(--basalt); color: var(--bone); padding-block: clamp(34px, 5vw, 64px); }
.supply-hero__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.supply-hero__title { font-size: clamp(2.5rem, 5.6vw, 4.8rem); font-weight: 800; letter-spacing: -.045em; line-height: .95; }
.supply-hero__title em { color: var(--saffron); }
.supply-hero__lede { font-size: 1.18rem; color: #d8d1c3; max-width: 34rem; }
.supply-hero__media { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 12px 12px 12px 160px; }
.supply-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.shelf-tabs { border-bottom: 1px solid var(--line); background: var(--bone-2); }
.shelf-tabs__track { display: flex; gap: 6px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.shelf-tabs a span { opacity: .6; margin-left: 3px; }
.promise { background: var(--bone-2); border-top: 1px solid var(--line); padding-block: 40px; }
.promise__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.promise__h { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; margin: 0 0 4px; }
.promise p { font-size: .98rem; margin: 0; color: var(--basalt-3); }

.item { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.item__media { margin: 0; position: sticky; top: 140px; background: var(--chalk); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.item__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.item__media figcaption { font-family: var(--f-mono); font-size: .62rem; color: var(--ash); padding: 8px 12px; }
.item__name { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.04em; }
.item__rating { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: .78rem; }
.item__rating span { color: var(--ash); }
.item__price { font-family: var(--f-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; margin: 10px 0; }
.item__short { font-size: 1.2rem; color: var(--basalt-3); }
.item__buy { display: flex; gap: 12px; margin: 24px 0 10px; }
.qty { display: flex; border: 1px solid var(--basalt); border-radius: var(--radius); }
.qty button { width: 44px; border: 0; background: transparent; font-size: 1.3rem; cursor: pointer; }
.qty button:hover { background: var(--bone-2); }
.qty input { width: 52px; text-align: center; border: 0; border-inline: 1px solid var(--line); background: var(--chalk); font-family: var(--f-mono); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.item__stock { font-family: var(--f-mono); font-size: .72rem; color: var(--moss); text-transform: uppercase; letter-spacing: .06em; }
.item__desc { margin: 28px 0; padding-top: 24px; border-top: 1px solid var(--line-strong); }
.item__details { margin: 0 0 24px; border-top: 1px solid var(--line-strong); }
.item__details div { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.item__details dt { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ash); padding-top: 4px; }
.item__details dd { margin: 0; }
.item__assure { list-style: none; margin: 0; padding: 16px 18px; background: var(--bone-2); font-size: 1rem; }
.item__assure li { padding-left: 18px; position: relative; }
.item__assure li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; background: var(--ember); transform: rotate(45deg); }

/* ---------- cart, checkout, receipts ---------- */
.page-title { margin-bottom: clamp(24px, 4vw, 40px); padding-bottom: 18px; border-bottom: 2px solid var(--basalt); }
.page-title__h { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.045em; margin: 0; }
.page-title__sub { margin: 10px 0 0; color: var(--ash); max-width: 44rem; }
.page-title--split { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; }

.cart { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: clamp(24px, 4vw, 50px); align-items: start; }
.cart__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.cart-line { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; background: var(--bone-2); }
.cart-line__name { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; line-height: 1.2; text-decoration: none; }
.cart-line__meta { font-family: var(--f-mono); font-size: .7rem; color: var(--ash); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.cart-line__total { font-family: var(--f-mono); font-weight: 500; min-width: 90px; text-align: right; }
.cart-line__remove { background: none; border: 0; padding: 0; margin-top: 8px; font-family: var(--f-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ember-deep); cursor: pointer; text-decoration: underline; }
.cart__loading { font-family: var(--f-mono); font-size: .8rem; color: var(--ash); }

.receipt { background: var(--chalk); border: 1px solid var(--line-strong); padding: 22px; position: relative; }
.receipt::after { content: ""; position: absolute; left: -1px; right: -1px; bottom: -10px; height: 10px; background: radial-gradient(circle at 8px 0, transparent 7px, var(--chalk) 7.5px) repeat-x; background-size: 16px 10px; }
.receipt--sticky { position: sticky; top: 140px; }
.receipt__title { font-size: 1.5rem; border-bottom: 2px solid var(--basalt); padding-bottom: 10px; }
.receipt__items { list-style: none; margin: 0 0 12px; padding: 0; }
.receipt__items li { display: grid; grid-template-columns: 48px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; line-height: 1.25; }
.receipt__items img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.receipt__items small { display: block; font-family: var(--f-mono); color: var(--ash); font-size: .66rem; }
.receipt__items .r-amt { font-family: var(--f-mono); font-size: .8rem; }
.receipt__loading { display: block !important; font-family: var(--f-mono); font-size: .75rem; color: var(--ash); }
.receipt__rows { margin: 0 0 18px; }
.receipt__rows div { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; font-size: 1rem; }
.receipt__rows dt { color: var(--basalt-3); }
.receipt__rows dd { margin: 0; font-family: var(--f-mono); }
.receipt__total { border-top: 2px solid var(--basalt); margin-top: 6px; padding-top: 12px !important; }
.receipt__total dt, .receipt__total dd { font-family: var(--f-display) !important; font-weight: 800; font-size: 1.5rem; color: var(--basalt) !important; }
.receipt__note { font-size: .88rem; color: var(--ash); margin: 12px 0 0; }
.receipt__back { display: block; margin-top: 14px; font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; text-align: center; }

.checkout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(24px, 4vw, 50px); align-items: start; }
.checkout__main { display: grid; gap: 22px; }
.panel { margin: 0; background: var(--chalk); border: 1px solid var(--line-strong); padding: clamp(18px, 3vw, 28px); min-width: 0; }
.panel__legend { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; padding: 0; margin-bottom: 14px; float: left; width: 100%; }
.panel__legend + * { clear: both; }
.panel__legend span { font-family: var(--f-mono); font-size: .7rem; font-weight: 400; display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--basalt); color: var(--bone); }
.panel__legend small { font-family: var(--f-mono); font-size: .66rem; color: var(--ash); font-weight: 400; }
.panel__note, .panel__static { font-size: .95rem; color: var(--ash); margin: 10px 0 0; clear: both; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; min-width: 0; clear: both; }
.field label { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; display: flex; justify-content: space-between; gap: 10px; }
.field__aside { text-transform: none; letter-spacing: 0; font-family: var(--f-text); font-size: .95rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bone); font-size: 1.05rem; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--basalt); box-shadow: 0 0 0 4px rgba(196, 70, 27, .14); background: var(--chalk); }
.field [aria-invalid="true"] { border-color: var(--ember); background: #fbeee7; }
.field__error { color: var(--ember-deep); font-size: .92rem; margin: 0; }
.field__live { font-family: var(--f-mono); font-size: .7rem; margin: 0; min-height: 1em; }
.field__live.is-ok { color: var(--moss); }
.field__live.is-bad { color: var(--ember-deep); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row--3 { grid-template-columns: 2fr 1fr 1fr; }
.card-brand { font-family: var(--f-mono); color: var(--ember-deep); }
.card-fields__lock { display: flex; align-items: center; gap: 6px; font-size: .88rem; color: var(--ash); margin: 0; }
.card-fields__lock svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.check { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-size: .98rem; margin: 6px 0 12px; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--ember); }
.stack { display: grid; gap: 4px; }

.receipt-page { max-width: 860px; }
.receipt-page__head { text-align: center; margin-bottom: 34px; }
.receipt-page__head .kicker { justify-content: center; }
.receipt-page__lede { font-size: 1.15rem; color: var(--basalt-3); margin-top: 14px; }
.receipt-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.seal { display: inline-grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--moss); margin-bottom: 18px; box-shadow: 0 0 0 10px var(--moss-soft); }
.seal svg { width: 40px; height: 40px; fill: none; stroke: var(--chalk); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.slip { background: var(--chalk); border: 1px solid var(--line-strong); padding: clamp(18px, 3vw, 30px); position: relative; }
.slip::before, .slip::after { content: ""; position: absolute; left: -1px; right: -1px; height: 10px; background-size: 16px 10px; background-repeat: repeat-x; }
.slip::before { top: -10px; background-image: radial-gradient(circle at 8px 10px, transparent 7px, var(--chalk) 7.5px); }
.slip::after { bottom: -10px; background-image: radial-gradient(circle at 8px 0, transparent 7px, var(--chalk) 7.5px); }
.slip__top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-bottom: 16px; border-bottom: 2px dashed var(--line-strong); }
.slip__label { display: block; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); }
.slip__value { font-family: var(--f-mono); font-size: .9rem; }
.slip__items { list-style: none; margin: 0; padding: 0; }
.slip__items li { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.slip__items img { border-radius: 8px; object-fit: cover; }
.slip__name small { font-family: var(--f-mono); color: var(--ash); }
.slip__amt { font-family: var(--f-mono); }
.slip__totals { margin: 12px 0 0 auto; max-width: 320px; }
.slip__totals div { display: flex; justify-content: space-between; padding: 5px 0; }
.slip__totals dd { margin: 0; font-family: var(--f-mono); }
.slip__grand { border-top: 2px solid var(--basalt); margin-top: 6px; padding-top: 10px !important; font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; }
.slip__grand dd { font-family: var(--f-display) !important; }
.slip__ship { margin-top: 18px; padding-top: 16px; border-top: 2px dashed var(--line-strong); }

/* ---------- membership ---------- */
.members-hero { background: var(--basalt); color: var(--bone); padding-block: clamp(40px, 6vw, 80px); }
.members-hero__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.members-hero__title { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 800; letter-spacing: -.045em; line-height: .95; }
.members-hero__title em { color: var(--saffron); }
.members-hero__lede { font-size: 1.2rem; color: #d8d1c3; max-width: 38rem; }
.members-hero__status { display: inline-block; padding: 10px 14px; background: var(--moss); color: var(--chalk); border-radius: 4px; }
.members-hero__status a { color: var(--chalk); }
.members-hero__media { margin: 0; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; border: 10px solid var(--basalt-2); outline: 1px solid var(--line-light); }
.members-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.plans { display: grid; grid-template-columns: 1fr 1fr .85fr; gap: 20px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--chalk); border: 1px solid var(--line-strong); padding: clamp(22px, 3vw, 34px); }
.plan--best { background: var(--basalt); color: var(--bone); border-color: var(--basalt); transform: translateY(-14px); box-shadow: 14px 14px 0 var(--ember); }
.plan--free { background: transparent; border-style: dashed; }
.plan__flag { position: absolute; top: -14px; left: 24px; margin: 0; background: var(--saffron); color: var(--basalt); font-family: var(--f-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; padding: 5px 12px; border-radius: 99px; }
.plan__name { font-size: 1.8rem; margin-bottom: 10px; }
.plan__price { font-family: var(--f-mono); font-size: .9rem; margin: 0; }
.plan__price span { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.6rem, 4.5vw, 3.6rem); letter-spacing: -.04em; }
.plan__equiv { font-size: .95rem; opacity: .7; }
.plan__list { list-style: none; margin: 14px 0 20px; padding: 16px 0 0; border-top: 1px dashed currentColor; }
.plan__list li { padding: 5px 0 5px 22px; position: relative; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 10px; height: 6px; border-left: 2px solid var(--ember); border-bottom: 2px solid var(--ember); transform: rotate(-45deg); }
.plan--best .plan__list li::before { border-color: var(--saffron); }
.plan__note { font-size: .88rem; opacity: .75; margin-top: auto; }
.plan--best .btn--ember:hover { border-color: var(--bone); }
.plan--best .btn--ghost { --fg: var(--bone); }

.accordion { border-top: 1px solid var(--line-strong); }
.accordion details { border-bottom: 1px solid var(--line-strong); }
.accordion summary { list-style: none; display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; cursor: pointer; font-family: var(--f-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; font-family: var(--f-mono); font-size: 1rem; transition: transform .3s var(--ease), background .2s; }
.accordion details[open] summary::after { transform: rotate(45deg); background: var(--basalt); color: var(--bone); }
.accordion details p { margin: 0 0 20px; max-width: 48rem; color: var(--basalt-3); }

/* ---------- auth ---------- */
.gate { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); min-height: calc(100vh - 140px); }
.gate__art { position: relative; overflow: hidden; background: var(--basalt); }
.gate__art img { width: 100%; height: 100%; object-fit: cover; opacity: .8; position: absolute; inset: 0; }
.gate__quote { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(24px, 4vw, 50px); background: linear-gradient(transparent, rgba(27, 26, 23, .92)); color: var(--bone); }
.gate__line { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2.2rem); line-height: 1.1; letter-spacing: -.03em; margin: 0; }
.gate__form { padding: clamp(32px, 6vw, 80px) var(--gutter); max-width: 620px; width: 100%; align-self: center; }
.gate__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -.045em; }
.gate__switch { margin-top: 20px; font-size: 1rem; }
.demo-note { background: var(--bone-2); border: 1px dashed var(--line-strong); padding: 14px 16px; font-size: .98rem; }

/* ---------- account ---------- */
.ledger-cards { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 40px; }
.ledger-card { background: var(--chalk); border: 1px solid var(--line-strong); padding: 24px; }
.ledger-card--active { border-left: 6px solid var(--moss); }
.ledger-card__h { font-size: 1.7rem; }
.ledger-card__rows { margin: 0 0 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
.ledger-card__rows div { padding: 10px 0; border-bottom: 1px dashed var(--line); }
.ledger-card__rows dt { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); }
.ledger-card__rows dd { margin: 0; }
.orders { margin-top: 30px; }
.orders__empty { color: var(--ash); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line-strong); background: var(--chalk); }
.orders__table { width: 100%; border-collapse: collapse; font-size: .98rem; min-width: 620px; }
.orders__table th { text-align: left; font-family: var(--f-mono); font-size: .64rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); padding: 12px 16px; border-bottom: 2px solid var(--basalt); }
.orders__table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.orders__table .num { text-align: right; font-family: var(--f-mono); }
.orders__item { display: block; font-size: .92rem; }
.badge { font-family: var(--f-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px; border-radius: 99px; background: var(--moss-soft); color: var(--moss); }

/* ---------- journal ---------- */
.lead-story { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 50px); align-items: center; margin-bottom: 30px; }
.lead-story__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%); }
.lead-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lead-story:hover .lead-story__media img { transform: scale(1.04); }
.lead-story__title { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -.035em; }
.lead-story__title a { text-decoration: none; }
.byline { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ash); }
.post__head { padding-top: clamp(30px, 5vw, 60px); }
.post__title { font-size: clamp(2.3rem, 5.4vw, 4.4rem); font-weight: 800; letter-spacing: -.045em; line-height: .98; }
.post__dek { font-size: 1.3rem; color: var(--basalt-3); font-style: italic; }
.post__meta { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); font-size: .98rem; }
.post__meta p { margin: 0; }
.post__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center 25%; }
.post__hero { margin: 34px auto; }
.post__hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.post__hero figcaption { font-family: var(--f-mono); font-size: .68rem; color: var(--ash); margin-top: 8px; }
.post__body { padding-bottom: clamp(50px, 8vw, 100px); }
.prose { font-size: 1.2rem; line-height: 1.72; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 1.6em 0 .5em; letter-spacing: -.03em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--ember); }
.prose blockquote { margin: 1.6em 0; padding: 6px 0 6px 26px; border-left: 4px solid var(--ember); font-family: var(--f-display); font-weight: 600; font-size: 1.5rem; line-height: 1.25; letter-spacing: -.02em; }
.prose blockquote p { margin: 0; }
.prose__lead::first-letter { float: left; font-family: var(--f-display); font-weight: 800; font-size: 4.4em; line-height: .8; padding: 6px 10px 0 0; color: var(--ember); }
.story-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.story-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 999px 999px 0 0; margin-bottom: 14px; }
.story-card__media img { width: 100%; height: 100%; object-fit: cover; }
.story-card__title { font-size: 1.35rem; letter-spacing: -.02em; }
.story-card__title a { text-decoration: none; }

/* ---------- about ---------- */
.about-hero { position: relative; }
.about-hero__media { height: clamp(340px, 52vw, 640px); overflow: hidden; }
.about-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__card { position: relative; margin-top: clamp(-180px, -12vw, -80px); }
.about-hero__card > * { max-width: 760px; }
.about-hero__card { background: none; }
.about-hero__card::before { content: ""; position: absolute; inset: 0 auto 0 var(--gutter); width: min(820px, calc(100% - var(--gutter) * 2)); background: var(--bone); z-index: -1; }
.about-hero__card { padding-top: 36px; padding-bottom: 10px; z-index: 1; }
.about-hero__card > * { padding-left: clamp(0px, 3vw, 36px); }
.about-hero__title { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 800; letter-spacing: -.045em; line-height: .95; }
.about-hero__card p:last-child { font-size: 1.2rem; }
.about-split { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.about-split__text p { font-size: 1.15rem; }
.about-split__media { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 999px 999px 12px 12px; }
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.crew { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.crew__card { background: var(--chalk); border: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden; }
.crew__photo { margin: 0; overflow: hidden; background: var(--bone-2); }
.crew__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 25%; display: block; filter: grayscale(.25); transition: filter .5s, transform .8s var(--ease); }
.crew__card:hover .crew__img { filter: none; transform: scale(1.03); }
.crew__text { padding: 18px 18px 20px; border-top: 4px solid var(--ember); }
.crew__no { font-family: var(--f-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ash); margin-bottom: 8px; }
.crew__name { font-size: 1.4rem; margin: 0 0 2px; }
.crew__role { font-style: italic; color: var(--ember-deep); margin-bottom: 10px; }
.crew__bio { font-size: .98rem; color: var(--basalt-3); margin: 0; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.values__no { font-family: var(--f-display); font-weight: 800; font-size: 3rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px var(--basalt); margin-bottom: 10px; }
.values h3 { font-size: 1.3rem; }
.values p { font-size: 1rem; color: var(--basalt-3); }
.cta-strip { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; padding: clamp(24px, 4vw, 40px); border: 2px solid var(--basalt); }
.cta-strip__title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 0; }
.cta-strip__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- careers ---------- */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }
.perks div { padding: 18px; background: var(--chalk); border-top: 4px solid var(--moss); }
.perks h3 { font-size: 1.15rem; margin-bottom: 6px; }
.perks p { font-size: .98rem; margin: 0; color: var(--basalt-3); }
.jobs__h { margin-bottom: 16px; }
.jobs { border-top: 2px solid var(--basalt); }
.job { border-bottom: 1px solid var(--line-strong); }
.job__summary { list-style: none; display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)) 34px; gap: 14px; align-items: center; padding: 20px 0; cursor: pointer; }
.job__summary::-webkit-details-marker { display: none; }
.job__title { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; }
.job__meta { font-family: var(--f-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ash); }
.job__toggle { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); position: relative; }
.job__toggle::before, .job__toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--basalt); transform: translate(-50%, -50%); }
.job__toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s; }
.job[open] .job__toggle { background: var(--basalt); }
.job[open] .job__toggle::before { background: var(--bone); }
.job[open] .job__toggle::after { transform: translate(-50%, -50%) rotate(0); background: var(--bone); }
.job__body { padding: 0 0 28px; }
.job__lede { font-size: 1.15rem; max-width: 50rem; }
.job__pay { font-family: var(--f-mono); font-size: .8rem; }
.job__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 18px 0; }
.job__cols h3 { font-size: 1.1rem; margin-top: 10px; }
.job__cols ul { padding-left: 1.1em; margin: 0 0 12px; }
.job__cols li::marker { color: var(--ember); }
.job__posted { font-family: var(--f-mono); font-size: .68rem; color: var(--ash); margin-top: 12px; }
.jobs__eeo { font-size: .92rem; color: var(--ash); margin-top: 26px; }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: clamp(24px, 4vw, 60px); align-items: start; }
.faq__nav { position: sticky; top: 140px; display: grid; border-top: 2px solid var(--basalt); }
.faq__nav a { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--f-display); font-weight: 600; text-decoration: none; }
.faq__nav a span { font-family: var(--f-mono); font-size: .68rem; color: var(--ember); padding-top: 4px; }
.faq__group { margin-bottom: 40px; scroll-margin-top: 140px; }
.faq__h { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 50px); align-items: start; }
.contact__cards { display: grid; gap: 14px; }
.contact-card { display: flex; flex-direction: column; gap: 2px; padding: 20px 22px; background: var(--basalt); color: var(--bone); text-decoration: none; border-radius: 4px; transition: background .25s; }
a.contact-card:hover { background: var(--ember); color: var(--chalk); }
.contact-card__label { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash-2); }
a.contact-card:hover .contact-card__label { color: var(--chalk); }
.contact-card__value { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.25rem, 2.3vw, 1.7rem); letter-spacing: -.02em; overflow-wrap: anywhere; }
.contact-card__value--sm { font-size: 1.15rem; line-height: 1.3; }
.contact-card__note { font-size: .92rem; opacity: .75; }
.contact__pic { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 0 0 140px 0; }
.contact__pic img { width: 100%; height: 100%; object-fit: cover; }
.contact__form .btn { margin-top: 4px; }

/* ---------- sitemap ---------- */
.map { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 50px); }
.map__h { font-size: 1.2rem; margin: 26px 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--basalt); }
.map__col > .map__h:first-child { margin-top: 0; }
.map ul { list-style: none; margin: 0; padding: 0; }
.map li { padding: 5px 0; border-bottom: 1px dashed var(--line); display: flex; justify-content: space-between; gap: 10px; }
.map a { text-decoration: none; }
.map a:hover { text-decoration: underline; }
.map__n { font-family: var(--f-mono); font-size: .75rem; color: var(--ash); }

/* ---------- legal ---------- */
.legal { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); gap: clamp(24px, 5vw, 70px); align-items: start; }
.legal__side { position: sticky; top: 140px; display: grid; gap: 30px; max-height: calc(100vh - 160px); overflow-y: auto; }
.legal__docs { display: grid; border-top: 2px solid var(--basalt); }
.legal__docs .kicker { margin: 10px 0 6px; }
.legal__docs a { padding: 9px 0; border-bottom: 1px solid var(--line); font-family: var(--f-display); font-weight: 600; text-decoration: none; }
.legal__docs a[aria-current="page"] { color: var(--ember-deep); }
.legal__docs a[aria-current="page"]::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--ember); margin-right: 8px; transform: rotate(45deg); translate: 0 -2px; }
.legal__toc ol { margin: 0; padding-left: 1.9em; font-size: .95rem; }
.legal__toc li { padding: 3px 0; }
.legal__toc a { text-decoration: none; }
.legal__toc a:hover { text-decoration: underline; }
.legal__title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.045em; margin-bottom: 8px; }
.legal__updated { font-family: var(--f-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; padding: 8px 12px; background: var(--bone-2); display: inline-block; }
.legal__summary { font-size: 1.25rem; font-style: italic; padding: 18px 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); margin: 20px 0 10px; }
.legal__doc section { scroll-margin-top: 140px; }
.legal__doc h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.legal__doc h2 span { font-family: var(--f-mono); font-size: .8rem; color: var(--ember); vertical-align: middle; margin-right: 6px; }
.legal__contact { margin-top: 40px; padding: 22px; background: var(--basalt); color: var(--bone); }
.legal__contact h2 { margin-top: 0 !important; }
.legal__contact a { color: var(--saffron); }

/* ---------- error ---------- */
.oops__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 5vw, 60px); align-items: center; }
.oops__code { font-family: var(--f-display); font-weight: 800; font-size: clamp(5rem, 16vw, 12rem); line-height: .8; letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 2px var(--ember); margin: 0 0 20px; }
.oops__msg { font-size: 1.2rem; color: var(--basalt-3); margin-top: 14px; }
.oops__links { font-family: var(--f-mono); font-size: .8rem; text-transform: uppercase; }
.oops__pic { margin: 0; aspect-ratio: 1; border-radius: 50%; overflow: hidden; }
.oops__pic img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- footer ---------- */
.foot { background: var(--basalt); color: var(--bone); margin-top: 0; overflow: hidden; }
.foot a { color: var(--bone); text-decoration: none; }
.foot a:hover { color: var(--saffron); }
.foot__grid { display: grid; grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1fr)) minmax(0, 1.5fr); gap: clamp(22px, 3vw, 44px); padding-block: clamp(46px, 6vw, 80px) 20px; }
.foot__pitch { font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; line-height: 1.2; letter-spacing: -.02em; max-width: 24rem; }
.foot__seek { display: flex; border-bottom: 1px solid var(--bone); max-width: 360px; margin-top: 18px; }
.foot__seek input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--bone); padding: 10px 0; outline: none; }
.foot__seek input::placeholder { color: var(--ash-2); }
.foot__seek button { background: none; border: 0; color: var(--saffron); font-family: var(--f-mono); font-size: .75rem; text-transform: uppercase; cursor: pointer; }
.foot__h { font-family: var(--f-mono); font-weight: 400; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ash-2); margin-bottom: 14px; }
.foot__col ul { list-style: none; margin: 0; padding: 0; }
.foot__col li { padding: 4px 0; }
.foot__contact { display: flex; flex-direction: column; gap: 6px; }
.foot__contact span { color: #cfc7b8; font-size: .98rem; }
.foot__hours { font-family: var(--f-mono); font-size: .72rem !important; color: var(--ash-2) !important; }
.foot__word { font-family: var(--f-display); font-weight: 800; font-size: clamp(4rem, 19.5vw, 19rem); line-height: .78; letter-spacing: -.06em; text-align: center; margin: 10px 0 -0.08em; color: transparent; -webkit-text-stroke: 1px rgba(242, 237, 227, .22); white-space: nowrap; user-select: none; }
.foot__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 18px 26px; border-top: 1px solid var(--line-light); font-family: var(--f-mono); font-size: .7rem; color: var(--ash-2); }
.foot__base p { margin: 0; }
.foot__base nav { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- cookie consent ---------- */
.consent { position: fixed; left: 16px; bottom: 16px; z-index: 85; display: flex; align-items: center; gap: 16px; max-width: min(620px, calc(100vw - 32px)); padding: 14px 14px 14px 18px; background: var(--chalk); color: var(--basalt); border: 1px solid var(--basalt); box-shadow: 8px 8px 0 var(--basalt); }
.consent__text { margin: 0; font-size: .95rem; line-height: 1.4; }
.consent__text a { white-space: nowrap; }
.consent__btn { flex: 0 0 auto; white-space: nowrap; min-height: 44px; padding: 0 20px; border: 0; background: var(--basalt); color: var(--bone); font-family: var(--f-mono); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.consent__btn:hover { background: var(--ember); }

/* ---------- motion ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .foot__grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot__intro { grid-column: 1 / -1; }
  .index-nav__aside { display: none; }
  .specimen-grid--four, .tag-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-row { grid-template-columns: repeat(5, auto); }
  .spec-row__actions { grid-column: 1 / -1; justify-content: flex-start; padding-top: 0 !important; }
}
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento .specimen--feature { grid-row: auto; }
  .bento .specimen--feature .specimen__media { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
  .weeknight { grid-template-columns: 1fr; }
  .weeknight .section-head { position: static; }
  .result-list { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr 1fr; }
  .plan--free { grid-column: 1 / -1; }
  .values, .perks, .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(6, 1fr); }
  .mosaic__cell--1, .mosaic__cell--3, .mosaic__cell--7 { grid-column: span 3; grid-row: span 2; }
  .mosaic__cell--2, .mosaic__cell--4, .mosaic__cell--5, .mosaic__cell--6, .mosaic__cell--8 { grid-column: span 3; grid-row: span 1; }
  .mosaic__label { grid-column: span 3; }
}
@media (max-width: 900px) {
  .masthead__row { grid-template-columns: auto auto; row-gap: 10px; }
  .seek { grid-column: 1 / -1; grid-row: 2; max-width: none; }
  .seek__kbd { display: none; }
  .index-nav { display: none; }
  .burger { display: inline-grid; }
  .tool-link span, .cart-pill__label { display: none; }
  .cart-pill { padding: 7px; }
  .ledger-hero__grid, .folio__grid, .supply-hero__grid, .members-hero__grid, .recipe-head__grid, .recipe-body, .item, .cart, .checkout, .gate, .about-split, .contact, .faq, .legal, .oops__grid, .band-ember__grid, .lead-story { grid-template-columns: 1fr; }
  .cores { height: 360px; }
  .ledger-stats { grid-template-columns: repeat(2, 1fr); }
  .ledger-stats div:nth-child(2) { border-right: 0; }
  .ledger-stats div:nth-child(3) { padding-left: 0; }
  .ledger-stats div:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .kitchen-index { grid-template-columns: 1fr; }
  .kitchen-index__peek { display: none; }
  .dispatch { grid-template-columns: 80px minmax(0, 1fr); }
  .dispatch__pic { grid-column: 1 / -1; order: -1; border-radius: 12px; aspect-ratio: 16 / 9; }
  .mise, .item__media, .receipt--sticky, .faq__nav, .legal__side { position: static; max-height: none; }
  .specimen--row { flex-direction: column; }
  .specimen--row .specimen__media { flex: none; aspect-ratio: 16 / 10; min-height: 0; }
  .gate { min-height: 0; }
  .gate__art { min-height: 220px; }
  .members-hero__media { max-width: 420px; }
  .plan--best { transform: none; }
  .contact-sheet { grid-template-columns: 1fr; }
  .story-row, .map { grid-template-columns: 1fr; }
  .ledger-cards { grid-template-columns: 1fr; }
  .job__summary { grid-template-columns: 1fr 34px; }
  .job__title { grid-column: 1; }
  .job__meta { grid-column: 1; }
  .job__toggle { grid-column: 2; grid-row: 1 / span 4; align-self: center; }
  .job__cols { grid-template-columns: 1fr; }
  .folio__banner, .folio__banner--solo { border-radius: 14px; }
  .tickets { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .spec-row { grid-template-columns: repeat(3, 1fr); }
  .spec-row > div { margin-right: 0; padding-right: 10px; padding-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  body { font-size: 1.06rem; }
  .brand__sub { display: none; }
  .brand__word { font-size: 1.35rem; }
  .bento, .specimen-grid--four, .tag-grid--four, .plans, .values, .perks, .promise__grid, .tickets { grid-template-columns: 1fr; }
  .bento .specimen--feature { grid-column: auto; grid-row: auto; }
  .bento .specimen--feature .specimen__media { min-height: 240px; }
  .specimen-grid { grid-template-columns: 1fr; }
  .tag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .tag-card__body { padding: 20px 12px 12px; }
  .tag-card__name { font-size: .98rem; }
  .tag-card__foot { flex-direction: column; align-items: stretch; }
  .cores { grid-template-columns: 1.3fr 1fr; height: 300px; }
  .core--c { display: none; }
  .hero-seek { flex-direction: column; background: transparent; padding: 0; gap: 8px; }
  .hero-seek input { background: var(--chalk); border-radius: var(--radius); padding: 14px; }
  .hero-seek--light input { border: 1px solid var(--line-strong); }
  .hero-seek--light { border: 0; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .arrow-link { justify-self: start; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic__cell--1, .mosaic__cell--2, .mosaic__cell--3, .mosaic__cell--4, .mosaic__cell--5, .mosaic__cell--6, .mosaic__cell--7, .mosaic__cell--8 { grid-column: span 1; grid-row: span 1; }
  .mosaic__label { grid-column: 1 / -1; }
  .field-row, .field-row--3 { grid-template-columns: 1fr; gap: 0; }
  .cart-line { grid-template-columns: 72px minmax(0, 1fr); }
  .cart-line img { width: 72px; height: 72px; }
  .cart-line .qty, .cart-line__total { grid-column: 2; justify-self: start; text-align: left; }
  .listing-bar { flex-direction: column; align-items: stretch; }
  .sieve { display: grid; grid-template-columns: 1fr 1fr; }
  .sieve select { width: 100%; }
  .probe__form { flex-direction: column; }
  .probe__go { align-self: stretch; }
  .item__buy { flex-direction: column; }
  .qty { align-self: flex-start; }
  .item__details div { grid-template-columns: 1fr; gap: 2px; }
  .slip__top { grid-template-columns: 1fr; }
  .ledger-card__rows { grid-template-columns: 1fr; }
  .pager { justify-content: center; }
  .pager__num:not(.is-current) { display: none; }
  .foot__grid { grid-template-columns: 1fr; }
  .consent { flex-direction: column; align-items: stretch; left: 12px; right: 12px; bottom: 12px; max-width: none; box-shadow: 5px 5px 0 var(--basalt); }
  .consent__btn { align-self: flex-end; }
  .dispatch { grid-template-columns: 1fr; gap: 10px; }
  .dispatch__date { font-size: 1.1rem; display: flex; gap: 8px; align-items: baseline; }
  .dispatch__date span { margin: 0; }
  .spec-row { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 56px 1fr; gap: 10px; }
  .vault__panel { box-shadow: 6px 6px 0 var(--ember); }
  .folio__art { grid-template-columns: 1fr; }
  .folio__thumbs { display: none; }
  .folio__kitchens { columns: 1; }
  .about-hero__card::before { left: 0; width: 100%; }
}

/* ---------- print (recipe cards) ---------- */
@media print {
  .masthead, .strata, .foot, .consent, .toast, .kitchen-rail, .spec-row__actions, .section--panel, .steps__hint, .contact-sheet, .drawer { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .recipe-head__grid, .recipe-body { grid-template-columns: 1fr 1fr; }
  .recipe-head__img { max-height: 240px; clip-path: none; }
  .mise { position: static; }
  .step { break-inside: avoid; padding: 8px 0; }
  .step__no { font-size: 1.6rem; color: #000; }
}
