/* ============================================================
   Whyte Ave Café — main.css
   Theme:  Greenhouse (saturated forest-green + warm bone + ochre)
   Type:   Bitter (display slab) + Source Sans 3 (body) +
           IBM Plex Mono (kickers / prices / labels)
   Ported from the Claude Design export (_unpacked/_template.html)
   with local font paths, dropped weights, and kept token names.
   ============================================================ */

/* ---------- @font-face (self-hosted, 5 files total) ---------- */
@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/bitter/bitter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/bitter/bitter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3/source-sans-3-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3/source-sans-3-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
}

/* ============================================================
   Whyte Ave Café — design tokens  ·  "Greenhouse" theme
   Saturated forest-green ground · warm bone type · ochre accent
   (Deliberately distinct from the other demo sites.)
   Token NAMES are kept stable; only their values change.
   ============================================================ */

:root {
  /* --- field: the green is the brand --- */
  --cream:        #2f4a3a;   /* page ground            (was warm cream) */
  --cream-2:      #294030;   /* alt band / hover / sheet              */
  --paper:        #3d5b49;   /* raised panel · cards · pills · chips   */
  --field-deep:   #1e3026;   /* footer + quote band (deepest)          */

  /* --- bone: text + light marks on the field --- */
  --ink:          #f2ebd9;   /* primary text / headings (bone)         */
  --ink-soft:     #c4cdb8;   /* secondary text                         */
  --ink-faint:    #909b86;   /* tertiary / captions                    */
  --line:         #46624f;   /* hairlines on field                     */
  --line-soft:    #3a5443;

  /* --- accent (default ochre). deep = brighter for dark bg --- */
  --accent:       #e2a544;
  --accent-deep:  color-mix(in oklab, var(--accent) 74%, #fff);
  --accent-tint:  color-mix(in oklab, var(--accent) 22%, var(--cream));
  --on-accent:    #243a2d;   /* deep green — text on the ochre fill     */

  /* --- type --- */
  --font-head: "Bitter", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* --- shape (sharp) --- */
  --radius:       3px;
  --radius-sm:    2px;
  --radius-lg:    5px;

  /* --- depth (cool green-black shadows) --- */
  --shadow-sm: 0 1px 2px rgba(8,16,11,.22), 0 3px 12px rgba(8,16,11,.18);
  --shadow-md: 0 6px 18px rgba(8,16,11,.28), 0 18px 46px rgba(8,16,11,.24);

  /* --- layout --- */
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* eyebrow / kicker */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 13px 22px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  line-height: 1; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* status pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 7px 14px 7px 12px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); white-space: nowrap;
}
.pill.compact { font-size: 13px; padding: 5px 12px 5px 10px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.dot.open { background: #8fd29a; box-shadow: 0 0 0 4px rgba(143,210,154,.20); }

::selection { background: var(--accent-tint); color: var(--ink); }

/* ============================================================
   Whyte Ave Café — layout & components
   ============================================================ */

#root, .site { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* page transition — base state is visible; motion is enhancement only. */
@keyframes pageIn { from { transform: translateY(10px); } to { transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .page-enter { animation: pageIn .4s ease both; }
}

/* ---------------- photo placeholder / image ---------------- */
.imgph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: repeating-linear-gradient(135deg,
              var(--cream-2) 0 11px, var(--paper) 11px 22px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.imgph--3-4   { aspect-ratio: 3 / 4;   }
.imgph--4-3   { aspect-ratio: 4 / 3;   }
.imgph--1-1   { aspect-ratio: 1 / 1;   }
.imgph--16-9  { aspect-ratio: 16 / 9;  }
.imgph--21-9  { aspect-ratio: 21 / 9;  }
.imgph--full  { aspect-ratio: auto; height: 100%; }
.imgph--square { aspect-ratio: 1 / 1; }
.imgph--no-radius { border-radius: 0; }

.imgph-label {
  position: relative;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em;
  color: var(--ink-faint); background: var(--paper);
  padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line);
  text-align: center; max-width: 82%;
}
.imgph-fill {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.imgph:has(.imgph-fill) .imgph-label {
  display: none;
}
.imgph:has(.imgph-fill) {
  background: var(--cream-2);
}

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--cream) 86%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; cursor: pointer; }
.brand-mark {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--accent); color: var(--on-accent);
  font-family: var(--font-head); font-size: 20px; font-weight: 600;
  display: grid; place-items: center; flex: none;
}
.brand-name { font-family: var(--font-head); font-size: 21px; font-weight: 500; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 16px;
  padding: 9px 14px; border-radius: var(--radius-sm); transition: color .15s, background .15s; cursor: pointer;
}
.nav-link:hover { color: var(--ink); background: var(--cream-2); }
.nav-link.active { color: var(--accent-deep); }
.nav-cta { margin-left: 8px; font-size: 15px; padding: 10px 16px; white-space: nowrap; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-status { display: inline-flex; }
.nav-burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------------- hero: split ---------------- */
.hero-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 6vw, 88px);
}
.hs-text { display: flex; flex-direction: column; align-items: flex-start; }
.hs-name { font-size: clamp(40px, 6vw, 76px); margin-top: 22px; }
.hs-tagline { font-size: clamp(19px, 2.4vw, 24px); color: var(--ink-soft); margin-top: 16px; max-width: 460px; }
.hs-special { margin-top: 26px; max-width: 420px; }
.hs-ctas { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hs-photo { height: clamp(420px, 56vw, 560px); }
.hs-photo .imgph { height: 100%; }

/* today's special card */
.special-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.special-card .kicker { margin-bottom: 8px; }
.special-card .special-name {
  font-family: var(--font-head); font-size: 23px; line-height: 1.15; margin-bottom: 6px;
  color: var(--ink);
}
.special-card .special-note { color: var(--ink-soft); font-size: 16px; }

/* ---------------- bands / sections ---------------- */
.band { padding: clamp(40px, 6vw, 76px) 0; background: var(--cream-2); border-block: 1px solid var(--line-soft); }
.band-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.band-head-cta { white-space: nowrap; }

.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hl-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.hl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hl-body { padding: 16px 18px 20px; }
.hl-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.hl-name { font-size: 21px; }
.hl-note { color: var(--ink-soft); font-size: 15.5px; margin-top: 6px; }
.price { font-family: var(--font-mono); font-size: 15px; font-weight: 500; color: var(--accent-deep); }

/* room note */
.room-note { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; padding: clamp(48px, 7vw, 96px) var(--gutter); }
.rn-lede { margin-top: 18px; font-size: 19px; color: var(--ink-soft); }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--accent-deep); font-weight: 600; text-decoration: none; cursor: pointer; }
.link-arrow:hover { gap: 11px; transition: gap .15s; }

/* quote */
.quote-band { background: var(--field-deep); color: var(--ink); padding: clamp(56px, 8vw, 104px) 0; }
.quote-band blockquote { margin: 0; max-width: 880px; }
.quote-band blockquote p { font-family: var(--font-head); font-size: clamp(26px, 3.6vw, 40px); line-height: 1.28; letter-spacing: -.01em; }
.quote-band footer { margin-top: 26px; color: rgba(251,247,238,.66); font-size: 17px; }
.quote-band footer span { color: rgba(251,247,238,.45); }

/* find us */
.find-us { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: stretch; padding-block: clamp(48px, 7vw, 96px); }
.fu-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.fu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 30px; }
.fu-address { font-size: 18px; }
.fu-label { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.fu-label + .fu-label { margin-top: 22px; }
.fu-phone { font-family: var(--font-head); font-size: 26px; color: var(--ink); text-decoration: none; }
.fu-phone:hover { color: var(--accent-deep); }
.fu-map { height: 100%; min-height: 280px; }
.fu-cta { margin-top: 22px; }

/* ---------------- page head ---------------- */
.page-head { padding: clamp(40px, 6vw, 72px) var(--gutter) clamp(24px, 3vw, 36px); }
.page-head h1 { font-size: clamp(36px, 5vw, 60px); margin-top: 10px; }
.page-note { margin-top: 18px; max-width: 640px; font-size: 19px; color: var(--ink-soft); }

/* ---------------- menu ---------------- */
.menu-jump { display: flex; flex-wrap: wrap; gap: 9px; padding-bottom: 12px; position: sticky; top: 70px; z-index: 20; background: var(--cream); padding-top: 14px; border-bottom: 1px solid var(--line-soft); }
.chip { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; transition: all .15s; }
.chip:hover { color: var(--accent-deep); border-color: var(--accent); }

.menu-sections { padding-block: clamp(28px, 4vw, 48px); }
.menu-sec { padding: clamp(26px, 3vw, 40px) 0; border-top: 1px solid var(--line-soft); }
.menu-sec:first-child { border-top: none; }
.menu-sec-head { margin-bottom: 22px; }
.menu-sec-head h2 { font-size: clamp(24px, 3vw, 32px); }
.menu-sec-note { margin-top: 8px; color: var(--ink-soft); font-style: italic; font-size: 17px; }
.menu-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 56px; }
.menu-item { padding: 13px 0; border-bottom: 1px dotted var(--line); }
.mi-main { display: flex; align-items: baseline; gap: 10px; }
.mi-name { font-family: var(--font-head); font-size: 20px; color: var(--ink); white-space: nowrap; flex: none; }
.mi-leader { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); }
.mi-price { font-family: var(--font-mono); font-size: 15px; color: var(--accent-deep); }
.mi-note { color: var(--ink-soft); font-size: 15.5px; margin-top: 3px; max-width: 92%; }
.menu-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: clamp(32px, 5vw, 60px); border-top: 1px solid var(--line-soft); }
.menu-foot p { font-family: var(--font-head); font-size: 22px; }
.menu-foot .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------- about ---------------- */
.about-room { padding-block: clamp(12px, 2vw, 24px) clamp(40px, 6vw, 72px); }
.owners { padding-block: clamp(20px, 3vw, 36px); }
.owners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 44px); margin-top: 34px; }
.owner-card { display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: start; }
.owner-photo { width: 150px; }
.owner-name { font-size: 22px; }
.owner-role { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); margin-top: 6px; }
.owner-bio { color: var(--ink-soft); margin-top: 10px; }

.sourcing { padding-block: clamp(36px, 5vw, 64px); }
.sourcing-card { background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); }
.sourcing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 48px; margin-top: 28px; }
.source-row { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); align-items: baseline; }
.source-row:first-child, .source-row:nth-child(2) { border-top: none; }
.source-what { font-family: var(--font-head); font-size: 19px; width: 96px; flex: none; }
.source-who { color: var(--ink-soft); }
.about-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: clamp(40px, 6vw, 76px); }
.about-cta p { font-size: 22px; font-family: var(--font-head); }
.about-cta .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------- visit ---------------- */
.visit-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 52px); padding-block: clamp(20px, 3vw, 36px); align-items: start; }
.visit-contact { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm); }
.visit-contact p { font-size: 19px; }
.visit-link { color: var(--ink); font-size: 19px; text-decoration: none; border-bottom: 1px solid var(--line); }
.visit-link:hover { color: var(--accent-deep); border-color: var(--accent); }
.visit-sub { color: var(--ink-faint); font-size: 14.5px; margin-top: 4px; }
.visit-callcta { margin-top: 24px; }
.visit-callcta .btn { width: 100%; justify-content: center; }

.visit-hours { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 4vw, 52px); padding-block: clamp(36px, 5vw, 64px); align-items: start; }
.vh-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.visit-facts { display: grid; gap: 10px; }
.fact { padding: 18px 0; border-top: 1px solid var(--line-soft); }
.fact:first-child { border-top: none; padding-top: 0; }
.fact-label { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 19px; margin-bottom: 6px; }
.fact p { color: var(--ink-soft); }

/* ---------------- hours table ---------------- */
.hours {
  width: 100%; border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.hours td { white-space: nowrap; padding: 11px 0; color: var(--ink-soft); font-weight: 500; }
.hours td + td { text-align: right; font-weight: 400; }
.hours tr + tr td { border-top: 1px solid var(--line-soft); }
.hours.tight td { padding: 8px 0; }
.hours .is-today td { color: var(--ink); font-weight: 700 !important; }
.hours .is-today td + td { font-weight: 700; }
.today-badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-deep);
  margin-left: 10px; vertical-align: middle;
}

/* ---------------- footer ---------------- */
.footer { background: var(--field-deep); color: var(--ink); margin-top: clamp(40px, 6vw, 80px); padding-top: clamp(44px, 6vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: clamp(24px, 4vw, 56px); padding-bottom: 44px; }
.footer p, .footer .foot-link { color: rgba(251,247,238,.72); }
.foot-brand { display: flex; flex-direction: column; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-tagline { color: rgba(251,247,238,.66); max-width: 280px; }
.foot-status { margin-top: 16px; }
.foot-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,247,238,.4); margin-bottom: 14px; }
.foot-address { margin-bottom: 14px; }
.foot-link { display: inline-block; text-decoration: none; margin-top: 6px; transition: color .15s; cursor: pointer; }
.foot-link.block { display: block; }
.foot-link:hover { color: var(--ink); }
.foot-nav { display: flex; flex-direction: column; }
.foot-hours { color: rgba(251,247,238,.72); }
.foot-hours .hours td { color: rgba(251,247,238,.72) !important; border-color: rgba(251,247,238,.12) !important; font-weight: 500 !important; }
.foot-hours .hours .is-today td { color: var(--ink) !important; font-weight: 700 !important; }
.footer-base { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid rgba(251,247,238,.14); font-size: 14px; color: rgba(251,247,238,.5); }
.disclaimer { font-family: var(--font-mono); font-size: 12px; color: rgba(251,247,238,.42); }
.credits { display: block; padding-block: 14px; border-top: 1px solid rgba(251,247,238,.10); color: rgba(251,247,238,.45); font-size: 12px; line-height: 1.7; }
.credits a { color: inherit; text-decoration: underline; text-decoration-color: rgba(251,247,238,.2); }

/* ---------------- responsive ---------------- */
@media (max-width: 900px) {
  .hero-split, .room-note, .find-us, .visit-top, .visit-hours { grid-template-columns: 1fr; }
  .hs-photo { height: clamp(300px, 60vw, 420px); }
  .fu-map { min-height: 240px; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-list, .sourcing-grid { grid-template-columns: 1fr; }
  .source-row:nth-child(2) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .owner-card { grid-template-columns: 110px 1fr; }
  .owner-photo { width: 110px; }

  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 20px; gap: 2px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
  .nav-burger { display: flex; }
  .nav-status { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .hl-grid { grid-template-columns: 1fr; }
  .fu-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-jump { top: 70px; }
  .about-cta, .menu-foot, .footer-base { flex-direction: column; align-items: flex-start; }
}

/* Home page — minor additions ported from inline styles */
.special-tag    { margin-bottom: 8px; }
.fu-label-spaced { margin-top: 22px; }

/* Visit page — small ports from inline styles */
.visit-address { font-size: 19px; }
.visit-aside   { color: var(--ink-faint); font-size: 14.5px; margin-top: 4px; }
