:root {
    /* neutral, business-like base */
    --bg: #FBFBFB;
    --ink: #101010;
    --ink-soft: #3C3C3C;
    --ink-faint: #6A6A6A;
    --accent: #E65332;       /* vermilion, used as ink: numerals, arrows, one rule, states */
    --border: #E3E3E3;

    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --serif: var(--sans);    /* kept so nothing breaks; the site is sans-led */

    /* rhythm (unchanged) */
    --gutter: clamp(1.5rem, 4vw, 3.5rem);
    --section-y: clamp(5rem, 8.5vw, 8.5rem);
    --rail: 12rem;
    --rail-gap: clamp(2rem, 4.5vw, 4rem);
    --measure: 60ch;

    /* small labels: normal case, no exaggerated tracking */
    --label-size: 0.82rem;
    --label-track: 0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    font-weight: 400;
    background: var(--bg);
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 17px;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; }
h1, h2, h3, h4 {
    font-family: var(--sans); color: var(--ink);
    font-weight: 600; line-height: 1.08; letter-spacing: -0.02em;
}
b, strong { font-weight: 600; }
em { font-style: italic; color: inherit; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.rule { border: none; border-top: 1px solid var(--border); }

/* small captions: plain typography, readable, no tracking */
.sec-label,
.hero .kicker,
.page .kicker,
.t-label,
.a-row .note,
.stages .tag,
.posts .meta,
.contact-form .field label,
.hero-proof cite,
.a-quote cite,
.about-quote cite,
.t-row cite,
.about-stats div {
    font-size: var(--label-size);
    letter-spacing: var(--label-track);
    text-transform: none;
    line-height: 1.5;
}

/* ── NAV ── */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,251,251,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex; align-items: baseline; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    padding: 1.15rem 0;
}
.brand {
    display: inline-flex; align-items: center; gap: 0.6rem;
    text-decoration: none; color: var(--ink);
    font-family: var(--sans); font-weight: 600;
    font-size: 1.05rem; letter-spacing: -0.022em;
}
.brand img { height: 22px; width: auto; display: block; }
.nav-links { display: flex; gap: clamp(1rem, 1.9vw, 1.9rem); flex-wrap: wrap; }
.nav-links a {
    text-decoration: none; color: var(--ink-soft); font-size: 0.85rem;
    letter-spacing: -0.005em;
    border-bottom: 1px solid transparent; padding-bottom: 2px;
    transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover { color: var(--accent); border-color: var(--accent); }
.nav-links a[aria-current="page"] { color: var(--accent); border-color: var(--accent); }

/* ── HERO ── */
.hero { padding: clamp(4.5rem, 9vw, 8.5rem) 0 clamp(3rem, 5vw, 4.5rem); }
.hero .kicker { color: var(--ink-soft); margin-bottom: clamp(1.4rem, 2.6vw, 2rem); font-size: 0.95rem; }
.hero h1 {
    font-size: clamp(2.9rem, 6.2vw, 5.25rem);
    font-weight: 700; line-height: 1.02; letter-spacing: -0.038em;
    max-width: 15ch;
}
.hero .sub {
    max-width: 44ch; font-size: 1.15rem; line-height: 1.5;
    color: var(--ink-soft); margin: clamp(2rem, 4vw, 3rem) 0 0; font-weight: 400;
}
.hero .sub b { color: var(--ink); font-weight: 600; }

.hero-foot {
    display: grid; grid-template-columns: minmax(0,1fr) auto;
    align-items: end; column-gap: var(--rail-gap);
    margin-top: clamp(3.5rem, 7vw, 6rem);
}
.stats {
    display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 0 var(--rail-gap); font-size: 0.86rem; color: var(--ink-soft);
}
.stats span { border-top: 1px solid var(--border); padding-top: 0.9rem; line-height: 1.5; }
.stats b { color: var(--ink); font-weight: 600; }
.link-arrow {
    font-size: 0.9rem; color: var(--ink); text-decoration: none; font-weight: 500;
    border-bottom: 1px solid var(--border); padding-bottom: 4px; white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

.hero-proof {
    margin-top: clamp(3rem, 6vw, 5rem); padding-top: 1.9rem;
    border-top: 1px solid var(--border);
    display: grid; grid-template-columns: var(--rail) minmax(0,1fr);
    column-gap: var(--rail-gap);
}
.hero-proof q {
    grid-column: 2;
    font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 500;
    color: var(--ink); line-height: 1.38; letter-spacing: -0.015em; max-width: 48ch;
    display: block; quotes: '"' '"';
}
.hero-proof cite {
    grid-column: 2; display: block; margin-top: 0.9rem;
    font-style: normal; color: var(--ink-faint);
}
.hero-proof cite b { color: var(--ink-soft); font-weight: 600; }

/* ── SECTION GENERIC ── */
section { padding: var(--section-y) 0; }

.sec-head {
    display: grid; grid-template-columns: var(--rail) minmax(0,1fr);
    column-gap: var(--rail-gap);
}
.sec-label { grid-column: 1; grid-row: 1; color: var(--accent); padding-top: 0.45rem; }
.sec-head h2 {
    grid-column: 2; grid-row: 1;
    font-size: clamp(1.8rem, 3.3vw, 2.6rem);
    font-weight: 700; line-height: 1.06; letter-spacing: -0.03em;
    max-width: 17ch; margin-bottom: 1.3rem;
}
.sec-head p { grid-column: 2; grid-row: 2; font-size: 1.06rem; max-width: 52ch; }

/* ── APPROACH (numbered index) ── */
.approach-list { margin-top: clamp(2.5rem, 5vw, 4rem); }
.a-row {
    display: grid; grid-template-columns: var(--rail) minmax(0,1fr);
    column-gap: var(--rail-gap);
    padding: clamp(2rem, 3.5vw, 3rem) 0; border-top: 1px solid var(--border);
}
.a-row:last-child { border-bottom: 1px solid var(--border); }
.a-row .num {
    font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
    font-variant-numeric: tabular-nums; letter-spacing: 0;
    color: var(--accent); padding-top: 0.4rem;
}
.a-row > div:last-child {
    display: grid; grid-template-columns: minmax(0,1fr) 10rem;
    column-gap: var(--rail-gap);
}
.a-row h3 {
    grid-column: 1; grid-row: 1;
    font-size: 1.3rem; font-weight: 600; letter-spacing: -0.022em;
    margin-bottom: 0.65rem;
}
.a-row p { grid-column: 1; grid-row: 2; font-size: 1.02rem; max-width: 52ch; }
.a-row .note {
    grid-column: 2; grid-row: 1 / span 2;
    align-self: start; padding-top: 0.45rem;
    color: var(--ink-faint);
}
.a-quote {
    grid-column: 1; grid-row: 3;
    margin-top: 1.8rem; padding-left: 1.4rem;
    border-left: 1px solid var(--border);
    max-width: 50ch;
}
.a-quote q {
    font-size: 1.05rem; font-weight: 450; letter-spacing: -0.01em;
    color: var(--ink); line-height: 1.45; display: block; quotes: '"' '"';
}
.a-quote cite {
    display: block; margin-top: 0.7rem;
    font-style: normal; color: var(--ink-faint);
}
.a-quote cite b { color: var(--ink-soft); font-weight: 600; }

/* ── RESULTS / TESTIMONIALS ── */
.testimonials { margin-top: clamp(2.5rem, 5vw, 4rem); }
.t-row {
    display: grid; grid-template-columns: var(--rail) minmax(0,1fr);
    column-gap: var(--rail-gap);
    padding: clamp(2.2rem, 4vw, 3.4rem) 0; border-top: 1px solid var(--border);
}
.t-row:last-child { border-bottom: 1px solid var(--border); }
.t-row > * { grid-column: 2; }
.t-row .t-label {
    grid-column: 1; grid-row: 1;
    color: var(--ink-faint); margin-bottom: 0; padding-top: 0.45rem;
}
.t-row blockquote {
    font-size: clamp(1.2rem, 1.75vw, 1.45rem); font-weight: 500;
    color: var(--ink); line-height: 1.36; letter-spacing: -0.018em;
    max-width: 48ch; margin-bottom: 1.2rem;
}
.t-row .t-more { font-size: 1.02rem; max-width: 56ch; margin-bottom: 1.3rem; }
.t-row cite { font-style: normal; color: var(--ink-faint); }
.t-row cite b { color: var(--ink-soft); font-weight: 600; }
.t-row.feature blockquote {
    font-size: clamp(1.4rem, 2.3vw, 1.85rem); letter-spacing: -0.024em;
    line-height: 1.28; margin-bottom: 1.5rem;
}

/* ── WHO IT'S FOR ── */
.fit-grid {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
    column-gap: clamp(1.8rem, 3.2vw, 3.2rem); row-gap: 2.5rem;
}
.fit-grid > div { border-top: 1px solid var(--border); padding: 1.6rem 0 0; }
.fit-grid h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.018em; margin-bottom: 0.6rem; }
.fit-grid p { font-size: 0.99rem; }
.fit-note {
    margin-top: clamp(3rem, 6vw, 5rem); font-size: 1.06rem; max-width: 56ch;
    padding-left: calc(var(--rail) + var(--rail-gap));
}
.fit-note b { color: var(--ink); font-weight: 600; }

/* ── ABOUT ── */
.about-content {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-left: calc(var(--rail) + var(--rail-gap));
}
.about-content p { font-size: 1.06rem; margin-bottom: 1.2rem; max-width: var(--measure); }
.about-content .line {
    font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600;
    letter-spacing: -0.024em; line-height: 1.25;
    color: var(--ink); margin: 2.2rem 0; max-width: 34ch;
}
.about-quote {
    margin: 2.6rem 0 0; padding-left: 1.4rem;
    border-left: 1px solid var(--border);
}
.about-quote q {
    font-size: 1.15rem; font-weight: 450; letter-spacing: -0.012em;
    color: var(--ink); line-height: 1.42; max-width: 50ch;
    display: block; quotes: '"' '"';
}
.about-quote cite {
    display: block; margin-top: 0.8rem;
    font-style: normal; color: var(--ink-faint);
}
.about-quote cite b { color: var(--ink-soft); font-weight: 600; }
.about-stats {
    display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 0 var(--rail-gap); margin-top: clamp(3rem, 5vw, 4.5rem);
}
.about-stats div {
    border-top: 1px solid var(--border); padding-top: 0.9rem;
    color: var(--ink-faint);
}
.about-stats b {
    display: block; font-size: 1.45rem; font-weight: 600;
    letter-spacing: -0.028em; text-transform: none;
    color: var(--ink); margin-bottom: 0.3rem;
}

/* ── CONTACT ── */
.contact { border-top: 1px solid var(--border); padding-top: var(--section-y); }
.contact-inner {
    text-align: left;
    display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
    column-gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}
.contact h2 {
    grid-column: 1; grid-row: 1;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700;
    letter-spacing: -0.032em; line-height: 1.04; margin-bottom: 1.3rem;
    max-width: 9ch;
}
.contact-lede {
    grid-column: 1; grid-row: 2;
    max-width: 32ch; margin: 0; color: var(--ink-soft); font-size: 1.02rem;
}
.contact-form {
    grid-column: 2; grid-row: 1 / span 3;
    display: grid; gap: 1.6rem; text-align: left;
}
.contact-form .honeypot { display: none; }
.contact-form .field label {
    display: block; color: var(--ink-soft); margin-bottom: 0.5rem; font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%; border: none; border-bottom: 1px solid var(--border);
    background: transparent; color: var(--ink);
    font-family: var(--sans); font-weight: 400; font-size: 1.02rem; line-height: 1.4;
    padding: 0.55rem 0; outline: none;
    transition: border-color 0.15s;
}
.contact-form textarea { resize: vertical; min-height: 112px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form button {
    justify-self: start; margin-top: 0.4rem;
    background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-weight: 500; font-size: 0.95rem; color: var(--ink);
    border-bottom: 1px solid var(--border); padding-bottom: 4px;
    transition: color 0.15s, border-color 0.15s;
}
.contact-form button:hover { color: var(--accent); border-color: var(--accent); }
.form-success, .form-error { font-size: 0.9rem; margin-top: 0.25rem; color: var(--ink-soft); }
.contact-mail {
    grid-column: 1; grid-row: 3; align-self: end;
    display: inline-block; justify-self: start;
    margin-top: 2.6rem;
    font-size: 1.1rem; font-weight: 500; letter-spacing: -0.015em;
    color: var(--ink); text-decoration: none;
    border-bottom: 1px solid var(--border); padding-bottom: 5px;
    transition: color 0.15s, border-color 0.15s;
}
.contact-mail:hover { color: var(--accent); border-color: var(--accent); }

/* ── FOOTER ── */
footer { padding: clamp(2.5rem, 5vw, 4rem) 0; color: var(--ink-faint); font-size: 0.83rem; }
footer p { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); text-align: left; }
footer a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--border); }
footer a:hover { color: var(--accent); border-color: var(--accent); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(14px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
    :root { --rail: 9rem; }
    .a-row > div:last-child { grid-template-columns: minmax(0,1fr) 8rem; }
}
@media (max-width: 900px) {
    :root { --rail: 0px; --rail-gap: clamp(1.5rem, 3vw, 2.5rem); }
    .sec-head, .a-row, .t-row, .hero-proof { grid-template-columns: 1fr; }
    .sec-label, .a-row .num, .t-row .t-label { grid-column: 1; grid-row: auto; padding-top: 0; margin-bottom: 1rem; }
    .sec-head h2, .sec-head p, .t-row > *, .hero-proof q, .hero-proof cite { grid-column: 1; grid-row: auto; }
    .a-row > div:last-child { grid-template-columns: 1fr; }
    .a-row h3, .a-row p, .a-row .note, .a-quote { grid-column: 1; grid-row: auto; }
    .a-row .note { margin-top: 0.9rem; padding-top: 0; }
    .fit-note, .about-content { padding-left: 0; }
    .contact-inner { grid-template-columns: 1fr; row-gap: 1.2rem; }
    .contact h2, .contact-lede, .contact-form, .contact-mail { grid-column: 1; grid-row: auto; }
    .contact h2 { max-width: none; }
    .contact-form { margin-top: 1.6rem; }
    .contact-mail { margin-top: 2rem; }
    .stats { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.6rem var(--rail-gap); }
    .hero-foot { grid-template-columns: 1fr; row-gap: 2.2rem; align-items: start; }
    .link-arrow { justify-self: start; }
    .fit-grid { grid-template-columns: 1fr; row-gap: 0; }
}
@media (max-width: 640px) {
    body { font-size: 16.5px; }
    .about-stats { grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: 1.6rem; }
    .nav-links { gap: 0.95rem; font-size: 0.8rem; }
    .nav-inner { padding: 0.95rem 0; }
}

/* ── PROSE PAGES (method, blog, articles) ── */
.page { padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 4vw, 3.5rem); }
.page .kicker { color: var(--accent); margin-bottom: clamp(1.2rem, 2.4vw, 1.7rem); }
.page h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.04; letter-spacing: -0.035em;
    max-width: 19ch;
}
.page .standfirst { max-width: 48ch; font-size: 1.15rem; line-height: 1.5; margin-top: 1.8rem; }

.prose { max-width: 64ch; padding: 0 0 clamp(3rem, 5vw, 4.5rem); }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -0.026em; margin: 3.4rem 0 1.1rem; }
.prose h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.012em; color: var(--ink); margin: 2.1rem 0 0.5rem; }
.prose p { margin: 0 0 1.2rem; }
.prose p + h2 { margin-top: 3.6rem; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.15rem; }
.prose li { margin-bottom: 0.6rem; }
.prose strong, .prose b { color: var(--ink); font-weight: 600; }
.prose a { color: var(--ink); border-bottom: 1px solid var(--border); text-decoration: none; transition: color 0.15s, border-color 0.15s; }
.prose a:hover { color: var(--accent); border-color: var(--accent); }
.prose blockquote {
    margin: 2.4rem 0; padding: 0 0 0 1.6rem;
    border-left: 1px solid var(--ink);
    font-size: clamp(1.2rem, 1.8vw, 1.45rem); font-weight: 500;
    line-height: 1.34; letter-spacing: -0.018em; color: var(--ink);
}
.prose .table-wrap { overflow-x: auto; margin: 2rem 0 2.4rem; }
.prose .table-wrap table { margin: 0; min-width: 30rem; }
.prose .table-wrap th:first-child, .prose .table-wrap td:first-child { padding-right: 1.2rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 2rem 0 2.4rem; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 0.95rem 1rem 0.95rem 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.prose th {
    font-weight: 600; color: var(--ink);
    font-size: 0.82rem; letter-spacing: 0; text-transform: none;
    padding-bottom: 0.7rem;
}
.prose td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; padding-right: 2rem; }
.prose .answer {
    background: none; border: none;
    border-top: 1px solid var(--ink); border-bottom: 1px solid var(--border);
    padding: 1.5rem 0; margin: 0 0 2.4rem; font-size: 1.1rem; line-height: 1.5;
}
.prose .answer p:last-child { margin-bottom: 0; }

/* stage list */
.stages { list-style: none; margin: clamp(2rem, 4vw, 3rem) 0 0; padding: 0; }
.stages li {
    display: grid; grid-template-columns: 4.5rem minmax(0,1fr); gap: var(--rail-gap);
    padding: 1.9rem 0; border-top: 1px solid var(--border); margin: 0;
}
.stages li:last-child { border-bottom: 1px solid var(--border); }
.stages .n {
    font-size: 0.82rem; font-weight: 500; font-variant-numeric: tabular-nums;
    letter-spacing: 0; color: var(--accent); line-height: 1.5; padding-top: 0.35rem;
}
.stages h3 { margin: 0 0 0.45rem; font-weight: 600; font-size: 1.25rem; letter-spacing: -0.022em; }
.stages p { margin: 0; max-width: 54ch; }
.stages p + p { margin-top: 0.75rem; }
.stages .tag { display: inline-block; margin-top: 0.8rem; color: var(--ink-faint); }

/* post list */
.posts { list-style: none; margin: clamp(2rem, 4vw, 3rem) 0 0; padding: 0; }
.posts li { padding: 1.9rem 0; border-top: 1px solid var(--border); margin: 0; }
.posts a { text-decoration: none; color: var(--ink); display: block; }
.posts h2 { font-size: 1.4rem; font-weight: 600; margin: 0 0 0.4rem; letter-spacing: -0.024em; }
.posts a:hover h2 { color: var(--accent); }
.posts .meta { color: var(--ink-faint); }
.posts p { margin: 0.5rem 0 0; }

.empty {
    border: none; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--border);
    padding: 1.8rem 0; margin-top: clamp(2rem, 4vw, 3rem);
}
.empty p { margin-bottom: 0.9rem; }
.empty p:last-child { margin-bottom: 0; }

.next-step { border-top: 1px solid var(--border); padding: clamp(2.2rem, 4vw, 3.2rem) 0 0; margin-top: 1rem; max-width: 64ch; }
.next-step h2 { font-size: clamp(1.35rem, 2.1vw, 1.65rem); font-weight: 600; letter-spacing: -0.024em; margin-bottom: 0.9rem; }
.next-step p { margin: 0 0 1.2rem; }
.next-step p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .stages li { grid-template-columns: 1fr; gap: 0.5rem; }
    .prose td:first-child { white-space: normal; }
}

.sec-link { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 0.15s, border-color 0.15s; }
.sec-link:hover { color: var(--accent); border-color: var(--accent); }

.contact-lede { max-width: 32ch; }

/* ── VERMILION AS INK ──
   #E65332 is 3.59:1 on the background: fine for non-text marks, large text and
   states, not for anything a reader has to read. So it is only used where it is
   redundant with adjacent black text (numerals, section labels), on glyphs
   (arrows, one rule), or on hover and focus, which are never the resting state. */

.arw { color: var(--accent); }

/* exactly one rule on the page carries the colour: the one under the hero */
body > hr.rule:first-of-type { border-top-color: var(--accent); }

/* two ways of working, sits under the approach list */
.engagement {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-left: calc(var(--rail) + var(--rail-gap));
    max-width: calc(56ch + var(--rail) + var(--rail-gap));
}
.engagement h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.022em; margin-bottom: 1rem; }
.engagement p { font-size: 1.02rem; margin-bottom: 1rem; }
.engagement p:last-child { margin-bottom: 0; }
.engagement b { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .engagement { padding-left: 0; } }

/* Breadcrumbs and article byline (added 2026-09-01) */
.crumbs { margin-bottom: clamp(1rem, 2vw, 1.4rem); font-size: var(--label-size); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.crumbs li { color: var(--ink-faint); margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--ink-faint); }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }

.page .byline { margin-top: 1.1rem; color: var(--ink-faint); font-size: var(--label-size); }
.page .byline a { color: var(--ink-faint); text-decoration: none; border-bottom: 1px solid var(--border); }
.page .byline a:hover { color: var(--accent); }
