/*
 * GlobalCom PR Network - china-gateway.css
 * Page-specific CSS for China Gateway page.
 * Enqueued only on this page template via functions.php.
 * Source: china-gateway.html <style> block.
 */
:root {
    --orange: #f68d33;
    --orange-dark: #d97312;
    --orange-deep: #b85a0a;
    --ink: #141416;
    --ink-soft: #2a2a2e;
    --text: #3a3a3f;
    --muted: #6b6b72;
    --rule: #e5e3df;
    --paper: #fafaf7;
    --paper-warm: #f4f1ea;
    --white: #ffffff;
    --max: 1320px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Noto Sans', -apple-system, sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--paper);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  .display {
    font-family: 'Noto Sans Display', 'Noto Sans', -apple-system, sans-serif;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.02;
    color: var(--ink);
  }
  a { color: inherit; text-decoration: none; }
  .container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
  @media (max-width: 720px) { .container { padding: 0 24px; } }

  /* ===== NAV ===== */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 250, 247, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  /* Brand lockup: wordmark LEFT, globe RIGHT (CCM v1.1) */
  .brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .brand-text {
    display: flex; flex-direction: column;
    font-family: 'Noto Sans', -apple-system, sans-serif;
    font-weight: 700; letter-spacing: -0.01em;
    color: var(--orange);
    font-size: 17px; line-height: 1.05;
    text-transform: none;
  }
  .brand-text .wm-top {
    color: var(--orange); font-weight: 700;
    letter-spacing: 0.035em;
  }
  .brand-text .wm-bot {
    color: var(--orange); font-weight: 700;
    letter-spacing: -0.01em;
  }
  .brand-text .wm-top .com { color: var(--orange); font-weight: 400; }
  .brand-globe {
    width: 36px; height: 36px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .brand-globe img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a {
    font-size: 14.5px; color: var(--ink-soft); font-weight: 450;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange-dark); }
  .nav-cta {
    padding: 9px 18px; border: 1px solid var(--ink);
    border-radius: 999px; font-size: 14px; font-weight: 500;
    transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--ink); color: var(--white); }
  /* Burger button — hidden on desktop */
  .burger {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    align-items: center; justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.2s, background 0.2s;
    padding: 0;
  }
  .burger:hover { border-color: var(--ink); }
  .burger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s;
  }
  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  @media (max-width: 900px) {
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links .nav-cta { display: none; }
    .burger { display: inline-flex; }
  }

  /* Mobile drawer */
  .drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(20,20,22,0.4);
    backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    z-index: 60;
  }
  .drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  .drawer {
    position: fixed; top: 0; right: 0;
    width: min(360px, 86vw); height: 100vh;
    background: var(--paper);
    border-left: 1px solid var(--rule);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 61;
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(20,20,22,0.12);
  }
  .drawer.open { transform: translateX(0); }
  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; padding: 0 24px;
    border-bottom: 1px solid var(--rule);
  }
  .drawer-head .label {
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }
  .drawer-close {
    width: 36px; height: 36px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    color: var(--ink);
    padding: 0;
  }
  .drawer-close:hover { border-color: var(--ink); }
  .drawer-close svg { width: 14px; height: 14px; }
  .drawer-body {
    flex: 1;
    padding: 32px 24px 24px;
    display: flex; flex-direction: column;
    overflow-y: auto;
  }
  .drawer-link {
    display: flex; align-items: baseline; justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--ink);
    letter-spacing: -0.015em;
    transition: color 0.2s;
  }
  .drawer-link:hover { color: var(--orange-dark); }
  .drawer-link .arrow {
    font-size: 14px;
    color: var(--muted);
    font-family: 'Noto Sans', sans-serif;
    transition: transform 0.25s, color 0.2s;
  }
  .drawer-link:hover .arrow { transform: translateX(4px); color: var(--orange-dark); }
  .drawer-cta {
    margin-top: 28px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 24px;
    background: var(--ink); color: var(--white);
    border-radius: 999px;
    font-size: 15px; font-weight: 500;
    transition: background 0.2s;
  }
  .drawer-cta:hover { background: var(--orange); }
  .drawer-meta {
    margin-top: auto;
    padding-top: 28px;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
  }
  .drawer-meta a { color: var(--ink-soft); }
  .drawer-meta a:hover { color: var(--orange-dark); }
  body.drawer-open { overflow: hidden; }

  /* ===== HERO — SPLIT with ANIMATED GLOBE ===== */
  .hero {
    min-height: calc(100vh - 72px);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    padding: 80px 0;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr; gap: 60px;
    align-items: center; width: 100%;
    position: relative; z-index: 1;
  }
  @media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
  }
  .hero-copy { z-index: 2; position: relative; }
  .hero-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Noto Sans Mono', ui-monospace, monospace;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange-dark); font-weight: 600;
    margin-bottom: 36px;
  }
  .hero-kicker .pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    animation: pulse 2.2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246,141,51,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(246,141,51,0); }
    100% { box-shadow: 0 0 0 0 rgba(246,141,51,0); }
  }
  .hero h1 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(56px, 8vw, 118px);
    letter-spacing: -0.045em;
    line-height: 1.0;
    color: var(--ink);
  }
  .hero h1 .line {
    display: block;
    overflow: hidden;
  }
  .hero h1 .line span {
    display: inline-block;
    transform: translateY(110%);
    animation: rise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero h1 .line-2 span { animation-delay: 0.18s; }
  .hero h1 .accent {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 200;
    color: var(--orange);
    letter-spacing: -0.04em;
  }
  @keyframes rise { to { transform: translateY(0); } }

  .hero-sub {
    margin-top: 40px;
    font-size: 20px; line-height: 1.5;
    color: var(--ink-soft); font-weight: 400;
    max-width: 520px;
    opacity: 0;
    animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  }
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-ctas {
    margin-top: 44px;
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    font-size: 15px; font-weight: 500;
    border-radius: 999px;
    transition: all 0.25s;
    border: 1px solid transparent;
    font-family: inherit;
  }
  .btn-primary { background: var(--ink); color: var(--white); }
  .btn-primary:hover {
    background: var(--orange); transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(246,141,51,0.25);
  }
  .btn-ghost { border-color: var(--ink-soft); color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--white); }
  .btn .arrow { transition: transform 0.25s; }
  .btn:hover .arrow { transform: translateX(4px); }

  /* HERO VISUAL — abstract (CCM v1.1: no globe imagery in hero) */
  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    opacity: 0;
    animation: hero-visual-enter 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }
  @keyframes hero-visual-enter {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
  }

  /* ===== SECTION ===== */
  section { padding: 120px 0; }
  @media (max-width: 720px) { section { padding: 80px 0; } }
  .section-kicker {
    font-family: 'Noto Sans Mono', ui-monospace, monospace;
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange-dark); font-weight: 600; margin-bottom: 20px;
  }
  .section-title {
    font-size: clamp(36px, 4.8vw, 62px); max-width: 880px;
  }
  .section-title .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }

  /* ===== PILLARS ===== */
  .pillars-section { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .pillars {
    margin-top: 80px; display: grid; gap: 0; grid-template-columns: 1fr;
  }
  @media (min-width: 860px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
  .pillar {
    padding: 44px 40px 40px;
    border-top: 1px solid var(--rule);
    transition: background 0.25s;
  }
  .pillar:hover { background: var(--paper); }
  @media (min-width: 860px) {
    .pillar { border-top: none; border-left: 1px solid var(--rule); padding: 0 44px; }
    .pillar:first-child { border-left: none; padding-left: 0; }
    .pillar:last-child { padding-right: 0; }
  }
  .pillar-num {
    font-family: 'Noto Sans Mono', ui-monospace, monospace; font-size: 12px; font-style: normal;
    color: var(--orange); margin-bottom: 26px; font-weight: 600; letter-spacing: 0.06em;
  }
  .pillar h3 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 28px;
    line-height: 1.12; color: var(--ink); margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .pillar p { font-size: 16px; line-height: 1.6; color: var(--text); }

  /* ===== INDUSTRIES ===== */
  .industries-section { background: var(--paper-warm); }
  .industries-head {
    display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end;
  }
  @media (min-width: 960px) {
    .industries-head { grid-template-columns: 1.6fr 1fr; }
  }
  .industries-head p {
    font-size: 17px; color: var(--ink-soft); line-height: 1.55; max-width: 420px;
  }
  .tiles {
    margin-top: 70px; display: grid; gap: 1px; grid-template-columns: 1fr;
    background: var(--rule); border: 1px solid var(--rule);
  }
  @media (min-width: 640px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 960px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
  .tile {
    background: var(--white); padding: 40px 34px 36px;
    transition: all 0.3s; cursor: pointer; position: relative;
    min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
    overflow: hidden;
  }
  .tile::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--orange); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .tile:hover::before { transform: scaleX(1); }
  .tile:hover { background: var(--paper); }
  .tile-num {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-size: 13px;
    color: var(--muted); margin-bottom: 22px;
  }
  .tile h3 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 24px;
    color: var(--ink); letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 12px;
  }
  .tile p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }
  .tile .arrow-link {
    margin-top: 22px; font-size: 13.5px; color: var(--orange-dark);
    font-weight: 500; opacity: 0; transform: translateX(-6px);
    transition: all 0.3s;
  }
  .tile:hover .arrow-link { opacity: 1; transform: translateX(0); }
  .tiles-foot { margin-top: 40px; font-size: 15px; }
  .tiles-foot a {
    color: var(--ink); font-weight: 500;
    border-bottom: 1px solid var(--orange); padding-bottom: 2px;
  }

  /* ===== CHINA GATEWAY ===== */
  .china-section {
    background: var(--ink); color: var(--white);
    position: relative; overflow: hidden;
  }
  .china-section::before {
    content: ""; position: absolute;
    top: -250px; right: -250px; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(246,141,51,0.22), transparent 70%);
    pointer-events: none; animation: drift 14s ease-in-out infinite;
  }
  .china-section::after {
    content: ""; position: absolute;
    bottom: -200px; left: -200px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(246,141,51,0.08), transparent 70%);
    pointer-events: none; animation: drift 16s ease-in-out -4s infinite;
  }
  @keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
  }
  .china-head { display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
  .china-head > div:first-child { flex: 1; min-width: 280px; }
  .gcg-emblem {
    width: 140px; height: 140px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    opacity: 0.92;
  }
  .gcg-emblem img {
    width: 100%; height: 100%;
    object-fit: contain;
  }
  /* GCG emblem - stylised compass inspired by actual logo (blue/orange/red four-point star on ring) */
  .gcg-emblem svg { width: 100%; height: 100%; }
  .china-section .section-kicker { color: var(--orange); }
  .china-section .section-title { color: var(--white); }
  .china-lead {
    margin-top: 28px; max-width: 720px; font-size: 18px; line-height: 1.55;
    color: rgba(255,255,255,0.72);
  }
  .china-grid {
    margin-top: 72px; display: grid; grid-template-columns: 1fr; gap: 28px;
  }
  @media (min-width: 820px) {
    .china-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  .china-card {
    padding: 48px 42px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
  }
  .china-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    transform: scaleX(0); transition: transform 0.5s;
  }
  .china-card:hover::before { transform: scaleX(1); }
  .china-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(246,141,51,0.4);
    transform: translateY(-3px);
  }
  .china-card .direction {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal;
    font-size: 14px; color: var(--orange);
    margin-bottom: 22px;
  }
  .china-card h3 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 28px;
    color: var(--white); line-height: 1.2; margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .china-card p {
    font-size: 15.5px; line-height: 1.6;
    color: rgba(255,255,255,0.72); flex: 1;
  }
  .china-card .link {
    margin-top: 32px; font-size: 14.5px; font-weight: 500;
    color: var(--white); display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .china-card:hover .link { color: var(--orange); }

  /* ===== CREDIBILITY ===== */
  .cred-section { background: var(--paper); }
  .cred-title { text-align: center; margin: 0 auto; }
  .cred-facts {
    margin-top: 80px; display: grid; gap: 0; grid-template-columns: 1fr;
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  }
  @media (min-width: 720px) {
    .cred-facts { grid-template-columns: repeat(3, 1fr); }
  }
  .fact {
    padding: 56px 30px; text-align: center;
    border-top: 1px solid var(--rule);
  }
  .fact:first-child { border-top: none; }
  @media (min-width: 720px) {
    .fact { border-top: none; border-left: 1px solid var(--rule); }
    .fact:first-child { border-left: none; }
  }
  .fact-num {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-size: 72px; color: var(--ink);
    line-height: 1; letter-spacing: -0.035em; font-weight: 400;
  }
  .fact-num .plus { color: var(--orange); }
  .fact-label {
    margin-top: 20px; font-size: 14px; color: var(--muted);
    line-height: 1.45; max-width: 260px; margin-left: auto; margin-right: auto;
  }
  .fact.icco .fact-num {
    font-size: 40px; line-height: 1.1; letter-spacing: -0.015em;
  }
  .fact.icco .fact-num .icco-mark {
    color: var(--orange); font-weight: 500;
  }
  .logos {
    margin-top: 80px; padding: 56px 0;
    border-top: 1px solid var(--rule);
  }
  .logos-label {
    text-align: center; font-size: 11.5px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 44px;
    font-weight: 500;
  }
  .logo-row {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 48px; align-items: center; justify-items: center;
  }
  @media (max-width: 960px) { .logo-row { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; } }
  @media (max-width: 520px) { .logo-row { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }
  .logo-row img {
    max-height: 48px;
    max-width: 100%;
    width: auto; height: auto;
    object-fit: contain;
    opacity: 0.82;
    filter: grayscale(15%);
    transition: opacity 0.2s, filter 0.2s;
  }
  .logo-row img:hover { opacity: 1; filter: grayscale(0%); }
  /* UNDP is vertical, needs slightly more height allowance */
  .logo-row img.tall { max-height: 56px; }
  /* ===== TESTIMONIAL CARDS (3-up) ===== */
  .testimonials {
    margin-top: 80px;
    display: grid; grid-template-columns: 1fr; gap: 24px;
  }
  @media (min-width: 900px) {
    .testimonials { grid-template-columns: 1fr 1.1fr 1fr; gap: 28px; align-items: stretch; }
  }
  .t-card {
    position: relative;
    padding: 56px 36px 40px;
    border-radius: 4px;
    display: flex; flex-direction: column;
    background: var(--white);
    border: 1px solid var(--rule);
  }
  .t-card::before {
    content: "\201C";
    position: absolute;
    top: 10px; left: 28px;
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
    font-size: 96px; line-height: 1;
    color: var(--orange);
    font-weight: 300;
  }
  .t-card.featured {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
  }
  @media (min-width: 900px) {
    .t-card.featured { transform: translateY(-16px); box-shadow: 0 24px 60px rgba(20,20,22,0.18); }
  }
  .t-quote {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 300; font-style: normal;
    font-size: 19px; line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.01em;
    flex: 1;
  }
  .t-card.featured .t-quote { color: var(--white); }
  .t-attr {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    font-size: 14px; line-height: 1.5;
  }
  .t-card.featured .t-attr { border-top-color: rgba(255,255,255,0.14); }
  .t-name { font-weight: 600; color: var(--ink); }
  .t-card.featured .t-name { color: var(--white); }
  .t-role { display: block; color: var(--muted); margin-top: 2px; }
  .t-card.featured .t-role { color: rgba(255,255,255,0.62); }

  /* legacy testimonial styles (retained, unused) */
  .testimonial-placeholder { color: var(--muted); }

  /* ===== HOW WE WORK ===== */
  .how-section { background: var(--white); border-top: 1px solid var(--rule); }
  .how-grid {
    margin-top: 80px; display: grid; grid-template-columns: 1fr; gap: 0;
  }
  @media (min-width: 860px) {
    .how-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .step {
    padding: 48px 40px 40px; border-top: 1px solid var(--rule);
  }
  @media (min-width: 860px) {
    .step { border-top: none; border-left: 1px solid var(--rule); padding: 0 44px; }
    .step:first-child { border-left: none; padding-left: 0; }
    .step:last-child { padding-right: 0; }
  }
  .step-num {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-size: 80px; color: var(--orange);
    line-height: 1; margin-bottom: 32px; font-weight: 300;
    letter-spacing: -0.04em; font-style: normal;
  }
  .step h3 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 26px;
    color: var(--ink); margin-bottom: 18px; letter-spacing: -0.015em;
  }
  .step p { font-size: 15.5px; line-height: 1.6; color: var(--text); }

  /* ===== FINAL CTA ===== */
  .final {
    padding: 160px 0 140px; background: var(--ink); color: var(--white);
    text-align: center; position: relative; overflow: hidden;
  }
  .final::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(246,141,51,0.18), transparent 50%),
      radial-gradient(ellipse at 85% 70%, rgba(246,141,51,0.1), transparent 50%);
    pointer-events: none;
  }
  /* Globe outline background in final CTA */
  .final-globe-bg {
    position: absolute; top: 50%; left: 50%;
    width: 700px; height: 700px; opacity: 0.04;
    pointer-events: none;
    margin-left: -350px; margin-top: -350px;
  }
  .final-globe-bg svg { width: 100%; height: 100%; color: white; }
  .final-globe-bg path { fill: white; }
  .final h2 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 300;
    font-size: clamp(38px, 5.2vw, 70px); line-height: 1.08;
    color: var(--white); max-width: 900px; margin: 0 auto;
    letter-spacing: -0.03em; position: relative;
  }
  .final h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; color: var(--orange); font-style: normal; font-weight: 300; }
  .final p {
    margin-top: 32px; font-size: 18px;
    color: rgba(255,255,255,0.72);
    max-width: 580px; margin-left: auto; margin-right: auto;
    line-height: 1.55; position: relative;
  }
  .final-ctas {
    margin-top: 52px; display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap; position: relative;
  }
  .btn-light { background: var(--white); color: var(--ink); }
  .btn-light:hover {
    background: var(--orange); color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(246,141,51,0.3);
  }
  .btn-dark-ghost { border-color: rgba(255,255,255,0.3); color: var(--white); }
  .btn-dark-ghost:hover {
    border-color: var(--white); background: rgba(255,255,255,0.06);
  }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(28px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ===== HERO VISUAL — globe logo (per user override) ===== */
  .hero-globe-wrap {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-logo-new {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-logo-new img {
    width: 100%; height: 100%;
    object-fit: contain;
  }

  /* ===== HERO META STRIP ===== */
  .hero-meta-strip {
    margin-top: 52px;
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    font-size: 13px; color: var(--muted);
    letter-spacing: 0.04em;
    opacity: 0;
    animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  }
  .hero-meta-strip strong { color: var(--ink); font-weight: 500; }
  .hero-meta-strip .dot { color: var(--rule); }

  /* ===== FOOTER (CCM v1.2: brand + nav + contact + posts, offices row, ICCO+social bar) ===== */
  footer {
    background: var(--ink); color: rgba(255,255,255,0.62);
    padding: 96px 0 32px;
    font-size: 14px;
    position: relative;
  }
  footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246,141,51,0.32), transparent);
  }
  .footer-top {
    display: grid; grid-template-columns: 1fr; gap: 56px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  @media (min-width: 880px) {
    .footer-top { grid-template-columns: 1.4fr 1fr 1.1fr; gap: 56px; }
  }
  .footer-brand { display: flex; flex-direction: column; gap: 20px; }
  .footer-logo {
    width: 220px; max-width: 100%;
    height: auto;
  }
  .footer-tagline {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
    font-size: 17px; line-height: 1.4;
    color: rgba(255,255,255,0.92); font-weight: 300;
    letter-spacing: -0.01em;
  }
  .footer-tagline .accent { color: var(--orange); font-style: normal; font-weight: 500; }
  .footer-tagline-sub {
    font-size: 12.5px; color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em; text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
  }

  .footer-col-title {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.42); font-weight: 600;
    margin-bottom: 22px;
  }
  .footer-col a, .footer-col p {
    display: block;
    font-size: 14.5px; color: rgba(255,255,255,0.78);
    padding: 5px 0; transition: color 0.2s;
    line-height: 1.45;
  }
  .footer-col a:hover { color: var(--orange); }

  .footer-contact-line {
    display: flex; align-items: baseline; gap: 10px;
    padding: 5px 0;
  }
  .footer-contact-line .label {
    font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); font-weight: 600;
    min-width: 28px;
  }
  .footer-contact-line a, .footer-contact-line span {
    font-size: 14.5px; color: rgba(255,255,255,0.85);
  }
  .footer-contact-line a:hover { color: var(--orange); }

  .footer-posts .post {
    display: block; padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-posts .post:first-of-type { border-top: none; padding-top: 0; }
  .footer-posts .post-meta {
    font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.42); font-weight: 600;
    margin-bottom: 5px;
  }
  .footer-posts .post-title {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.35;
    color: rgba(255,255,255,0.88); font-weight: 400;
    letter-spacing: -0.005em;
    transition: color 0.2s;
  }
  .footer-posts .post:hover .post-title { color: var(--orange); }

  /* OFFICES ROW */
  .footer-offices {
    padding: 56px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-offices-head {
    display: flex; align-items: baseline; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    margin-bottom: 36px;
  }
  .footer-offices-title {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: 22px; color: rgba(255,255,255,0.95);
    letter-spacing: -0.01em;
  }
  .footer-offices-title .accent { color: var(--orange); font-style: normal; font-weight: 300; }
  .footer-offices-meta {
    font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.42); font-weight: 600;
  }
  .offices-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
  }
  @media (min-width: 560px) { .offices-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1080px) { .offices-grid { grid-template-columns: repeat(4, 1fr); } }
  .office {
    background: var(--ink);
    padding: 22px 22px 24px;
    display: flex; flex-direction: column;
    transition: background 0.25s;
    position: relative;
  }
  .office:hover { background: #1a1a1d; }
  .office-head {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    margin-bottom: 4px;
  }
  .office-city {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: 17px; color: rgba(255,255,255,0.95);
    letter-spacing: -0.01em;
  }
  .office-country {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.42); font-weight: 600;
    margin-bottom: 10px;
  }
  .office-addr {
    font-size: 12.5px; line-height: 1.55;
    color: rgba(255,255,255,0.7);
  }
  .office-partner {
    font-size: 12.5px; line-height: 1.4;
    color: rgba(255,255,255,0.62);
    font-family: inherit;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
    display: block;
  }
  a.office-partner:hover { color: var(--orange); }
  .gcg-badge {
    display: inline-flex; align-items: center;
    font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--orange); font-weight: 700;
    border: 1px solid rgba(246,141,51,0.4);
    padding: 2px 6px; border-radius: 2px;
    background: rgba(246,141,51,0.06);
  }
  .hq-badge {
    display: inline-flex; align-items: center;
    font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2px 6px; border-radius: 2px;
  }

  /* BOTTOM BAR */
  .footer-bottom {
    padding-top: 32px;
    display: grid; grid-template-columns: 1fr; gap: 24px;
    align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.45);
  }
  @media (min-width: 880px) {
    .footer-bottom { grid-template-columns: auto 1fr auto; gap: 40px; }
  }
  .footer-icco {
    display: flex; align-items: center; gap: 14px;
    justify-content: center;
  }
  @media (min-width: 880px) { .footer-icco { justify-content: flex-start; } }
  .footer-icco img {
    width: 56px; height: 56px; object-fit: contain;
    background: #ffffff;
    border-radius: 6px;
    padding: 5px;
    flex-shrink: 0;
  }
  .footer-icco-text {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); font-weight: 600; line-height: 1.45;
  }
  .footer-icco-text strong { color: rgba(255,255,255,0.88); font-weight: 700; }

  .footer-legal {
    display: flex; gap: 22px; flex-wrap: wrap;
    justify-content: center;
  }
  .footer-legal a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
  .footer-legal a:hover { color: var(--orange); }
  .footer-legal .sep { color: rgba(255,255,255,0.18); }

  .footer-social {
    display: flex; gap: 10px;
    justify-content: center;
  }
  @media (min-width: 880px) { .footer-social { justify-content: flex-end; } }
  .footer-social a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
  }
  .footer-social a:hover {
    border-color: var(--orange); color: var(--orange);
    transform: translateY(-2px);
  }
  .footer-social svg { width: 14px; height: 14px; }

  .footer-copyright {
    text-align: center;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.4);
  }

  /* Hero — China Gateway */
  .gcg-hero {
    padding: 130px 0 100px;
    background: var(--ink); color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative; overflow: hidden;
  }
  .gcg-hero::before {
    content: ""; position: absolute;
    top: -240px; right: -240px; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(246,141,51,0.18), transparent 70%);
    pointer-events: none;
  }
  .gcg-hero::after {
    content: ""; position: absolute;
    bottom: -200px; left: -160px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(246,141,51,0.10), transparent 70%);
    pointer-events: none;
  }
  .gcg-hero .container { position: relative; }
  .gcg-breadcrumb {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-weight: 600;
    margin-bottom: 32px;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  }
  .gcg-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .gcg-breadcrumb a:hover { color: var(--orange); }
  .gcg-breadcrumb .sep { color: rgba(255,255,255,0.2); }
  .gcg-breadcrumb .current { color: var(--white); }

  .gcg-hero-grid { display: grid; gap: 50px; grid-template-columns: 1fr; align-items: end; }
  @media (min-width: 960px) { .gcg-hero-grid { grid-template-columns: 1.4fr 280px; gap: 80px; } }

  .gcg-hero h1 {
    font-size: clamp(48px, 6.4vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--white);
  }
  .gcg-hero h1 .accent {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300;
    color: var(--orange);
  }
  .gcg-kicker {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange); font-weight: 600;
    margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .gcg-kicker .pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--orange); display: inline-block;
    box-shadow: 0 0 0 0 rgba(246,141,51,0.8);
    animation: pulse 2.4s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246,141,51,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(246,141,51,0); }
    100% { box-shadow: 0 0 0 0 rgba(246,141,51,0); }
  }
  .gcg-hero-lead {
    margin-top: 32px;
    font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
  }
  .gcg-hero-emblem {
    width: 220px; height: 220px;
    justify-self: start;
    opacity: 0.95;
  }
  @media (min-width: 960px) { .gcg-hero-emblem { justify-self: end; } }
  .gcg-hero-emblem img { width: 100%; height: 100%; object-fit: contain; }

  /* Two-direction split */
  .gcg-directions { padding: 0; background: var(--ink); color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gcg-directions .container { padding-top: 80px; padding-bottom: 80px; }
  .gcg-direction-grid { display: grid; gap: 1px; grid-template-columns: 1fr; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }
  @media (min-width: 880px) { .gcg-direction-grid { grid-template-columns: 1fr 1fr; } }
  .gcg-direction {
    background: var(--ink); padding: 56px 44px 48px;
    display: flex; flex-direction: column;
    transition: background 0.25s;
    position: relative; overflow: hidden;
  }
  .gcg-direction::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .gcg-direction:hover::before { opacity: 1; }
  .gcg-direction:hover { background: rgba(255,255,255,0.04); }
  .gcg-direction .arrow-glyph {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal;
    font-size: 13px; color: var(--orange); letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
  .gcg-direction h2 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: clamp(28px, 3.4vw, 38px); line-height: 1.15;
    color: var(--white); letter-spacing: -0.02em;
    margin-bottom: 22px;
  }
  .gcg-direction p {
    font-size: 16px; line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin-bottom: 18px; max-width: 460px;
  }
  .gcg-direction p strong { color: var(--white); font-weight: 500; }
  .gcg-direction .cta-link {
    margin-top: 24px; font-size: 14.5px; font-weight: 500;
    color: var(--orange); display: inline-flex; align-items: center; gap: 8px;
  }

  /* Generic prose section (light) */
  .prose-section { padding: 100px 0; border-bottom: 1px solid var(--rule); }
  .prose-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
  @media (min-width: 880px) { .prose-grid { grid-template-columns: 280px 1fr; gap: 80px; } }
  .prose-label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-dark); font-weight: 600; }
  .prose h2 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 28px; max-width: 780px; }
  .prose h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .prose p { font-size: 17px; line-height: 1.65; color: var(--text); max-width: 720px; margin-bottom: 22px; }
  .prose p strong { color: var(--ink); font-weight: 500; }

  /* Capabilities grid */
  .caps-section { padding: 110px 0; background: var(--paper); border-bottom: 1px solid var(--rule); }
  .caps-section .head { max-width: 760px; margin-bottom: 60px; }
  .caps-section h2 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
  .caps-section h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .caps-grid { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--rule); border: 1px solid var(--rule); }
  @media (min-width: 720px) { .caps-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px) { .caps-grid { grid-template-columns: repeat(3, 1fr); } }
  .cap { background: var(--white); padding: 36px 28px 32px; display: flex; flex-direction: column; gap: 12px; min-height: 200px; transition: background 0.25s; }
  .cap:hover { background: var(--paper-warm); }
  .cap .num { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-size: 13px; color: var(--orange); }
  .cap h4 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 19px; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; }
  .cap p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 0; }

  /* Platforms band */
  .platforms-section { padding: 100px 0; border-bottom: 1px solid var(--rule); background: var(--paper-warm); }
  .platforms-grid { display: grid; gap: 1px; grid-template-columns: repeat(2, 1fr); background: var(--rule); border: 1px solid var(--rule); margin-top: 50px; }
  @media (min-width: 720px) { .platforms-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1100px) { .platforms-grid { grid-template-columns: repeat(6, 1fr); } }
  .platform { background: var(--white); padding: 30px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; min-height: 130px; justify-content: center; }
  .platform .pname { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 18px; color: var(--ink); }
  .platform .pscript { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; }

  /* Team / footprint */
  .team-section { padding: 110px 0; border-bottom: 1px solid var(--rule); background: var(--paper); }
  .team-section .head { max-width: 760px; margin-bottom: 60px; }
  .team-section h2 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
  .team-section h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .team-grid { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--rule); border: 1px solid var(--rule); }
  @media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
  .team-cell { background: var(--white); padding: 36px 28px; min-height: 180px; display: flex; flex-direction: column; gap: 10px; }
  .team-cell .region { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-dark); font-weight: 600; }
  .team-cell h4 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
  .team-cell p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 0; }

  /* Clients band */
  .clients-section { padding: 110px 0; background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
  .clients-section::before { content: ""; position: absolute; bottom: -200px; right: -160px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(246,141,51,0.12), transparent 70%); pointer-events: none; }
  .clients-section .head { max-width: 760px; margin-bottom: 50px; position: relative; }
  .clients-section .label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
  .clients-section h2 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; letter-spacing: -0.02em; color: var(--white); }
  .clients-section h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .clients-grid { display: grid; gap: 1px; grid-template-columns: 1fr; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); position: relative; }
  @media (min-width: 720px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
  .client-cell { background: var(--ink); padding: 36px 28px; display: flex; flex-direction: column; gap: 10px; min-height: 160px; }
  .client-cell .cname { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: 24px; color: var(--white); letter-spacing: -0.01em; }
  .client-cell .csector { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .client-cell .cnote { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.72); }

  /* End CTA */
  .end-cta { padding: 130px 0 120px; background: var(--paper-warm); text-align: center; }
  .end-cta h2 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.1; color: var(--ink); letter-spacing: -0.02em; max-width: 780px; margin: 0 auto; }
  .end-cta h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .end-cta p { margin-top: 24px; font-size: 17px; color: var(--ink-soft); max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.55; }
  .end-cta .ctas { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* nav current state */
  .nav-links a.current { color: var(--orange-dark); }

  /* placeholder marker */
  .todo {
    display: inline-block;
    background: rgba(246,141,51,0.14);
    color: var(--orange-dark);
    padding: 1px 8px;
    border-radius: 3px;
    font-style: normal;
    font-size: 0.92em;
  }

