/* =========================================================================
   iModernizeIT — "The Specification"
   Design tokens and components per DESIGN.md (Phase B).
   ========================================================================= */

:root {
    /* Paper spectrum */
    --im-paper:         #F7F5F1;
    --im-paper-inset:   #EEEAE4;
    --im-paper-lifted:  #FBFAF7;

    /* Ink spectrum */
    --im-ink:           #1A1A1A;
    --im-ink-muted:     #4A4A4A;
    --im-ink-subtle:    #6B6B6B;

    /* Oxblood */
    --im-oxblood:       #7A1E20;
    --im-oxblood-dim:   #5E1619;

    /* Structural */
    --im-rule:          #D4D2CE;

    /* Semantic */
    --im-error:         #A51D24;
    --im-success:       #1F4A2E;

    /* Type */
    --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
    --font-body:    'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', system-ui, -apple-system, sans-serif;
    --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    /* Layout */
    --container-struct: 1200px;
    --container-form:   560px;

    /* Motion */
    --ease: 200ms ease-out;
    --ease-slow: 250ms ease-out;
}

/* =========================================================================
   Reset + base
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--im-ink);
    background-color: var(--im-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 639px) {
    body { font-size: 17px; }
}

img, svg { display: block; max-width: 100%; height: auto; }

::selection { background: var(--im-oxblood); color: var(--im-paper); }

/* Focus: WCAG 2.2 visible focus — 2px oxblood outline, 3px offset, 2px radius. */
*:focus { outline: none; }
*:focus-visible {
    outline: 2px solid var(--im-oxblood);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: 8px;
    top: -100px;
    background: var(--im-paper);
    color: var(--im-ink);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px;
    border: 2px solid var(--im-oxblood);
    border-radius: 2px;
    text-decoration: none;
    z-index: 1000;
    transition: top 150ms ease-out;
}
.skip-link:focus { top: 8px; }

/* =========================================================================
   Typography
   ========================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--im-ink);
    margin: 0 0 0.6em;
}

p, ul, ol, dl, blockquote {
    margin: 0 0 1.333em;
}

.display-xl { font-size: clamp(44px, 6.2vw, 64px); line-height: 1.05; letter-spacing: -0.02em; }
.display-l  { font-size: clamp(36px, 4.6vw, 48px); line-height: 1.10; letter-spacing: -0.015em; }
.display-m  { font-size: clamp(28px, 3.2vw, 32px); line-height: 1.15; letter-spacing: -0.01em; }
.display-s  { font-size: clamp(22px, 2.4vw, 24px); line-height: 1.20; letter-spacing: -0.005em; }

.body-l { font-size: clamp(19px, 1.6vw, 20px); line-height: 1.60; }
.body-s { font-size: clamp(15px, 1.2vw, 16px); line-height: 1.55; color: var(--im-ink-muted); }

.mono {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.mono-s {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

em { font-style: italic; }
strong, b { font-weight: 700; }

/* Links — always underlined. External-link marker set inline with rel=noopener. */
a {
    color: var(--im-oxblood);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color var(--ease);
}
a:hover { color: var(--im-oxblood-dim); }
a.ext::after {
    content: ' \2197';
    font-family: var(--font-mono);
    text-decoration: none;
    display: inline-block;
    margin-left: 0.15em;
}

/* =========================================================================
   Containers
   ========================================================================= */

.container {
    width: 100%;
    max-width: var(--container-struct);
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 640px)  { .container { padding: 0 5%; } }
@media (min-width: 900px)  { .container { padding: 0 6%; } }

/* Prose spans the full container width — same right edge as the nav's CTA button. */
.prose {
    margin-left: 0;
    margin-right: 0;
}
.prose p, .prose ul, .prose ol, .prose dl { margin-bottom: 0.6em; }
.prose p + h2, .prose ul + h2, .prose ol + h2 { margin-top: 48px; }

.form-column {
    max-width: var(--container-form);
    margin: 0 auto;
}

/* =========================================================================
   Page rhythm
   ========================================================================= */

main { padding-top: clamp(80px, 10vw, 128px); padding-bottom: clamp(80px, 10vw, 128px); }

.section { margin-bottom: clamp(64px, 8vw, 96px); }
.section-tight { margin-bottom: clamp(40px, 5vw, 48px); }

/* Hairlines */
.rule { border: none; border-top: 1px solid var(--im-rule); margin: 48px 0; }
.rule-double {
    border: none;
    height: 6px;
    margin: 96px 0;
    background:
        linear-gradient(var(--im-rule), var(--im-rule)) top/100% 1px no-repeat,
        linear-gradient(var(--im-rule), var(--im-rule)) bottom/100% 1px no-repeat;
}
.rule-v { display: inline-block; width: 1px; height: 1em; background: var(--im-rule); }

/* =========================================================================
   Section markers (▪ 0N — Title)
   ========================================================================= */

.sec-mark {
    display: block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink);
    margin: 0 0 14px;
}
.sec-mark::before {
    content: '\25AA';
    color: var(--im-oxblood);
    margin-right: 10px;
    font-size: 0.85em;
    display: inline-block;
    transform: translateY(-1px);
}
.sec-mark .dash { color: var(--im-ink); margin: 0 6px; }
.sec-mark .name { font-family: var(--font-display); font-size: 14px; text-transform: none; letter-spacing: -0.005em; font-weight: 500; }

.h-bullet::before {
    content: '';
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    background: var(--im-oxblood);
    margin-right: 0.45em;
    vertical-align: 0.22em;
}

/* =========================================================================
   Navigation
   ========================================================================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--im-paper);
    border-bottom: 1px solid var(--im-rule);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
@media (max-width: 639px) { .nav-inner { height: 56px; } }

.wordmark {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    color: var(--im-ink);
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}
.wordmark:hover { color: var(--im-ink); }
/* Replace tittle over leading "i" with oxblood square. Implemented by making the "i" a dotless i with a square baseline-shifted above. */
.wordmark .i-mark {
    display: inline-block;
    position: relative;
    width: 0.3em;
    height: 1em;
}
.wordmark .i-mark::before {
    /* the stem */
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.04em;
    width: 0.09em;
    height: 0.55em;
    background: var(--im-ink);
}
.wordmark .i-mark::after {
    /* the oxblood square tittle */
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.72em;
    width: 0.16em;
    height: 0.16em;
    background: var(--im-oxblood);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--im-ink);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 200;
    letter-spacing: normal;
    padding: 8px 0;
    position: relative;
}
.nav-links a:hover { color: var(--im-oxblood); }
.nav-links a[aria-current="page"] {
    color: var(--im-ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--im-ink);
    border-radius: 2px;
    width: 44px;
    height: 44px;
    font-family: var(--font-mono);
    color: var(--im-ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--im-paper);
    z-index: 200;
    padding: 24px;
    flex-direction: column;
}
.nav-overlay[data-open="true"] { display: flex; }
.nav-overlay .overlay-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}
.nav-overlay .overlay-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nav-overlay .overlay-links li { border-bottom: 1px solid var(--im-rule); }
.nav-overlay .overlay-links a {
    display: block;
    padding: 20px 0;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--im-ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.nav-overlay .overlay-cta { margin-top: 32px; }

@media (max-width: 899px) {
    .nav-links, .nav .btn-primary { display: none; }
    .nav-toggle { display: inline-flex; }
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    min-height: 48px;
    min-width: 44px;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease);
    line-height: 1.2;
}
.btn-primary {
    background: var(--im-oxblood);
    color: var(--im-paper);
    border-color: var(--im-oxblood);
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: var(--im-oxblood-dim);
    color: var(--im-paper);
    border-color: var(--im-oxblood-dim);
}
.btn-secondary {
    background: transparent;
    color: var(--im-oxblood);
    border-color: var(--im-oxblood);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
    background: var(--im-paper-inset);
    color: var(--im-oxblood-dim);
    border-color: var(--im-oxblood-dim);
}
.btn-sm { padding: 10px 18px; font-size: 12px; min-height: 40px; }

/* Inline text link with mono styling for section continues */
.link-mono {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-oxblood);
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
    padding-top: 0;
    padding-bottom: 0;
}
.hero .masthead {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink-muted);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: clamp(48px, 6vw, 80px);
}
.hero .masthead .sep { color: var(--im-rule); }
.hero h1 {
    margin-top: 0;
    margin-bottom: 32px;
}
.hero .subhead {
    color: var(--im-ink);
    margin-bottom: 40px;
}
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================================================
   Signals strip (home)
   ========================================================================= */

.signals {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin: 0 auto;
    width: fit-content;
    list-style: none;
}
.signal {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--im-ink);
}
.signal::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--im-oxblood);
    flex-shrink: 0;
}

/* =========================================================================
   Verticals strip
   ========================================================================= */

.verticals {
    text-align: center;
    padding: 0;
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: var(--im-ink);
}

/* =========================================================================
   Tonal bands (full-width alternating backgrounds)
   ========================================================================= */

.band { padding: clamp(48px, 6vw, 72px) 0; margin: clamp(64px, 8vw, 96px) 0; }
main > .band:last-child { margin-bottom: 0; }
main:has(> .band:last-child) { padding-bottom: 0; }
.band-inset { background-color: var(--im-paper-inset); }
.band-inset .callout {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
.home-section { margin-bottom: clamp(48px, 6vw, 72px); }
.prose > :last-child { margin-bottom: 0; }
/* =========================================================================
   Callouts (payment clause, next, positioning, your time)
   ========================================================================= */

.callout {
    background-color: var(--im-paper-inset);
    padding: 32px;
    margin: 48px 0;
    border: none;
    /* Top double hairline + bottom single hairline; no side borders. */
    box-shadow:
        inset 0 1px 0 var(--im-rule),
        inset 0 5px 0 var(--im-paper-inset),
        inset 0 6px 0 var(--im-rule),
        inset 0 -1px 0 var(--im-rule);
}
.callout > :last-child { margin-bottom: 0; }
.callout .callout-label {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink);
    margin-bottom: 16px;
    display: block;
}
.callout .callout-label::before {
    content: '\25AA';
    color: var(--im-oxblood);
    margin-right: 10px;
    font-size: 0.85em;
}

/* =========================================================================
   Lists
   ========================================================================= */

ul.bullet, .prose ul:not([class]) {
    list-style: none;
    padding-left: 0;
}
ul.bullet > li, .prose ul:not([class]) > li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
ul.bullet > li::before, .prose ul:not([class]) > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    background: var(--im-oxblood);
}

/* Two-column bullet list — collapses to one column on narrow viewports. */
ul.bullet.cols-2 { column-count: 1; column-gap: 48px; }
ul.bullet.cols-2 > li { break-inside: avoid; }
@media (min-width: 720px) {
    ul.bullet.cols-2 { column-count: 2; }
}

ol.numbered {
    list-style: none;
    padding-left: 0;
    counter-reset: li;
}
ol.numbered > li {
    counter-increment: li;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    column-gap: 16px;
    margin-bottom: 10px;
}
ol.numbered > li::before {
    content: counter(li, decimal-leading-zero) '.';
    font-family: var(--font-mono);
    font-size: 0.72em;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--im-ink-muted);
}
/* Dotted leader — bridges the gap between label and right-aligned meta. */
ol.numbered > li > .stage-label {
    display: flex;
    align-items: baseline;
    min-width: 0;
}
ol.numbered > li > .stage-label::after {
    content: '';
    flex: 1;
    margin: 0 12px 0.35em;
    border-bottom: 1px dotted var(--im-rule);
    min-width: 24px;
}
ol.numbered > li > .mono-meta {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--im-ink);
}

/* Definition list (compliance frameworks) */
dl.defs { display: block; margin: 0 0 24px; }
dl.defs dt {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink);
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--im-rule);
}
dl.defs dt:first-child { border-top: none; padding-top: 0; margin-top: 0; }
dl.defs dd { margin: 6px 0 0; color: var(--im-ink); }

/* =========================================================================
   FAQ (flat / always open)
   ========================================================================= */

.faq {
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq > li {
    padding: 24px 0;
    border-top: 1px solid var(--im-rule);
}
.faq > li:first-child { border-top: none; padding-top: 0; }
.faq .q-prefix {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--im-ink-muted);
    margin-bottom: 8px;
    display: block;
}
.faq .q {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 24px);
    line-height: 1.2;
    color: var(--im-ink);
    margin: 0 0 16px;
    letter-spacing: -0.005em;
}
.faq .a { margin: 0; color: var(--im-ink); }

/* =========================================================================
   Home numbered sections preview cards
   ========================================================================= */

.home-section h2 { margin: 0 0 16px; }
.home-section .preview {
    margin-bottom: 16px;
}
.home-section .link-mono { margin-top: 8px; }

/* =========================================================================
   Process stages
   ========================================================================= */

.stage { padding: 32px 0; border-top: 1px solid var(--im-rule); }
.stage:first-of-type { border-top: none; padding-top: 0; }
.stage .stage-bar {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink-muted);
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.stage .stage-bar span { white-space: nowrap; }
.stage .stage-bar .sep { color: var(--im-rule); }
.stage h3 { margin: 0 0 16px; }
.stage .meta-pair {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 4px 16px;
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px dotted var(--im-rule);
}
.stage .meta-pair dt {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink-muted);
}
.stage .meta-pair dd { margin: 0; color: var(--im-ink); }

/* =========================================================================
   About — operator photo placeholder
   ========================================================================= */

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.about-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--im-paper-inset);
    color: var(--im-ink-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
@media (min-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }
    .about-photo { order: 2; }
    .about-narrative { order: 1; }
}

/* =========================================================================
   Forms
   ========================================================================= */

.field { margin-bottom: 32px; }
.field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink-muted);
    margin-bottom: 6px;
}
.field input,
.field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--im-ink-muted);
    color: var(--im-ink);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    padding: 12px 0;
    border-radius: 0;
    transition: border-color var(--ease-slow);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--im-ink-subtle); opacity: 1; }
.field input:focus,
.field textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--im-oxblood);
    padding-bottom: 11px;
}
.field .help,
.field .error {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.04em;
    margin-top: 8px;
    color: var(--im-ink-muted);
}
.field .error { color: var(--im-error); }
.field.has-error input,
.field.has-error textarea {
    border-bottom: 2px solid var(--im-error);
    padding-bottom: 11px;
}

.form-status {
    margin-top: 24px;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.04em;
    display: none;
}
.form-status[data-state="success"] {
    display: block;
    background: var(--im-paper-inset);
    color: var(--im-success);
    border-left: 4px solid var(--im-success);
}
.form-status[data-state="error"] {
    display: block;
    background: var(--im-paper-inset);
    color: var(--im-error);
    border-left: 4px solid var(--im-error);
}

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
    border-top: 1px solid var(--im-rule);
    background: var(--im-paper);
    padding: 48px 0;
    margin-top: 0;
}
.footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}
.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 200;
    letter-spacing: normal;
    color: var(--im-ink);
}
.footer-center a {
    color: var(--im-ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--ease);
}
.footer-center a:hover { border-bottom-color: var(--im-oxblood); color: var(--im-ink); }
.footer-center .sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--im-ink);
    margin: 0 4px;
}
.footer-copy {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--im-ink-muted);
}

/* =========================================================================
   404
   ========================================================================= */

.page-404 {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================================================================
   Utility
   ========================================================================= */

.text-center { text-align: center; }
.mono-meta {
    font-family: var(--font-mono);
    font-size: 0.72em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--im-ink-muted);
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================================
   Motion: honor prefers-reduced-motion
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================================
   Print styles
   ========================================================================= */

@media print {
    :root { --im-oxblood: #3A0E10; }
    .nav, .skip-link, .nav-overlay, .btn-primary, .btn-secondary { display: none !important; }
    body { background: #fff; color: #000; font-size: 11pt; }
    main { padding: 0; }
    .footer { background: #fff; border-top: 1px solid #000; padding: 16pt 0; }
    a { color: #3A0E10; }
    a[href^="http"]::after { content: ' (' attr(href) ')'; font-family: var(--font-mono); font-size: 9pt; }
    img { filter: grayscale(100%); }
    .rule, .rule-double { margin: 18pt 0; }
}
