  /* ============================================
     1. DESIGN TOKENS — every color/type choice
     for the whole site lives here so changing
     the palette later means editing one place.
  ============================================ */
  :root {
    --ink:      #0B1F3A;  /* primary dark surface (nav, footer) */
    --ink-2:    #14284A;  /* secondary dark, used for gradients */
    --paper:    #F7F6F2;  /* light page background */
    --text:     #1B2430;  /* body text on light background */
    --text-soft:#4A5568;  /* secondary/muted text */
    --gold:     #C9A227;  /* accent — value, precision */
    --flag:     #C1443A;  /* used sparingly — risk/anomaly only */
    --line:     #E4E1D8;  /* hairline borders on light bg */

    --font-display: 'Archivo', sans-serif;
    --font-body:    'Source Serif 4', serif;
    --font-mono:    'IBM Plex Mono', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--paper);
    line-height: 1.5;
  }

  a { color: inherit; text-decoration: none; }

  /* ============================================
     2. NAV — flexbox: logo left, links + CTA right
  ============================================ */
  header {
    background: var(--ink);
    padding: 20px 5%;
  }

  nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-placeholder {
    width: 40px;
    height: 40px;
    border: 1.5px dashed rgba(247,246,242,0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(247,246,242,0.5);
    text-align: center;
    flex-shrink: 0;
  }

  .logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: var(--paper);
  }

  .logo-text span { color: var(--gold); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-links a {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.75);
    transition: color 0.2s ease;
  }

  .nav-links a:hover { color: var(--paper); }

  .btn-primary {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
  }

  .nav-toggle-input { display: none; }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 2px;
    background: var(--paper);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* checkbox-hack: when the hidden checkbox is checked,
     style its sibling label (the hamburger) as an "X" */
  .nav-toggle-input:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle-input:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle-input:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 12px 5% 24px;
    border-top: 1px solid rgba(247,246,242,0.1);
  }

  .mobile-menu a {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.8);
    padding: 14px 0;
    border-bottom: 1px solid rgba(247,246,242,0.08);
  }

  .mobile-menu .btn-primary {
    margin-top: 14px;
    text-align: center;
    border-bottom: none;
  }

  /* the checkbox-hack: reveal the mobile menu when checked */
  .nav-toggle-input:checked ~ .mobile-menu {
    display: flex;
  }

  /* ============================================
     3. HERO — CSS grid split: copy left,
     signature visual right
  ============================================ */
  .hero {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink-2) 100%);
    padding: 90px 5% 110px;
  }

  .hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
  }

  .eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.08;
    color: var(--paper);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero p.lede {
    font-family: var(--font-body);
    font-size: 18px;
    font-style: italic;
    color: rgba(247,246,242,0.78);
    max-width: 46ch;
    margin-bottom: 38px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .btn-ghost {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--paper);
    padding: 12px 0;
    border-bottom: 1px solid rgba(247,246,242,0.4);
  }

  .hero .btn-primary { padding: 14px 26px; font-size: 12px; }

  /* ---- signature visual: data field with one flagged point ---- */
  .signature {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 420px;
    margin: 0 auto;
  }

  .signature svg { width: 100%; height: 100%; }

  .dot { fill: rgba(247,246,242,0.22); }

  .dot-flag {
    fill: var(--flag);
    transform-origin: center;
    animation: pulse 2.4s ease-in-out infinite;
  }

  .ring {
    fill: none;
    stroke: var(--flag);
    stroke-width: 1;
    opacity: 0.55;
    transform-origin: center;
    animation: ring 2.4s ease-out infinite;
  }

  @keyframes pulse {
    0%, 100% { r: 6; }
    50% { r: 7.5; }
  }

  @keyframes ring {
    0% { r: 6; opacity: 0.6; }
    100% { r: 22; opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .dot-flag, .ring { animation: none; }
  }

  .signature-label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--flag);
    background: rgba(11,31,58,0.9);
    padding: 4px 8px;
    border: 1px solid rgba(193,68,58,0.4);
    border-radius: 3px;
    white-space: nowrap;
  }

  /* ============================================
     4. SERVICES — CSS grid of category cards.
     auto-fit + minmax = responsive with ZERO
     media queries needed for this section.
  ============================================ */
  .services {
    padding: 100px 5%;
  }

  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-head {
    max-width: 60ch;
    margin-bottom: 56px;
  }

  .section-head .eyebrow { color: var(--flag); }
  .section-head .eyebrow::before { background: var(--flag); }

  .section-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .section-head p {
    color: var(--text-soft);
    font-size: 16px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  .service-card {
    background: var(--paper);
    padding: 32px 28px;
  }

  .service-card .index {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--flag);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    display: block;
  }

  .service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .service-card ul {
    list-style: none;
  }

  .service-card li {
    font-size: 14.5px;
    color: var(--text-soft);
    padding: 7px 0;
    border-top: 1px solid var(--line);
  }

  .service-card li:first-child { border-top: none; }

  /* ============================================
     5. TRUSTED-BY — flex-wrap wordmark list.
     No logos yet, so names double as the visual;
     swap any <span> for an <img> later.
  ============================================ */
  .trusted {
    background: var(--ink);
    padding: 80px 5%;
  }

  .trusted-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .trusted .section-head { max-width: none; margin-bottom: 40px; }
  .trusted .section-head .eyebrow { color: var(--gold); }
  .trusted .section-head .eyebrow::before { background: var(--gold); }
  .trusted .section-head h2 { color: var(--paper); }
  .trusted .section-head p { color: rgba(247,246,242,0.6); }

  .wordmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .wordmark {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.55);
    padding: 12px 18px;
    border: 1px solid rgba(247,246,242,0.15);
    border-radius: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .wordmark:hover {
    color: var(--paper);
    border-color: rgba(201,162,39,0.5);
  }

  .wordmark .badge {
    color: var(--gold);
    font-size: 11px;
    margin-left: 6px;
  }

  /* ============================================
     6. ABOUT TEASER — grid split: narrative left,
     founder card right. Light section to keep the
     dark/light rhythm going (hero=dark, services=
     light, trusted=dark, about=light).
  ============================================ */
  .about {
    padding: 100px 5%;
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: start;
  }

  .about .section-head { margin-bottom: 28px; }

  .about-copy p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 58ch;
  }

  .stat-card {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 3px solid var(--flag);
    padding: 18px 22px;
    margin-top: 8px;
  }

  .stat-card .number {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 500;
    color: var(--flag);
  }

  .stat-card .label {
    font-size: 13.5px;
    color: var(--text-soft);
    max-width: 24ch;
  }

  /* ---- founder card ---- */
  .founder-card {
    border: 1px solid var(--line);
    padding: 28px;
  }

  .founder-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1.5px dashed var(--line);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-soft);
    margin-bottom: 20px;
    background: #FBFAF7;
  }

  .founder-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .founder-card .role {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--flag);
    margin-bottom: 16px;
  }

  .founder-card p {
    font-size: 14.5px;
    color: var(--text-soft);
    margin-bottom: 18px;
  }

  .founder-card .btn-ghost {
    color: var(--ink);
    border-bottom-color: var(--line);
    font-size: 11.5px;
  }

  /* ============================================
     7. CONTACT CTA — full-width dark band,
     centered content, one clear action.
  ============================================ */
  .cta {
    background: var(--ink);
    padding: 100px 5%;
    text-align: center;
  }

  .cta-inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .cta .eyebrow { justify-content: center; color: var(--gold); }
  .cta .eyebrow::before { display: none; }

  .cta h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 42px);
    color: var(--paper);
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }

  .cta p {
    color: rgba(247,246,242,0.68);
    font-size: 16px;
    margin-bottom: 34px;
  }

  .cta-contacts {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 34px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(247,246,242,0.7);
  }

  .cta-contacts a:hover { color: var(--gold); }

  /* ============================================
     8. FOOTER — grid of columns + bottom bar
  ============================================ */
  footer {
    background: var(--ink-2);
    padding: 60px 5% 0;
  }

  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }

  .footer-brand .logo-text { margin-bottom: 14px; }

  .footer-brand p {
    color: rgba(247,246,242,0.55);
    font-size: 14px;
    max-width: 32ch;
  }

  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }

  .footer-col li { margin-bottom: 10px; }

  .footer-col a {
    font-size: 14px;
    color: rgba(247,246,242,0.6);
    transition: color 0.2s ease;
  }

  .footer-col a:hover { color: var(--paper); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(247,246,242,0.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: rgba(247,246,242,0.4);
  }

  /* ---- accessibility: visible keyboard focus everywhere ---- */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  /* ============================================
     9. RESPONSIVE — stack hero + hide nav links
     below 860px
  ============================================ */
  /* ============================================
     10. PAGE HEADER — small dark band used on
     every inner page (About, Services, etc.)
     instead of the full homepage hero.
  ============================================ */
  .page-header {
    background: var(--ink);
    padding: 70px 5% 60px;
  }

  .page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    max-width: 70ch;
  }

  .page-header h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.8vw, 44px);
    color: var(--paper);
    letter-spacing: -0.01em;
  }

  /* ============================================
     11. MISSION / VISION — two-card grid.
     Reuses .service-card's hairline-grid trick.
  ============================================ */
  .mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    max-width: 1200px;
    margin: 0 auto;
  }

  .mv-card {
    background: var(--paper);
    padding: 40px 36px;
  }

  .mv-card .index {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--flag);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 18px;
  }

  .mv-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 14px;
  }

  .mv-card p {
    font-size: 15.5px;
    color: var(--text-soft);
  }

  /* ============================================
     12. CAREER TIMELINE — a genuine sequence
     (real chronological order), so numbering
     here is earning its keep, not decorating.
  ============================================ */
  .timeline {
    position: relative;
    max-width: 640px;
    padding-left: 32px;
    border-left: 2px solid var(--line);
  }

  .timeline-step {
    position: relative;
    padding-bottom: 30px;
  }

  .timeline-step:last-child { padding-bottom: 0; }

  .timeline-step::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--flag);
    border: 2px solid var(--paper);
  }

  .timeline-step .years {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--flag);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }

  .timeline-step h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink);
  }

  /* ============================================
     13. LEADERSHIP LAYOUT — full bio page section
  ============================================ */
  .leadership {
    padding: 100px 5%;
  }

  .leadership-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .leadership-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    margin-bottom: 64px;
  }

  .leadership-photo {
    aspect-ratio: 4 / 5;
    border: 1.5px dashed var(--line);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-soft);
    background: #FBFAF7;
  }

  .leadership-bio h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .leadership-bio .role {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--flag);
    margin-bottom: 20px;
  }

  .leadership-bio p {
    font-size: 15.5px;
    color: var(--text-soft);
    margin-bottom: 16px;
    max-width: 62ch;
  }

  .leadership-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .leadership-columns h4 {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }

  .leadership-columns ul {
    list-style: none;
  }

  .leadership-columns li {
    font-size: 14.5px;
    color: var(--text-soft);
    padding: 8px 0;
    border-top: 1px solid var(--line);
  }

  .leadership-columns li:first-child { border-top: none; }

  .exposure-block { margin-top: 56px; }

  .exposure-block h4 {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }

  /* ============================================
     14. SERVICE DETAIL LIST — the services page.
     Grouped like the homepage teaser, but each
     row gets room for a real description.
     Sub-index (01.1, 01.2...) is meaningful here:
     it encodes "category . position within it."
  ============================================ */
  .service-category {
    max-width: 1200px;
    margin: 0 auto 72px;
  }

  .category-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--ink);
  }

  .category-head .index {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--flag);
  }

  .category-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--ink);
  }

  .service-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
  }

  .service-category .service-row:first-of-type { border-top: none; }

  .service-row .sub-index {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-soft);
    padding-top: 2px;
  }

  .service-row h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 8px;
  }

  .service-row p {
    font-size: 15px;
    color: var(--text-soft);
    max-width: 62ch;
  }

  /* ============================================
     15. BLOG INDEX — card grid. Same auto-fit
     trick as the services section, new content
     shape: thumbnail + tag + title + excerpt.
  ============================================ */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .post-card {
    display: flex;
    flex-direction: column;
  }

  .post-thumb {
    aspect-ratio: 16 / 9;
    border: 1.5px dashed var(--line);
    border-radius: 4px;
    background: #FBFAF7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-soft);
    margin-bottom: 20px;
  }

  .post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .post-tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--flag);
    border: 1px solid rgba(193,68,58,0.3);
    padding: 4px 9px;
    border-radius: 3px;
  }

  .post-date {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-soft);
  }

  .post-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .post-card p {
    font-size: 14.5px;
    color: var(--text-soft);
    margin-bottom: 14px;
  }

  .post-card .read-more {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    align-self: flex-start;
  }

  .post-card:hover .read-more {
    color: var(--flag);
    border-color: var(--flag);
  }

  /* ============================================
     16. BLOG POST TEMPLATE — article typography.
     This is the one file you'll copy for every
     new post, so these rules matter more than
     most: they're reused far more than written.
  ============================================ */
  .post-header .post-meta { margin-bottom: 18px; }

  .post-header .post-tag {
    color: var(--gold);
    border-color: rgba(201,162,39,0.35);
  }

  .post-header .post-date { color: rgba(247,246,242,0.55); }

  .post-header .byline {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: rgba(247,246,242,0.6);
    margin-top: 18px;
  }

  .post-body {
    max-width: 68ch;
    margin: 0 auto;
    padding: 80px 5%;
  }

  .post-body p {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 22px;
  }

  .post-body h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--ink);
    margin: 48px 0 18px;
  }

  .post-body ul {
    margin: 0 0 24px 22px;
  }

  .post-body li {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 10px;
  }

  .post-callout {
    border-left: 3px solid var(--flag);
    background: #FBFAF7;
    padding: 22px 26px;
    margin: 36px 0;
    font-style: italic;
    color: var(--text-soft);
    font-size: 16px;
  }

  .post-back {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-soft);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    margin-bottom: 36px;
  }

  .post-back:hover { color: var(--flag); border-color: var(--flag); }

  @media (max-width: 860px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }
    .signature { max-width: 280px; margin-top: 20px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-inner {
      grid-template-columns: 1fr;
    }
    .founder-card { max-width: 360px; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .footer-bottom { flex-direction: column; }
    .leadership-grid {
      grid-template-columns: 1fr;
    }
    .leadership-photo { max-width: 260px; }
    .leadership-columns {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .service-row {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  }

