  /* ---------- Design tokens ---------- */
  :root {
    /* Warm editorial palette */
    --ink:       #0F1729;  /* deep prussian — headings, display */
    --graphite:  #2A2D34;  /* body text */
    --slate:     #5A6170;  /* meta, labels, muted */
    --rule:      #D8D2C3;  /* warm hairline borders */
    --cream:     #F7F4EC;  /* page background (warm off-white) */
    --paper:     #FFFFFF;  /* card background */
    --ochre:     #7E5825;  /* restrained accent — numerals, rules. Darkened from #9A6B2F to clear WCAG AA at small sizes (now ~5.4:1 on cream). */
    --ochre-lt:  #B98345;  /* accent hover state, also darkened to keep relative weight */

    /* Type scale — 1.25 modular */
    --fs-xs:   0.75rem;    /* 12px — small caps labels */
    --fs-sm:   0.875rem;   /* 14px — meta */
    --fs-base: 1.0625rem;  /* 17px — body */
    --fs-md:   1.1875rem;  /* 19px — lede */
    --fs-lg:   1.5rem;     /* 24px — small headlines */
    --fs-xl:   2rem;       /* 32px — section titles */
    --fs-2xl:  3rem;       /* 48px — display small */
    --fs-3xl:  4.5rem;     /* 72px — hero display */

    /* Rhythm */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4.5rem;
    --space-7: 6rem;

    --maxw-text: 680px;    /* reading column */
    --maxw-wide: 920px;    /* outer frame */
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-feature-settings: "kern", "liga", "calt", "ss01";
    font-weight: 400;
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--graphite);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* Subtle paper texture: layered radial gradients, near-invisible */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(154, 107, 47, 0.025), transparent 50%),
      radial-gradient(ellipse at 100% 100%, rgba(15, 23, 41, 0.025), transparent 50%);
  }

  /* ---------- Typography ---------- */
  h1, h2, h3, .display {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    color: var(--ink);
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
  }
  h2 { font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; }
  h3 {
    font-size: var(--fs-lg);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-variation-settings: "opsz" 36, "SOFT" 30;
  }

  p { margin: 0 0 1.125em; max-width: var(--maxw-text); }
  p:last-child { margin-bottom: 0; }

  a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--ochre);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
  }
  a:hover {
    color: var(--ochre);
    text-decoration-color: var(--ochre-lt);
  }
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--ochre);
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* Small caps label utility */
  .eyebrow, .section-num, .meta-label, .credentials, .meta-inline {
    font-family: "Inter", sans-serif;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
  }

  /* ---------- Skip link ---------- */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--cream);
    padding: 0.625rem 1rem;
    z-index: 100;
    text-decoration: none;
  }
  .skip-link:focus { left: 1rem; top: 1rem; }

  /* ---------- Scroll progress indicator ---------- */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--ochre);
    z-index: 20;
    transition: width 0.1s linear;
  }

  /* ---------- Masthead / nav ---------- */
  .masthead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(247, 244, 236, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .masthead.scrolled {
    border-bottom-color: var(--rule);
    box-shadow: 0 1px 0 rgba(15, 23, 41, 0.03);
  }
  .nav-inner {
    max-width: var(--maxw-wide);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .mark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.375rem;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 36, "SOFT" 30;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.0625rem;
    letter-spacing: -0.005em;
    white-space: nowrap;
  }
  .mark:hover { color: var(--ink); }
  .mark-cred {
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--slate);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    font-family: "Inter", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--graphite);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.25rem 0;
    position: relative;
  }
  .nav-links a .num {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--ochre);
    font-feature-settings: "tnum", "lnum";
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--ink); }
  .nav-links a:hover::after,
  .nav-links a.active::after { transform: scaleX(1); }

  /* ---------- Main / sections ---------- */
  main {
    position: relative;
    z-index: 1;
    max-width: var(--maxw-wide);
    margin: 0 auto;
    padding: 0 2rem;
  }

  section {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--rule);
  }
  section:last-of-type { border-bottom: none; }

  .section-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: var(--space-3);
  }
  .section-num {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 36";
    color: var(--ochre);
    font-feature-settings: "tnum", "lnum";
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    flex-shrink: 0;
  }
  .section-num::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--ochre);
    margin-left: 0.625rem;
    vertical-align: middle;
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: var(--space-6) 0 var(--space-6);
    border-bottom: 1px solid var(--rule);
  }
  .hero .eyebrow {
    display: block;
    margin-bottom: var(--space-3);
  }
  .display {
    font-size: clamp(2.75rem, 7.5vw, var(--fs-3xl));
    font-weight: 500;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    letter-spacing: -0.035em;
    line-height: 0.95;
    margin: 0 0 var(--space-4);
    color: var(--ink);
    max-width: 780px;
  }
  .display .post {
    font-size: 0.45em;
    font-weight: 400;
    font-variation-settings: "opsz" 36, "SOFT" 30;
    color: var(--slate);
    letter-spacing: 0.02em;
    vertical-align: 0.5em;
    margin-left: 0.15em;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
  }

  .hero-below {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 2.25rem;
    align-items: end;
    margin-top: var(--space-4);
  }

  .headshot-wrap {
    width: 170px;
    height: 210px;
    flex-shrink: 0;
    background-color: #E8E2D4;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 210'><rect width='170' height='210' fill='%23E8E2D4'/><circle cx='85' cy='75' r='32' fill='%23B8AE93'/><path d='M30 200 C 30 150 55 130 85 130 C 115 130 140 150 140 200 Z' fill='%23B8AE93'/></svg>");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 0 var(--rule), 0 20px 40px -20px rgba(15, 23, 41, 0.15);
  }
  .headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(15%) contrast(1.02);
  }

  .hero-text { padding-bottom: 0.25rem; }
  .lede {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 36, "SOFT" 30;
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--ink);
    margin: 0 0 1.25rem;
    text-wrap: balance;
    max-width: 540px;
  }
  .credentials { display: block; }
  .credentials a {
    color: var(--slate);
    text-decoration: underline;
    text-decoration-color: var(--rule);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
  .credentials a:hover { color: var(--ink); text-decoration-color: var(--ochre); }

  /* ---------- Selected Outcomes strip ---------- */
  .outcomes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: var(--space-5) 0 0;
    padding: var(--space-3) 0 0;
    border-top: 1px solid var(--rule);
    list-style: none;
  }
  .outcome {
    padding: 0 1.25rem 0 0;
    border-right: 1px solid var(--rule);
  }
  .outcome:last-child { border-right: none; padding-right: 0; }
  .outcome:not(:first-child) { padding-left: 1.25rem; }
  .outcome-num {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ochre);
    font-feature-settings: "tnum", "lnum";
    margin: 0 0 0.5rem;
  }
  .outcome-label {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--graphite);
    max-width: none;
  }

  /* ---------- About ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-4);
    align-items: start;
  }
  .about-text { min-width: 0; }
  .about-portrait {
    margin: 0;
    position: relative;
  }
  .about-portrait img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 25%;
    filter: grayscale(20%) contrast(1.02);
    background: #E8E2D4;
  }
  .about-portrait figcaption {
    margin-top: 0.625rem;
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    text-align: right;
  }
  .lead-p {
    font-size: var(--fs-md);
    line-height: 1.6;
    color: var(--graphite);
  }
  .dropcap {
    float: left;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    font-weight: 600;
    font-size: 4.5rem;
    line-height: 0.85;
    color: var(--ochre);
    padding: 0.35rem 0.625rem 0 0;
    margin-top: 0.1rem;
  }

  /* ---------- Approach ---------- */
  .pull-quote {
    margin: var(--space-4) 0;
    padding: 0 0 0 var(--space-3);
    border-left: 2px solid var(--ochre);
    max-width: var(--maxw-text);
  }
  .pull-quote blockquote {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 72, "SOFT" 30;
    font-size: clamp(1.25rem, 2.4vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
    text-wrap: balance;
  }

  /* ---------- Essay list (writing index + writing teaser) ---------- */
  .essay-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .essay-list-item {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--rule);
  }
  .essay-list-item:first-child { padding-top: 0; }
  .essay-list-item:last-child { border-bottom: none; }
  .essay-list-item a {
    text-decoration: none;
    color: var(--ink);
    display: block;
  }
  .essay-list-item a:hover .essay-list-title { color: var(--ochre); }
  .essay-list-meta {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 0.625rem;
  }
  .essay-list-title {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 72, "SOFT" 30;
    font-weight: 500;
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 0.625rem;
    transition: color 0.2s ease;
    text-wrap: balance;
  }
  .essay-list-dek {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 36, "SOFT" 30;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--graphite);
    margin: 0;
    max-width: var(--maxw-text);
  }
  .essay-list-readtime {
    display: inline-block;
    margin-left: 0.375rem;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14;
    color: var(--slate);
    font-feature-settings: "tnum", "lnum";
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }

  /* ---------- Method + Writing teaser blocks (consistent aside register, outside numbered IA) ---------- */
  .method-teaser,
  .writing-teaser {
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--rule);
  }
  .method-teaser-inner,
  .writing-teaser-inner {
    max-width: var(--maxw-text);
    padding-left: var(--space-3);
    border-left: 2px solid var(--ochre);
  }
  .writing-teaser-inner .essay-list { margin-top: var(--space-3); }
  .writing-teaser-all { margin-top: var(--space-3); }
  .method-teaser-eyebrow {
    display: block;
    margin-bottom: var(--space-2);
  }
  .method-teaser-title {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 72, "SOFT" 30;
    font-weight: 500;
    font-size: clamp(1.5rem, 2.6vw, 1.875rem);
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 var(--space-2);
    text-wrap: balance;
  }
  .method-teaser-dek {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 36, "SOFT" 30;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--graphite);
    margin: 0 0 var(--space-3);
  }
  .method-teaser-link {
    font-family: "Inter", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ochre);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .method-teaser-link:hover {
    color: var(--ochre);
    border-bottom-color: var(--ochre-lt);
  }

  /* ---------- Services ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    margin-top: var(--space-3);
  }
  .service-card {
    background: var(--paper);
    padding: 1.75rem 1.75rem;
    transition: background 0.25s ease;
  }
  .service-card:hover { background: #FDFCF7; }
  .service-card .svc-num {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ochre);
    font-feature-settings: "tnum", "lnum";
    margin-bottom: 0.5rem;
  }
  .service-card h3 {
    margin-bottom: 0.625rem;
    font-size: 1.1875rem;
  }
  .service-card p {
    margin: 0 0 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--graphite);
  }
  .service-card .keywords {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-top: 0.875rem;
    border-top: 1px solid var(--rule);
  }

  /* ---------- Experience / projects ---------- */
  .project {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .project:last-child { border-bottom: none; padding-bottom: 0; }
  .project:first-of-type { padding-top: 0.5rem; }
  .project-meta-col {
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    line-height: 1.6;
  }
  .project-meta-col dt {
    color: var(--ochre);
    font-size: 0.625rem;
    margin-top: 0.875rem;
  }
  .project-meta-col dt:first-child { margin-top: 0; }
  .project-meta-col dd {
    margin: 0 0 0.125rem;
    color: var(--graphite);
    font-weight: 500;
  }
  .project-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.375rem;
  }
  .project-body p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  /* ---------- Contact ---------- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .contact-list li:first-child { padding-top: 0; }
  .contact-list .label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
  }
  .contact-list a, .contact-list span.value {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
  }
  .contact-note p { font-size: 0.9375rem; color: var(--graphite); }
  .cv-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.375rem;
    background: var(--ink);
    color: var(--cream);
    font-family: "Inter", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .cv-link:hover {
    background: var(--ochre);
    color: var(--cream);
    transform: translateY(-1px);
  }
  .cv-link:focus-visible { outline-offset: 4px; }

  /* ---------- Footer ---------- */
  footer {
    padding: var(--space-5) 2rem var(--space-4);
    max-width: var(--maxw-wide);
    margin: 0 auto;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  footer small {
    font-size: 0.75rem;
    color: var(--slate);
    letter-spacing: 0.02em;
  }
  footer .colophon {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--slate);
  }

  /* ---------- Mobile ---------- */
  @media (max-width: 820px) {
    :root {
      --space-6: 3.5rem;
      --space-7: 4.5rem;
    }
    .nav-inner { padding: 0.875rem 1.5rem; gap: 1rem; }
    .nav-links { gap: 1.25rem; }
    main { padding: 0 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: var(--space-3); }
    .about-portrait { max-width: 280px; }
    .about-portrait figcaption { text-align: left; }
    .outcomes { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
    .outcome:nth-child(2) { border-right: none; padding-right: 0; }
    .outcome:nth-child(3) { border-right: 1px solid var(--rule); padding-left: 0; }
    .outcome:nth-child(3),
    .outcome:nth-child(4) { padding-top: 1.25rem; border-top: 1px solid var(--rule); margin-top: 0; }
    .project { grid-template-columns: 1fr; gap: 0.875rem; }
    .project-meta-col { display: flex; flex-wrap: wrap; gap: 1rem; }
    .project-meta-col dt { margin-top: 0; }
    footer { padding: 2rem 1.5rem; }
  }
  @media (max-width: 640px) {
    :root { --fs-base: 1rem; }
    .nav-inner { flex-direction: column; align-items: flex-start; gap: 0.625rem; }
    .nav-links { gap: 1rem; font-size: 0.75rem; flex-wrap: wrap; }
    .hero-below { grid-template-columns: 1fr; gap: 1.5rem; }
    .headshot-wrap { width: 140px; height: 170px; }
    .services-grid { grid-template-columns: 1fr; }
    .outcomes { grid-template-columns: 1fr; gap: 0; row-gap: 0; }
    .outcome { border-right: none !important; padding: 1rem 0 !important; border-top: 1px solid var(--rule); }
    .outcome:first-child { border-top: none; padding-top: 0 !important; }
    .display { font-size: clamp(2.25rem, 10vw, 3rem); }
    .dropcap { font-size: 3.5rem; }
    section { padding: 3rem 0; }
  }

  /* ---------- Accessibility: reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .scroll-progress { display: none; }
  }

  /* ---------- Print ---------- */
  @media print {
    :root { --cream: #fff; --paper: #fff; --graphite: #000; --ink: #000; --slate: #444; --rule: #999; --ochre: #666; }
    body { background: #fff; color: #000; font-size: 11pt; line-height: 1.5; }
    body::before, .masthead, .scroll-progress, .cv-link, .skip-link, footer { display: none; }
    main { max-width: 100%; padding: 0; }
    section { padding: 1rem 0; border-bottom: 1px solid #999; page-break-inside: avoid; }
    h1, h2, h3, .display { color: #000; }
    .dropcap, .section-num, .service-card .svc-num { color: #000; }
    .headshot-wrap { width: 100px; height: 125px; box-shadow: none; }
    .services-grid { display: block; border: none; background: none; }
    .service-card { border: 1px solid #999; margin-bottom: 0.5rem; page-break-inside: avoid; }
    .pull-quote { border-left-color: #000; }
    a { color: #000; text-decoration: underline; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
    a[href^="mailto:"]::after { content: ""; }
  }
