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

    :root {
      --cream: #F5EDD7;
      --off-white: #FAF7F0;
      --chocolate: #2C1A0E;
      --dark: #0E0906;
      --hazelnut: #B8956A;
      --gold: #C8963E;
      --gold-light: #D9B070;
      --mid-brown: #6B4226;
      --font: 'Lexend', sans-serif;
      --ease-premium: cubic-bezier(.25, .46, .45, .94);
      --ease-spring: cubic-bezier(.16, 1, .3, 1);
      --dur-slow: 1.3s;
      --dur-med: .8s;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: var(--font);
      background: var(--dark);
      color: var(--cream);
      line-height: 24px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    /* GRAIN */
    .grain {
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
      opacity: .032;
      pointer-events: none;
      z-index: 9000
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar {
      width: 2px
    }

    ::-webkit-scrollbar-track {
      background: var(--dark)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 2px
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 32px 64px;
      background: transparent;
      transition: background var(--dur-med) var(--ease-premium),
        padding var(--dur-med) var(--ease-premium),
        backdrop-filter var(--dur-med);
    }

    .nav.scrolled {
      background: rgba(14, 9, 6, .95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      padding: 20px 64px
    }

    .nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
    .nav-logo img { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none
    }

    .nav-links a {
      font-size: .68rem;
      font-weight: 300;
      letter-spacing: .16em;
      text-transform: capitalize;
      color: rgba(245, 237, 215, .7);
      text-decoration: none;
      transition: color .35s;
      position: relative;
      white-space: nowrap
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .4s var(--ease-premium)
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--cream)
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%
    }

    /* ── SUBMENU ── */
    .nav-links li.has-submenu {
      position: relative
    }

    .nav-links .submenu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: rgba(14, 9, 6, .96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(200, 150, 62, .15);
      padding: 18px 0 6px;
      min-width: 148px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .3s var(--ease-premium), transform .3s var(--ease-premium), visibility .3s
    }

    .nav-links li.has-submenu:hover .submenu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0)
    }

    .submenu a {
      display: block;
      padding: 10px 20px;
      font-size: .62rem;
      font-weight: 300;
      letter-spacing: .14em;
      color: rgba(245, 237, 215, .58);
      white-space: nowrap;
      text-decoration: none;
      transition: color .25s, background .25s
    }

    .submenu a::after {
      display: none !important
    }

    .submenu a:hover,
    .submenu a.active {
      color: var(--cream);
      background: rgba(200, 150, 62, .07)
    }

    .nav-lang {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0
    }

    .nav-lang-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 26px;
      border-radius: 100px;
      background: var(--chocolate);
      color: var(--cream);
      font-family: var(--font);
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .3s
    }

    .nav-lang-btn:hover {
      background: var(--mid-brown)
    }

    .nav-lang a {
      font-family: var(--font);
      font-size: .6rem;
      font-weight: 300;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(245, 237, 215, .5);
      text-decoration: none;
      transition: color .3s
    }

    .nav-lang a:hover {
      color: var(--cream)
    }


    /* ── nav fits between 768 and 1200 ── */
    @media (max-width: 1200px) {
      .nav { padding: 26px 36px; }
      .nav.scrolled { padding: 16px 36px; }
      .nav-logo img { height: 34px; }
      .nav-links { gap: 22px; }
      .nav-links a { font-size: .62rem; letter-spacing: .1em; }
      .nav-lang { gap: 8px; }
    }
    @media (max-width: 980px) {
      .nav { padding: 22px 28px; }
      .nav.scrolled { padding: 14px 28px; }
      .nav-logo img { height: 30px; }
      .nav-links { gap: 14px; }
      .nav-links a { font-size: .58rem; letter-spacing: .04em; }
      .nav-lang-btn { width: 30px; height: 22px; }
    }


    /* ── MOBILE MENU ── */
    .nav-burger {
      display: none; position: relative; z-index: 2;
      width: 44px; height: 44px; margin-right: -12px;
      align-items: center; justify-content: center;
      background: none; border: 0; padding: 0; cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-burger span {
      position: absolute; left: 11px; width: 22px; height: 1px;
      background: var(--cream); border-radius: 1px;
      transition: transform .45s var(--ease-spring);
    }
    .nav-burger span:nth-child(1) { transform: translateY(-4px); }
    .nav-burger span:nth-child(2) { transform: translateY(4px); }
    .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
    .nav-burger[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }

    .nav-mobile {
      position: fixed; inset: 0; z-index: 90;
      display: flex; flex-direction: column; justify-content: center;
      padding: 116px 28px 44px;
      background: rgba(14, 9, 6, .985);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .45s var(--ease-premium), visibility .45s;
    }
    .nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-mobile-list { list-style: none; margin: 0; padding: 0; }
    .nav-mobile-list li { overflow: hidden; }
    .nav-mobile-list a {
      display: block; padding: 15px 0;
      font-family: var(--font); font-size: clamp(1.45rem, 7.5vw, 2rem);
      font-weight: 200; letter-spacing: -.02em; line-height: 1.15;
      color: rgba(245, 237, 215, .8); text-decoration: none;
      border-bottom: 1px solid rgba(245, 237, 215, .08);
      transform: translateY(115%);
      transition: transform .75s var(--ease-spring), color .3s;
    }
    .nav-mobile.open .nav-mobile-list a { transform: translateY(0); }
    .nav-mobile-list li:nth-child(1) a { transition-delay: .05s; }
    .nav-mobile-list li:nth-child(2) a { transition-delay: .10s; }
    .nav-mobile-list li:nth-child(3) a { transition-delay: .15s; }
    .nav-mobile-list li:nth-child(4) a { transition-delay: .20s; }
    .nav-mobile-list li:nth-child(5) a { transition-delay: .25s; }
    .nav-mobile-list li:nth-child(6) a { transition-delay: .30s; }
    .nav-mobile-list a.active { color: var(--gold-light); }
    .nav-mobile-foot {
      display: flex; align-items: center; gap: 20px; margin-top: 40px;
      opacity: 0; transition: opacity .5s .38s var(--ease-premium);
    }
    .nav-mobile.open .nav-mobile-foot { opacity: 1; }
    .nav-mobile-foot a {
      font-family: var(--font); font-size: .66rem; font-weight: 300;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(245, 237, 215, .42); text-decoration: none; transition: color .3s;
    }
    .nav-mobile-foot a.is-current { color: var(--cream); }

    @media (max-width: 768px) { .nav-burger { display: flex; } }
    @media (min-width: 769px) { .nav-mobile { display: none; } }
    @media (prefers-reduced-motion: reduce) {
      .nav-mobile, .nav-mobile-list a, .nav-mobile-foot, .nav-burger span { transition-duration: .01ms; }
      .nav-mobile-list a { transform: none; }
    }

    /* ─────────────────────────────────────────
       HERO — MAP AS FULL BACKGROUND
    ───────────────────────────────────────── */
    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    @keyframes threadPulse {

      0%,
      100% {
        opacity: .3;
        transform: scaleY(.8);
        transform-origin: top
      }

      50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top
      }
    }

    .ww-hero {
      position: relative;
      padding: 140px 64px 80px;
      height: clamp(520px, 50vh, 780px);
      overflow: hidden;
      background: var(--dark);
    }

    /* SVG fills the hero entirely — acts as the background */
    #ww-map-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    /* Left+bottom gradient — keeps text legible */
    .ww-hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(to right, rgb(16 11 7 / 97%) 0%, rgb(14 9 6) 24%, rgb(14 9 6 / 78%) 55%, rgb(14 9 6) 100%), linear-gradient(to top, rgba(14, 9, 6, .94) 0%, rgb(14 9 6 / 18%) 22%, rgba(14, 9, 6, .10) 50%, rgba(14, 9, 6, 0) 72%), linear-gradient(to bottom, rgba(14, 9, 6, .52) 0%, rgba(14, 9, 6, 0) 18%);
    }

    /* Decorative gold vertical rule — same as other pages */
    .ww-hero-vline {
      position: absolute;
      top: 0;
      left: 64px;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent 5%, rgba(200, 150, 62, .2) 28%, rgba(200, 150, 62, .08) 75%, transparent);
      z-index: 2;
    }

    /* Text content */
    .ww-hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 780px;
    }

    .ww-label {
      display: block;
      font-size: .68rem;
      font-weight: 400;
      letter-spacing: .36em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(14px);
      animation: slideUp .9s .4s var(--ease-premium) forwards;
    }

    .ww-hero-title {
      font-size: clamp(36px, 4.5vw, 72px);
      font-weight: 700;
      line-height: .88;
      letter-spacing: -.025em;
      color: var(--cream);
      margin-bottom: 36px;
    }

    .ww-hero-title .line {
      display: block;
      overflow: hidden;
    }

    .ww-hero-title .line-inner {
      display: block;
      opacity: 0;
      transform: translateY(110%);
      animation: slideUp 1.3s var(--ease-spring) forwards;
    }

    .ww-hero-title .line:nth-child(1) .line-inner {
      animation-delay: .18s;
    }

    .ww-hero-title .line:nth-child(2) .line-inner {
      animation-delay: .34s;
    }

    .ww-hero-title em {
      font-style: italic;
      font-weight: 200;
      color: var(--gold-light);
    }

    .ww-hero-rule {
      width: 44px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeIn .8s .78s forwards;
    }

    .ww-hero-body {
      font-size: clamp(.86rem, 1.05vw, 1rem);
      font-weight: 300;
      line-height: 1.9;
      color: rgba(245, 237, 215, .56);
      max-width: 400px;
      letter-spacing: .022em;
      opacity: 0;
      transform: translateY(16px);
      animation: slideUp .9s .94s var(--ease-premium) forwards;
    }

    /* Five‑stat strip at hero bottom-right */
    .ww-hero-stats {
      display: none;
    }

    .ww-hero-stat {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .ww-hero-stat-val {
      font-size: clamp(18px, 2.4vw, 32px);
      font-weight: 700;
      letter-spacing: -.03em;
      color: var(--cream);
      line-height: 1;
    }

    .ww-hero-stat-val span {
      color: var(--gold-light);
    }

    .ww-hero-stat-label {
      font-size: .58rem;
      font-weight: 300;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: rgba(245, 237, 215, .36);
    }

    .ww-hero-stat-rule {
      width: 100%;
      height: 1px;
      background: rgba(200, 150, 62, .14);
      margin: 4px 0;
    }

    /* Scroll thread */
    .ww-scroll-hint {
      display: none;
    }

    .ww-scroll-hint span {
      font-size: .6rem;
      font-weight: 300;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: rgba(245, 237, 215, .28);
      writing-mode: vertical-rl;
    }

    .ww-scroll-thread {
      width: 1px;
      height: 64px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: threadPulse 2.4s ease-in-out infinite;
    }

    /* D3 map styling */
    .map-sphere {
      fill: #050302;
    }

    .country {
      fill: rgba(245, 237, 215, .072);
      stroke: none;
    }

    .country-border {
      fill: none;
      stroke: rgba(245, 237, 215, .20);
      stroke-width: .38;
      stroke-linejoin: round;
    }

    .map-graticule {
      fill: none;
      stroke: rgba(245, 237, 215, .042);
      stroke-width: .4;
    }

    .map-equator {
      fill: none;
      stroke: rgba(245, 237, 215, .11);
      stroke-width: .65;
    }

    .map-route {
      fill: none;
      stroke: var(--gold);
      stroke-width: .9;
      opacity: .68;
    }

    @keyframes dotPulse {
      0% {
        r: 4;
        opacity: .7;
      }

      100% {
        r: 16;
        opacity: 0;
      }
    }

    .dot-ring {
      fill: none;
      stroke: var(--gold);
      stroke-width: .8;
      animation: dotPulse 2.6s ease-out infinite;
    }

    .dot-ring-2 {
      fill: none;
      stroke: var(--gold);
      stroke-width: .5;
      animation: dotPulse 2.6s ease-out infinite;
      animation-delay: .85s;
    }

    .dot-core {
      fill: var(--gold);
    }

    .map-name {
      font-family: var(--font);
      font-size: 7.5px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      fill: rgba(245, 237, 215, .92);
    }

    .map-sub {
      font-family: var(--font);
      font-size: 5.8px;
      font-weight: 300;
      letter-spacing: .1em;
      fill: rgba(245, 237, 215, .52);
    }


    /* ── GROUP NETWORK ── */
    .ww-net { background: var(--off-white); padding: clamp(76px, 9vw, 128px) 0; }
    .ww-net-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
    .ww-net-label {
      display: block; font-size: .68rem; font-weight: 400; letter-spacing: .32em;
      text-transform: uppercase; color: var(--mid-brown); margin-bottom: clamp(34px, 4vw, 56px);
    }
    .ww-net-body {
      display: grid; grid-template-columns: minmax(0, 1fr) 268px;
      gap: clamp(36px, 5vw, 76px); align-items: center;
    }
    .ww-net-map { margin: 0; }
    .ww-net-map img { width: 100%; height: auto; display: block; }
    .ww-net-caption {
      margin-top: 18px; font-size: .64rem; font-weight: 300; letter-spacing: .2em;
      text-transform: uppercase; color: rgba(44,26,14,.42);
    }
    .ww-net-logos { display: flex; flex-direction: column; }
    .ww-net-logo {
      display: flex; align-items: center; min-height: 62px; padding: 12px 4px;
      border-bottom: 1px solid rgba(44,26,14,.10); text-decoration: none;
      transition: padding .35s var(--ease-premium), background .35s;
    }
    .ww-net-logo:first-child { border-top: 1px solid rgba(44,26,14,.10); }
    .ww-net-logo:hover { background: rgba(200,150,62,.05); padding-left: 12px; }
    .ww-net-logo img {
      height: 34px; width: auto; display: block;
      opacity: .78; transition: opacity .35s;
    }
    .ww-net-logo:hover img { opacity: 1; }
    /* The HENDEX lockup is 64% wordmark and 12% sub-line, where the Balsu files are
       53% wordmark. 38px therefore lands the HENDEX cap-height on ~24px — the size
       the wordmark-only file ran at — while the Balsu marks stay at ~18px caps.
       Its pure black also outweighs the maroon wordmarks, so it runs a shade
       lighter than the column's .78 to sit at the same optical weight. */
    .ww-net-logo--hendex img { height: 38px; opacity: .7; }

    /* The map stacks above the logos, but the logo column keeps its bordered list layout:
       wrapping them into rows left every row starting at a different x, since each
       wordmark is a different width. */
    @media (max-width: 1000px) {
      .ww-net-body { grid-template-columns: 1fr; }
      .ww-net-logos { max-width: 420px; }
      .ww-net-logo { min-height: 56px; }
    }
    @media (max-width: 768px) {
      .ww-net { padding: 64px 0; }
      .ww-net-inner { padding-left: 28px; padding-right: 28px; }
    }

    /* ── LOCATION LIST ── */
    .ww-locs {
      background: #F5EDD7;
      padding: clamp(80px, 10vw, 140px) 0;
    }

    .ww-locs-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: clamp(48px, 6vw, 88px);
      align-items: start;
    }

    .ww-locs-left {}

    .ww-locs-img-col {
      position: sticky;
      top: 100px;
    }

    .ww-locs-img-col img {
      width: 100%;
      height: auto;
      display: block;
      pointer-events: none;
      user-select: none;
    }

    .ww-locs-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      gap: 32px;
      margin-bottom: 72px;
    }

    .ww-locs-label {
      display: block;
      font-size: .68rem;
      font-weight: 400;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--mid-brown);
      margin-bottom: 16px;
    }

    .ww-locs-title {
      font-size: clamp(26px, 3vw, 52px);
      font-weight: 300;
      line-height: 1.06;
      letter-spacing: -.02em;
      color: var(--dark);
    }

    .ww-locs-title em {
      font-style: italic;
      font-weight: 200;
      color: var(--mid-brown);
    }

    .ww-locs-desc {
      font-size: .88rem;
      font-weight: 300;
      line-height: 1.82;
      color: rgba(44, 26, 14, .5);
      letter-spacing: .02em;
      max-width: 400px;
      align-self: end;
    }

    .ww-locs-rule {
      height: 1px;
      background: rgba(44, 26, 14, .12);
      margin-bottom: 0;
    }

    .ww-loc-item {
      display: grid;
      grid-template-columns: 52px 1fr 1fr 140px;
      align-items: center;
      gap: 40px;
      padding: 36px 0;
      border-bottom: 1px solid rgba(44, 26, 14, .1);
      position: relative;
      cursor: default;
      transition: background .35s, padding .35s var(--ease-premium);
    }

    .ww-loc-item::before {
      content: '';
      position: absolute;
      left: -64px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .45s var(--ease-spring);
    }

    .ww-loc-item:hover::before {
      transform: scaleY(1);
    }

    .ww-loc-item:hover {
      background: rgba(200, 150, 62, .035);
      padding-left: 16px;
      padding-right: 16px;
      margin: 0 -16px;
    }

    .ww-loc-idx {
      font-size: .62rem;
      font-weight: 300;
      letter-spacing: .2em;
      color: rgba(44, 26, 14, 0.555);
      text-align: right;
    }

    .ww-loc-region {
      font-size: clamp(22px, 2.4vw, 38px);
      font-weight: 700;
      letter-spacing: -.02em;
      color: var(--dark);
      line-height: 1;
      margin-bottom: 4px;
      transition: color .35s;
    }

    .ww-loc-item:hover .ww-loc-region {
      color: var(--mid-brown);
    }

    .ww-loc-cities {
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .ww-loc-addr {
      list-style: none;
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ww-loc-addr li {
      font-size: .74rem;
      font-weight: 300;
      line-height: 1.65;
      letter-spacing: .015em;
      color: rgba(44, 26, 14, .5);
      max-width: 34ch;
    }

    .ww-loc-addr .ww-addr-tag {
      display: block;
      font-size: .56rem;
      font-weight: 400;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(44, 26, 14, .3);
      margin-bottom: 3px;
    }

    .ww-loc-role {
      font-size: .82rem;
      font-weight: 300;
      line-height: 1.72;
      color: rgba(44, 26, 14, .45);
      letter-spacing: .02em;
    }

    .ww-loc-coords {
      text-align: right;
      font-size: .65rem;
      font-weight: 300;
      letter-spacing: .08em;
      color: rgba(44, 26, 14, .28);
      line-height: 1.9;
      font-variant-numeric: tabular-nums;
    }

    .ww-loc-coords span {
      display: block;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 88px 0 52px;
    }

    .footer-grid {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 64px 64px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 64px;
      border-bottom: 1px solid rgba(245, 237, 215, .055);
    }

    .footer-brand .brand-mark { display: inline-block; }
    .footer-brand .brand-mark img { height: 34px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; transition: opacity .3s; }
    .footer-brand .brand-mark:hover img { opacity: 1; }

    .footer-brand .brand-tag {
      margin-top: 18px;
      font-size: .82rem;
      font-weight: 300;
      line-height: 1.78;
      color: rgba(245, 237, 215, .36);
      letter-spacing: .03em;
      max-width: 280px;
    }

    .footer-col h4 {
      font-size: .63rem;
      font-weight: 400;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--hazelnut);
      margin-bottom: 28px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-col a {
      font-size: .84rem;
      font-weight: 300;
      letter-spacing: .05em;
      color: rgba(245, 237, 215, .48);
      text-decoration: none;
      transition: color .32s;
    }

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

    .footer-bottom {
      max-width: 1400px;
      margin: 44px auto 0;
      padding: 0 64px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p,
    .footer-bottom-links a {
      font-size: .67rem;
      font-weight: 300;
      letter-spacing: .13em;
      color: rgba(245, 237, 215, .22);
      text-decoration: none;
      transition: color .3s;
    }

    .footer-bottom-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .footer-bottom-links a:hover {
      color: rgba(245, 237, 215, .55);
    }

    /* SCROLL REVEAL */
    .r {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium);
    }

    .r.on {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVE */
    @media(max-width:1200px) {
      .ww-locs-inner {
        grid-template-columns: 1fr 220px
      }

      .ww-locs-head {
        grid-template-columns: 1fr
      }

      .ww-loc-item {
        grid-template-columns: 40px 1fr 1fr
      }

      .ww-loc-coords {
        display: none
      }
    }

    @media(max-width:768px) {
      .nav {
        padding: 24px 28px
      }

      .nav.scrolled {
        padding: 16px 28px
      }

      .nav-links,
      .nav-lang {
        display: none
      }

      /* content sets the height, with a floor so the map still has room to read as a backdrop */
      .ww-hero {
        height: auto;
        min-height: 520px;
        padding: 128px 28px 76px
      }

      /* Backdrop filling the whole hero, exactly as on desktop: the base rule's
         inset:0 / 100% / 100% plus preserveAspectRatio="slice" covers the box.
         In a portrait hero that crops the 2:1 map to its middle band, so the outer
         pins fall outside the frame — intended, it reads as texture here. */
      #ww-map-svg {
        opacity: .55
      }

      .ww-hero-overlay {
        background: linear-gradient(to top, rgba(14, 9, 6, .96) 0%, rgba(14, 9, 6, .7) 24%, rgba(14, 9, 6, .28) 58%, rgba(14, 9, 6, .5) 100%)
      }

      .ww-hero-vline {
        left: 28px
      }

      .ww-hero-stats,
      .ww-scroll-hint {
        display: none
      }

      .ww-locs {
        padding: 64px 0
      }

      .ww-locs-inner {
        padding: 0 28px;
        grid-template-columns: 1fr
      }

      .ww-locs-img-col {
        display: none
      }

      .ww-locs-head {
        grid-template-columns: 1fr;
        margin-bottom: 48px
      }

      .ww-loc-item {
        grid-template-columns: 36px 1fr;
        gap: 20px;
        padding: 28px 0
      }

      .ww-loc-role,
      .ww-loc-coords {
        display: none
      }

      footer {
        padding: 64px 0 40px
      }

      .footer-grid {
        padding-left: 28px;
        padding-right: 28px;
        grid-template-columns: 1fr;
        gap: 40px
      }

      .footer-bottom {
        padding-left: 28px;
        padding-right: 28px;
        flex-direction: column;
        gap: 20px;
        text-align: center
      }

      .footer-bottom-links {
        justify-content: center
      }
    }

    @media(max-width:480px) {
      .ww-loc-item {
        grid-template-columns: 28px 1fr
      }
    }

/* ─────────────────────────────────────────
   MOBILE TAP TARGETS
   The design's link sizes come from desktop pointer accuracy. On touch the
   mobile-menu language switcher measured 19x24px and the footer links 17px
   tall — well under the 44x44 minimum in WCAG 2.5.5 and Apple's HIG.
   Padding only: nothing here moves the visual design, the hit area just
   grows around the text.
   ───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Language switcher inside the mobile menu */
  .nav-mobile-foot {
    gap: 4px;
  }

  .nav-mobile-foot a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 8px;
    font-size: .78rem;
  }

  /* Footer navigation */
  .footer-col ul li a,
  .footer-bottom-links a {
    display: inline-block;
    padding: 12px 0;
    line-height: 20px;
  }

  .footer-col ul li,
  .footer-bottom-links li {
    line-height: 1;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  /* Hero call-to-action: the primary action on most pages, and only ~24px
     tall from its text alone. */
  .hero-cta,
  .jn-hero-cta,
  .hz-hero-cta,
  .s-cta-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Logos: wide enough to hit, but short. */
  .nav-logo,
  .brand-mark {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Footer bottom row: 44px tall already, widen the short ones. */
  .footer-bottom-links a {
    min-width: 44px;
    text-align: center;
  }
}
