/* ============================================================
   INDESORE — page & component styles (light system)
   ============================================================ */

/* ---------- Intro curtain ---------- */
body.locked { overflow: hidden; }
.curtain {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: grid; place-content: center; gap: 24px;
  justify-items: center;
}
.curtain__wm { --wm-size: clamp(1.4rem, 4vw, 2.6rem); overflow: hidden; }
.curtain__wm i, .curtain__wm .wm-o { display: inline-block; }
.curtain__bar {
  width: min(220px, 40vw); height: 2px;
  background: var(--denim);
  transform: scaleX(0); transform-origin: left;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(104px, 14vh, 156px);
  padding-bottom: clamp(64px, 8vh, 100px);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: 100%;
}
/* No max-width in `ch` here: it resolves against this element's body-size
   font and would throttle the display-size h1 to a third of its column. */
.hero__copy { min-width: 0; }
.hero h1 { margin: 20px 0 22px; }
/* The single accented word. Denim, not italic — the emphasis is colour. */
.hero h1 em { font-style: normal; color: var(--denim); }
.hero .lede { max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__globe {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 720px;
  justify-self: end;
  margin-right: -4%;
}
.hero__globe canvas { width: 100%; height: 100%; }

/* If WebGL is unavailable, fall back to Indesore's own denim globe
   rather than leaving a hole where the hero should be. */
.globe-fallback {
  position: absolute; inset: 0; margin: auto;
  width: 80%; height: 80%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.no-webgl .globe-fallback { opacity: 1; }
.no-webgl canvas { display: none; }

/* Scroll cue */
.cue {
  position: absolute;
  left: var(--rail); bottom: 28px;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: .63rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase; color: var(--ink-3);
}
.cue__line { width: 48px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.cue__line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--denim);
  animation: cue 2.8s var(--ease-io) infinite;
}
@keyframes cue {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- Data rail ---------- */
.datarail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.datarail__cell {
  padding: clamp(22px, 2.4vw, 34px) clamp(14px, 1.8vw, 28px);
  border-left: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.datarail__cell:first-child { border-left: 0; }
.datarail__cell::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--kraft); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.datarail__cell:hover::after { transform: scaleX(1); }
.datarail__n {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1; letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
  color: var(--denim);
  display: flex; align-items: baseline; gap: .03em;
}
.datarail__l {
  font-size: .655rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 10px;
}

/* ============================================================
   Section furniture
   ============================================================ */
.shead {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 68px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 72px);
}
.shead__t { margin-top: 18px; }
.shead__aside { padding-bottom: 4px; }
@media (max-width: 880px) { .shead { grid-template-columns: 1fr; align-items: start; } }

/* ============================================================
   Client wall
   ============================================================ */
.clients { padding-block: clamp(38px, 4.6vw, 62px); overflow: hidden; }
.clients__lab {
  font-size: .655rem; font-weight: 600; letter-spacing: .19em;
  text-transform: uppercase; color: var(--ink-3);
  text-align: center; margin-bottom: 32px;
}
.mq {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mq__in { display: flex; align-items: center; gap: clamp(38px, 5.5vw, 84px); width: max-content; }
.mq img {
  height: clamp(19px, 2vw, 28px);
  width: auto;
  filter: brightness(0);
  opacity: .34;
  transition: opacity .35s var(--ease);
  flex: none;
}
.mq img:hover { opacity: .82; }
.deep .mq img { filter: brightness(0) invert(1); opacity: .5; }

/* ============================================================
   Trust manifesto
   ============================================================ */
.manifesto__q {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.1vw, 3rem);
  font-weight: 600;
  line-height: 1.14; letter-spacing: -.024em;
  max-width: 20ch;
}
.manifesto__q b { font-weight: 700; color: var(--denim); }
.manifesto__body { display: grid; gap: 18px; max-width: 54ch; align-self: end; }
.manifesto__body p { color: var(--ink-2); }

/* ---------- Pillars: three warps on one loom ---------- */
.loom {
  display: grid;
  grid-template-columns: var(--cols, 1fr 1fr 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  min-height: 460px;
  transition: grid-template-columns .8s var(--ease);
}
.warp {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.4vw, 34px);
  text-align: left;
  transition: background .5s var(--ease);
}
.warp.is-open { background: var(--paper-2); }
/* the whole panel is the control, but the control is a real button */
.warp__hit {
  position: absolute; inset: 0; z-index: 4;
  width: 100%; height: 100%;
  cursor: pointer;
}
.warp__hit:focus-visible { outline-offset: -4px; }
.warp__rule {
  position: absolute; top: 0; left: 0; height: 3px; width: 100%;
  background: var(--denim);
  transform: scaleX(var(--rs, .16)); transform-origin: left;
  transition: transform .7s var(--ease);
  z-index: 5;
}
.warp.is-open .warp__rule { --rs: 1; }
.warp:hover .warp__rule { --rs: .5; }
.warp.is-open:hover .warp__rule { --rs: 1; }
.warp__idx {
  position: absolute; top: clamp(20px, 2.2vw, 30px); left: clamp(22px, 2.4vw, 34px);
  font-size: .645rem; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--kraft); z-index: 1;
}
.warp__h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.2rem, 1.85vw, 1.8rem); line-height: 1.06;
  letter-spacing: -.022em; margin-bottom: 7px;
  position: relative; z-index: 1;
}
.warp__sub {
  font-size: .655rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 15px;
  position: relative; z-index: 1;
}
.warp__body {
  position: relative; z-index: 1;
  display: grid; gap: 14px;
  max-width: 52ch;
  opacity: 0; transform: translateY(12px);
  max-height: 0; overflow: hidden;
  transition: opacity .5s var(--ease), transform .65s var(--ease), max-height .75s var(--ease);
}
.warp.is-open .warp__body { opacity: 1; transform: none; max-height: 720px; }
.warp__body p { font-size: .92rem; color: var(--ink-2); }
.warp__list { list-style: none; display: grid; gap: 9px; }
.warp__list li {
  position: relative; padding-left: 20px;
  font-size: .875rem; color: var(--ink-2);
}
.warp__list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 10px; height: 1.5px; background: var(--kraft);
}
.warp__more {
  font-size: .63rem; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  position: relative; z-index: 1;
}
.warp.is-open .warp__more { color: var(--denim); }
.warp__more span { transition: transform .45s var(--ease); }
.warp.is-open .warp__more span { transform: rotate(45deg); }

@media (max-width: 900px) {
  .loom { grid-template-columns: 1fr !important; min-height: 0; }
  .warp { padding-top: 60px; }
  .warp__body { max-width: none; }
}

/* ============================================================
   Divisions
   ============================================================ */
.units {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.unit {
  position: relative;
  background: var(--paper);
  padding: clamp(26px, 2.8vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
  transition: background .45s var(--ease);
}
.unit:hover { background: var(--paper-2); }
.unit::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--denim); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.unit:hover::after { transform: scaleX(1); }
.unit__code {
  font-size: .655rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--kraft);
  display: flex; align-items: center; gap: 10px;
}
.unit__code::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.unit__n {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem); line-height: 1.12; letter-spacing: -.02em;
}
.unit__d { font-size: .9rem; color: var(--ink-2); flex: 1; }
.unit__meta { font-size: .68rem; letter-spacing: .06em; color: var(--ink-3); }
.unit__brands { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; padding-top: 2px; }
.unit__brands img { height: 15px; width: auto; filter: brightness(0); opacity: .3; }

/* The sixth cell: rather than leave the grid short, ask the question a
   visitor is actually holding at this point. */
.unit--ask {
  background: var(--denim);
  color: var(--paper);
  --ink-2: #C3D2DE;
  --kraft: #C9A166;
}
.unit--ask:hover { background: #0B3050; }
.unit--ask .unit__code { color: var(--kraft); }
.unit--ask .unit__code::after { background: rgba(247,245,241,.2); }
.unit--ask .unit__d { color: var(--ink-2); }
.unit--ask .unit__n { max-width: 18ch; }
.unit--ask .tlink { margin-top: auto; align-self: flex-start; color: var(--paper); border-bottom-color: rgba(247,245,241,.25); }
.unit--ask .tlink::after { background: var(--kraft); }
.unit--ask:hover .tlink::after { transform: scaleX(1); transform-origin: left; }
.unit--ask:hover .tlink svg { transform: translateX(5px); }

/* ============================================================
   Flat world map
   ============================================================ */
.atlas__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2.69 / 1;   /* 360° of longitude against 134° of latitude */
}
.atlas__stage canvas { width: 100%; height: 100%; }
.pin { position: absolute; transform: translate(-50%, -50%); width: 0; height: 0; pointer-events: none; }
.pin__dot {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--denim);
  box-shadow: 0 0 0 3px rgba(14, 58, 94, .16);
}
.pin--hub .pin__dot { width: 12px; height: 12px; background: var(--kraft); box-shadow: 0 0 0 4px rgba(176,129,63,.2); }
.pin__dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid currentColor; color: var(--denim);
  animation: ping 3s var(--ease-io) infinite;
}
.pin--hub .pin__dot::after { color: var(--kraft); }
@keyframes ping {
  0%   { transform: scale(.7); opacity: .8; }
  70%  { transform: scale(3); opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}
/* Europe puts four offices inside a few hundred kilometres, so labels are
   nudged per office rather than all hung off the same side. */
.pin__lab {
  position: absolute;
  left: var(--lx, 14px);
  top: var(--ly, -9px);
  font-size: .62rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; white-space: nowrap;
  color: var(--ink);
  background: rgba(247, 245, 241, .86);
  backdrop-filter: blur(5px);
  padding: 4px 8px;
  border-left: 2px solid var(--denim);
}
.pin--hub .pin__lab { border-left-color: var(--kraft); }
.pin--l .pin__lab {
  left: auto; right: calc(0px - var(--lx, 14px));
  border-left: 0; border-right: 2px solid var(--denim);
}
.pin__lab b { color: var(--ink-3); font-weight: 600; }
@media (max-width: 860px) { .pin__lab { display: none; } .pin--hub .pin__lab { display: block; } }

/* Office table */
.offices { display: grid; margin-top: clamp(32px, 4vw, 54px); }
.office {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.1fr) minmax(0, 1.5fr) 84px;
  gap: clamp(12px, 2vw, 30px);
  align-items: center;
  padding: clamp(16px, 1.6vw, 23px) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left .45s var(--ease);
}
.offices .office:last-child { border-bottom: 1px solid var(--line); }
.office:hover { padding-left: 12px; }
.office::before {
  content: ''; position: absolute; left: 0; top: -1px; height: 1px; width: 100%;
  background: var(--denim); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.office:hover::before { transform: scaleX(1); }
.office__code {
  font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  color: var(--kraft); text-transform: uppercase;
}
.office__c { font-family: var(--display); font-weight: 600; font-size: clamp(.98rem, 1.2vw, 1.2rem); letter-spacing: -.016em; }
.office__a { font-size: .845rem; color: var(--ink-2); }
.office__y { font-size: .7rem; color: var(--ink-3); text-align: right; letter-spacing: .06em; }
@media (max-width: 780px) {
  .office { grid-template-columns: 44px 1fr 62px; }
  .office__a { grid-column: 2 / -1; }
}

/* ============================================================
   Standards
   ============================================================ */
.certs { display: grid; gap: clamp(28px, 3.2vw, 46px); }
.certgrp__h {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px;
  font-size: .655rem; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink-3);
}
.certgrp__h::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  padding: 9px 15px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: color .3s, border-color .3s, background .3s;
  cursor: default;
}
.chip:hover { color: var(--paper); background: var(--denim); border-color: var(--denim); }

/* The paperwork.
   These files are the actual issued certificates, not logos — so they are
   shown as what they are: documents you can open and read. */
.docs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 136px), 1fr));
  gap: clamp(13px, 1.5vw, 22px);
  padding-top: clamp(26px, 3vw, 42px);
  margin-top: clamp(22px, 2.6vw, 34px);
  border-top: 1px solid var(--line);
}
.doc { display: grid; gap: 3px; align-content: start; }
.doc__sheet {
  display: block;
  aspect-ratio: 938 / 1330;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 11px;
  position: relative;
  box-shadow: 0 1px 2px rgba(20, 24, 28, .07);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.doc__sheet img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doc__sheet::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--kraft); z-index: 1;
}
.doc:hover .doc__sheet {
  transform: translateY(-6px) rotate(-.6deg);
  box-shadow: 0 14px 28px rgba(20, 24, 28, .14);
}
.doc:focus-visible .doc__sheet { transform: translateY(-6px); }
.doc__n { font-family: var(--display); font-weight: 600; font-size: .93rem; letter-spacing: -.016em; line-height: 1.14; }
.doc__m { font-size: .625rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.docs__note { grid-column: 1 / -1; font-size: .74rem; color: var(--ink-3); margin-top: 4px; }

/* ============================================================
   CTA band
   ============================================================ */
.band__in { text-align: center; display: grid; justify-items: center; gap: 24px; }
.band h2 { max-width: 17ch; }
.band .lede { text-align: center; max-width: 52ch; }

/* ============================================================
   ABOUT — timeline
   ============================================================ */
.tl { position: relative; display: grid; }
.tl::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--line);
}
.tl__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(16px, 3vw, 44px);
  padding: clamp(26px, 2.9vw, 40px) 0 clamp(26px, 2.9vw, 40px) clamp(26px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.tl__row::before {
  content: ''; position: absolute; left: -5px; top: clamp(32px, 3.3vw, 48px);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--denim);
}
.tl__row:hover::before { background: var(--kraft); border-color: var(--kraft); }
.tl__y {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem); line-height: 1;
  letter-spacing: -.035em; color: var(--denim);
  font-variant-numeric: tabular-nums;
}
.tl__h { font-family: var(--display); font-weight: 600; font-size: clamp(1rem, 1.3vw, 1.32rem); line-height: 1.14; letter-spacing: -.02em; }
.tl__d { font-size: .89rem; color: var(--ink-2); }
@media (max-width: 820px) { .tl__row { grid-template-columns: 1fr; gap: 10px; } }

/* Value cards */
.vals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.val {
  background: var(--paper);
  padding: clamp(24px, 2.6vw, 36px);
  display: grid; gap: 12px; align-content: start;
  transition: background .45s var(--ease);
}
.val:hover { background: var(--paper-2); }
.val__ic {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--denim); margin-bottom: 4px;
}
.val p { font-size: .88rem; color: var(--ink-2); }

/* ============================================================
   Divisions page
   ============================================================ */
.shade { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.shade__s {
  position: relative;
  min-height: clamp(92px, 11vw, 140px);
  padding: clamp(14px, 1.6vw, 22px);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 3px;
  background: var(--paper);
  border-top: 3px solid var(--kraft);
  transition: background .45s var(--ease);
}
.shade__s:hover { background: var(--paper-2); }
.shade__s span {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.45rem); letter-spacing: -.024em;
  color: var(--denim);
}
.shade__s em {
  font-style: normal; font-size: .635rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3);
}
@media (max-width: 760px) { .shade { grid-template-columns: repeat(2, 1fr); } }

.dv {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .4fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 62px);
  padding: clamp(40px, 5vw, 78px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.dv:last-child { border-bottom: 1px solid var(--line); }
.dv__mark {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.4rem, 6.4vw, 6.4rem);
  line-height: .86; letter-spacing: -.045em;
  color: var(--denim); opacity: .14;
  position: sticky; top: 124px;
  user-select: none;
}
.dv__body { display: grid; gap: 18px; align-content: start; }
.dv__h { font-size: clamp(1.45rem, 2.6vw, 2.5rem); }
/* Six capabilities read best as 3 × 2 — four-then-two looks like an accident. */
.dv__caps {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 10px 22px;
  padding-top: 4px;
}
.dv__caps li {
  position: relative; padding-left: 19px;
  font-size: .855rem; color: var(--ink-2);
}
.dv__caps li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 10px; height: 1.5px; background: var(--kraft);
}
.dv__addr { font-size: .78rem; color: var(--ink-3); letter-spacing: .02em; }
.dv__brands {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 2.5vw, 38px);
  padding-top: 16px; border-top: 1px solid var(--line-2);
}
.dv__brands img { height: clamp(15px, 1.4vw, 20px); width: auto; filter: brightness(0); opacity: .3; transition: opacity .35s var(--ease); }
.dv__brands img:hover { opacity: .78; }
@media (max-width: 880px) {
  .dv { grid-template-columns: 1fr; gap: 14px; }
  .dv__mark { position: static; }
}

/* Capability matrix */
.mtxwrap { overflow-x: auto; }
.mtx { width: 100%; border-collapse: collapse; min-width: 660px; }
.mtx th, .mtx td { padding: 15px 12px; text-align: center; border-bottom: 1px solid var(--line); }
.mtx thead th {
  font-size: .655rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-3); padding-bottom: 12px;
}
.mtx thead th abbr { text-decoration: none; border-bottom: 1px dotted currentColor; cursor: help; }
.mtx tbody th { text-align: left; font-weight: 400; font-size: .885rem; white-space: nowrap; padding-left: 0; }
.mtx tbody tr { transition: background .3s var(--ease); }
.mtx tbody tr:hover { background: var(--paper-2); }
.mtx td[data-on]::after {
  content: ''; display: block; margin: 0 auto;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--denim);
  box-shadow: 0 0 0 3px rgba(14, 58, 94, .13);
}
.mtx td:not([data-on])::after {
  content: ''; display: block; margin: 0 auto;
  width: 9px; height: 1px; background: var(--ink-3); opacity: .4;
}

/* ============================================================
   NETWORK — globe + tracked labels
   ============================================================ */
.gstage {
  position: relative;
  width: min(800px, 74vw, 72vh);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}
.gstage canvas { width: 100%; height: 100%; }
.gpin {
  position: absolute; top: 0; left: 0;
  display: grid; gap: 1px;
  padding-left: 12px;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  border-left: 2px solid var(--denim);
  margin-top: -12px;
}
.gpin--hub { border-left-color: var(--kraft); }
.gpin__l {
  font-family: var(--display); font-weight: 600;
  font-size: .9rem; letter-spacing: -.014em; line-height: 1;
  white-space: nowrap; color: var(--ink);
}
.gpin__s {
  font-size: .59rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
}
.gpin--hub .gpin__l { font-size: 1.02rem; }
.gnote {
  text-align: center; margin-top: 16px;
  font-size: .655rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3);
}
/* On a phone-sized globe the pins sit close enough to overlap, so labels
   get a ground of their own instead of colliding as bare text. */
@media (max-width: 760px) {
  .gpin {
    padding: 3px 7px 3px 8px;
    margin-top: -10px;
    background: rgba(247, 245, 241, .84);
    backdrop-filter: blur(4px);
  }
  .gpin__l { font-size: .72rem; }
  .gpin__s { display: none; }
}

/* Places */
.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.place {
  background: var(--paper);
  padding: clamp(24px, 2.6vw, 34px);
  display: grid; gap: 10px; align-content: start;
  position: relative; overflow: hidden;
  transition: background .45s var(--ease);
}
.place:hover { background: var(--paper-2); }
.place::after {
  content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--denim); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.place:hover::after { transform: scaleX(1); }
.place__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.place__cc {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.85rem); letter-spacing: -.028em; color: var(--denim); line-height: 1;
}
.place__yr { font-size: .635rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.place__n { font-size: clamp(1.05rem, 1.35vw, 1.32rem); }
.place__city { font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--kraft); }
.place__a { font-size: .855rem; color: var(--ink-2); line-height: 1.6; }
.place__b {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  padding-top: 14px; margin-top: 2px; border-top: 1px solid var(--line-2);
}
.place__b img { height: 14px; width: auto; filter: brightness(0); opacity: .3; }

/* ============================================================
   STANDARDS — pillars
   ============================================================ */
.pil { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar {
  display: grid;
  grid-template-columns: minmax(0, .36fr) minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 54px);
  background: var(--paper);
  padding: clamp(28px, 3.2vw, 48px);
  transition: background .45s var(--ease);
}
.pillar:hover { background: var(--paper-2); }
.pillar__side { border-left: 3px solid var(--kraft); padding-left: clamp(16px, 1.6vw, 22px); }
.pillar__ix { font-size: .635rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--kraft); }
.pillar__h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem); line-height: 1.04; letter-spacing: -.026em;
  margin: 11px 0 9px;
}
.pillar__sub { font-size: .645rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.pillar__main { display: grid; gap: 22px; align-content: start; }
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 42px); }
.mini-h {
  font-size: .635rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 13px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .pillar { grid-template-columns: 1fr; }
  .twocol { grid-template-columns: 1fr; }
}

/* The 2027 pledge */
.pledge {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(34px, 4.6vw, 64px);
}
.pledge__y {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.6rem, 11vw, 10rem); line-height: .82; letter-spacing: -.05em;
  color: var(--denim); user-select: none;
  font-variant-numeric: tabular-nums;
}
.pledge__c { display: grid; gap: 16px; }
.pledge__c h2 { font-size: clamp(1.4rem, 2.4vw, 2.3rem); max-width: 20ch; }
@media (max-width: 880px) { .pledge { grid-template-columns: 1fr; } }

/* ============================================================
   CAREERS
   ============================================================ */
.perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.perk {
  background: var(--paper);
  padding: clamp(22px, 2.3vw, 32px);
  display: grid; gap: 9px; align-content: start;
  transition: background .45s var(--ease);
}
.perk:hover { background: var(--paper-2); }
.perk__n { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: -.018em; }
.perk p { font-size: .85rem; color: var(--ink-2); }
.perk__bar { height: 2px; width: 24px; background: var(--kraft); margin-bottom: 4px; transition: width .55s var(--ease); }
.perk:hover .perk__bar { width: 50px; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filt {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 9px 16px;
  border: 1px solid var(--line); color: var(--ink-2);
  transition: color .25s, border-color .25s, background .25s;
}
.filt:hover { color: var(--denim); border-color: var(--denim); }
.filt.is-on { background: var(--denim); color: var(--paper); border-color: var(--denim); }

.jobs { display: grid; }
.job {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, .9fr) 124px;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  padding: clamp(18px, 1.9vw, 26px) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left .45s var(--ease);
}
.jobs .job:last-child { border-bottom: 1px solid var(--line); }
.job:hover { padding-left: 12px; }
.job::before {
  content: ''; position: absolute; left: 0; top: -1px; height: 1px; width: 100%;
  background: var(--denim); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.job:hover::before { transform: scaleX(1); }
.job__t { font-family: var(--display); font-weight: 600; font-size: clamp(.98rem, 1.2vw, 1.2rem); letter-spacing: -.018em; line-height: 1.16; }
.job__m { font-size: .72rem; letter-spacing: .04em; color: var(--ink-3); }
.job__go { justify-self: end; }
.job.is-hidden { display: none; }
@media (max-width: 900px) {
  .job { grid-template-columns: 1fr auto; gap: 8px; }
  .job__m:nth-of-type(2) { display: none; }
  .job__go { grid-column: 2; grid-row: 1 / span 2; }
}

/* Process — a real six-step sequence, so it is numbered */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 185px), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.step {
  background: var(--paper);
  padding: clamp(22px, 2.2vw, 30px);
  display: grid; gap: 11px; align-content: start;
  position: relative; overflow: hidden;
  transition: background .45s var(--ease);
}
.step:hover { background: var(--paper-2); }
.step__n { font-size: .635rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--kraft); }
.step__t { font-family: var(--display); font-weight: 600; font-size: 1rem; line-height: 1.18; letter-spacing: -.018em; }
.step::after {
  content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--denim); transform: scaleX(.3); transform-origin: left;
  transition: transform .8s var(--ease);
}
.step:hover::after { transform: scaleX(1); }

/* ============================================================
   CONTACT
   ============================================================ */
.cgrid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
}
.cside { position: sticky; top: 116px; }
@media (max-width: 900px) {
  .cgrid { grid-template-columns: 1fr; }
  .cside { position: static; }
}
.cform { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: .635rem; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink-3);
}
.field input, .field textarea, .field select {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 13px 15px;
  font-size: .92rem;
  outline: none;
  width: 100%;
  transition: border-color .3s var(--ease), background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--denim); background: #fff;
}
.field textarea { resize: vertical; min-height: 128px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.cinfo { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cinfo__row { background: var(--paper); padding: clamp(20px, 2.1vw, 27px); display: grid; gap: 6px; }
.cinfo__l { font-size: .635rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--kraft); }
.cinfo__v { font-size: .93rem; color: var(--ink); }
.cinfo__v a { border-bottom: 1px solid var(--line); }
.cinfo__v a:hover { color: var(--denim); }

.formnote { font-size: .78rem; color: var(--ink-3); line-height: 1.65; }
.formstate {
  padding: 13px 15px; font-size: .87rem;
  border-left: 3px solid var(--denim); background: var(--denim-3);
  display: none;
}
.formstate.is-on { display: block; }

/* ============================================================
   Page header (interior pages)
   ============================================================ */
.phead {
  position: relative;
  padding-top: clamp(136px, 18vh, 208px);
  padding-bottom: clamp(48px, 6.4vw, 88px);
  border-bottom: 1px solid var(--line);
}
.phead h1 { max-width: 16ch; margin: 18px 0 22px; }
.phead .lede { max-width: 56ch; }
.crumb {
  font-size: .655rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; gap: 9px; align-items: center;
}
.crumb a:hover { color: var(--denim); }

/* ============================================================
   Shared responsive
   ============================================================ */
@media (max-width: 1100px) {
  /* Headline leads on narrow screens; the globe follows it. */
  .hero { min-height: 0; }
  .hero__grid { grid-template-columns: 1fr; gap: clamp(30px, 6vw, 48px); }
  .hero__globe { max-width: min(440px, 80vw); margin: 0 auto; justify-self: center; }
  .cue { display: none; }
  .datarail { grid-template-columns: 1fr 1fr; }
  .datarail__cell:nth-child(3) { border-left: 0; }
  .datarail__cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .datarail { grid-template-columns: 1fr; }
  .datarail__cell { border-left: 0; border-top: 1px solid var(--line); }
  .datarail__cell:first-child { border-top: 0; }
}

/* ============================================================
   Card surfaces
   ------------------------------------------------------------
   The grids were reading as flat white boxes. Every card now
   carries a warm paper gradient and a faint 45° twill — the
   weave of the cloth, at the threshold of visibility — plus a
   lift on hover. Deliberately scoped to cards, not the page:
   a full-viewport repeating gradient moirés, a 300px-wide one
   does not.
   ============================================================ */
.unit, .warp, .place, .step, .perk, .val, .shade__s, .cinfo__row, .pillar {
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(45deg, rgba(20,24,28,.020) 0 1px, transparent 1px 7px),
    linear-gradient(177deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, rgba(132,94,34,0) 52%, rgba(132,94,34,.055) 100%);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease),
              transform .4s var(--ease);
}
.unit:hover, .place:hover, .step:hover, .perk:hover,
.val:hover, .shade__s:hover, .pillar:hover {
  background-color: var(--paper-2);
  box-shadow: 0 12px 28px -16px rgba(14,58,94,.42);
  z-index: 1;
}
/* the denim cell keeps its own ground — a white wash would bleach it */
.unit--ask { background-color: var(--denim); }
.unit--ask:hover { background-color: #0B3050; }
.unit--ask, .unit--ask:hover {
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
  box-shadow: none;
}
/* the grids themselves sit on the page rather than being printed on it */
.units, .perks, .places, .steps, .vals, .shade, .loom, .cinfo, .pil {
  box-shadow: 0 14px 34px -26px rgba(14,58,94,.55);
}

/* ============================================================
   Fixed column counts
   The brief: these grids must not reflow into ragged rows on
   wide screens. Column counts are pinned; only genuinely narrow
   phones are allowed to stack.
   ============================================================ */
.units { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .units { grid-template-columns: 1fr; } }

.perks { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .perks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .perks { grid-template-columns: 1fr; } }

/* Five countries, one row, never two. Below the point where five
   columns stop being readable the row scrolls sideways instead of
   wrapping. */
.placeswrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.places { grid-template-columns: repeat(5, 1fr); min-width: 900px; }
@media (min-width: 1000px) { .places { min-width: 0; } }

/* ============================================================
   Client wall — bigger, darker, true colour on hover
   ============================================================ */
.mq img {
  height: clamp(28px, 3vw, 42px);
  filter: grayscale(1) brightness(.22) contrast(1.5);
  opacity: .62;
  transition: filter .45s var(--ease), opacity .45s var(--ease), transform .45s var(--ease);
}
.mq img:hover {
  filter: none;          /* the artwork's own colour, where it has one */
  opacity: 1;
  transform: scale(1.07);
}

/* ============================================================
   Flags
   ============================================================ */
.flag {
  width: 1.55em; height: 1.03em;
  flex: none;
  border-radius: 1.5px;
  box-shadow: 0 0 0 1px rgba(20,24,28,.14), 0 1px 2px rgba(20,24,28,.12);
  vertical-align: -.15em;
}
.office__code { display: flex; align-items: center; gap: 8px; }
.office__code .flag { width: 1.5em; height: 1em; }

/* On the network cards the flag replaces the country abbreviation */
.place__flag { width: 44px; height: 29px; border-radius: 2px;
               box-shadow: 0 0 0 1px rgba(20,24,28,.14), 0 2px 5px rgba(20,24,28,.14); }

/* ============================================================
   Doctrine icons
   Each warp carries a pictogram while it is closed; opening the
   panel hands the space over to the copy.
   ============================================================ */
.warp__icon {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(48px, 4.6vw, 72px); height: auto;
  color: var(--denim);
  opacity: .26;
  transform: translate(-50%, -72%) scale(1);
  transition: opacity .45s var(--ease), transform .6s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.warp:hover .warp__icon { opacity: .4; }
.warp.is-open .warp__icon {
  opacity: 0;
  transform: translate(-50%, -72%) scale(.72);
}

/* Standards pillars carry the same three pictograms, at label scale */
.pillar__icon {
  width: 34px; height: 34px;
  color: var(--kraft);
  margin-bottom: 14px;
}

/* ============================================================
   Division marks
   The big abbreviations take the logo's eight threads as a wash —
   the one place besides the wordmark where the full palette runs.
   ============================================================ */
.dv__mark {
  /* nearly horizontal so the whole eight-thread ramp lands inside a
     three- or four-letter word, not just its first third */
  background-image: linear-gradient(96deg,
    #400830 0%, #983038 15%, #F06838 31%, #C4AC10 47%,
    #7DAB2C 63%, #40A8C0 79%, #006898 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .92;
}

/* ============================================================
   Contact rows — a pictogram against each line
   ============================================================ */
.cinfo__row {
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 5px;
  align-items: start;
}
.cinfo__ic {
  grid-row: 1 / span 2;
  width: 20px; height: 20px;
  color: var(--kraft);
  margin-top: 1px;
}

/* ============================================================
   Standards — each warp arrives on its own as you scroll
   ============================================================ */
.pil { gap: 1px; }
.pillar__side { display: flex; flex-direction: column; align-items: flex-start; }

/* ============================================================
   Figure band (Group page)
   Built from Indesore's own emblem rather than stock or generated
   photography — nothing here claims to depict their premises.
   Swap the <img> for a real factory or product photograph when
   one is available; the frame is sized for it.
   ============================================================ */
.figband {
  position: relative;
  aspect-ratio: 21 / 8;
  margin-bottom: clamp(36px, 4.4vw, 60px);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
  background-color: var(--paper-2);
  background-image:
    repeating-linear-gradient(45deg, rgba(20,24,28,.022) 0 1px, transparent 1px 7px),
    radial-gradient(120% 150% at 78% 18%, rgba(14,58,94,.13) 0%, transparent 58%),
    linear-gradient(118deg, #F4F0E8 0%, #E9E3D8 100%);
  box-shadow: 0 14px 34px -26px rgba(14,58,94,.55);
}
.figband img {
  width: min(38%, 260px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(14,58,94,.22));
}
.figband figcaption {
  position: absolute;
  left: clamp(18px, 2.4vw, 32px);
  bottom: clamp(14px, 1.8vw, 22px);
  max-width: 32ch;
  font-size: .7rem;
  line-height: 1.5;
  color: var(--ink-3);
}
@media (max-width: 700px) {
  .figband { aspect-ratio: 16 / 10; }
  .figband img { width: 46%; }
  .figband figcaption { position: static; margin: 0 auto 16px; text-align: center; }
}

/* The section header bottom-aligns so a short aside sits on the heading's
   baseline. Where the aside is a full column of prose that drops the heading
   to the foot of the row, so these top-align instead. */
.manifesto .shead { align-items: start; }
