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

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

  --bg:          #FAF7F2;
  --bg-2:        #FFFFFF;
  --bg-3:        #F0EDE6;

  --ink:         #0F1B2D;
  --muted:       #5A6677;
  --muted-2:     #8893A1;
  --rule:        rgba(15,27,45,0.10);
  --rule-2:      rgba(15,27,45,0.20);

  --display: 'Newsreader', Georgia, serif;
  --body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --mono:    'DM Mono', ui-monospace, monospace;

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

*,*::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.6;
  -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: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────────
   Header — light, traditional
   ────────────────────────────────────────────────────────────── */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .25s ease;
}
.header.is-scrolled {
  background: rgba(250,247,242,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 6px 24px -16px rgba(15,27,45,.15);
}
.header__top {
  border-bottom: 1px solid var(--rule);
  background: var(--bg-3);
}
.header__top-inner {
  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: .12em;
  color: var(--muted);
  text-transform: uppercase;
}
.header__top a { color: inherit; text-decoration: none; }
.header__top a:hover { color: var(--blue); }
.header__top-left, .header__top-right { display: flex; gap: 24px; align-items: center; }
.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; letter-spacing: .12em;
  padding: 4px 9px; color: var(--muted);
}
.lang-toggle button.active { background: var(--ink); color: var(--bg); }

.header__main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.header__logo {
  justify-self: start;
  display: inline-flex;
}
.header__logo img { height: 52px; width: auto; }
.nav__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px;
  justify-content: center;
}
.nav__list a {
  display: inline-flex; align-items: center;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 16;
  position: relative;
  transition: color .25s ease;
}
.nav__list a::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav__list a:hover { color: var(--blue); }
.nav__list a:hover::after { transform: scaleX(1); }
.header__cta { justify-self: end; display: flex; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-family: var(--body); font-size: 13.5px; font-weight: 500;
  text-decoration: none;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.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 svg { width: 13px; height: 13px; }
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-2);
  background: transparent; color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  transition: border-color .2s, color .2s;
}
.icon-btn:hover { border-color: var(--ink); }
.icon-btn svg { width: 14px; height: 14px; }

/* ──────────────────────────────────────────────────────────────
   Hero — big italic with offset image
   ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) var(--pad) 0;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  position: relative;
}
.hero__lead { padding-bottom: clamp(40px, 6vw, 80px); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green-deep);
  margin-bottom: 32px;
}
.hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--green);
}
.hero__headline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(48px, 7.6vw, 124px);
  line-height: .96;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 72;
  color: var(--ink);
  margin: 0 0 36px;
  max-width: 14ch;
}
.hero__headline em {
  font-style: normal;
  font-weight: 350;
  color: var(--blue);
}
.hero__headline .underline {
  display: inline-block;
  border-bottom: 2px solid var(--green);
  padding-bottom: 6px;
}
.hero__deck {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero__visual {
  position: relative;
  margin-right: calc(var(--pad) * -1);  /* bleed off-canvas */
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.95);
}
.hero__visual-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(15,27,45,.4);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
}
.hero__visual-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(0deg, rgba(15,27,45,.85) 0%, rgba(15,27,45,0) 100%);
}
.hero__visual-cap .name {
  font-family: var(--display); font-style: italic;
  font-weight: 400; font-size: 22px;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.005em;
}
.hero__visual-cap .meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-top: 4px;
}

/* Hero credentials — long thin row beneath */
.hero__creds {
  margin-top: clamp(40px, 6vw, 72px);
  padding: 28px var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-left: calc(var(--pad) * -1);
  margin-right: calc(var(--pad) * -1);
}
.hero__creds-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.cred .label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 6px;
}
.cred .value {
  font-family: var(--display); font-style: italic;
  font-weight: 400; font-size: 20px;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.cred .value b { color: var(--blue); font-style: normal; font-weight: 500; }

/* ──────────────────────────────────────────────────────────────
   Figures — solid blue panel
   ────────────────────────────────────────────────────────────── */
.figures {
  background: var(--blue);
  color: #fff;
  padding: clamp(72px, 9vw, 128px) var(--pad);
  position: relative;
  overflow: hidden;
}
.figures::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(67,160,71,.22), transparent 60%);
  pointer-events: none;
}
.figures__inner { max-width: var(--max); margin: 0 auto; position: relative; }
.figures__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.figures__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 72;
  margin: 0;
  color: #fff;
}
.figures__title em {
  font-style: italic; color: var(--green-bright); font-weight: 350;
}
.figures__caption {
  font-family: var(--body);
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 50ch;
  margin: 0;
}
.figures__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.figure {
  padding: 32px 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.18);
}
.figure:nth-child(n+2) { padding-left: 24px; }
.figure:last-child { border-right: 0; padding-right: 0; }
.figure__value {
  font-family: var(--display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(56px, 6.8vw, 104px);
  line-height: .98;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 72;
  color: #fff;
  display: flex; align-items: baseline; gap: 6px;
}
.figure__value em { font-style: normal; }
.figure__suffix {
  font-style: normal;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.32em;
  color: var(--green-bright);
  letter-spacing: .02em;
}
.figure__label {
  margin-top: 18px;
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  max-width: 22ch;
}

/* ──────────────────────────────────────────────────────────────
   Manifesto — italic standalone moment
   ────────────────────────────────────────────────────────────── */
.manifesto {
  background: var(--bg);
  padding: clamp(72px, 10vw, 144px) var(--pad);
  border-bottom: 1px solid var(--rule);
}
.manifesto__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.manifesto__eyebrow::before, .manifesto__eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--rule-2);
}
.manifesto__text {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.32;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 60;
  color: var(--ink);
  margin: 0;
}
.manifesto__text em {
  font-style: italic;
  color: var(--blue);
  font-weight: 350;
}

/* ──────────────────────────────────────────────────────────────
   Holdings — alternating image/text big rows
   ────────────────────────────────────────────────────────────── */
.holdings__head {
  background: var(--bg-2);
  padding: clamp(56px, 7vw, 96px) var(--pad);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.holdings__head-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.holdings__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: .98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 72;
  margin: 18px 0 0;
  color: var(--ink);
}
.holdings__title em { font-style: italic; color: var(--blue); font-weight: 350; }
.holdings__intro {
  font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: var(--muted); max-width: 52ch;
}

.division {
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}
.division:nth-of-type(even) { background: var(--bg); }
.division__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.division:nth-of-type(even) .division__inner { direction: rtl; }
.division:nth-of-type(even) .division__inner > * { direction: ltr; }

.division__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 4px;
}
.division__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.92);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.division:hover .division__media img { transform: scale(1.03); }
.division__media-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--display); font-style: italic;
  font-weight: 350; font-size: 36px;
  font-variation-settings: "opsz" 36;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.division__media-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(15,27,45,.78) 0%, transparent 100%);
  color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase;
}

.division__category {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep); font-weight: 500;
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 14px;
}
.division__category::before {
  content: ""; width: 28px; height: 1px; background: var(--green);
}
.division__name {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 60;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 18ch;
}
.division__name em { font-style: italic; color: var(--blue); font-weight: 350; }
.division__deck {
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  color: var(--muted); margin: 0 0 32px;
  max-width: 56ch;
}
.division__stats {
  display: flex; gap: 32px;
  padding: 20px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.division__stat .l {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 6px;
}
.division__stat .v {
  font-family: var(--display); font-style: italic;
  font-weight: 400; font-size: 22px;
  font-variation-settings: "opsz" 24;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.division__stat .v b { color: var(--blue); font-style: normal; font-weight: 500; }

.companies {
  list-style: none; padding: 0; margin: 0;
}
.company {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: padding .3s cubic-bezier(.2,.8,.2,1), color .25s;
}
.companies .company:last-child { border-bottom: 1px solid var(--rule); }
.company:hover { padding-left: 12px; color: var(--blue); }
.company:hover .company__arrow { transform: translateX(6px); color: var(--green-deep); }
.company__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  color: var(--muted-2);
  width: 28px;
}
.company__name {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  font-variation-settings: "opsz" 24;
  color: var(--ink);
  transition: color .25s;
}
.company:hover .company__name { color: var(--blue); }
.company__arrow {
  font-family: var(--display); font-style: italic;
  color: var(--green-deep); font-size: 22px;
  font-variation-settings: "opsz" 24;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), color .25s;
}

/* ──────────────────────────────────────────────────────────────
   Showcase — green panel with overlap
   ────────────────────────────────────────────────────────────── */
.showcase {
  background: var(--green-deep);
  color: #fff;
  padding: clamp(72px, 9vw, 128px) var(--pad);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.showcase::before {
  content: "";
  position: absolute;
  bottom: -180px; left: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none;
}
.showcase__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.showcase__num {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
}
.showcase__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 72;
  color: #fff;
  margin: 0 0 24px;
}
.showcase__title em { font-style: italic; color: rgba(255,255,255,.85); font-weight: 350; }
.showcase__deck {
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 56ch; margin: 0 0 32px;
}
.showcase__data {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.showcase__data .item .l {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}
.showcase__data .item .v {
  font-family: var(--display); font-style: italic;
  font-weight: 400;
  font-size: 26px;
  font-variation-settings: "opsz" 36;
  color: #fff;
  letter-spacing: -0.01em;
}
.showcase__data .item .v b { font-style: normal; font-weight: 500; }
.showcase__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.showcase__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.85);
}

/* ──────────────────────────────────────────────────────────────
   News — magazine grid
   ────────────────────────────────────────────────────────────── */
.news {
  background: var(--bg);
  padding: clamp(72px, 9vw, 128px) var(--pad);
  border-bottom: 1px solid var(--rule);
}
.news__inner { max-width: var(--max); margin: 0 auto; }
.news__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px;
  flex-wrap: wrap; gap: 18px;
}
.news__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: .98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 72;
  margin: 14px 0 0;
}
.news__title em { font-style: italic; color: var(--blue); font-weight: 350; }
.news__more {
  font-family: var(--display); font-style: italic;
  font-weight: 400; font-size: 18px;
  font-variation-settings: "opsz" 24;
  color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 4px;
  transition: border-color .25s, color .25s;
}
.news__more:hover { border-color: var(--green); color: var(--green-deep); }
.news__more svg { width: 14px; height: 14px; }

.news__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.article-lead { grid-column: span 7; }
.article-side  { grid-column: span 5; display: flex; flex-direction: column; gap: 24px; }

.article {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.article-lead .article-lead__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 4px;
}
.article-lead__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.92);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.article-lead:hover .article-lead__img img { transform: scale(1.04); }
.article-lead__meta {
  display: flex; gap: 18px; align-items: center;
  margin-top: 24px;
}
.article-lead__category {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green-deep); font-weight: 500;
}
.article-lead__date {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  color: var(--muted-2);
}
.article-lead__headline {
  font-family: var(--display); font-style: italic;
  font-weight: 350;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 60;
  color: var(--ink);
  margin: 16px 0 14px;
  max-width: 22ch;
  transition: color .25s;
}
.article-lead:hover .article-lead__headline { color: var(--blue); }
.article-lead__deck {
  font-family: var(--body); font-size: 15px; line-height: 1.6;
  color: var(--muted); max-width: 56ch;
  margin: 0;
}

.article-side .article {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.article-side .article:last-child { border-bottom: 0; padding-bottom: 0; }
.article-side .article__category {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--green-deep); font-weight: 500;
}
.article-side .article__headline {
  font-family: var(--display); font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 24;
  color: var(--ink);
  margin: 8px 0 8px;
  transition: color .25s;
}
.article-side .article:hover .article__headline { color: var(--blue); }
.article-side .article__date {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  color: var(--muted-2);
}
.article-side .article__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 4px;
}
.article-side .article__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.92);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.article-side .article:hover .article__img img { transform: scale(1.06); }

/* ──────────────────────────────────────────────────────────────
   Chairman — split with photo-style background
   ────────────────────────────────────────────────────────────── */
.chairman {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.chairman__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 144px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.chairman__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.chairman__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.6) brightness(.7);
}
.chairman__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(14,87,157,.15) 0%, rgba(15,27,45,.4) 100%);
}
.chairman__eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 32px;
}
.chairman__quote {
  font-family: var(--display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 60;
  color: #fff;
  margin: 0 0 40px;
  max-width: 30ch;
}
.chairman__quote em {
  font-style: normal;
  color: var(--green-bright);
  font-weight: 350;
}
.chairman__signature {
  display: flex; gap: 24px; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.chairman__sig-text {
  font-family: var(--display); font-style: italic;
  font-weight: 350; font-size: 38px;
  font-variation-settings: "opsz" 48;
  color: var(--green-bright);
  line-height: 1;
}
.chairman__sig-name {
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: #fff;
  letter-spacing: 0;
}
.chairman__sig-name span {
  display: block; margin-top: 4px;
  font-weight: 400; color: rgba(255,255,255,.7);
}

/* ──────────────────────────────────────────────────────────────
   Pillars — image-paired, 2x2
   ────────────────────────────────────────────────────────────── */
.pillars {
  background: var(--bg);
  padding: clamp(72px, 9vw, 128px) var(--pad);
  border-bottom: 1px solid var(--rule);
}
.pillars__inner { max-width: var(--max); margin: 0 auto; }
.pillars__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.pillars__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: .98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 72;
  margin: 14px 0 0;
}
.pillars__title em { font-style: italic; color: var(--blue); font-weight: 350; }
.pillars__deck {
  font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: var(--muted); max-width: 50ch;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pillar {
  text-decoration: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.pillar__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 4px;
}
.pillar__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.92);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.pillar:hover .pillar__img img { transform: scale(1.05); }
.pillar:hover .pillar__title { color: var(--blue); }
.pillar:hover .pillar__arrow { color: var(--green-deep); transform: translateX(6px); }
.pillar__num {
  font-family: var(--display); font-style: italic;
  font-weight: 400; font-size: 16px;
  font-variation-settings: "opsz" 24;
  color: var(--green-deep);
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 12px;
}
.pillar__num::before {
  content: ""; width: 24px; height: 1px; background: var(--green);
}
.pillar__title {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; line-height: 1.18;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24;
  color: var(--ink);
  margin: 0 0 12px;
  transition: color .25s;
}
.pillar__desc {
  font-family: var(--body); font-size: 14px; line-height: 1.55;
  color: var(--muted); margin: 0 0 16px;
}
.pillar__arrow {
  font-family: var(--display); font-style: italic;
  font-weight: 400; font-size: 16px;
  font-variation-settings: "opsz" 24;
  color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), color .25s;
}

/* ──────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.85);
}
.footer__top {
  border-bottom: 1px solid rgba(255,255,255,.10);
  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(--display); font-style: italic;
  font-size: 17px; line-height: 1.5;
  font-variation-settings: "opsz" 24;
  color: rgba(255,255,255,.78);
  margin-top: 22px;
  max-width: 36ch;
}
.footer__col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-bright); font-weight: 500;
  margin: 0 0 18px;
}
.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: .2em;
  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: .14em;
  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) {
  .header__main { grid-template-columns: auto auto; }
  .header__cta { grid-column: 2; }
  .nav__list { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { aspect-ratio: 16/10; margin-right: 0; }
  .hero__creds-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .figures__grid { grid-template-columns: repeat(2, 1fr); }
  .figure { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding: 24px 0; }
  .figure:nth-child(odd) { padding-right: 24px; border-right: 1px solid rgba(255,255,255,.18); }
  .figure:nth-child(even) { padding-left: 24px; }
  .holdings__head-inner, .pillars__head { grid-template-columns: 1fr; gap: 18px; }
  .division__inner { grid-template-columns: 1fr; gap: 32px; }
  .division:nth-of-type(even) .division__inner { direction: ltr; }
  .showcase__inner { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .article-lead, .article-side { grid-column: span 1; }
  .pillars__grid { grid-template-columns: 1fr; }
  .chairman__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .header__top-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .header__top-inner > div { flex-wrap: wrap; gap: 14px; }
  .hero__creds-inner { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 1fr; }
  .pillar__img { aspect-ratio: 16/10; }
  .article-side .article { grid-template-columns: 1fr; }
  .article-side .article__img { aspect-ratio: 16/10; }
  .footer__top-inner { grid-template-columns: 1fr; }
  .division__stats { flex-direction: column; gap: 18px; }
}


/* ────── Interior page styles (sub-pages) ────── */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
  padding: clamp(40px, 5vw, 72px) var(--pad);
}
.page-hero__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(32px, 5vw, 72px); align-items: end;
}
.breadcrumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--green-deep); }
.breadcrumb .current { color: var(--ink); }
.page-hero__title {
  font-family: var(--display); font-style: italic; font-weight: 350;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .98; letter-spacing: -0.025em;
  font-variation-settings: "opsz" 72;
  color: var(--ink); margin: 0 0 24px; max-width: 14ch;
}
.page-hero__title em { font-style: normal; color: var(--blue); font-weight: 350; }
.page-hero__lead {
  font-family: var(--body); font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65; color: var(--muted);
  max-width: 50ch; margin: 0;
}
.page-hero__image {
  aspect-ratio: 4/5; overflow: hidden; background: var(--bg-3); border-radius: 4px;
}
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(.92); }

.page-body { padding: clamp(56px, 7vw, 96px) var(--pad); background: var(--bg); }
.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: 400; font-style: italic;
  font-variation-settings: "opsz" 60;
  font-size: clamp(24px, 2.8vw, 36px); line-height: 1.1;
  letter-spacing: -0.018em; color: var(--ink);
  margin: 36px 0 14px; max-width: 24ch;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-family: var(--display); font-weight: 450;
  font-size: 20px; color: var(--ink);
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.005em;
  margin: 26px 0 10px;
}
.article p {
  font-family: var(--body); font-size: 16px; line-height: 1.75;
  color: var(--ink); margin: 0 0 18px; max-width: 65ch;
}
.article ul {
  font-family: var(--body); font-size: 15.5px; line-height: 1.75;
  color: var(--ink); padding-left: 20px; margin: 0 0 24px;
}
.article ul li { margin-bottom: 8px; }

.aside { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 24px; }
.data-card, .contact-card, .related-card {
  border: 1px solid var(--rule); padding: 26px; background: var(--bg-2); border-radius: 4px;
}
.card-title {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-deep); font-weight: 500; margin: 0 0 16px;
}
.data-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--rule); gap: 14px; }
.data-row:last-child { border-bottom: 0; }
.data-row .l { font-family: var(--body); font-size: 13px; color: var(--muted); }
.data-row .v { font-family: var(--display); font-weight: 400; font-style: italic; font-size: 16px; color: var(--ink); text-align: right; font-variation-settings: "opsz" 24; }
.data-row .v b { font-style: normal; font-weight: 500; color: var(--blue); }
.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: .16em; 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: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display); font-weight: 400; font-size: 18px;
  font-variation-settings: "opsz" 24;
  transition: color .2s, padding-left .2s;
}
.related-list a:hover { color: var(--blue); padding-left: 6px; }
.related-list a:last-child { border-bottom: 0; }
.related-list .arrow { font-style: italic; color: var(--green-deep); }

.firms-grid { border-top: 1px solid var(--rule); display: flex; flex-direction: column; }
.firm-card {
  display: grid; grid-template-columns: 1fr 200px; gap: 28px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
  transition: padding .35s cubic-bezier(.2,.8,.2,1);
}
.firm-card:hover { padding-left: 12px; }
.firm-card:hover .firm-card__name { color: var(--blue); }
.firm-card:hover .firm-card__img img { transform: scale(1.05); }
.firm-card__num { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted-2); margin-bottom: 6px; }
.firm-card__name { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 28px; letter-spacing: -0.012em; color: var(--ink); font-variation-settings: "opsz" 36; margin: 6px 0 8px; transition: color .25s; line-height: 1.05; }
.firm-card__lead { font-family: var(--body); font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 60ch; margin: 0; }
.firm-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-3); border-radius: 4px; }
.firm-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); filter: contrast(1.04) saturate(.92); }

.cap-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.cap-table th, .cap-table td {
  text-align: left; padding: 14px 14px; border-bottom: 1px solid var(--rule); font-size: 14.5px;
  font-family: var(--body); color: var(--ink);
}
.cap-table th { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.cap-table td.v { font-family: var(--display); font-style: italic; color: var(--blue); text-align: right; font-variation-settings: "opsz" 24; font-weight: 400; }

.simple-page { padding: clamp(56px, 7vw, 96px) var(--pad); background: var(--bg); }
.simple-page__inner { max-width: 920px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
.contact-block { background: var(--bg-2); border: 1px solid var(--rule); padding: 28px; border-radius: 4px; }
.contact-block h3 { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 24px; margin: 0 0 12px; font-variation-settings: "opsz" 36; }
.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: .16em; text-transform: uppercase; color: var(--muted-2); margin-top: 12px; margin-bottom: 2px; }

.news-list { display: flex; flex-direction: column; margin-top: 36px; border-top: 1px solid var(--rule); }
.news-item { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--rule); text-decoration: none; color: var(--ink); align-items: center; transition: padding-left .25s; }
.news-item:hover { padding-left: 8px; }
.news-item:hover .news-item__title { color: var(--blue); }
.news-item__date { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); }
.news-item__category { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--green-deep); font-weight: 500; margin-top: 6px; }
.news-item__title { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 24px; line-height: 1.15; letter-spacing: -0.012em; margin: 6px 0 8px; transition: color .25s; font-variation-settings: "opsz" 36; }
.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-hero__inner { grid-template-columns: 1fr; }
  .page-hero__image { aspect-ratio: 16/10; }
  .page-body__inner { grid-template-columns: 1fr; }
  .aside { position: static; }
  .firm-card { grid-template-columns: 1fr; }
  .firm-card__img { aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; }
  .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(--green-deep); } .sitemap-list a { color: var(--ink); font-family: var(--display); font-size: 17px; font-style: italic; font-variation-settings: "opsz" 24; } .sitemap-list a:hover { color: var(--blue); }


/* ════════════════════════════════════════════════════════════
   Mobile menu — Editorial drop-down (theme-3)
   Slides DOWN from the top like a magazine masthead.
   Cream paper bg, Newsreader serif italic in two columns,
   numbered like a table of contents.
   ════════════════════════════════════════════════════════════ */

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0 8px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .25s ease, border-color .25s ease;
  position: relative;
}
.menu-toggle:hover { color: var(--blue); border-bottom-color: var(--blue); }
.menu-toggle__label { display: inline-block; }
.menu-toggle__bars { display: inline-flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.menu-toggle__bars span {
  display: block; width: 18px; height: 1.2px; background: currentColor;
  transition: transform .35s cubic-bezier(.7,.0,.3,1), width .25s ease, opacity .2s ease;
}
.menu-toggle__bars span:nth-child(2) { width: 12px; }
.menu-toggle:hover .menu-toggle__bars span:nth-child(2) { width: 18px; }
.menu-toggle.is-active .menu-toggle__bars span:nth-child(1) { transform: translateY(2.6px) rotate(45deg); width: 18px; }
.menu-toggle.is-active .menu-toggle__bars span:nth-child(2) { transform: translateY(-2.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: rgba(15, 27, 45, 0.18);
  opacity: 0;
  transition: opacity .35s ease;
}
.menu-overlay__panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule-2);
  padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 64px) clamp(36px, 6vw, 56px);
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  max-height: 100vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -28px rgba(15, 27, 45, 0.22);
}
.menu-overlay__panel::before {
  content: "ÇINER GRUBU — MENÜ";
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
}
.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); }

.menu-overlay__close {
  position: absolute; top: clamp(20px, 3vw, 28px); right: clamp(20px, 4vw, 40px);
  width: 36px; height: 36px;
  background: transparent; border: none; color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s ease;
}
.menu-overlay__close:hover { color: var(--blue); }
.menu-overlay__close svg { width: 22px; height: 22px; }

.menu-overlay__inner { display: flex; flex-direction: column; gap: 28px; }

.menu-overlay__nav ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(20px, 4vw, 48px);
  row-gap: 0;
}
@media (max-width: 540px) {
  .menu-overlay__nav ul { grid-template-columns: 1fr; }
}
.menu-overlay__nav li {
  position: relative;
  border-top: 1px solid var(--rule);
  padding: 14px 0 14px 36px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.menu-overlay.is-open .menu-overlay__nav li { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(n) { transition-delay: calc(0.06s * var(--i, 1) + 0.1s); }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(1) { transition-delay: .12s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(2) { transition-delay: .18s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(3) { transition-delay: .24s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(4) { transition-delay: .30s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(5) { transition-delay: .36s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(6) { transition-delay: .42s; }
.menu-overlay.is-open .menu-overlay__nav li:nth-child(7) { transition-delay: .48s; }
.menu-overlay__nav li::before {
  content: attr(data-i);
  position: absolute; left: 0; top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--muted-2);
}
.menu-overlay__nav a {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.1;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color .2s ease, transform .25s ease;
}
.menu-overlay__nav a:hover { color: var(--blue); transform: translateX(4px); }

.menu-overlay__util {
  display: flex; flex-wrap: wrap; gap: 18px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.menu-overlay__util a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  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;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.menu-overlay__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: .04em;
  border: 1px solid var(--ink);
  margin-left: auto;
  transition: background .2s ease, color .2s ease;
}
.menu-overlay__cta:hover { background: var(--blue); border-color: var(--blue); }
.menu-overlay__cta svg { width: 14px; height: 14px; }

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

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