  :root {
    /* Palette: sampled from resume + illustration */
    --navy: #132B3E;
    --navy-deep: #0d1f2e;
    --navy-soft: #1e3a52;
    --paper: #FFFFFF;
    --cream: #FFF7DF;          /* from shirt in illustration */
    --cream-deep: #f3ead0;
    --ink: #132B3E;
    --muted: #6b7680;
    --rule: #e2ded0;
    --rule-strong: #132B3E;
    --dusty: #8caab4;          /* resume secondary */
    --dusty-dark: #5f7d87;
    --ochre: #e8a55a;          /* warm accent from illustration skin tones */
    --ochre-deep: #c47e2e;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  .wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .wrap-narrow {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ========== MASTHEAD ========== */
  .mast {
    background: var(--navy);
    color: var(--paper);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--ochre);
  }

  .mast-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mast-mark {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--paper);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mast-mark::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--ochre);
    border-radius: 50%;
    display: inline-block;
  }

  .mast-nav {
    display: flex;
    gap: 36px;
    align-items: center;
  }

  .mast-nav a {
    color: var(--paper);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s;
  }

  .mast-nav a:hover { opacity: 1; }

  .mast-cta {
    padding: 10px 18px;
    background: var(--ochre);
    color: var(--navy) !important;
    border-radius: 2px;
    opacity: 1 !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
  }

  .mast-cta:hover {
    background: var(--paper);
    transform: translateY(-1px);
  }

  /* ========== HERO ========== */
  .hero {
    background: var(--navy);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    z-index: 1;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 25%, rgba(19,43,62,0.85) 40%, rgba(19,43,62,0.1) 60%, transparent 75%);
    z-index: 2;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
  }

  .hero-left {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-right {
    /* intentionally empty, illustration is now the hero background */
  }

  .hero-kicker {
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ochre);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero-kicker::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--ochre);
  }

  .hero-h1 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: clamp(40px, 5.2vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--paper);
  }

  .hero-h1 .accent {
    color: var(--ochre);
    display: inline-block;
  }

  .hero-h1 .underline {
    position: relative;
    display: inline-block;
  }

  .hero-h1 .underline::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--ochre);
    opacity: 0.55;
    z-index: -1;
  }

  .hero-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    max-width: 560px;
    margin-bottom: 40px;
    color: var(--paper);
    opacity: 0.9;
  }

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

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: var(--ochre);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 2px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
  }

  .btn-primary::after {
    content: '→';
    transition: transform 0.2s;
    font-size: 18px;
  }

  .btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--paper);
    background: var(--paper);
  }

  .btn-primary:hover::after { transform: translateX(4px); }

  .hero-secondary {
    color: var(--paper);
    opacity: 0.8;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 2px;
    font-weight: 500;
    transition: opacity 0.2s, border-color 0.2s;
  }

  .hero-secondary:hover {
    opacity: 1;
    border-color: var(--ochre);
  }

  /* ========== SECTION PATTERN ========== */
  section { padding: 120px 0; position: relative; }

  .section-label {
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre-deep);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--navy);
    display: inline-block;
    padding-right: 48px;
  }

  .section-h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    max-width: 900px;
  }

  .section-h2 em {
    font-style: normal;
    font-weight: 700;
    color: var(--ochre-deep);
  }

  .testimonials .section-h2 em {
    color: var(--ochre);
  }

  /* ========== PROBLEM ========== */
  .problem {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }

  .problem-lede {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.005em;
    padding: 32px;
    background: var(--cream);
    border-left: 4px solid var(--ochre);
  }

  .problem-list {
    list-style: none;
    counter-reset: problem;
  }

  .problem-list li {
    padding: 32px 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    counter-increment: problem;
  }

  .problem-list li:first-child { padding-top: 0; border-top: 2px solid var(--navy); padding-top: 32px; }
  .problem-list li:last-child { border-bottom: none; }

  .problem-list .num {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 0.9;
    color: var(--navy);
    letter-spacing: -0.04em;
    opacity: 0.12;
  }

  .problem-list li::before {
    content: counter(problem, decimal-leading-zero);
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 0.9;
    color: var(--navy);
    letter-spacing: -0.04em;
    opacity: 0.18;
  }

  .problem-list strong {
    display: block;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .problem-list p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
  }

  /* ========== PROOF / LOGOS ========== */
  .proof {
    padding: 72px 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    border-top: 1px solid var(--rule);
  }

  .proof-label {
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--navy);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }

  .proof-label::before,
  .proof-label::after {
    content: '';
    width: 80px;
    height: 1px;
    background: var(--navy);
    opacity: 0.3;
  }

  .proof-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 48px;
    align-items: center;
  }

  .proof-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    opacity: 0.55;
    transition: opacity 0.2s, transform 0.2s;
    /* fallback styling when image fails and falls back to text span */
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    color: var(--navy);
    letter-spacing: -0.005em;
  }

  .proof-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Set logos to a consistent visual weight */
    filter: grayscale(100%) brightness(0) invert(0.15);
  }

  .proof-logo:hover { opacity: 1; transform: translateY(-2px); }

  /* ========== WORK ========== */
  .work {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }

  .work-header {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }

  .work-intro {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink);
  }

  .masonry {
    column-count: 3;
    column-gap: 28px;
  }

  .m-item {
    break-inside: avoid;
    margin-bottom: 28px;
    display: block;
    text-decoration: none;
    color: var(--ink);
  }

  .m-media {
    aspect-ratio: 4/3;
    background: var(--cream);
    border: 1px solid var(--navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  /* varied aspect ratios with patterned placeholders */
  .m-item:nth-child(2n) .m-media { aspect-ratio: 1/1; background: var(--cream-deep); }
  .m-item:nth-child(3n) .m-media { aspect-ratio: 3/4; background: var(--dusty); color: var(--navy); }
  .m-item:nth-child(5n) .m-media { aspect-ratio: 16/10; background: var(--navy); color: var(--cream); }
  .m-item:nth-child(7n) .m-media { aspect-ratio: 4/5; background: var(--ochre); color: var(--navy); }

  .m-item:hover .m-media {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--navy);
  }

  .m-body {
    padding: 18px 2px 0;
    display: grid;
    gap: 8px;
  }

  .m-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ochre-deep);
  }

  .m-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .m-outcome {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
  }

  .m-outcome strong { color: var(--ink); font-weight: 600; }

  /* ========== TESTIMONIALS ========== */
  .testimonials {
    background: var(--navy);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: '"';
    position: absolute;
    top: 40px;
    right: 48px;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 420px;
    line-height: 0.6;
    color: var(--ochre);
    opacity: 0.08;
    pointer-events: none;
  }

  .testimonials .section-h2 { color: var(--paper); }
  .testimonials .section-label { color: var(--ochre); border-color: var(--ochre); }

  .quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
  }

  .quote {
    padding: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
    transition: background 0.2s, border-color 0.2s;
  }

  .quote:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--ochre);
  }

  .quote-mark {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 0.5;
    color: var(--ochre);
    display: block;
    margin-bottom: 20px;
  }

  .quote-text {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: -0.005em;
    margin-bottom: 32px;
    color: var(--paper);
  }

  .quote-attr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .quote-attr strong {
    font-weight: 600;
    color: var(--paper);
  }

  .quote-attr span {
    color: var(--dusty);
  }

  /* ========== PROCESS ========== */
  .process {
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
  }

  .step {
    background: var(--paper);
    padding: 40px;
    border: 1px solid var(--rule);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 var(--navy);
  }

  .step-marker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
  }

  .step-num-big {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: var(--ochre);
    letter-spacing: -0.04em;
  }

  .step-num-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    line-height: 1.4;
  }

  .step h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--navy);
  }

  .step p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
  }

  /* ========== ENGAGE ========== */
  .engage {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }

  .engage-single {
    max-width: 880px;
    margin: 0 auto;
  }

  .engage-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
  }

  .engage-card {
    background: var(--cream);
    border: 1px solid var(--rule);
    padding: 56px;
    position: relative;
    overflow: hidden;
  }

  .engage-card.primary {
    background: var(--navy);
    color: var(--paper);
    border-color: var(--navy);
  }

  .engage-card.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ochre);
  }

  .engage-card.primary .engage-tag {
    border-color: rgba(255,255,255,0.3);
    color: var(--paper);
  }

  .engage-footnote {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.65;
    font-style: italic;
  }

  .engage-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
  }

  .engage-card.primary .engage-card-meta {
    border-bottom-color: rgba(255,255,255,0.15);
  }

  .engage-card-label {
    font-family: 'Roboto Slab', serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre-deep);
  }

  .engage-card.primary .engage-card-label {
    color: var(--ochre);
  }

  .engage-card-num {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 42px;
    opacity: 0.2;
    letter-spacing: -0.02em;
  }

  .engage-card h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .engage-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
    opacity: 0.9;
  }

  .engage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .engage-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    border: 1px solid var(--navy);
    border-radius: 2px;
    color: var(--navy);
  }

  /* ========== FAQ ========== */
  .faq { background: var(--cream); border-bottom: 1px solid var(--rule); }

  .faq-list {
    border-top: 2px solid var(--navy);
  }

  .faq-item { border-bottom: 1px solid var(--rule); }

  .faq-q {
    width: 100%;
    text-align: left;
    padding: 32px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--ochre-deep); }

  .faq-icon {
    font-weight: 400;
    font-size: 28px;
    transition: transform 0.3s, color 0.3s;
    color: var(--navy);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--ochre);
    border-color: var(--ochre);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-item.open .faq-a { max-height: 500px; }

  .faq-a-inner {
    padding: 0 0 32px 0;
    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
    color: var(--muted);
  }

  /* ========== FINAL CTA ========== */
  .final {
    background: var(--navy);
    color: var(--paper);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,165,90,0.1), transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .final-kicker {
    position: relative;
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ochre);
    margin-bottom: 32px;
  }

  .final-h2 {
    position: relative;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
  }

  .final-h2 em {
    font-style: normal;
    color: var(--ochre);
  }

  .final-sub {
    position: relative;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    max-width: 580px;
    margin: 0 auto 48px;
    opacity: 0.85;
  }

  .final .btn-primary { position: relative; }

  .final-meta {
    position: relative;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    gap: 48px;
    font-size: 13px;
    opacity: 0.85;
    flex-wrap: wrap;
  }

  .final-meta a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--ochre); padding-bottom: 2px; transition: color 0.2s; }
  .final-meta a:hover { color: var(--ochre); }

  /* ========== FOOTER ========== */
  .colophon {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.5);
    padding: 32px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }

  .colophon-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .wrap, .wrap-narrow { padding: 0 32px; }
    .hero { min-height: 80vh; }
    .hero-portrait { object-position: 70% center; opacity: 0.45; }
    .hero::after { background: linear-gradient(180deg, rgba(19,43,62,0.85) 0%, rgba(19,43,62,0.9) 100%); }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-left { padding-right: 0; }
    .hero-right { display: none; }
    .problem-grid { grid-template-columns: 1fr; gap: 48px; }
    .work-header { grid-template-columns: 1fr; gap: 32px; }
    .masonry { column-count: 2; }
    .quotes-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 24px; }
    .engage-grid { grid-template-columns: 1fr; }
    .proof-logos { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  }

  @media (max-width: 640px) {
    .wrap, .wrap-narrow { padding: 0 20px; }
    section { padding: 80px 0; }
    .final { padding: 90px 0; }
    .mast-nav { gap: 12px; }
    .mast-nav a:not(.mast-cta) { display: none; }
    .masonry { column-count: 1; }
    .engage-card { padding: 32px; }
    .engage-card h3 { font-size: 26px; }
    .problem-lede { font-size: 20px; padding: 24px; }
    .proof-logos { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .testimonials::before { font-size: 240px; }
    .quote { padding: 28px; }
    .step { padding: 28px; }
    .faq-q { font-size: 18px; }
    .final-meta { gap: 16px; flex-direction: column; }
  }

  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .hero-kicker, .hero-h1, .hero-sub, .hero-actions {
    animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-portrait {
    animation: fadeIn 1.2s ease 0.2s both;
  }

  .hero-h1 { animation-delay: 0.1s; }
  .hero-sub { animation-delay: 0.2s; }
  .hero-actions { animation-delay: 0.3s; }

  /* ========== BACKGROUND (resume summary section) ========== */
  .background {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }

  .bg-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
  }

  .bg-summary p {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
  }

  .bg-summary p:last-child { margin-bottom: 0; }

  /* drop cap removed */

  .bg-roles {
    background: var(--cream);
    padding: 32px;
    border-left: 4px solid var(--ochre);
  }

  .bg-roles-label {
    font-family: 'Roboto Slab', serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre-deep);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
  }

  .bg-role-list {
    list-style: none;
    display: grid;
    gap: 20px;
  }

  .bg-role-list li {
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--rule);
  }

  .bg-role-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .bg-role-co {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }

  .bg-role-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
  }

  .bg-role-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
  }

  .bg-roles-label-secondary {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 2px solid var(--navy);
  }

  .bg-role-list-compact {
    gap: 12px;
  }

  .bg-role-list-compact li {
    padding-bottom: 12px;
  }

  .bg-role-list-compact .bg-role-co {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .bg-role-list-compact .bg-role-title {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
  }

  .bg-impact {
    border-top: 2px solid var(--navy);
    padding-top: 40px;
    margin-bottom: 60px;
  }

  .bg-impact-label,
  .bg-recognition-label {
    font-family: 'Roboto Slab', serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre-deep);
    margin-bottom: 32px;
  }

  .bg-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .bg-impact-item {
    border-top: 1px solid var(--rule);
    padding-top: 20px;
  }

  .bg-impact-num {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 14px;
  }

  .bg-impact-item p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
  }

  .bg-recognition {
    border-top: 1px solid var(--rule);
    padding-top: 32px;
  }

  .bg-recognition p {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

  .bg-focus {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 2px solid var(--navy);
  }

  .bg-focus-label {
    font-family: 'Roboto Slab', serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre-deep);
    margin-bottom: 24px;
  }

  .bg-focus-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .bg-focus-tags li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 10px 16px;
    border: 1px solid var(--navy);
    border-radius: 2px;
    color: var(--navy);
    background: var(--paper);
    transition: background 0.2s, color 0.2s;
  }

  .bg-focus-tags li:hover {
    background: var(--navy);
    color: var(--paper);
  }

  @media (max-width: 1024px) {
    .bg-grid { grid-template-columns: 1fr; gap: 40px; }
    .bg-impact-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  }

  @media (max-width: 640px) {
    .bg-impact-grid { grid-template-columns: 1fr; gap: 24px; }
    .bg-impact-num { font-size: 32px; }
    .bg-summary p { font-size: 17px; }
    .bg-roles { padding: 24px; }
    .bg-focus-tags li { font-size: 12px; padding: 8px 12px; }
  }

  /* ========================================
     CASE STUDY PAGES
     ======================================== */

  /* Narrow wrap override for case study reading column */
  .cs-body .wrap-narrow {
    max-width: 780px;
  }

  /* ── CASE STUDY HERO ── */
  .cs-hero {
    background: var(--navy);
    color: var(--paper);
    padding: 100px 0 80px;
  }

  .cs-breadcrumb {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ochre);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cs-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .cs-breadcrumb a:hover { color: var(--ochre); }
  .cs-breadcrumb span { color: rgba(255,255,255,0.25); }

  .cs-hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: end;
  }

  .cs-client-label {
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .cs-client-label::before { content: ''; width: 32px; height: 2px; background: var(--ochre); }

  .cs-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin-bottom: 28px;
  }

  .cs-title em { font-style: normal; color: var(--ochre); }

  .cs-lede {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
  }

  .cs-meta-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--ochre);
    padding: 32px;
    align-self: start;
    margin-top: 20px;
  }

  .cs-meta-item { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cs-meta-item:first-child { padding-top: 0; }
  .cs-meta-item:last-child { border-bottom: none; padding-bottom: 0; }

  .cs-meta-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre);
    margin-bottom: 6px;
  }

  .cs-meta-value {
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--paper);
    line-height: 1.4;
  }

  /* ── HERO IMAGE ── */
  .cs-image-full {
    width: 100%;
    background: var(--navy-deep);
    border-bottom: 4px solid var(--ochre);
  }

  .cs-image-full img { width: 100%; display: block; }

  .cs-image-caption {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    padding: 14px 48px;
    font-style: italic;
  }

  /* ── PLACEHOLDERS ── */
  .cs-placeholder {
    width: 100%;
    background: var(--cream-deep);
    border: 2px dashed var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
  }

  .cs-placeholder-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    opacity: 0.6;
  }

  .cs-placeholder-full {
    width: 100%;
    background: var(--navy-soft);
    border-bottom: 4px solid var(--ochre);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
  }

  .cs-placeholder-full .cs-placeholder-label { color: rgba(255,255,255,0.3); }

  /* ── STATS BAR ── */
  .cs-stats { background: var(--paper); border-bottom: 1px solid var(--rule); padding: 0; }

  .cs-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--rule);
  }

  .cs-stats-inner.cols-3 { grid-template-columns: repeat(3, 1fr); }

  .cs-stat {
    padding: 20px 32px;
    border-right: 1px solid var(--rule);
    position: relative;
  }

  .cs-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ochre);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .cs-stat:hover::before { opacity: 1; }

  .cs-stat-num {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .cs-stat-num sup { font-size: 16px; vertical-align: super; }
  .cs-stat-label { font-size: 12px; line-height: 1.4; color: var(--muted); }

  /* ── BODY ── */
  .cs-body { padding: 100px 0; background: var(--cream); }
  .cs-section { margin-bottom: 80px; }
  .cs-section:last-child { margin-bottom: 0; }

  .cs-section-label {
    font-family: 'Roboto Slab', serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ochre-deep);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--navy);
    display: inline-block;
    padding-right: 40px;
  }

  .cs-section-h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--navy);
    margin-bottom: 28px;
  }

  .cs-body-text p {
    font-family: 'Roboto Slab', serif;
    font-size: 19px;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.005em;
  }

  .cs-body-text p:last-child { margin-bottom: 0; }

  /* ── PULLQUOTE ── */
  .cs-pullquote {
    margin: 60px 0;
    padding: 40px 48px;
    background: var(--navy);
    color: var(--paper);
    border-left: 4px solid var(--ochre);
  }

  .cs-pullquote p {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.45;
    letter-spacing: -0.01em;
    font-style: italic;
  }

  .cs-pullquote em { font-style: normal; color: var(--ochre); font-weight: 600; }

  .cs-pullquote cite {
    display: block;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.4);
  }

  /* ── BEFORE / AFTER PANELS ── */
  .cs-before-after {
    margin: 60px 0;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    align-items: stretch;
  }

  .cs-ba-panel {
    position: relative;
    overflow: hidden;
    height: 400px;
  }

  .cs-ba-panel img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }

  .cs-ba-label {
    position: absolute;
    top: 16px; left: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 6px 12px;
    border-radius: 2px;
  }

  .cs-ba-label.before { background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.7); }
  .cs-ba-label.after { background: var(--ochre); color: var(--navy); }

  .cs-ba-divider { width: 2px; background: var(--navy); position: relative; }

  .cs-ba-divider::before {
    content: 'VS';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--navy);
    color: var(--ochre);
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 8px 4px;
    writing-mode: vertical-lr;
  }

  /* ── INLINE IMAGE ── */
  .cs-inline-image { margin: 60px 0; }
  .cs-inline-image img { width: 100%; display: block; }

  .cs-inline-caption {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    font-style: italic;
  }

  /* ── VIDEO EMBED ── */
  .cs-video { position: relative; background: var(--cream); }

  .cs-video-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ochre);
    margin-bottom: 12px;
  }

  .cs-video iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

  .cs-video-caption {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    font-style: italic;
  }

  /* ── BEFORE/AFTER TABLE ── */
  .cs-transform-table {
    margin: 48px 0;
    border: 1px solid var(--rule);
    overflow: hidden;
  }

  .cs-transform-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    border-bottom: 1px solid var(--rule);
  }

  .cs-transform-row:last-child { border-bottom: none; }

  .cs-transform-before {
    padding: 20px 24px;
    background: var(--cream-deep);
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted);
  }

  .cs-transform-arrow {
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ochre);
    font-size: 16px;
    border-left: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
  }

  .cs-transform-after {
    padding: 20px 24px;
    background: var(--paper);
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--navy);
    font-weight: 500;
  }

  /* ── OUTCOME ── */
  .cs-outcome {
    background: var(--paper);
    border-top: 2px solid var(--navy);
    border-bottom: 1px solid var(--rule);
    padding: 80px 0;
  }

  .cs-outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .cs-outcome-text p {
    font-family: 'Roboto Slab', serif;
    font-size: 19px;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .cs-outcome-text p:last-child { margin-bottom: 0; }

  .cs-still-running {
    background: var(--navy);
    color: var(--paper);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cs-still-running-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ochre);
  }

  .cs-still-running-num {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--paper);
  }

  .cs-still-running-num span { font-size: 28px; color: var(--ochre); vertical-align: middle; margin-left: 4px; }

  .cs-still-running p {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin: 0;
  }

  /* ── NEXT CASE STUDY ── */
  .cs-next { background: var(--cream-deep); padding: 80px 0; border-top: 1px solid var(--rule); }

  .cs-next-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .cs-next a {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--navy);
    text-decoration: none;
    border-bottom: 2px solid var(--ochre);
    padding-bottom: 4px;
    transition: color 0.2s;
  }

  .cs-next a:hover { color: var(--ochre-deep); }

  /* ── CASE STUDY RESPONSIVE ── */
  @media (max-width: 1024px) {
    .cs-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .cs-meta-panel { max-width: 400px; }
    .cs-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .cs-stats-inner.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .cs-outcome-grid { grid-template-columns: 1fr; gap: 40px; }
    .cs-image-caption { padding: 14px 32px; }
  }

  @media (max-width: 640px) {
    .cs-hero { padding: 72px 0 60px; }
    .cs-stats-inner,
    .cs-stats-inner.cols-3 { grid-template-columns: 1fr; border-left: none; }
    .cs-stat { border-right: none; border-bottom: 1px solid var(--rule); }
    .cs-stat-num { font-size: 40px; }
    .cs-body { padding: 72px 0; }
    .cs-pullquote { padding: 28px; }
    .cs-still-running-num { font-size: 56px; }
    .cs-before-after { grid-template-columns: 1fr; }
    .cs-ba-divider { display: none; }
    .cs-transform-table { font-size: 14px; }
    .cs-image-caption { padding: 14px 20px; }
  }

  /* ── CASE STUDY ENTRY ANIMATIONS ── */
  .cs-breadcrumb { animation: rise 0.6s cubic-bezier(0.2,0.8,0.2,1) both; }
  .cs-client-label { animation: rise 0.6s cubic-bezier(0.2,0.8,0.2,1) 0.05s both; }
  .cs-title { animation: rise 0.7s cubic-bezier(0.2,0.8,0.2,1) 0.1s both; }
  .cs-lede { animation: rise 0.7s cubic-bezier(0.2,0.8,0.2,1) 0.18s both; }
  .cs-meta-panel { animation: rise 0.7s cubic-bezier(0.2,0.8,0.2,1) 0.24s both; }

  /* ========== CASE STUDY CARDS (index page) ========== */
  .cs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .cs-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--rule);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .cs-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--navy);
  }

  .cs-card-media {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream-deep);
  }

  .cs-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
  }

  .cs-card:hover .cs-card-media img {
    transform: scale(1.03);
  }

  .cs-card-body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cs-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ochre-deep);
  }

  .cs-card-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--navy);
  }

  .cs-card-outcome {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
  }

  .cs-card-outcome strong {
    color: var(--ink);
    font-weight: 600;
  }

  .cs-card-cta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ochre-deep);
    margin-top: 4px;
    border-bottom: 1px solid var(--ochre);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.2s;
  }

  .cs-card:hover .cs-card-cta {
    color: var(--navy);
  }

  @media (max-width: 1024px) {
    .cs-cards { grid-template-columns: 1fr; gap: 24px; }
  }

  @media (max-width: 640px) {
    .cs-card-body { padding: 20px 24px 24px; }
    .cs-card-title { font-size: 20px; }
  }

  /* ========== AI EDGE ========== */
  .ai-edge {
    background: var(--navy);
    color: var(--paper);
    border-bottom: 3px solid var(--ochre);
  }

  .ai-edge .section-label {
    color: var(--ochre);
    border-color: var(--ochre);
  }

  .ai-edge .section-h2 {
    color: var(--paper);
  }

  .ai-edge .problem-lede {
    color: var(--paper);
    background: rgba(255,255,255,0.05);
    border-left-color: var(--ochre);
  }

  .ai-edge .problem-list li {
    border-color: rgba(255,255,255,0.12);
  }

  .ai-edge .problem-list li:first-child {
    border-top-color: var(--ochre);
    padding-top: 32px;
  }

  .ai-edge .problem-list li::before {
    color: var(--ochre);
    opacity: 0.25;
  }

  .ai-edge .problem-list strong {
    color: var(--ochre);
  }

  .ai-edge .problem-list p {
    color: rgba(255,255,255,0.7);
  }

  /* ========== WRITING / LINKEDIN POSTS ========== */
  .writing {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }

  .writing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
  }

  .post-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--rule);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .post-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0 var(--navy);
  }

  .post-card-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--navy-soft);
    display: block;
  }

  .post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .post-card:hover .post-card-thumb img {
    transform: scale(1.03);
  }

  .post-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .post-card-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--navy);
  }

  .post-card-excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
  }

  .post-card-cta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ochre-deep);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    transition: color 0.2s;
  }

  .post-card-cta::after {
    content: '→';
    font-size: 13px;
    transition: transform 0.2s;
  }

  .post-card:hover .post-card-cta {
    color: var(--navy);
  }

  .post-card:hover .post-card-cta::after {
    transform: translateX(4px);
  }

  .writing-more {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--rule);
  }

  .writing-more a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 2px solid var(--ochre);
    padding-bottom: 3px;
    transition: color 0.2s;
  }

  .writing-more a:hover { color: var(--ochre-deep); }

  @media (max-width: 1024px) {
    .writing-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .writing-grid { grid-template-columns: 1fr; gap: 20px; }
  }

  /* ========== TWOMANYCOOKS — DELIVERABLES & SCRIPTS ========== */

  .cs-deliverables {
    margin: 48px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .cs-deliverable {
    background: var(--paper);
    padding: 28px 32px;
  }

  .cs-deliverable-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre-deep);
    margin-bottom: 10px;
  }

  .cs-deliverable-value {
    font-family: 'Roboto Slab', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
  }

  .cs-scripts {
    margin: 48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .cs-script {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--ochre);
    padding: 32px;
  }

  .cs-script-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ochre-deep);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
  }

  .cs-script p {
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .cs-script p:last-child { margin-bottom: 0; }

  .cs-script em {
    font-style: italic;
    color: var(--muted);
    font-size: 13px;
  }

  /* video tag (not iframe) */
  .cs-video video { width: 100%; display: block; }

  @media (max-width: 1024px) {
    .cs-deliverables { grid-template-columns: repeat(2, 1fr); }
    .cs-scripts { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .cs-deliverables { grid-template-columns: 1fr; }
  }
