/* ============================================================
   Platewise "Mise" design system
   Drafted 2026-09-05 as the rethink of the dark-editorial app.

   This file is the source of truth for the look. It is served at
     platewise.ai/assets/mise.css
     platewise-content/static/assets/mise.css
   Any page in any Platewise repo links it (or copies the :root
   block into its own tokens file) and writes markup against the
   classes below rather than re-declaring styles. The living kit,
   which shows every class in use, is at
     platewise.ai/preview/design/kit.html
     platewise-content/static/preview/design/kit.html

   Mise, as in mise en place: everything measured and in its
   place before the heat goes on. That is what a design system
   is for a product.

   The one structural idea: two grounds, chosen by what the
   person is doing, never by a theme toggle.
     porcelain  - reading: feed, recipes, chat, marketing, SEO pages
     cast iron  - cooking: the cook screen, the phone propped by the stove
   Components are written once against tokens; a `.range` wrapper
   remaps the tokens to the iron ground so the same markup works
   in both places.
   ============================================================ */

:root {
  /* Neutrals. Porcelain is a cool off-white, deliberately not cream:
     food photography sits on a white plate, and a yellow ground
     makes every dish look a day old. */
  --porcelain:     #f4f2ec;
  --glaze:         #e9e6de;
  --white:         #ffffff;
  --ink:           #1f1d1a;
  --ink-70:        #5c5851;
  --ink-55:        #6e6960;

  /* Cast iron: the cooking ground and every dark surface. */
  --iron:          #1f1d1a;
  --iron-raised:   #2a2825;
  --iron-overlay:  #37342f;
  --cream:         #f6f1e7;
  --cream-70:      #b9b3a7;

  /* Saffron: the accent. Fills, the flame in the mark, the COOK
     button. Text-on-porcelain uses the 700 step, never the base. */
  --saffron-100:   #fdf3dc;
  --saffron-200:   #fbe4b0;
  --saffron-300:   #f6cf76;
  --saffron:       #e39b1e;
  --saffron-600:   #c48210;
  --saffron-700:   #8c5a05;
  --saffron-800:   #6b4405;

  /* Flame: the secondary. The gas ring is blue, and so is
     everything that talks back: links, focus, the voice orb. */
  --flame-100:     #e8f0fb;
  --flame-200:     #cfdff6;
  --flame-300:     #a9c4ec;
  --flame:         #2f63b0;
  --flame-600:     #27529a;
  --flame-700:     #1f4280;
  --flame-800:     #183262;

  /* Status. Reserved meanings, never decoration, never a chart series.
     Herb = fits your diet / done. Chili = allergen / error. */
  --herb:          #33702f;
  --herb-100:      #e6f2e2;
  --chili:         #b7321f;
  --chili-100:     #fbe7e4;

  /* Semantic aliases. Components use these; the .range scope
     remaps them. Do not use the raw names above in components. */
  --bg:            var(--porcelain);
  --surface:       var(--glaze);
  --card:          var(--white);
  --text:          var(--ink);
  --text-2:        var(--ink-70);
  --text-3:        var(--ink-55);
  --link:          var(--flame);
  --link-hover:    var(--flame-700);
  --accent-text:   var(--saffron-700);
  --divider:       color-mix(in srgb, var(--ink) 14%, transparent);
  --hairline:      color-mix(in srgb, var(--ink) 8%, transparent);
  --focus:         var(--flame);

  --display: "Young Serif", "Iowan Old Style", Georgia, serif;
  --body:    "Atkinson Hyperlegible Next", "Atkinson Hyperlegible", system-ui, sans-serif;
  --mono:    "Atkinson Hyperlegible Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px color-mix(in srgb, var(--ink) 10%, transparent);
  --shadow-md: 0 4px 14px color-mix(in srgb, var(--ink) 12%, transparent);

  --shell: 1400px;
  --app:   480px;
  --pad:   clamp(20px, 4vw, 56px);
  --sec-gap: clamp(40px, 4.6vw, 70px);

  /* Kitchen scale. The couch context is 1; the cook screen sets
     data-context="kitchen" and everything sized in --scale grows. */
  --scale: 1;
  --touch: 44px;
}

/* The cook ground. Wrap anything in .range (or set data-ground="iron")
   and the aliases flip; components inside need no dark variants. */
.range, [data-ground="iron"] {
  --bg:          var(--iron);
  --surface:     var(--iron-raised);
  --card:        var(--iron-raised);
  --text:        var(--cream);
  --text-2:      var(--cream-70);
  --text-3:      color-mix(in srgb, var(--cream) 55%, transparent);
  --link:        var(--flame-300);
  --link-hover:  var(--flame-200);
  --accent-text: var(--saffron-300);
  --divider:     color-mix(in srgb, var(--cream) 16%, transparent);
  --hairline:    color-mix(in srgb, var(--cream) 9%, transparent);
  --focus:       var(--saffron);
  background: var(--bg); color: var(--text);
}
[data-context="kitchen"] { --scale: 1.25; --touch: 56px; }

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--body); font-size: calc(15.5px * var(--scale)); line-height: 1.55;
  text-wrap: pretty; -webkit-font-smoothing: antialiased;
}
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--saffron) 35%, transparent); }
img { display: block; max-width: 100%; }
[id] { scroll-margin-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ── Type ──────────────────────────────────────────────────── */
h1, h2, h3, .display {
  font-family: var(--display); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.012em; margin: 0; text-wrap: balance;
}
h1 { font-size: clamp(36px, 4.4vw, 60px); line-height: 1.04; max-width: 16ch; }
h2 { font-size: clamp(25px, 2.7vw, 34px); line-height: 1.14; }
h2.lg { font-size: clamp(28px, 3.2vw, 44px); }
h3 { font-size: calc(23px * var(--scale)); line-height: 1.2; }
h3.sm { font-size: calc(19px * var(--scale)); }
p { margin: 0; }
.muted { color: var(--text-2); }
.faint { color: var(--text-3); }
.lede { font-size: 17.5px; line-height: 1.6; max-width: 52ch; }
.body { font-size: 16px; line-height: 1.65; max-width: 58ch; }
.kicker {
  display: block; font-size: 12.5px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700; color: var(--accent-text);
}
.kicker-2 { color: var(--link); }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
code { font-family: var(--mono); font-size: 0.92em; background: var(--surface); padding: 1px 6px; border-radius: 5px; }

/* ── Layout ────────────────────────────────────────────────── */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.reader { max-width: 720px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.sec { padding-top: var(--sec-gap); }
.split { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.two { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 18px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
@media (max-width: 760px) { .two { grid-template-columns: minmax(0, 1fr); } }

/* The app shell: one phone-width column, tab bar pinned to the bottom. */
.app {
  max-width: var(--app); margin: 0 auto; min-height: 100dvh;
  background: var(--bg); color: var(--text); position: relative;
  display: flex; flex-direction: column;
}
.app-body { flex: 1; overflow-y: auto; padding: 16px; padding-bottom: 96px; }
.tabbar {
  display: flex; justify-content: space-around; align-items: flex-end;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--divider);
  padding: 8px 0; padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: none; border: 0; cursor: pointer; padding: 8px 12px;
  min-width: var(--touch); color: var(--text-3); font: inherit;
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none;
}
.tab svg { width: 22px; height: 22px; }
.tab.active { color: var(--text); }
.tab.cook {
  background: var(--saffron); color: var(--ink); border-radius: 50%;
  padding: 16px; margin-top: -26px; gap: 0;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--saffron) 40%, transparent);
}
.tab.cook svg { width: 26px; height: 26px; }
.tab.cook span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ── Buttons, chips, tags ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-size: calc(15.5px * var(--scale)); font-weight: 700;
  min-height: var(--touch); padding: 0 24px; border-radius: 999px; border: 0;
  cursor: pointer; text-decoration: none; transition: background .15s, color .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--saffron); color: var(--ink); }
.btn-primary:hover { background: var(--saffron-600); color: var(--ink); }
.btn-secondary { background: transparent; color: var(--text); border: 1.5px solid color-mix(in srgb, var(--text) 24%, transparent); }
.btn-secondary:hover { background: var(--surface); color: var(--text); }
.btn-voice { background: var(--flame); color: #fff; }
.btn-voice:hover { background: var(--flame-600); color: #fff; }
.btn-quiet { background: transparent; color: var(--link); padding: 0 12px; }
.btn-sm { min-height: 36px; font-size: 14px; padding: 0 16px; }
.btn-lg { min-height: 56px; font-size: 17px; padding: 0 32px; }

.pill {
  display: inline-block; font-size: 12.5px; letter-spacing: 0.07em; text-transform: uppercase;
  font-weight: 700; color: var(--saffron-800); background: var(--saffron-100);
  padding: 7px 14px; border-radius: 999px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px; background: var(--card);
  border: 1px solid var(--divider); border-radius: 999px; padding: 8px 14px;
  font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer;
}
.chip.on { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chip.off { text-decoration: line-through; color: var(--text-3); }
.range .chip.on { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* Diet tags are herb, always, so the reader learns one colour means
   "this fits me". Allergens are chili and never appear without the icon. */
.tag {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.tag-diet { background: var(--herb-100); color: var(--herb); }
.tag-time { background: var(--surface); color: var(--text-2); }
.tag-remix { background: var(--saffron-100); color: var(--saffron-800); }
.tag-source { background: var(--flame-100); color: var(--flame-700); }
.range .tag-diet { background: color-mix(in srgb, var(--herb) 28%, transparent); color: #bfe3b8; }
.range .tag-time { background: var(--iron-overlay); color: var(--cream-70); }
.range .tag-remix { background: color-mix(in srgb, var(--saffron) 24%, transparent); color: var(--saffron-300); }
.range .tag-source { background: color-mix(in srgb, var(--flame) 30%, transparent); color: var(--flame-200); }
.allergen {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700;
  color: var(--chili); background: var(--chili-100); border: 1px solid color-mix(in srgb, var(--chili) 30%, transparent);
  border-radius: var(--radius-sm); padding: 7px 12px;
}
.allergen svg { width: 16px; height: 16px; flex: none; }
.range .allergen { background: color-mix(in srgb, var(--chili) 22%, transparent); color: #ffb3a8; border-color: color-mix(in srgb, #ffb3a8 40%, transparent); }

/* ── Surfaces ──────────────────────────────────────────────── */
.card {
  background: var(--card); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.panel {
  background: var(--card); border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 32px); box-shadow: var(--shadow-md);
}
.sheet {
  background: var(--card); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 12px 20px 28px; box-shadow: 0 -8px 30px color-mix(in srgb, var(--ink) 18%, transparent);
}
.sheet::before { content: ""; display: block; width: 36px; height: 4px; border-radius: 2px; background: var(--divider); margin: 0 auto 16px; }
.hr { height: 1px; background: var(--divider); border: 0; margin: 0; }
.banner {
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600;
  background: var(--surface); color: var(--text-2); padding: 9px 14px; border-radius: var(--radius-sm);
}
.banner.offline { background: var(--saffron-100); color: var(--saffron-800); }

/* ── Forms ─────────────────────────────────────────────────── */
.field {
  width: 100%; min-height: var(--touch); padding: 10px 14px; font: inherit; color: var(--text);
  background: var(--card); border: 1.5px solid var(--divider); border-radius: var(--radius-sm);
}
.field::placeholder { color: var(--text-3); }
.field:focus { outline: none; border-color: var(--focus); box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 22%, transparent); }
.label { display: block; font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.otp { display: flex; gap: 8px; }
.otp input {
  width: 44px; height: 52px; text-align: center; font-family: var(--mono); font-size: 22px;
  color: var(--text); background: var(--card); border: 1.5px solid var(--divider); border-radius: var(--radius-sm);
}
.otp input:focus { outline: none; border-color: var(--focus); }
.form { display: flex; gap: 10px; flex-wrap: wrap; }
.form .field { flex: 1 1 220px; width: auto; }

/* The status line a form writes its result into. `pw-` prefixed because the
   beta-signup drop-in (snippets/beta-signup.html) carries these class names
   into pages that do not link this file, and they have to mean the same thing
   in both places. */
.pw-status { min-height: 1.4em; font-size: 14.5px; font-weight: 600; color: var(--text-2); }
.pw-status.pw-pending { color: var(--text-3); }
.pw-status.pw-success { color: var(--herb); }
.pw-status.pw-error   { color: var(--chili); }
.range .pw-status.pw-success { color: #bfe3b8; }
.range .pw-status.pw-error   { color: #ffb3a8; }

/* Two rules the signup form depends on. The honeypot is moved off-screen
   rather than display:none, which some bots skip; pw-sr-only is the ordinary
   visually-hidden label utility. */
.pw-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pw-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── Recipe pieces ─────────────────────────────────────────── */
.rc { display: grid; grid-template-rows: auto 1fr; }
/* The whole card as one link, so the target is the card and not just the title.
   The global a:hover underline has to be undone here or it draws across every
   line of the card; the title carries the affordance instead. */
a.rc { color: var(--text); text-decoration: none; }
a.rc:hover { color: var(--text); text-decoration: none; box-shadow: var(--shadow-md); }
a.rc:hover .rc-title { color: var(--link-hover); text-decoration: underline; text-underline-offset: 3px; }
a.rc img { transition: transform .3s ease; }
a.rc:hover img { transform: scale(1.03); }
.rc-img { aspect-ratio: 4 / 3; background: var(--surface); position: relative; overflow: hidden; }
.rc-img img { width: 100%; height: 100%; object-fit: cover; }
.rc-img .tags { position: absolute; left: 10px; bottom: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.rc-body { padding: 12px 14px 14px; display: grid; gap: 6px; }
.rc-title { font-family: var(--display); font-size: calc(18px * var(--scale)); line-height: 1.2; }
.meta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  font-size: 13px; color: var(--text-2); font-weight: 500;
}
.meta b { font-family: var(--mono); font-weight: 500; color: var(--text); }
.meta span { display: inline-flex; align-items: center; gap: 5px; }
.meta svg { width: 14px; height: 14px; opacity: 0.7; }

.ingredients { list-style: none; margin: 0; padding: 0; }
.ingredients li {
  display: grid; grid-template-columns: 8ch minmax(0, 1fr); gap: 12px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid var(--hairline); font-size: calc(15.5px * var(--scale));
}
.ingredients li:last-child { border-bottom: 0; }
.ingredients .qty { font-family: var(--mono); font-variant-numeric: tabular-nums; text-align: right; color: var(--text-2); white-space: nowrap; }
.ingredients .note { color: var(--text-3); font-size: 0.9em; }
.ingredients .swap { color: var(--saffron-700); font-weight: 600; }
.range .ingredients .swap { color: var(--saffron-300); }
.ingredients.check li { grid-template-columns: 24px 8ch minmax(0, 1fr); }
.ingredients.check .box {
  width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--divider); align-self: center;
  display: grid; place-content: center; color: transparent; background: var(--card);
}
.ingredients.check li.done .box { background: var(--herb); border-color: var(--herb); color: #fff; }
.ingredients.check li.done .name { color: var(--text-3); text-decoration: line-through; }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--hairline); font-size: calc(16px * var(--scale)); line-height: 1.5;
}
.steps li::before {
  content: counter(step); font-family: var(--display); font-size: 20px; line-height: 1;
  color: var(--accent-text); padding-top: 2px;
}
.steps li:last-child { border-bottom: 0; }
.steps .t { display: inline-flex; align-items: center; gap: 5px; margin: 0 3px; font-family: var(--mono); font-size: 0.85em; color: var(--flame); background: var(--flame-100); padding: 2px 8px; border-radius: 6px; vertical-align: 1px; }
.range .steps .t { color: var(--flame-200); background: color-mix(in srgb, var(--flame) 30%, transparent); }

/* ── Cook mode ─────────────────────────────────────────────── */
.now-step { display: grid; gap: 14px; }
.now-step .kicker { color: var(--saffron-300); }
.now-step h2 { font-size: calc(26px * var(--scale)); line-height: 1.22; max-width: 26ch; letter-spacing: -0.005em; }
.tracker { display: flex; gap: 5px; }
.tracker i { flex: 1; height: 5px; border-radius: 3px; background: var(--hairline); }
.tracker i.done { background: var(--cream-70); }
.tracker i.now { background: var(--saffron); }
.timers { display: flex; gap: 10px; flex-wrap: wrap; }
.timer {
  display: grid; gap: 2px; min-width: 132px; padding: 12px 14px; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--divider);
}
.timer b { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: calc(28px * var(--scale)); font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.timer span { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.timer.hot { border-color: var(--saffron); }
.timer.hot b { color: var(--saffron-300); }
.timer.done { border-color: var(--herb); background: color-mix(in srgb, var(--herb) 22%, transparent); }
.timer.done b { color: #bfe3b8; }
.orb {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-content: center;
  background: var(--flame); color: #fff; position: relative;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--flame) 45%, transparent);
}
.orb svg { width: 26px; height: 26px; }
.orb.listening { animation: orb-pulse 1.6s ease-out infinite; }
.orb.speaking { background: var(--saffron); color: var(--ink); }
.orb.thinking { background: var(--iron-overlay); color: var(--cream-70); }
.orb.thinking::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--flame-300); animation: orb-spin 1s linear infinite; }
@keyframes orb-pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--flame) 45%, transparent); } 100% { box-shadow: 0 0 0 22px transparent; } }
@keyframes orb-spin { to { transform: rotate(360deg); } }
.orb-row { display: flex; align-items: center; gap: 16px; }
.orb-row p { font-size: 15px; color: var(--text-2); max-width: 30ch; }
.toast {
  display: inline-flex; align-items: center; gap: 10px; background: var(--cream); color: var(--ink);
  padding: 10px 14px; border-radius: 999px; box-shadow: var(--shadow-md); font-size: 14px; font-weight: 600;
}
.toast .arrow { color: var(--saffron-700); }
.toast s { color: var(--ink-55); }

/* ── Chat and remixes ──────────────────────────────────────── */
.thread { display: grid; gap: 10px; }
.bubble { max-width: 80%; padding: 11px 15px; border-radius: 18px; font-size: 15.5px; line-height: 1.45; }
.bubble.me { justify-self: end; background: var(--ink); color: var(--cream); border-bottom-right-radius: 6px; }
.bubble.pw { justify-self: start; background: var(--card); color: var(--text); border-bottom-left-radius: 6px; box-shadow: var(--shadow-sm); }
.range .bubble.me { background: var(--cream); color: var(--ink); }
.remix { border: 1.5px solid var(--saffron-300); border-radius: var(--radius-md); padding: 14px 16px; display: grid; gap: 10px; background: var(--card); }
.remix .diff { display: grid; gap: 4px; font-size: 14.5px; }
.remix .diff s { color: var(--text-3); }
.remix .diff b { color: var(--saffron-700); font-weight: 600; }

/* ── Marketing ─────────────────────────────────────────────── */
.nav { display: flex; align-items: center; gap: 22px; padding: 18px 0; flex-wrap: wrap; }
.nav .grow { flex: 1; }
.nav a:not(.btn) { color: var(--text); font-weight: 600; font-size: 14.5px; }
.foot { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; border-top: 1px solid var(--divider); padding-top: 22px; font-size: 14px; color: var(--text-2); }
.cta {
  background: var(--iron); color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px); display: grid; gap: 18px;
}
.prose { font-size: 16.5px; line-height: 1.7; color: color-mix(in srgb, var(--text) 86%, transparent); max-width: 62ch; }
.prose p + p { margin-top: 1em; }
.stamp { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--text-3); }

/* ── Logo ──────────────────────────────────────────────────── */
.logo { display: inline-flex; align-items: center; gap: 0.36em; font-family: var(--display); font-size: 24px; letter-spacing: -0.015em; color: var(--text); line-height: 1; text-decoration: none; }
.logo:hover { text-decoration: none; color: var(--text); }
.logo svg { width: 1.25em; height: 1.25em; flex: none; }
.mark-ring { fill: none; stroke: currentColor; }
.mark-flame { fill: var(--saffron); }
.mark-flame-in { fill: var(--bg); }
.logo.mono .mark-flame { fill: currentColor; }
