:root {
  --blue:        #0E579D;
  --blue-deep:   #0A3D6F;
  --blue-darker: #062547;
  --blue-soft:   #EAF2FA;

  --green:       #43A047;
  --green-deep:  #2E7D32;
  --green-soft:  #E8F5E9;
  --green-bright:#6FCF74;

  --bg:          #FFFFFF;
  --bg-2:        #F4F6F9;
  --bg-3:        #E8ECF1;

  --ink:         #0F1B2D;
  --ink-2:       #1E2A3D;
  --muted:       #5A6677;
  --muted-2:     #8893A1;
  --rule:        rgba(15,27,45,0.10);
  --rule-2:      rgba(15,27,45,0.20);
  --rule-on-blue:rgba(255,255,255,0.18);

  --display: 'IBM Plex Sans Condensed', system-ui, sans-serif;
  --body:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --serif:   'IBM Plex Serif', Georgia, serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;

  --max:     1480px;
  --pad:     clamp(20px, 4vw, 64px);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--green); color: #fff; }
img { display: block; max-width: 100%; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.eyebrow--white { color: rgba(255,255,255,.85); }
.eyebrow--green { color: var(--green-bright); }

/* ──────────────────────────────────────────────────────────────
   Header — clean white, minimal, geometric
   ────────────────────────────────────────────────────────────── */
.utility {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.utility__row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: var(--muted);
}
.utility__row a { color: inherit; text-decoration: none; }
.utility__row a:hover { color: var(--blue); }
.utility__left, .utility__right { display: flex; gap: 24px; align-items: center; }
.utility__pip {
  width: 6px; height: 6px; background: var(--green); display: inline-block; margin-right: 8px;
}
.lang-toggle { display: inline-flex; border: 1px solid var(--rule-2); }
.lang-toggle button {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 10.5px;
  padding: 4px 9px; color: var(--muted);
}
.lang-toggle button.active { background: var(--ink); color: var(--bg); }

.header {
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
  position: sticky; top: 0; z-index: 100;
  transition: background .25s, box-shadow .25s;
}
.header.is-scrolled {
  box-shadow: 0 1px 0 var(--ink), 0 8px 24px -12px rgba(15,27,45,.12);
}
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.header__logo img { height: 44px; width: auto; }
.nav__list {
  display: flex; justify-content: center; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
.nav__list a {
  display: flex; align-items: center;
  height: 76px;
  padding: 0 16px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  position: relative;
  transition: color .25s ease, background .25s ease;
}
.nav__list a:hover { color: #fff; background: var(--blue); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--ink); color: var(--bg); }
.icon-btn svg { width: 14px; height: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  text-decoration: none;
  background: var(--ink); color: var(--bg);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--blue); border-color: var(--blue); }
.btn--blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--green { background: var(--green); border-color: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn--white { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn--white:hover { background: var(--green-bright); border-color: var(--green-bright); color: var(--ink); }
.btn--ghost-white { background: transparent; color: var(--bg); border-color: rgba(255,255,255,.45); }
.btn--ghost-white:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn svg { width: 13px; height: 13px; }

/* ──────────────────────────────────────────────────────────────
   Hero — solid blue panel, geometric tiles
   ────────────────────────────────────────────────────────────── */
.hero {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) var(--pad) 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 0;
  position: relative;
}
.hero__lead { padding: 0 var(--pad) clamp(56px, 8vw, 112px) 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--green-bright);
  margin-bottom: 32px;
}
.hero__eyebrow .marker {
  display: inline-block; width: 12px; height: 12px;
  background: var(--green-bright);
}
.hero__headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7.6vw, 132px);
  line-height: .92;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 36px;
  max-width: 16ch;
  text-transform: uppercase;
}
.hero__headline em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; text-transform: none;
  color: var(--green-bright);
  letter-spacing: -0.015em;
}
.hero__deck {
  font-family: var(--body); font-weight: 400;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 56ch;
  margin: 0 0 40px;
}
.hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero__visual {
  position: relative;
  background: var(--blue-deep);
  border-left: 1px solid var(--rule-on-blue);
  align-self: stretch;
  overflow: hidden;
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(.7) brightness(.65);
}
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,87,157,.4) 0%, rgba(6,37,71,.7) 100%);
}
.hero__visual-label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
}
.hero__visual-label .marker {
  display: inline-block; width: 10px; height: 10px;
  background: var(--green-bright);
}
.hero__visual-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.hero__visual-cap .name {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.015em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero__visual-cap .meta {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em;
  color: rgba(255,255,255,.78);
}

/* Hero stat row */
.hero__stats {
  border-top: 1px solid var(--rule-on-blue);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--blue);
}
.hero__stat {
  padding: 22px var(--pad);
  border-right: 1px solid var(--rule-on-blue);
  font-family: var(--body);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat:nth-child(odd) { background: var(--blue); }
.hero__stat:nth-child(even) { background: var(--blue-deep); }
.hero__stat:last-child { border-right: 0; }
.hero__stat .label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__stat .value {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.015em;
  color: #fff;
  text-transform: uppercase;
}
.hero__stat .value b { color: var(--green-bright); font-weight: 600; }

/* ──────────────────────────────────────────────────────────────
   Figures — alternating colored tiles
   ────────────────────────────────────────────────────────────── */
.figures {
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.figures__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.figures__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: .95;
  letter-spacing: -0.025em;
  margin: 0;
  text-transform: uppercase;
  color: var(--ink);
}
.figures__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); text-transform: none; letter-spacing: -0.01em; }
.figures__caption {
  font-family: var(--mono); font-size: 13px; line-height: 1.6;
  color: var(--muted); max-width: 50ch;
  margin: 0;
}

.figures__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.figure {
  padding: 32px 24px 32px 24px;
  border-right: 2px solid var(--ink);
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
}
.figure:last-child { border-right: 0; }
.figure:nth-child(1) { background: var(--blue); color: #fff; }
.figure:nth-child(2) { background: var(--bg); color: var(--ink); }
.figure:nth-child(3) { background: var(--green); color: #fff; }
.figure:nth-child(4) { background: var(--bg); color: var(--ink); }
.figure:nth-child(5) { background: var(--blue-deep); color: #fff; }
.figure__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
}
.figure__value {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -0.035em;
  display: flex; align-items: baseline; gap: 6px;
  text-transform: uppercase;
  margin-top: auto;
}
.figure__suffix {
  font-family: var(--body); font-weight: 500;
  font-size: 0.32em;
  text-transform: uppercase;
  opacity: .85;
}
.figure__label {
  font-family: var(--body); font-size: 13px;
  line-height: 1.5;
  opacity: .82;
  font-weight: 400;
}

/* ──────────────────────────────────────────────────────────────
   Holdings — colored division stripes + tile grid
   ────────────────────────────────────────────────────────────── */
.holdings__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--pad) 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.holdings__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: .95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 18px 0 0;
}
.holdings__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); text-transform: none; letter-spacing: -0.01em; }
.holdings__intro {
  font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: var(--muted); max-width: 50ch;
}

.division {
  border-top: 2px solid var(--ink);
}
.division:last-of-type { border-bottom: 2px solid var(--ink); }

.division__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--pad);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
}
.division__index {
  font-family: var(--display); font-weight: 600;
  font-size: 36px; letter-spacing: -0.02em;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1;
}
.division__name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(24px, 3.2vw, 42px);
  letter-spacing: -0.018em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
}
.division__name em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
  text-transform: none;
  letter-spacing: -0.005em;
}
.division__deck {
  font-family: var(--mono); font-size: 12px; line-height: 1.6;
  color: var(--muted);
  max-width: 36ch;
  text-align: right;
}
.division__deck strong { color: var(--ink); display: block; font-size: 13.5px; font-weight: 500; }

.division__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.division__grid:where(.row-1) { grid-template-columns: repeat(4, 1fr); }
.division--maritime .division__grid { grid-template-columns: 1fr; }
.division--other .division__grid { grid-template-columns: repeat(2, 1fr); }
.division--cam .division__grid { grid-template-columns: repeat(3, 1fr); }

.company {
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid var(--ink);
  background: var(--bg);
  transition: background .25s ease;
  min-height: 200px;
  position: relative;
}
.company:last-child { border-right: 0; }
.company:hover { background: var(--blue); color: #fff; }
.company:hover .company__num { color: var(--green-bright); }
.company:hover .company__desc { color: rgba(255,255,255,.85); }
.company:hover .company__arrow { color: var(--green-bright); transform: translate(6px, -6px); }

.company__num {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .04em;
  color: var(--blue);
  margin-bottom: 8px;
  transition: color .25s;
}
.company__name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 4px;
  line-height: 1.05;
}
.company__desc {
  font-family: var(--body); font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  transition: color .25s;
}
.company__arrow {
  position: absolute;
  top: 28px; right: 24px;
  font-family: var(--display); font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  transition: color .25s, transform .35s cubic-bezier(.2,.8,.2,1);
}

/* ──────────────────────────────────────────────────────────────
   Showcase — green panel
   ────────────────────────────────────────────────────────────── */
.showcase {
  background: var(--green);
  color: #fff;
  border-bottom: 2px solid var(--ink);
}
.showcase__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.showcase__num {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.showcase__num .marker { width: 10px; height: 10px; background: #fff; display: inline-block; }
.showcase__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: .95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
}
.showcase__title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: #fff;
  text-transform: none;
  letter-spacing: -0.005em;
  border-bottom: 3px solid var(--blue-darker);
}
.showcase__deck {
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  margin: 0 0 32px;
}
.showcase__data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid #fff;
}
.showcase__data .item {
  padding: 18px 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.showcase__data .item:nth-child(2n) { border-right: 0; }
.showcase__data .item:nth-last-child(-n+2) { border-bottom: 0; }
.showcase__data .l {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.showcase__data .v {
  font-family: var(--display); font-weight: 500;
  font-size: 24px; letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
}
.showcase__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 2px solid #fff;
  background: var(--blue-deep);
}
.showcase__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(.85) brightness(.85);
}

/* ──────────────────────────────────────────────────────────────
   News — 3 equal cards
   ────────────────────────────────────────────────────────────── */
.news {
  background: var(--bg-2);
  padding: clamp(64px, 8vw, 112px) var(--pad);
  border-bottom: 2px solid var(--ink);
}
.news__inner { max-width: var(--max); margin: 0 auto; }
.news__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 18px;
}
.news__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: .95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 14px 0 0;
}
.news__title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--blue);
  text-transform: none;
  letter-spacing: -0.01em;
}
.news__more {
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: border-color .25s, color .25s;
}
.news__more:hover { color: var(--blue); border-color: var(--blue); }
.news__more svg { width: 12px; height: 12px; transition: transform .25s; }
.news__more:hover svg { transform: translate(2px,-2px); }

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--bg);
}
.news-card {
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
  border-right: 2px solid var(--ink);
  background: var(--bg);
  transition: background .25s;
}
.news-card:last-child { border-right: 0; }
.news-card:hover { background: var(--bg-2); }
.news-card:hover .news-card__headline { color: var(--blue); }
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.9);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.news-card__body {
  padding: 24px;
  display: flex; flex-direction: column; flex: 1;
}
.news-card__meta {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 14px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase;
}
.news-card__category { color: var(--green-deep); font-weight: 500; }
.news-card__date { color: var(--muted-2); }
.news-card__headline {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
  transition: color .25s;
}
.news-card__deck {
  font-family: var(--body); font-size: 13.5px; line-height: 1.55;
  color: var(--muted); margin: 0;
}

/* ──────────────────────────────────────────────────────────────
   Chairman — solid blue-deep panel
   ────────────────────────────────────────────────────────────── */
.chairman {
  background: var(--blue-darker);
  color: #fff;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.chairman::before {
  content: "";
  position: absolute;
  bottom: -200px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(67,160,71,.18), transparent 60%);
  pointer-events: none;
}
.chairman__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 144px) var(--pad);
  text-align: center;
  position: relative;
}
.chairman__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 36px;
}
.chairman__eyebrow .marker { width: 12px; height: 12px; background: var(--green-bright); display: inline-block; }
.chairman__quote {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto 48px;
  max-width: 28ch;
}
.chairman__quote em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  color: var(--green-bright);
  text-transform: none;
  letter-spacing: -0.01em;
}
.chairman__signature {
  display: inline-flex; gap: 24px; align-items: center;
  padding-top: 32px;
  border-top: 1.5px solid rgba(255,255,255,.22);
}
.chairman__sig-text {
  font-family: var(--serif); font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: var(--green-bright);
  line-height: 1;
}
.chairman__sig-name {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-align: left;
}
.chairman__sig-name span {
  display: block; margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  font-size: 12px;
}

/* ──────────────────────────────────────────────────────────────
   Pillars — 4 colored tiles
   ────────────────────────────────────────────────────────────── */
.pillars {
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.pillars__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--pad) 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.pillars__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: .95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 14px 0 0;
}
.pillars__title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--green-deep);
  text-transform: none;
  letter-spacing: -0.01em;
}
.pillars__deck {
  font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: var(--muted); max-width: 50ch;
}
.pillars__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.pillar {
  padding: 36px 28px 32px;
  text-decoration: none;
  display: flex; flex-direction: column;
  border-right: 2px solid var(--ink);
  min-height: 320px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.pillar:last-child { border-right: 0; }
.pillar:nth-child(1) { background: var(--blue); color: #fff; }
.pillar:nth-child(2) { background: var(--bg); color: var(--ink); }
.pillar:nth-child(3) { background: var(--green); color: #fff; }
.pillar:nth-child(4) { background: var(--bg-2); color: var(--ink); }
.pillar:hover { transform: translateY(-4px); }
.pillar:nth-child(1):hover { background: var(--blue-deep); }
.pillar:nth-child(3):hover { background: var(--green-deep); }
.pillar__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: .8;
  display: inline-flex; align-items: center; gap: 10px;
}
.pillar__num .marker { width: 10px; height: 10px; background: currentColor; display: inline-block; }
.pillar__title {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; line-height: 1.15;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.pillar__desc {
  font-family: var(--body); font-size: 13.5px; line-height: 1.55;
  opacity: .85;
  margin: 0 0 28px;
}
.pillar__arrow {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
  transition: gap .25s;
}
.pillar:hover .pillar__arrow { gap: 14px; }

/* ──────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  border-top: 2px solid var(--ink);
}
.footer__top {
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 64px var(--pad) 40px;
}
.footer__top-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer__brand img {
  height: 56px; width: auto;
  filter: brightness(0) invert(1); opacity: .94;
}
.footer__brand p {
  font-family: var(--body); font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-top: 22px;
  max-width: 36ch;
  line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright); font-weight: 500;
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer__col h4::before {
  content: ""; width: 8px; height: 8px; background: var(--green-bright); display: inline-block;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer__col a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-family: var(--body); font-size: 14px;
  transition: color .2s, padding-left .2s;
}
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__contact .row {
  font-family: var(--body); font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.footer__contact .row b {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright); font-weight: 500;
  display: block; margin-bottom: 4px;
}
.footer__bottom { padding: 22px var(--pad); }
.footer__bottom-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer__bottom a:hover { color: var(--green-bright); }

/* Reveals */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .14s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .22s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .30s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .38s; }

@media (max-width: 1080px) {
  .nav__list { display: none; }
  .header__inner { grid-template-columns: auto auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__lead { padding-right: 0; }
  .hero__visual { aspect-ratio: 16/10; border-left: 0; border-top: 1px solid var(--rule-on-blue); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { border-right: 1px solid var(--rule-on-blue); border-bottom: 1px solid var(--rule-on-blue); }
  .hero__stat:nth-child(2n) { border-right: 0; }
  .hero__stat:nth-last-child(-n+1) { border-bottom: 0; }
  .figures__head, .holdings__head, .pillars__head { grid-template-columns: 1fr; gap: 18px; }
  .figures__grid { grid-template-columns: repeat(2, 1fr); }
  .figure { border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
  .figure:nth-child(2n) { border-right: 0; }
  .figure:nth-last-child(-n+1) { border-bottom: 0; }
  .division__head { grid-template-columns: auto 1fr; }
  .division__deck { grid-column: span 2; text-align: left; max-width: none; }
  .division__grid, .division--cam .division__grid, .division--other .division__grid { grid-template-columns: repeat(2, 1fr); }
  .company { border-bottom: 1px solid var(--ink); }
  .company:nth-child(2n) { border-right: 0; }
  .division--maritime .division__grid { grid-template-columns: 1fr; }
  .division--maritime .company { border-right: 0; }
  .showcase__inner { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .news-card { border-right: 0; border-bottom: 2px solid var(--ink); }
  .news-card:last-child { border-bottom: 0; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-last-child(-n+2) { border-bottom: 0; }
  .footer__top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .utility__row { flex-direction: column; gap: 8px; align-items: flex-start; }
  .utility__row > div { flex-wrap: wrap; gap: 14px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-right: 0; }
  .figures__grid, .pillars__grid { grid-template-columns: 1fr; }
  .figure, .pillar { border-right: 0; }
  .division__grid, .division--cam .division__grid, .division--other .division__grid { grid-template-columns: 1fr; }
  .company { border-right: 0; }
  .footer__top-inner { grid-template-columns: 1fr; }
  .showcase__data { grid-template-columns: 1fr; }
  .showcase__data .item { border-right: 0; }
}


/* ────── Interior page styles (sub-pages) ────── */
.page-hero {
  background: var(--blue);
  color: #fff;
  position: relative; overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .25; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1) saturate(.7); }
.page-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) var(--pad);
}
.breadcrumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--green-bright); }
.breadcrumb .sep { color: var(--green-bright); }
.breadcrumb .current { color: #fff; }
.page-hero__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: .94; letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff; margin: 0 0 24px; max-width: 18ch;
}
.page-hero__title em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--green-bright);
  text-transform: none; letter-spacing: -0.015em;
}
.page-hero__lead {
  font-family: var(--body); font-weight: 400;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6; color: rgba(255,255,255,.85);
  max-width: 60ch; margin: 0;
}

.page-body { padding: clamp(56px, 7vw, 96px) var(--pad); background: var(--bg); border-bottom: 2px solid var(--ink); }
.page-body__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 5vw, 80px);
}
.article h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.1;
  letter-spacing: -0.018em; text-transform: uppercase;
  color: var(--ink); margin: 36px 0 14px;
}
.article h2:first-child { margin-top: 0; }
.article h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--blue); letter-spacing: -0.005em; }
.article h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 18px; color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.012em;
  margin: 28px 0 10px;
}
.article p {
  font-family: var(--body); font-size: 16px; line-height: 1.7;
  color: var(--ink); margin: 0 0 18px; max-width: 65ch;
}
.article ul {
  font-family: var(--body); font-size: 15.5px; line-height: 1.7;
  color: var(--ink); padding-left: 20px; margin: 0 0 24px;
}

.aside { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 0; }
.data-card, .contact-card, .related-card {
  border: 2px solid var(--ink); padding: 24px; background: var(--bg);
  border-bottom: 0;
}
.aside .data-card:last-child, .aside .contact-card:last-child, .aside .related-card:last-child { border-bottom: 2px solid var(--ink); }
.card-title {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); font-weight: 500; margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-title::before { content: ""; width: 8px; height: 8px; background: var(--green); display: inline-block; }
.data-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--rule); gap: 14px; }
.data-row:last-child { border-bottom: 0; }
.data-row .l { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.data-row .v { font-family: var(--display); font-weight: 500; font-size: 16px; color: var(--ink); text-align: right; text-transform: uppercase; letter-spacing: -0.01em; }
.contact-row { font-family: var(--body); font-size: 14px; line-height: 1.6; margin-bottom: 14px; color: var(--ink); }
.contact-row b { display:block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; font-weight: 500; }
.contact-row a { color: var(--blue); text-decoration: none; }

.related-list { list-style: none; padding: 0; margin: 0; }
.related-list a {
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none; color: var(--ink); padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display); font-weight: 500; font-size: 16px;
  text-transform: uppercase; letter-spacing: -0.005em;
  transition: color .2s, padding-left .2s, background .2s;
}
.related-list a:hover { color: #fff; background: var(--blue); padding-left: 12px; padding-right: 12px; margin: 0 -12px; border-bottom-color: var(--blue); }
.related-list a:last-child { border-bottom: 0; }

.firms-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 2px solid var(--ink);
}
.firm-card {
  padding: 28px 24px; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 8px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--bg);
  position: relative; transition: background .25s;
  min-height: 220px;
}
.firms-grid > .firm-card:nth-child(2n) { border-right: 0; }
.firms-grid > .firm-card:nth-last-child(-n+2) { border-bottom: 0; }
.firm-card:hover { background: var(--blue); color: #fff; }
.firm-card:hover .firm-card__num { color: var(--green-bright); }
.firm-card:hover .firm-card__lead { color: rgba(255,255,255,.85); }
.firm-card:hover .firm-card__arrow { color: var(--green-bright); transform: translate(6px, -6px); }
.firm-card__num { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--blue); transition: color .25s; }
.firm-card__name { font-family: var(--display); font-weight: 500; font-size: 24px; letter-spacing: -0.018em; text-transform: uppercase; line-height: 1.05; margin: 0 0 4px; }
.firm-card__lead { font-family: var(--body); font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; transition: color .25s; }
.firm-card__arrow { position: absolute; top: 28px; right: 24px; font-family: var(--display); font-weight: 500; font-size: 24px; color: var(--ink); transition: color .25s, transform .35s; }

.cap-table { width: 100%; border-collapse: collapse; margin: 24px 0; border: 2px solid var(--ink); }
.cap-table th, .cap-table td {
  text-align: left; padding: 14px 14px; border-bottom: 1px solid var(--ink); font-size: 14px;
  font-family: var(--body); color: var(--ink);
}
.cap-table tr:last-child td { border-bottom: 0; }
.cap-table th { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; background: var(--bg-2); }
.cap-table td.v { font-family: var(--display); color: var(--ink); text-align: right; font-weight: 500; text-transform: uppercase; }

.simple-page { padding: clamp(56px, 7vw, 96px) var(--pad); background: var(--bg); border-bottom: 2px solid var(--ink); }
.simple-page__inner { max-width: 920px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 36px; border: 2px solid var(--ink); }
.contact-block { background: var(--bg); border-right: 2px solid var(--ink); padding: 28px; }
.contact-block:last-child { border-right: 0; }
.contact-block h3 { font-family: var(--display); font-weight: 500; font-size: 22px; margin: 0 0 12px; text-transform: uppercase; }
.contact-block p { font-family: var(--body); font-size: 14px; line-height: 1.7; margin: 0 0 4px; color: var(--ink); }
.contact-block .label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 12px; margin-bottom: 2px; }

.news-list { display: flex; flex-direction: column; margin-top: 36px; border: 2px solid var(--ink); }
.news-item { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 28px; border-bottom: 1px solid var(--ink); text-decoration: none; color: var(--ink); align-items: center; transition: background .25s; }
.news-item:last-child { border-bottom: 0; }
.news-item:hover { background: var(--bg-2); }
.news-item:hover .news-item__title { color: var(--blue); }
.news-item__date { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--muted); }
.news-item__category { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--green-deep); font-weight: 500; margin-top: 6px; }
.news-item__title { font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.15; letter-spacing: -0.012em; text-transform: uppercase; margin: 6px 0 8px; transition: color .25s; }
.news-item__excerpt { font-family: var(--body); font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 65ch; }

@media (max-width: 1080px) {
  .page-body__inner { grid-template-columns: 1fr; }
  .aside { position: static; }
  .firms-grid { grid-template-columns: 1fr; }
  .firms-grid .firm-card { border-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-block { border-right: 0; border-bottom: 2px solid var(--ink); }
  .contact-block:last-child { border-bottom: 0; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }
}


.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
.sitemap-grid h3 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; margin: 0 0 14px;
}
.sitemap-list { list-style: none; padding: 0; margin: 0; }
.sitemap-list li { padding: 6px 0; }
.sitemap-list a { text-decoration: none; transition: color .2s, padding-left .2s; display: inline-block; }
.sitemap-list a:hover { padding-left: 4px; }
@media (max-width: 720px) { .sitemap-grid { grid-template-columns: 1fr; } }

.sitemap-grid h3 { color: var(--blue); } .sitemap-list a { color: var(--ink); font-family: var(--display); font-size: 16px; text-transform: uppercase; font-weight: 500; letter-spacing: -0.005em; } .sitemap-list a:hover { color: var(--blue); }


/* ════════════════════════════════════════════════════════════
   Mobile menu — Industrial blueprint takeover (theme-4)
   Full-screen, white over an engineer's grid. IBM Plex Sans
   Condensed in heavy weight, all-caps, with a sharp blue
   block-fill on hover.
   ════════════════════════════════════════════════════════════ */

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.menu-toggle:hover { background: var(--ink); color: var(--bg); }
.menu-toggle__bars { display: inline-flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.menu-toggle__bars span {
  display: block; width: 18px; height: 2px; background: currentColor;
  transition: transform .35s cubic-bezier(.7,.0,.3,1), opacity .2s ease, width .2s ease;
}
.menu-toggle__bars span:nth-child(2) { width: 12px; }
.menu-toggle__bars span:nth-child(3) { width: 16px; }
.menu-toggle:hover .menu-toggle__bars span { width: 18px; }
.menu-toggle.is-active .menu-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 18px; }
.menu-toggle.is-active .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .menu-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 18px; }

.menu-overlay { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.menu-overlay__backdrop {
  position: absolute; inset: 0;
  background: var(--bg);
  background-image:
    linear-gradient(to right, var(--rule) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0;
  transition: opacity .35s ease;
}
.menu-overlay__panel {
  position: absolute; inset: 0;
  padding: clamp(28px, 5vw, 64px) clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateY(-2%);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.menu-overlay.is-open { pointer-events: auto; }
.menu-overlay.is-open .menu-overlay__backdrop { opacity: 1; }
.menu-overlay.is-open .menu-overlay__panel { transform: translateY(0); opacity: 1; }

.menu-overlay__panel::before {
  content: "MENU // 2026";
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--blue);
  text-transform: uppercase;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
  margin-bottom: 28px;
}
.menu-overlay__close {
  position: absolute; top: clamp(20px, 3vw, 32px); right: clamp(20px, 4vw, 36px);
  width: 44px; height: 44px;
  background: var(--bg); border: 1.5px solid var(--ink); color: var(--ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.menu-overlay__close:hover { background: var(--ink); color: var(--bg); }
.menu-overlay__close svg { width: 22px; height: 22px; }

.menu-overlay__inner {
  display: flex; flex-direction: column; gap: clamp(24px, 4vw, 40px);
  margin-top: clamp(16px, 4vw, 36px);
  flex: 1;
}

.menu-overlay__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.menu-overlay__nav li {
  position: relative;
  border-top: 1px solid var(--rule-2);
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.menu-overlay__nav li:last-child { border-bottom: 1px solid var(--rule-2); }
.menu-overlay.is-open .menu-overlay__nav li { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(1) { transition-delay: .10s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(2) { transition-delay: .14s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(3) { transition-delay: .18s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(4) { transition-delay: .22s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(5) { transition-delay: .26s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(6) { transition-delay: .30s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(7) { transition-delay: .34s; }
.menu-overlay__nav a {
  display: flex; align-items: center;
  padding: clamp(14px, 2vw, 22px) 16px clamp(14px, 2vw, 22px) 64px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 5.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.menu-overlay__nav li::before {
  content: attr(data-i);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--blue);
  font-weight: 500;
  padding-left: 8px;
  pointer-events: none;
  z-index: 1;
}
.menu-overlay__nav a:hover { background: var(--blue); color: #fff; }

.menu-overlay__util {
  display: flex; flex-wrap: wrap; gap: 14px 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-2);
}
.menu-overlay__util a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.menu-overlay__util a:hover { color: var(--blue); }

.menu-overlay__bottom {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  margin-top: auto;
  padding-top: 24px;
}
.menu-overlay__cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  flex: 1; justify-content: center;
  transition: background .2s ease;
}
.menu-overlay__cta:hover { background: var(--blue); }
.menu-overlay__cta svg { width: 16px; height: 16px; }

@media (max-width: 1080px) {
  .menu-toggle { display: inline-flex; }
  .header__cta .icon-btn { display: none; }
  .header__cta .btn { display: none; }
  .utility__right { display: none; }
}

html.menu-open, html.menu-open body { overflow: hidden; }
