  :root {
    --ink: #0F0E0C;
    --paper: #F2EDE4;
    --paper-warm: #EBE3D2;
    --burgundy: #6B1F2E;
    --burgundy-deep: #4A1421;
    --burgundy-soft: #8B2D3F;
    --bronze: #8B6F47;
    --muted: #6B6258;
    --rule: rgba(15, 14, 12, 0.18);
    --rule-faint: rgba(15, 14, 12, 0.10);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-image:
      radial-gradient(circle at 20% 0%, rgba(107, 31, 46, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 100%, rgba(139, 111, 71, 0.05) 0%, transparent 50%);
  }

  /* Subtle grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
  }

  /* Bricolage Grotesque utility classes */
  .display {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 500;
  }
  .accent {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 400;
    color: var(--burgundy);
  }

  /* ============ NAVIGATION ============ */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(242, 237, 228, 0.85);
    border-bottom: 1px solid var(--rule-faint);
  }
  .topbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .topbar-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 60, "wght" 500;
    font-size: 18px;
    text-transform: none;
    letter-spacing: -0.01em;
  }
  .topbar-logo .accent { font-size: inherit; }
  .topbar-nav {
    display: flex;
    gap: 32px;
  }
  .topbar-nav a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
  }
  .topbar-nav a:hover { color: var(--burgundy); }
  .topbar-actions {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .topbar-lang {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    border-left: 1px solid var(--rule);
    padding-left: 24px;
  }
  .topbar-lang:hover { color: var(--ink); }
  .topbar-lang.active { color: var(--ink); font-weight: 600; }
  .topbar-cta {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
  }

  @media (max-width: 900px) {
    .topbar-nav { display: none; }
    .topbar-inner { padding: 14px 24px; }
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    background: var(--ink);
    color: var(--paper);
    min-height: 100vh;
    padding: 140px 40px 60px;
    overflow: hidden;
  }
  .hero-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
    min-height: calc(100vh - 200px);
  }
  .hero-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 80px;
    opacity: 0.7;
    grid-column: 1 / -1;
    font-weight: 500;
  }
  .hero-meta span { display: block; }
  .hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 500;
    font-size: clamp(64px, 13vw, 220px);
    line-height: 0.85;
    letter-spacing: -0.045em;
  }
  .hero-title .accent {
    font-variation-settings: "opsz" 96, "wght" 300;
    color: var(--burgundy);
  }
  .hero-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--frame-radius, 18px);
    transition: border-radius 0.5s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05);
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
    pointer-events: none;
  }
  .hero-tag {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: var(--burgundy);
    color: var(--paper);
    padding: 10px 20px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    transform: rotate(-2deg);
    box-shadow: 0 8px 24px rgba(107, 31, 46, 0.35);
  }
  .hero-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(242, 237, 228, 0.2);
    align-items: start;
  }
  .hero-bottom .label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .hero-bottom .value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 30, "wght" 400;
    font-size: 18px;
    line-height: 1.3;
  }
  .hero-bottom .value .accent {
    color: var(--burgundy);
    font-variation-settings: "opsz" 30, "wght" 400;
  }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-photo { max-width: 380px; }
    .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  }

  /* ============ SECTION SHARED ============ */
  section { position: relative; z-index: 2; }
  .section-pad {
    padding: 120px 40px;
    max-width: 1440px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .section-pad { padding: 80px 24px; }
  }
  .section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 32px;
    font-weight: 600;
  }
  .section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--burgundy);
  }
  .section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 500;
    font-size: clamp(40px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 48px;
  }
  .section-title .accent {
    font-variation-settings: "opsz" 96, "wght" 300;
    color: var(--burgundy);
  }

  /* ============ MANIFESTO ============ */
  .manifesto {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }
  .manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .manifesto-meta {
    position: sticky;
    top: 100px;
    font-size: 13px;
    line-height: 1.7;
  }
  .manifesto-meta strong {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
  }
  .manifesto-meta-item { margin-bottom: 24px; }
  .manifesto-text p {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 60, "wght" 400;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .manifesto-text p:first-child::first-letter {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 300;
    font-size: 5em;
    line-height: 0.85;
    float: left;
    margin: 12px 14px 0 0;
    color: var(--burgundy);
  }
  .manifesto-text p .accent {
    color: var(--burgundy-deep);
    font-variation-settings: "opsz" 60, "wght" 500;
  }

  @media (max-width: 900px) {
    .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
    .manifesto-meta { position: static; }
  }

  /* ============ IMPACT NUMBERS ============ */
  .impact {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 40px;
    overflow: hidden;
  }
  .impact-inner {
    max-width: 1440px;
    margin: 0 auto;
  }
  .impact-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 24px;
  }
  .impact-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 500;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.035em;
    max-width: 600px;
  }
  .impact-header h2 .accent {
    color: var(--burgundy-soft);
    font-variation-settings: "opsz" 96, "wght" 300;
  }
  .impact-header .caption {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    max-width: 280px;
    line-height: 1.6;
    font-weight: 500;
  }
  .impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(242, 237, 228, 0.18);
  }
  .impact-cell {
    padding: 32px 24px 32px 0;
    border-right: 1px solid rgba(242, 237, 228, 0.1);
    position: relative;
  }
  .impact-cell:last-child { border-right: none; }
  .impact-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 200, "wdth" 90;
    font-size: clamp(60px, 8vw, 110px);
    line-height: 1;
    color: var(--burgundy-soft);
    margin-bottom: 12px;
    letter-spacing: -0.04em;
  }
  .impact-cell .label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .impact-cell .desc {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.85;
  }

  @media (max-width: 900px) {
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .impact-cell { padding: 28px 20px; border-bottom: 1px solid rgba(242,237,228,0.1);}
    .impact-cell:nth-child(2n) { border-right: none; }
    .impact-cell:last-child { grid-column: 1 / -1; }
  }
  @media (max-width: 540px) {
    .impact-grid { grid-template-columns: 1fr; }
    .impact-cell { border-right: none; }
  }

  /* ============ CONSULTING ============ */
  .consulting { background: var(--paper-warm); }
  .consulting-intro {
    max-width: 720px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 30, "wght" 400;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.5;
    margin-bottom: 80px;
  }
  .consulting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .service {
    padding: 48px 40px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
    transition: background 0.4s;
    background: transparent;
  }
  .service:nth-child(3n) { border-right: none; }
  .service:nth-last-child(-n+3) { border-bottom: none; }
  .service:hover { background: var(--paper); }
  .service:hover .service-num { color: var(--burgundy); }

  .service-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 13px;
    color: var(--bronze);
    margin-bottom: 24px;
    transition: color 0.3s;
    letter-spacing: 0.05em;
  }
  .service-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 60, "wght" 500;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .service-title .accent {
    color: var(--burgundy);
    font-variation-settings: "opsz" 60, "wght" 400;
  }
  .service-target {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .service-deliverables {
    list-style: none;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }
  .service-deliverables li {
    padding-left: 16px;
    position: relative;
  }
  .service-deliverables li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--burgundy);
  }

  @media (max-width: 900px) {
    .consulting-grid { grid-template-columns: 1fr; }
    .service { border-right: none !important; border-bottom: 1px solid var(--rule) !important; padding: 40px 24px; }
    .service:last-child { border-bottom: none !important; }
  }

  /* ============ EXPERTISE / AREAS ============ */
  .expertise {
    background: var(--ink);
    color: var(--paper);
  }
  .expertise .section-label { color: var(--burgundy-soft); }
  .expertise .section-label::before { background: var(--burgundy-soft); }
  .expertise .section-title { color: var(--paper); }
  .expertise-intro {
    max-width: 820px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 30, "wght" 400;
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.5;
    margin-bottom: 60px;
    opacity: 0.78;
  }
  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(242, 237, 228, 0.12);
    border: 1px solid rgba(242, 237, 228, 0.12);
  }
  .expertise-cell {
    background: var(--ink);
    padding: 36px 28px;
    transition: background 0.35s, transform 0.35s;
  }
  .expertise-cell:hover {
    background: var(--burgundy-deep);
  }
  .expertise-cell .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 300;
    font-size: 12px;
    color: var(--burgundy-soft);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
  }
  .expertise-cell h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 36, "wght" 500;
    font-size: 21px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.18;
  }
  .expertise-cell p {
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.72;
    color: var(--paper);
  }
  @media (max-width: 900px) {
    .expertise-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .expertise-grid { grid-template-columns: 1fr; }
  }

  /* ============ METHOD / HOW I WORK ============ */
  .method { background: var(--paper); }
  .method-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .method-pillar {
    padding: 44px 24px 36px;
    border-right: 1px solid var(--rule);
    position: relative;
    transition: background 0.3s;
  }
  .method-pillar:last-child { border-right: none; }
  .method-pillar:hover { background: var(--paper-warm); }
  .method-pillar .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 200;
    font-size: 64px;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
  }
  .method-pillar h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 30, "wght" 500;
    font-size: 18px;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .method-pillar p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
  }
  @media (max-width: 1100px) {
    .method-grid { grid-template-columns: repeat(3, 1fr); }
    .method-pillar:nth-child(3) { border-right: none; }
    .method-pillar:nth-child(n+4) { border-top: 1px solid var(--rule); }
  }
  @media (max-width: 700px) {
    .method-grid { grid-template-columns: 1fr 1fr; }
    .method-pillar { border-right: 1px solid var(--rule) !important; border-top: 1px solid var(--rule); }
    .method-pillar:nth-child(2n) { border-right: none !important; }
    .method-pillar:nth-child(-n+2) { border-top: none; }
  }

  /* ============ CASE STUDIES ============ */
  .cases {
    background: var(--paper);
    border-top: 1px solid var(--rule);
  }
  .case {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding: 80px 0;
    border-bottom: 1px solid var(--rule);
    align-items: center;
  }
  .case:last-of-type { border-bottom: none; padding-bottom: 0; }
  .case:first-of-type { padding-top: 0; }
  .case-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 13px;
    color: var(--bronze);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }
  .case-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 500;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }
  .case-title .accent {
    color: var(--burgundy);
    font-variation-settings: "opsz" 96, "wght" 300;
  }
  .case-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }
  .case-meta span::before {
    content: '◆ ';
    color: var(--burgundy);
  }
  .case-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--ink);
  }
  .case-context {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 28px;
    font-style: italic;
    border-left: 2px solid var(--burgundy);
    padding-left: 18px;
  }
  .case-block {
    margin-bottom: 22px;
  }
  .case-block-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 10px;
  }
  .case-block p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink);
  }
  .case-block ul {
    list-style: none;
    font-size: 13.5px;
    line-height: 1.6;
  }
  .case-block ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
  }
  .case-block ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-size: 9px;
    top: 5px;
  }
  .case-quote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 36, "wght" 400;
    font-size: 17px;
    line-height: 1.4;
    color: var(--burgundy);
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    margin-top: 8px;
    margin-bottom: 24px;
    letter-spacing: -0.005em;
    font-style: italic;
  }
  .case-quote-author {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
    display: block;
    font-weight: 500;
  }
  .case-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .case-link {
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: all 0.2s;
    font-weight: 500;
  }
  .case-link:hover {
    color: var(--burgundy);
    border-color: var(--burgundy);
  }
  .case-visual {
    aspect-ratio: 4/3;
    background: var(--ink);
    color: var(--paper);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
  }
  .case-visual.alt { background: var(--burgundy-deep); }
  .case-visual.bronze { background: var(--bronze); }
  .case-visual-figure {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 200;
    font-size: clamp(80px, 12vw, 160px);
    line-height: 0.9;
    letter-spacing: -0.05em;
  }
  .case-visual-figure .accent {
    font-variation-settings: "opsz" 96, "wght" 300;
    color: rgba(242, 237, 228, 0.55);
  }
  .case-visual-caption {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 500;
  }
  .case-visual-flag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    letter-spacing: 4px;
  }
  .case:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
  }
  .case:nth-child(even) .case-visual { order: -1; }

  @media (max-width: 900px) {
    .case, .case:nth-child(even) {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 60px 0;
    }
    .case:nth-child(even) .case-visual { order: 0; }
  }

  /* ============ GLOBAL FOOTPRINT ============ */
  .footprint {
    background: var(--ink);
    color: var(--paper);
  }
  .footprint .section-label { color: var(--burgundy-soft); }
  .footprint .section-label::before { background: var(--burgundy-soft); }
  .footprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-top: 60px;
  }
  .footprint-col h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 60, "wght" 400;
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--burgundy-soft);
    letter-spacing: -0.02em;
  }
  .country {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(242, 237, 228, 0.12);
    align-items: baseline;
    transition: padding 0.2s, color 0.2s;
    text-decoration: none;
    color: inherit;
  }
  .country:hover {
    padding-left: 8px;
  }
  .country:hover .country-name { color: var(--burgundy-soft); }
  .country-flag {
    font-size: 28px;
    line-height: 1;
  }
  .country-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 500;
    font-size: 18px;
    transition: color 0.2s;
  }
  .country-detail {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    text-align: right;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .footprint-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ============ MEDIA & SPEAKING ============ */
  .media { background: var(--paper-warm); }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
  .video-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
  }
  .video-card:hover { transform: translateY(-4px); }
  .video-thumb {
    aspect-ratio: 16 / 9;
    background: var(--ink);
    overflow: hidden;
    position: relative;
    border-radius: 2px;
  }
  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .video-card:hover .video-thumb img { transform: scale(1.04); }
  .video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  }
  .video-play {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s;
  }
  .video-card:hover .video-play { transform: scale(1.1); }
  .video-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid var(--paper);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 4px;
  }
  .video-meta {
    margin-top: 16px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 600;
  }
  .video-title {
    margin-top: 8px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 30, "wght" 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }

  @media (max-width: 768px) {
    .video-grid { grid-template-columns: 1fr; }
  }

  /* Speaking events */
  .speaking-list {
    margin-top: 80px;
    border-top: 1px solid var(--rule);
  }
  .speaking-event {
    display: grid;
    grid-template-columns: 100px 1fr 2fr auto;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
  }
  .speaking-year {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 30, "wght" 400;
    font-size: 22px;
    color: var(--burgundy);
    letter-spacing: -0.02em;
  }
  .speaking-place {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }
  .speaking-event-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 500;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  .speaking-event-format {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .speaking-event {
      grid-template-columns: auto 1fr;
      grid-template-areas: "year place" "title title" "format format";
      gap: 8px 16px;
    }
    .speaking-year { grid-area: year; }
    .speaking-place { grid-area: place; }
    .speaking-event-title { grid-area: title; }
    .speaking-event-format { grid-area: format; }
  }

  /* ============ PUBLICATIONS ============ */
  .publications {
    background: var(--paper);
  }
  .pub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 40px;
    max-width: 760px;
  }
  .pub {
    border-top: 2px solid var(--ink);
    padding-top: 24px;
  }
  .pub-conf {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .pub-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 60, "wght" 500;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .pub-title .accent {
    color: var(--burgundy);
    font-variation-settings: "opsz" 60, "wght" 300;
  }
  .pub-abstract {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .pub-keywords {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 14, "wght" 400;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
  }
  .pub-link {
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--burgundy);
    padding-bottom: 2px;
    font-weight: 500;
  }

  /* ============ NEWS ============ */
  .news { background: var(--paper-warm); }
  .news-grid {
    columns: 2;
    column-gap: 60px;
    margin-top: 40px;
  }
  .news-cat {
    break-inside: avoid;
    margin-bottom: 48px;
  }
  .news-cat h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 60, "wght" 400;
    font-size: 28px;
    color: var(--burgundy);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .news-cat ul {
    list-style: none;
  }
  .news-cat li {
    padding: 10px 0;
    border-bottom: 1px solid var(--rule-faint);
  }
  .news-cat li a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    display: block;
    transition: color 0.2s, padding-left 0.2s;
  }
  .news-cat li a:hover {
    color: var(--burgundy);
    padding-left: 6px;
  }
  .news-source {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bronze);
    display: block;
    margin-top: 4px;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .news-grid { columns: 1; }
  }

  /* ============ CONTACT ============ */
  .contact {
    background: var(--ink);
    color: var(--paper);
    padding: 140px 40px;
    overflow: hidden;
    position: relative;
  }
  .contact-inner {
    max-width: 1440px;
    margin: 0 auto;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .contact-headline {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 96, "wght" 500;
    font-size: clamp(48px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }
  .contact-headline .accent {
    color: var(--burgundy-soft);
    font-variation-settings: "opsz" 96, "wght" 300;
  }
  .contact-side {
    font-size: 14px;
    line-height: 1.7;
  }
  .contact-side .label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 6px;
    margin-top: 24px;
    font-weight: 500;
  }
  .contact-side .label:first-child { margin-top: 0; }
  .contact-side a {
    color: var(--paper);
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 237, 228, 0.3);
    transition: border-color 0.2s, color 0.2s;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-variation-settings: "opsz" 24, "wght" 500;
    font-size: 18px;
    letter-spacing: -0.01em;
  }
  .contact-side a:hover {
    color: var(--burgundy-soft);
    border-color: var(--burgundy-soft);
  }
  .contact-cta {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(242, 237, 228, 0.18);
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 16px;
    font-weight: 500;
  }
  .contact-cta a {
    color: var(--burgundy-soft);
    text-decoration: none;
    opacity: 1;
  }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ============ ANIMATIONS ============ */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-title {
    opacity: 0;
    animation: heroIn 1.4s cubic-bezier(0.2, 0.65, 0.3, 1) 0.2s forwards;
  }
  .hero-photo {
    opacity: 0;
    animation: heroIn 1.4s cubic-bezier(0.2, 0.65, 0.3, 1) 0.5s forwards;
  }
  .hero-meta { opacity: 0; animation: fadeInMeta 1s ease 0.8s forwards; }
  .hero-bottom { opacity: 0; animation: fadeInFull 1s ease 0.8s forwards; }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInMeta { to { opacity: 0.7; } }
  @keyframes fadeInFull { to { opacity: 1; } }

  ::selection { background: var(--burgundy); color: var(--paper); }

  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--paper); }
  ::-webkit-scrollbar-thumb { background: var(--ink); }

  /* TWEAK OVERRIDES */
  html[data-palette="navy"] { --burgundy:#1F3A6B; --burgundy-deep:#122347; --burgundy-soft:#4A6FA1; --bronze:#6B7B8B; }
  html[data-palette="bronze"] { --burgundy:#9B4A1F; --burgundy-deep:#5C2A10; --burgundy-soft:#C57140; --bronze:#8B6F47; --paper:#EFE7D8; --paper-warm:#E5DAC4; }
  html[data-palette="forest"] { --burgundy:#2F5D3A; --burgundy-deep:#1A3A23; --burgundy-soft:#5A8A65; --bronze:#7A8470; }
  html[data-palette="mono"] { --burgundy:#1A1A1A; --burgundy-deep:#0A0A0A; --burgundy-soft:#4A4A4A; --bronze:#6B6258; }

  html[data-voice="serif"] .display, html[data-voice="serif"] .accent, html[data-voice="serif"] .topbar-logo,
  html[data-voice="serif"] .hero-title, html[data-voice="serif"] .hero-tag, html[data-voice="serif"] .hero-bottom .value,
  html[data-voice="serif"] .section-title, html[data-voice="serif"] .manifesto-text p,
  html[data-voice="serif"] .impact-num, html[data-voice="serif"] .impact-header h2, html[data-voice="serif"] .consulting-intro,
  html[data-voice="serif"] .service-num, html[data-voice="serif"] .service-title, html[data-voice="serif"] .expertise-intro,
  html[data-voice="serif"] .expertise-cell .num, html[data-voice="serif"] .expertise-cell h3,
  html[data-voice="serif"] .method-pillar .num, html[data-voice="serif"] .method-pillar h4,
  html[data-voice="serif"] .case-num, html[data-voice="serif"] .case-title, html[data-voice="serif"] .case-block-label,
  html[data-voice="serif"] .case-quote, html[data-voice="serif"] .case-visual-figure,
  html[data-voice="serif"] .footprint-col h3, html[data-voice="serif"] .country-name,
  html[data-voice="serif"] .video-title, html[data-voice="serif"] .speaking-year, html[data-voice="serif"] .speaking-event-title,
  html[data-voice="serif"] .pub-title, html[data-voice="serif"] .pub-keywords, html[data-voice="serif"] .news-cat h3,
  html[data-voice="serif"] .contact-headline, html[data-voice="serif"] .contact-side a,
  html[data-voice="serif"] .tile-title, html[data-voice="serif"] .strip-title, html[data-voice="serif"] .page-kicker {
    font-family:'Instrument Serif',Georgia,serif !important; font-variation-settings:normal !important; letter-spacing:-0.01em !important;
  }
  html[data-voice="serif"] .hero-title, html[data-voice="serif"] .section-title, html[data-voice="serif"] .contact-headline {
    letter-spacing:-0.025em !important; line-height:0.95 !important;
  }
  html[data-voice="serif"] .accent { font-style:italic; }

  html[data-voice="tech"] .display, html[data-voice="tech"] .accent, html[data-voice="tech"] .topbar-logo,
  html[data-voice="tech"] .hero-title, html[data-voice="tech"] .hero-tag, html[data-voice="tech"] .hero-bottom .value,
  html[data-voice="tech"] .section-title, html[data-voice="tech"] .manifesto-text p,
  html[data-voice="tech"] .impact-num, html[data-voice="tech"] .impact-header h2, html[data-voice="tech"] .consulting-intro,
  html[data-voice="tech"] .service-num, html[data-voice="tech"] .service-title, html[data-voice="tech"] .expertise-intro,
  html[data-voice="tech"] .expertise-cell .num, html[data-voice="tech"] .expertise-cell h3,
  html[data-voice="tech"] .method-pillar .num, html[data-voice="tech"] .method-pillar h4,
  html[data-voice="tech"] .case-num, html[data-voice="tech"] .case-title, html[data-voice="tech"] .case-block-label,
  html[data-voice="tech"] .case-quote, html[data-voice="tech"] .case-visual-figure,
  html[data-voice="tech"] .footprint-col h3, html[data-voice="tech"] .country-name,
  html[data-voice="tech"] .video-title, html[data-voice="tech"] .speaking-year, html[data-voice="tech"] .speaking-event-title,
  html[data-voice="tech"] .pub-title, html[data-voice="tech"] .pub-keywords, html[data-voice="tech"] .news-cat h3,
  html[data-voice="tech"] .contact-headline, html[data-voice="tech"] .contact-side a,
  html[data-voice="tech"] .tile-title, html[data-voice="tech"] .strip-title, html[data-voice="tech"] .page-kicker {
    font-family:'Space Grotesk','Manrope',sans-serif !important; font-variation-settings:normal !important; letter-spacing:-0.02em !important;
  }
  html[data-voice="tech"] .hero-title, html[data-voice="tech"] .section-title, html[data-voice="tech"] .contact-headline {
    letter-spacing:-0.05em !important; font-weight:500 !important;
  }

  html[data-frame="square"] { --frame-radius: 2px; }
  html[data-frame="soft"]   { --frame-radius: 18px; }
  html[data-frame="arch"]   { --frame-radius: 50% 50% 8px 8px / 38% 38% 8px 8px; }
  html[data-frame="capsule"] { --frame-radius: 50% / 18%; }

  .twk-panel { bottom: auto !important; top: 96px !important; }

  /* Multi-page additions */
  .topbar-nav a.active { color: var(--burgundy); }
  .topbar-nav a.active::after { content:''; display:block; width:6px; height:6px; border-radius:50%; background:var(--burgundy); margin:4px auto 0; }
  a.topbar-logo { text-decoration:none; color:var(--ink); }

  .page-header { background:var(--paper); border-bottom:1px solid var(--rule); }
  .page-kicker { font-family:'Bricolage Grotesque',sans-serif; font-variation-settings:"opsz" 30,"wght" 400; font-size:clamp(18px,1.9vw,24px); line-height:1.45; max-width:720px; color:var(--muted); letter-spacing:-0.005em; }

  .tiles { background:var(--paper-warm); border-top:1px solid var(--rule); }
  .tiles-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); }
  .tile { position:relative; display:flex; flex-direction:column; padding:48px 32px 56px; border-right:1px solid var(--rule); text-decoration:none; color:inherit; transition:background 0.4s,transform 0.3s; min-height:280px; }
  .tile:last-child { border-right:none; }
  .tile:hover { background:var(--paper); }
  .tile:hover .tile-arrow { transform:translateX(8px); color:var(--burgundy); }
  .tile-num { font-family:'Bricolage Grotesque',sans-serif; font-variation-settings:"opsz" 24,"wght" 400; font-size:13px; color:var(--bronze); margin-bottom:32px; letter-spacing:0.05em; }
  .tile-title { font-family:'Bricolage Grotesque',sans-serif; font-variation-settings:"opsz" 60,"wght" 500; font-size:36px; line-height:1; margin-bottom:16px; letter-spacing:-0.025em; }
  .tile-desc { font-size:14px; line-height:1.55; color:var(--muted); flex:1; }
  .tile-arrow { margin-top:24px; font-family:'Bricolage Grotesque',sans-serif; font-variation-settings:"opsz" 36,"wght" 300; font-size:28px; color:var(--ink); transition:transform 0.3s,color 0.3s; }
  @media (max-width:1024px) { .tiles-grid { grid-template-columns:1fr 1fr; } .tile { border-bottom:1px solid var(--rule); } .tile:nth-child(2n) { border-right:none; } .tile:nth-last-child(-n+2) { border-bottom:none; } }
  @media (max-width:600px) { .tiles-grid { grid-template-columns:1fr; } .tile { border-right:none !important; border-bottom:1px solid var(--rule); } .tile:last-child { border-bottom:none; } }

  .contact-strip { background:var(--ink); color:var(--paper); border-top:1px solid rgba(242,237,228,0.1); }
  .strip-inner { max-width:1440px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:48px; flex-wrap:wrap; }
  .contact-strip .section-label { color:var(--burgundy-soft); }
  .contact-strip .section-label::before { background:var(--burgundy-soft); }
  .strip-title { font-family:'Bricolage Grotesque',sans-serif; font-variation-settings:"opsz" 96,"wght" 500; font-size:clamp(40px,6vw,72px); line-height:0.95; letter-spacing:-0.035em; }
  .strip-title .accent { color:var(--burgundy-soft); font-variation-settings:"opsz" 96,"wght" 300; }
  .strip-cta { font-family:'Bricolage Grotesque',sans-serif; font-variation-settings:"opsz" 30,"wght" 500; font-size:22px; color:var(--paper); text-decoration:none; border:1px solid rgba(242,237,228,0.4); padding:22px 36px; border-radius:999px; transition:background 0.3s,color 0.3s,border-color 0.3s,transform 0.3s; letter-spacing:-0.01em; }
  .strip-cta:hover { background:var(--burgundy); color:var(--paper); border-color:var(--burgundy); transform:translateY(-2px); }

  main.page-content { animation: pageIn 0.6s cubic-bezier(0.2, 0.65, 0.3, 1); }
  @keyframes pageIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
