/*
 * GlobalCom PR Network - imprint.css
 * Page-specific CSS for Imprint page.
 * Enqueued only on this page template via functions.php.
 * Source: imprint.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,
  .brand-text .wm-bot { color: var(--orange); font-weight: 700; }
  .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);
  }

  .page-hero { padding: 120px 0 100px; border-bottom: 1px solid var(--rule); background: var(--paper); }
  .page-hero-inner { display: grid; gap: 48px; grid-template-columns: 1fr; }
  @media (min-width: 960px) { .page-hero-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; } }
  .page-hero h1 { font-size: clamp(48px, 6.4vw, 96px); line-height: 1.0; letter-spacing: -0.035em; }
  .page-hero h1 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); }
  .page-hero-lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--ink-soft); max-width: 520px; }
  .breadcrumb { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 32px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .breadcrumb a { color: var(--muted); transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--orange-dark); }
  .breadcrumb .sep { color: var(--rule); }
  .breadcrumb .current { color: var(--ink); }
  .nav-links a.current { color: var(--orange-dark); }

  .intro-section { padding: 100px 0; border-bottom: 1px solid var(--rule); }
  .intro-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
  @media (min-width: 880px) { .intro-grid { grid-template-columns: 280px 1fr; gap: 80px; } }
  .intro-label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-dark); font-weight: 600; }
  .intro 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; }
  .intro h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .intro p { font-size: 17px; line-height: 1.65; color: var(--text); max-width: 720px; margin-bottom: 22px; }
  .intro p strong { color: var(--ink); font-weight: 500; }

  /* Service cards — large, with sub-list */
  .services-section { padding: 100px 0; background: var(--paper); border-bottom: 1px solid var(--rule); }
  .services-section .head { margin-bottom: 60px; max-width: 760px; }
  .services-section h2 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
  .services-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; }

  .svc-list { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--rule); border: 1px solid var(--rule); }
  .svc-row { background: var(--white); padding: 56px 44px 48px; display: grid; gap: 36px; grid-template-columns: 1fr; transition: background 0.25s; }
  @media (min-width: 880px) { .svc-row { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
  .svc-row:hover { background: var(--paper-warm); }
  .svc-row .svc-num { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-size: 14px; color: var(--orange); margin-bottom: 14px; }
  .svc-row h3 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(26px, 2.8vw, 34px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; max-width: 480px; }
  .svc-row p { font-size: 16px; line-height: 1.6; color: var(--text); max-width: 480px; margin-bottom: 18px; }
  .svc-row .arrow-link { color: var(--orange-dark); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
  .svc-sublist { display: flex; flex-direction: column; }
  .svc-sublist .ttl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
  .svc-sublist ul { list-style: none; padding: 0; margin: 0; }
  .svc-sublist ul li { padding: 11px 0; border-top: 1px solid var(--rule); font-size: 15px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .svc-sublist ul li:last-child { border-bottom: 1px solid var(--rule); }
  .svc-sublist ul li .anchor { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-size: 12px; color: var(--muted); }

  /* Featured GCG card */
  .gcg-feature { padding: 90px 0; background: var(--ink); color: var(--white); position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gcg-feature::before { content: ""; position: absolute; top: -240px; right: -240px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(246,141,51,0.16), transparent 70%); pointer-events: none; }
  .gcg-feature .grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; position: relative; }
  @media (min-width: 880px) { .gcg-feature .grid { grid-template-columns: 1.4fr 220px; gap: 80px; } }
  .gcg-feature .label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
  .gcg-feature h3 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; letter-spacing: -0.02em; color: var(--white); margin-bottom: 20px; max-width: 640px; }
  .gcg-feature h3 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .gcg-feature p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 580px; margin-bottom: 24px; }
  .gcg-feature .cta-link { font-size: 14.5px; font-weight: 500; color: var(--orange); display: inline-flex; align-items: center; gap: 8px; }
  .gcg-feature .emblem { width: 180px; height: 180px; opacity: 0.9; justify-self: start; }
  @media (min-width: 880px) { .gcg-feature .emblem { justify-self: end; } }
  .gcg-feature .emblem img { width: 100%; height: 100%; object-fit: contain; }

  /* 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: 760px; 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: 560px; 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; }

  /* ============================================================
     CONTACT-PAGE SPECIFIC
     ============================================================ */

  /* Hero — meta column with promise card */
  .contact-hero { padding: 100px 0 80px; }
  .contact-hero .page-hero-inner { align-items: end; }
  .page-hero-meta { display: flex; flex-direction: column; gap: 32px; }
  .page-hero-meta .page-hero-lead { max-width: 100%; margin: 0; }
  .hero-promise {
    display: grid; grid-template-columns: 12px 1fr; gap: 16px; align-items: start;
    padding: 22px 24px;
    border: 1px solid var(--rule);
    background: var(--white);
    border-radius: 4px;
    font-size: 14.5px; line-height: 1.55; color: var(--ink-soft);
    max-width: 460px;
  }
  .hero-promise strong { color: var(--ink); font-weight: 600; }
  .promise-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--orange);
    margin-top: 6px;
    box-shadow: 0 0 0 3px rgba(246,141,51,0.18);
  }

  /* Two-paths section */
  .paths-section { padding: 100px 0; background: var(--paper); border-bottom: 1px solid var(--rule); }
  .paths-grid {
    display: grid; gap: 1px;
    grid-template-columns: 1fr;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  @media (min-width: 920px) {
    .paths-grid { grid-template-columns: 1fr 1.4fr; }
  }
  .path { background: var(--white); padding: 56px 48px; position: relative; display: flex; flex-direction: column; }
  @media (max-width: 720px) { .path { padding: 40px 28px; } }
  .path-num {
    position: absolute; top: 32px; right: 32px;
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300;
    font-size: 36px; line-height: 1;
    color: var(--orange);
    opacity: 0.7;
  }
  .path-kicker {
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange-dark); font-weight: 600;
    margin-bottom: 18px;
  }
  .path h2 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05; letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .path h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .path-lead { font-size: 16px; line-height: 1.55; color: var(--text); margin-bottom: 24px; max-width: 480px; }

  /* PATH A — call list */
  .path-list { list-style: none; padding: 0; margin: 0 0 32px; }
  .path-list li {
    padding: 12px 0;
    border-top: 1px solid var(--rule);
    font-size: 14.5px; color: var(--ink-soft);
    display: flex; gap: 12px; align-items: flex-start;
  }
  .path-list li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 600;
    flex-shrink: 0;
  }
  .path-list li:last-child { border-bottom: 1px solid var(--rule); }

  .path-cta { margin-top: auto; align-self: flex-start; }
  .path-foot {
    margin-top: 20px;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
    display: flex; align-items: center; gap: 10px;
  }
  .path-foot .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  }

  /* PATH B — form */
  .brief-form { display: flex; flex-direction: column; gap: 22px; }
  .field-row { display: grid; gap: 22px; grid-template-columns: 1fr; }
  @media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label {
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 600;
    display: flex; align-items: center; gap: 8px;
  }
  .field .req { color: var(--orange); font-weight: 700; }
  .field .opt { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 11px; }
  .field input[type="text"],
  .field input[type="email"],
  .field input[type="tel"],
  .field input[type="url"],
  .field textarea {
    font-family: inherit; font-size: 15px; color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 13px 16px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    width: 100%;
    line-height: 1.45;
  }
  .field textarea { resize: vertical; min-height: 130px; font-family: inherit; }
  .field input:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--ink);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(246,141,51,0.12);
  }

  /* Topic radios */
  .topic-row { display: flex; flex-wrap: wrap; gap: 8px; }
  .topic { cursor: pointer; }
  .topic input { position: absolute; opacity: 0; pointer-events: none; }
  .topic span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 13.5px; color: var(--ink-soft);
    background: var(--paper);
    transition: all 0.2s;
    text-transform: none; letter-spacing: 0;
    font-weight: 500;
  }
  .topic:hover span { border-color: var(--ink-soft); color: var(--ink); }
  .topic input:checked + span {
    background: var(--ink); color: var(--white);
    border-color: var(--ink);
  }
  .topic input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(246,141,51,0.3);
  }

  .press-redirect {
    background: rgba(246,141,51,0.08);
    border: 1px solid rgba(246,141,51,0.3);
    border-radius: 4px;
    padding: 16px 18px;
    font-size: 14px; line-height: 1.55;
    color: var(--ink-soft);
  }
  .press-redirect strong { color: var(--ink); font-weight: 600; }
  .press-redirect a { color: var(--orange-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

  .consent {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 13.5px; color: var(--text); line-height: 1.5;
    cursor: pointer;
  }
  .consent input[type="checkbox"] {
    margin-top: 3px; accent-color: var(--orange);
    width: 16px; height: 16px; flex-shrink: 0;
  }
  .consent a { color: var(--orange-dark); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

  .form-submit { align-self: flex-start; }

  .form-success {
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.4);
    border-radius: 4px;
    padding: 18px 20px;
    font-size: 14.5px; line-height: 1.55;
    color: var(--ink-soft);
  }
  .form-success strong { display: block; color: var(--ink); margin-bottom: 4px; font-weight: 600; }

  /* What happens next */
  .next-section { padding: 110px 0; background: var(--paper); border-bottom: 1px solid var(--rule); }
  .next-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); max-width: 760px; }
  .next-h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .steps {
    list-style: none; padding: 0;
    margin: 60px 0 0;
    display: grid; gap: 1px;
    grid-template-columns: 1fr;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  @media (min-width: 880px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
  .step { background: var(--white); padding: 40px 36px 44px; position: relative; }
  .step-num {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300;
    font-size: 22px; color: var(--orange);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
  }
  .step h3 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: 22px; line-height: 1.2; letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .step p { font-size: 14.5px; line-height: 1.6; color: var(--text); }

  /* Direct inboxes */
  .inbox-section { padding: 110px 0; background: var(--paper-warm); border-bottom: 1px solid var(--rule); }
  .inbox-section .head { margin-bottom: 56px; max-width: 720px; }
  .inbox-section 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); }
  .inbox-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; }
  .inbox-section .head-sub { margin-top: 14px; font-size: 16px; color: var(--ink-soft); }

  .inbox-grid {
    display: grid; gap: 1px;
    grid-template-columns: 1fr;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  @media (min-width: 720px) { .inbox-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1100px) { .inbox-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

  .inbox {
    background: var(--white);
    padding: 32px 28px 30px;
    display: flex; flex-direction: column;
    transition: background 0.2s;
    color: inherit;
  }
  .inbox:hover { background: var(--paper); }
  .inbox-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 24px;
  }
  .inbox-label {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }
  .inbox-arrow {
    font-size: 16px; color: var(--orange);
    transition: transform 0.25s;
  }
  .inbox:hover .inbox-arrow { transform: translateX(4px); }
  .inbox-addr {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: 22px; line-height: 1.15;
    color: var(--ink); letter-spacing: -0.015em;
    margin-bottom: 14px;
    word-break: break-word;
  }
  .inbox-desc { font-size: 13.5px; line-height: 1.55; color: var(--text); }

  /* Wrong place */
  .wrong-place { padding: 110px 0; background: var(--ink); color: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .wp-grid { display: grid; gap: 56px; grid-template-columns: 1fr; }
  @media (min-width: 880px) { .wp-grid { grid-template-columns: 1fr 1.4fr; gap: 100px; } }
  .wrong-place .intro-label { color: var(--orange); }
  .wp-h2 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -0.02em; color: var(--white); max-width: 480px; }
  .wp-h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .wp-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
  .wp-list li {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .wp-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .wp-q {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: 19px; line-height: 1.3;
    color: var(--white); letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .wp-a { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.7); }
  .wp-a a { color: var(--orange); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
  .wp-a em { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; color: rgba(255,255,255,0.95); }

  /* HQ section */
  .hq-section { padding: 120px 0; background: var(--paper); }
  .hq-grid { display: grid; gap: 56px; grid-template-columns: 1fr; align-items: start; }
  @media (min-width: 880px) { .hq-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
  .hq-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: 24px; }
  .hq-h2 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-style: normal; font-weight: 300; color: var(--orange); letter-spacing: -0.035em; }
  .hq-left p { font-size: 16px; line-height: 1.6; color: var(--text); margin-bottom: 24px; max-width: 540px; }
  .arrow-link { font-size: 14px; font-weight: 500; color: var(--orange-dark); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
  .arrow-link:hover { gap: 12px; }

  .hq-card {
    background: var(--white);
    border: 1px solid var(--rule);
    padding: 36px 36px 28px;
    border-radius: 4px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
  }
  .hq-card::before {
    content: "";
    position: absolute; top: 0; left: 36px; right: 36px;
    height: 3px; background: var(--orange);
  }
  .hq-card-label {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange-dark); font-weight: 600;
    margin-top: 6px;
  }
  .hq-card-name {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 400;
    font-size: 22px; line-height: 1.2; letter-spacing: -0.015em;
    color: var(--ink);
  }
  .hq-card-addr {
    font-style: normal;
    font-size: 15px; line-height: 1.6; color: var(--text);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rule);
  }
  .hq-card-row {
    display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: baseline;
    font-size: 15px;
  }
  .hq-card-row .hq-row-label {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }
  .hq-card-row a { color: var(--ink); transition: color 0.2s; }
  .hq-card-row a:hover { color: var(--orange-dark); }
  .hq-card-foot {
    margin-top: 12px; padding-top: 16px;
    border-top: 1px solid var(--rule);
    font-size: 12px; color: var(--muted);
    letter-spacing: 0.04em;
  }


  /* ===== IMPRINT (Legal disclosure) ===== */
  .imp-page-hero { padding: 110px 0 70px; }
  .imp-page-hero h1 { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 300; font-size: clamp(56px, 7.4vw, 108px); line-height: 1.0; letter-spacing: -0.045em; color: var(--ink); }
  .imp-page-hero h1 .accent { font-family: 'Noto Sans Display', 'Noto Sans', sans-serif; font-weight: 200; color: var(--orange); letter-spacing: -0.04em; }
  .imp-page-hero .lead { margin-top: 32px; font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; color: var(--ink-soft); max-width: 640px; }

  .imp-section { padding: 70px 0 50px; border-top: 1px solid var(--rule); background: var(--white); }
  .imp-section + .imp-section { border-top: 1px solid var(--rule); }
  .imp-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
  @media (min-width: 880px) { .imp-grid { grid-template-columns: 280px 1fr; gap: 80px; } }
  .imp-label {
    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;
    padding-top: 6px;
  }
  .imp-block { max-width: 720px; }
  .imp-block h2 {
    font-family: 'Noto Sans Display', 'Noto Sans', sans-serif;
    font-weight: 400; font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.1; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 28px;
  }
  .imp-block h3 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600; font-size: 17px; color: var(--ink);
    letter-spacing: -0.005em; margin-bottom: 10px; margin-top: 28px;
  }
  .imp-block h3:first-child { margin-top: 0; }
  .imp-block p {
    font-size: 16.5px; line-height: 1.65; color: var(--text);
    margin-bottom: 18px; max-width: 660px;
  }
  .imp-block p:last-child { margin-bottom: 0; }
  .imp-block a { color: var(--orange-dark); border-bottom: 1px solid rgba(217,115,18,0.25); transition: color 0.2s, border-color 0.2s; }
  .imp-block a:hover { color: var(--orange); border-bottom-color: var(--orange); }

  /* Company card */
  .imp-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 36px 40px;
    display: grid; grid-template-columns: 1fr; gap: 28px;
  }
  @media (min-width: 720px) { .imp-card { grid-template-columns: 1fr 1fr; gap: 40px 56px; } }
  .imp-field-label {
    font-family: 'Noto Sans Mono', ui-monospace, monospace;
    font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
    margin-bottom: 8px;
  }
  .imp-field-value {
    font-size: 16px; line-height: 1.55; color: var(--ink);
    font-weight: 500;
  }
  .imp-field-value a { color: var(--ink); border-bottom: 1px solid var(--rule); }
  .imp-field-value a:hover { color: var(--orange-dark); border-bottom-color: var(--orange); }

  .imp-meta-strip {
    margin-top: 80px; padding: 24px 0;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-family: 'Noto Sans Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }
  .imp-meta-strip a { color: var(--muted); transition: color 0.2s; }
  .imp-meta-strip a:hover { color: var(--orange-dark); }

