/* ──────────────────────────────────────────────────────────────────────────
   Pamoja Group, institutional design system
   Reference: Cargill, ADM, Bunge, Olam, Seaboard, Wilmar
   ────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  /* palette */
  --aubergine:       #4a1942;
  --aubergine-deep:  #2c0d28;
  --aubergine-mid:   #6b2d5b;
  --aubergine-soft:  #f5eef4;
  --gold:            #c9a04a;
  --gold-deep:       #a07a2a;
  --gold-soft:       #f3e6c8;
  --teal:            #1aafa0;
  --teal-deep:       #117a70;
  --paper:           #faf6f1;
  --paper-warm:      #efe6d6;
  --ink:             #1a1a1a;
  --ink-soft:        #3a3a3a;
  --ink-faint:       rgba(26, 26, 26, 0.65);
  --rule:            rgba(74, 25, 66, 0.14);
  --rule-strong:     rgba(74, 25, 66, 0.28);

  /* type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* motion */
  --ease:   cubic-bezier(0.6, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.2, 0, 0.05, 1);

  /* layout */
  --gutter:   clamp(1.25rem, 3.5vw, 3.5rem);
  --max:      1240px;
  --max-wide: 1440px;
  --max-narrow: 880px;
}

/* ── Reset + base ────────────────────────────────────────────────────────── */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease), opacity 0.3s var(--ease); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--aubergine-deep);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.display-xl { font-size: clamp(48px, 7vw, 104px); font-weight: 300; line-height: 1.02; letter-spacing: -0.025em; }
.display-lg { font-size: clamp(40px, 5.5vw, 80px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; }
.display-md { font-size: clamp(32px, 4.5vw, 60px); font-weight: 300; line-height: 1.1; }
.display-sm { font-size: clamp(24px, 3vw, 40px); font-weight: 400; line-height: 1.18; }

p { margin-bottom: 1rem; }
.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.eyebrow--ink   { color: var(--aubergine); }
.eyebrow--paper { color: var(--gold); }

.muted { color: var(--ink-faint); }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.container        { max-width: var(--max);       margin: 0 auto; padding: 0 var(--gutter); }
.container--wide  { max-width: var(--max-wide);  margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow{ max-width: var(--max-narrow);margin: 0 auto; padding: 0 var(--gutter); }

section { position: relative; }
.section          { padding: clamp(60px, 9vw, 140px) 0; }
.section--tight   { padding: clamp(40px, 6vw, 90px) 0; }
.section--ink     { background: var(--aubergine-deep); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--cream   { background: var(--paper-warm); }
.section--paper   { background: var(--paper); }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn--solid {
  background: var(--aubergine);
  color: var(--paper);
  border: 1px solid var(--aubergine);
}
.btn--solid:hover { background: var(--aubergine-deep); border-color: var(--aubergine-deep); }
.btn--ghost {
  background: transparent;
  color: var(--aubergine);
  border: 1px solid currentColor;
}
.btn--ghost:hover { background: var(--aubergine); color: var(--paper); border-color: var(--aubergine); }
.btn--gold {
  background: var(--gold);
  color: var(--aubergine-deep);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--aubergine-deep); border: 1px solid var(--paper); }
.btn--paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--ghost-paper { background: transparent; color: var(--paper); border: 1px solid rgba(245, 238, 244, 0.4); }
.btn--ghost-paper:hover { background: var(--paper); color: var(--aubergine-deep); border-color: var(--paper); }

.btn .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--aubergine);
}
.link-arrow:hover { color: var(--gold-deep); }
.link-arrow .arrow { transition: transform 0.4s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ── Top navigation ──────────────────────────────────────────────────────── */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: all 0.4s var(--ease);
}
.topnav--transparent {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.topnav--transparent.is-scrolled {
  background: rgba(44, 13, 40, 0.92);
  border-bottom-color: rgba(245, 238, 244, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 72px;
}
.topnav__inner {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.topnav__brand {
  flex-shrink: 0;
  display: block;
  width: 120px;
}
.topnav__brand img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(10%) sepia(32%) saturate(3250%) hue-rotate(285deg) brightness(90%) contrast(95%);
  transition: filter 0.4s var(--ease);
}
.topnav--transparent .topnav__brand img { filter: brightness(0) invert(1); }
.topnav--transparent.is-scrolled .topnav__brand img { filter: brightness(0) invert(1); }
.topnav__nav {
  display: none;   /* always hidden, hamburger-only navigation */
  gap: 1.8rem;
  flex: 1;
}
.topnav__nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--aubergine-deep);
  position: relative;
  padding: 6px 0;
}
.topnav--transparent .topnav__nav a { color: var(--paper); }
.topnav__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.topnav__nav a:hover::after,
.topnav__nav a.is-active::after { transform: scaleX(1); }
.topnav__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.topnav__action {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6em 1.1em;
  border: 1px solid currentColor;
  color: var(--aubergine);
}
.topnav--transparent .topnav__action { color: var(--paper); }
.topnav__action:hover { background: var(--aubergine); color: var(--paper); border-color: var(--aubergine); }
.topnav--transparent .topnav__action:hover { background: var(--paper); color: var(--aubergine-deep); border-color: var(--paper); }

.topnav__toggle {
  display: flex;       /* always visible, primary nav trigger */
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;   /* push to right when nav is hidden */
}
.topnav__inner { gap: 1rem; }
.topnav__inner > .topnav__brand { margin-right: auto; }
.topnav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--aubergine);
  transition: all 0.4s var(--ease);
}
.topnav--transparent .topnav__toggle span { background: var(--paper); }

/* Mobile mega-menu overlay */
.menu {
  position: fixed; inset: 0;
  background: var(--aubergine-deep);
  color: var(--paper);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 96px 6vw 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__close {
  position: absolute; top: 28px; right: 36px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
}
.menu__nav {
  display: flex; flex-direction: column;
  margin-top: 40px;
  flex: 1;
  justify-content: center;
}
.menu__nav a {
  display: flex; align-items: baseline; gap: 32px;
  padding: 18px 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 6vw, 80px);
  border-top: 1px solid rgba(245, 238, 244, 0.18);
  transition: color 0.3s var(--ease), padding 0.4s var(--ease);
  counter-increment: menu;
}
.menu__nav { counter-reset: menu; }
.menu__nav a:last-child { border-bottom: 1px solid rgba(245, 238, 244, 0.18); }
.menu__nav a::before {
  content: counter(menu, decimal-leading-zero);
  font-family: var(--sans); font-style: normal;
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold);
  align-self: center;
  flex-shrink: 0;
}
.menu__nav a:hover { color: var(--gold); padding-left: 24px; }
.menu__foot {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 238, 244, 0.6);
  margin-top: 40px;
}

/* ── Hero (homepage) ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--aubergine-deep);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.95) contrast(1.05);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.65) 100%),
    linear-gradient(90deg, rgba(44,13,40,0.55) 0%, rgba(0,0,0,0.0) 50%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(70px, 9vh, 130px);
  padding-top: 200px;
}
.hero__inner { max-width: 1100px; }
.hero h1 {
  color: var(--paper);
  margin-bottom: 1.6rem;
}
.hero__lead {
  max-width: 56ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  margin-bottom: 2.4rem;
  color: rgba(245, 238, 244, 0.92);
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.hero__metaribbon {
  /* now a regular sibling band, no overlap with the next section */
  position: relative;
  z-index: 3;
  background: var(--aubergine-deep);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__metaribbon ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--gutter);
}
.hero__metaribbon li {
  padding: 22px 0; text-align: center;
  border-left: 1px solid rgba(245, 238, 244, 0.1);
}
.hero__metaribbon li:first-child { border-left: 0; }
.hero__metaribbon strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 4px;
}

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background: var(--aubergine-deep);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) contrast(1.05); }
.page-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(44,13,40,0.6) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 200px 0 80px;
}
.page-hero h1 { color: var(--paper); }
.page-hero__lead {
  margin-top: 1.2rem;
  max-width: 56ch;
  color: rgba(245, 238, 244, 0.9);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
}

/* ── Manifesto (intro paragraph) ─────────────────────────────────────────── */
.manifesto {
  text-align: center;
  padding: clamp(28px, 3.5vw, 48px) 0;
}
.manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.35;
  max-width: 46ch;
  margin: 0 auto;
  color: var(--aubergine-deep);
}
.manifesto .eyebrow { margin-bottom: 0.6rem; display: inline-block; }
.manifesto p em { color: var(--gold-deep); font-style: italic; }

/* ── Stats strip ─────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats > li {
  padding: clamp(50px, 6vw, 90px) clamp(20px, 3vw, 40px);
  text-align: center;
  border-left: 1px solid var(--rule);
}
.stats > li:first-child { border-left: 0; }
.stats__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--aubergine-deep);
  margin-bottom: 0.8rem;
}
.stats__num em { color: var(--gold-deep); font-style: normal; }
.stats__lbl {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── Section heading block ───────────────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head h2 { max-width: 16ch; }
.section-head__copy { max-width: 56ch; }
.section-head__copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── Sector / capability grid ────────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.sector-card {
  position: relative;
  background: var(--paper);
  padding: 0;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.sector-card__media {
  position: absolute; inset: 0;
}
.sector-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
  filter: brightness(0.78);
}
.sector-card:hover .sector-card__media img { transform: scale(1.06); filter: brightness(0.66); }
.sector-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,13,40,0.1) 0%, rgba(44,13,40,0.65) 70%, rgba(44,13,40,0.9) 100%);
}
.sector-card__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px);
  color: var(--paper);
}
.sector-card__num {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sector-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 0.6rem;
}
.sector-card__desc {
  font-size: 14px;
  color: rgba(245, 238, 244, 0.85);
  max-width: 36ch;
  margin-bottom: 1.4rem;
}
.sector-card__more {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  align-self: flex-start;
  color: var(--gold);
}
@media (max-width: 1000px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sectors-grid { grid-template-columns: 1fr; }
}

/* ── Operations / regions split ──────────────────────────────────────────── */
.regions {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.regions__map {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--aubergine-soft);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.regions__list { display: flex; flex-direction: column; gap: 1.2rem; }
.region {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}
.region:last-child { border-bottom: 1px solid var(--rule); }
.region__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--gold-deep);
}
.region__name {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px;
  color: var(--aubergine-deep);
}
.region__detail { color: var(--ink-faint); font-size: 13px; margin-top: 4px; }
.region__role {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  text-align: right;
}
@media (max-width: 900px) { .regions { grid-template-columns: 1fr; } }

/* ── Pillars / sustainability ────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 60px);
}
.pillar {
  padding-top: 2rem;
  border-top: 2px solid var(--gold);
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 1rem;
}
.pillar p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.pillar__more { margin-top: 1.6rem; display: inline-block; }
.section--ink .pillar h3 { color: var(--paper); }
.section--ink .pillar p { color: rgba(245, 238, 244, 0.78); }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ── Feature split (alternating image + text rows) ───────────────────────── */
.fsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid var(--rule);
}
.fsplit:first-of-type { border-top: 0; }
.fsplit--reverse { direction: rtl; }
.fsplit--reverse > * { direction: ltr; }
.fsplit__media {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--paper-warm);
}
.fsplit__media img { width: 100%; height: 100%; object-fit: cover; }
.fsplit__num {
  font-family: var(--serif);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}
.fsplit h2 { margin-bottom: 1.5rem; }
.fsplit p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; max-width: 50ch; margin-bottom: 1rem; }
.fsplit ul { margin: 1.5rem 0; padding: 0; list-style: none; }
.fsplit ul li {
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 22ch 1fr;
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  align-items: start;
  font-size: 15px;
}
.fsplit ul li:last-child { border-bottom: 1px solid var(--rule); }
.fsplit ul li strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.32;
  color: var(--aubergine);
  margin: 0;
  padding-top: 2px;
}
.fsplit ul li span {
  color: var(--ink-soft);
  line-height: 1.65;
  text-align: left;
  hyphens: auto;
}
@media (max-width: 700px) {
  .fsplit ul li { grid-template-columns: 1fr; gap: 0.35rem; }
}
@media (max-width: 900px) {
  .fsplit { grid-template-columns: 1fr; }
  .fsplit--reverse { direction: ltr; }
}

/* ── Quote block ─────────────────────────────────────────────────────────── */
.pullquote {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 100px);
  background: var(--aubergine-soft);
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.4;
  max-width: 30ch;
  margin: 0 auto 1.8rem;
  color: var(--aubergine-deep);
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ── News / insights cards ───────────────────────────────────────────────── */
.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 50px);
}
.insight {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
}
.insight__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--paper-warm);
}
.insight__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.insight:hover .insight__media img { transform: scale(1.04); }
.insight__meta {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.insight h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.insight p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 40ch;
}
.insight__more {
  margin-top: 1.5rem;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--aubergine);
}
@media (max-width: 900px) { .insights { grid-template-columns: 1fr; } }

/* Featured news (top of news page) */
.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.news-featured__media { aspect-ratio: 4 / 3; overflow: hidden; }
.news-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.news-featured h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
@media (max-width: 800px) { .news-featured { grid-template-columns: 1fr; } }

/* ── CTA band (full-bleed call to action) ────────────────────────────────── */
.cta-band {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--aubergine-deep);
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.cta-band__inner {
  position: relative; z-index: 1;
  padding: clamp(60px, 9vw, 120px) 0;
  width: 100%;
  text-align: center;
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
}
.cta-band p {
  color: rgba(245, 238, 244, 0.85);
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: 16px;
}

/* ── Leadership grid ─────────────────────────────────────────────────────── */
.leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 50px);
}
.leader__photo {
  aspect-ratio: 3 / 4;
  background: var(--paper-warm);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.leader__photo img { width: 100%; height: 100%; object-fit: cover; }
.leader__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.leader__role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
@media (max-width: 800px) { .leaders { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .leaders { grid-template-columns: 1fr; } }

/* ── Leadership cards (typography-led, no photos) ────────────────────────── */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.leader-card {
  position: relative;
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.4s var(--ease);
}
.leader-card:hover { background: var(--paper-warm); }
.leader-card__monogram {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--aubergine-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.leader-card__monogram span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.leader-card__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--aubergine-deep);
  line-height: 1.1;
}
.leader-card__role {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.leader-card__based {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}
.leader-card__bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 1000px) { .leader-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .leader-grid { grid-template-columns: 1fr; } }

/* ── Office grid ─────────────────────────────────────────────────────────── */
.offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: clamp(30px, 5vw, 60px);
}
.office {
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper);
}
.office__city {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 0.4rem;
  color: var(--aubergine-deep);
}
.office__country {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.office__address {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.office__role {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 4px 10px;
  background: var(--aubergine-soft);
  color: var(--aubergine);
}
@media (max-width: 1000px) { .offices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .offices { grid-template-columns: 1fr; } }

/* ── SDG grid (sustainability page) ─────────────────────────────────────── */
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(30px, 4vw, 50px);
}
.sdg-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(16px, 1.6vw, 24px);
  padding: clamp(16px, 1.6vw, 24px);
  align-items: start;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.sdg-card__icon {
  width: 110px;
  height: 110px;
  display: block;
  object-fit: contain;
  background: transparent;
}
.sdg-card__body { min-width: 0; }
.sdg-card__meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.sdg-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.25;
  margin: 0 0 0.55rem;
  color: var(--aubergine-deep);
}
.sdg-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.sdg-credit {
  margin: clamp(20px, 3vw, 36px) 0 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-align: center;
}
@media (max-width: 900px) {
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sdg-grid { grid-template-columns: 1fr; }
  .sdg-card { grid-template-columns: 88px 1fr; }
  .sdg-card__icon { width: 88px; height: 88px; }
}

/* ── Goal table (sustainability community section) ─────────────────────── */
.goal-table {
  margin: 1.6rem 0 2.4rem;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.goal-table__head {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm, #f4eed7);
}
.goal-table__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}
.goal-table__note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 60ch;
}
.goal-table__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.goal-table__cell {
  padding: 1.6rem 1.2rem;
  border-right: 1px solid var(--rule);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  min-height: 150px;
}
.goal-table__cell:last-child { border-right: none; }
.goal-table__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 44px);
  line-height: 1;
  color: var(--gold-deep);
  text-align: center;
  width: 100%;
}
.goal-table__lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 18ch;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .goal-table__grid { grid-template-columns: 1fr 1fr; }
  .goal-table__cell { border-right: none; border-bottom: 1px solid var(--rule); min-height: 110px; }
  .goal-table__cell:nth-child(2n) { border-right: none; }
  .goal-table__cell:last-child { border-bottom: none; }
}

/* ── Locations (homepage Where We Operate) ─────────────────────────────── */
.locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(30px, 5vw, 60px);
}
.locations__item {
  padding: clamp(28px, 3vw, 42px) clamp(20px, 2.4vw, 32px);
  border-right: 1px solid var(--rule);
  text-align: left;
}
.locations__item:last-child { border-right: none; }
.locations__city {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.1;
  color: var(--aubergine-deep);
  margin-bottom: 0.4rem;
}
.locations__country {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.locations__role {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 1000px) {
  .locations { grid-template-columns: 1fr 1fr; }
  .locations__item { border-right: none; border-bottom: 1px solid var(--rule); }
  .locations__item:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .locations { grid-template-columns: 1fr; }
  .locations__item { border-right: none; border-bottom: 1px solid var(--rule); }
  .locations__item:last-child { border-bottom: none; }
}

/* ── Timeline (about page) ──────────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  position: relative;
  padding: 0 var(--gutter);
  max-width: 900px;
  margin: 0 auto;
}
.timeline__line {
  background: var(--rule);
  position: relative;
}
.timeline__entry {
  padding: 1rem 2.5rem 3rem;
  position: relative;
}
.timeline__entry:nth-child(odd)  { grid-column: 1; text-align: right; }
.timeline__entry:nth-child(even) { grid-column: 3; }
.timeline__entry::before {
  content: '';
  position: absolute;
  top: 1.6rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper);
}
.timeline__entry:nth-child(odd)::before  { right: -7px; }
.timeline__entry:nth-child(even)::before { left: -7px; }
.timeline__year {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--aubergine);
  margin-bottom: 0.4rem;
}
.timeline__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.timeline__desc { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
@media (max-width: 700px) {
  .timeline { grid-template-columns: 2px 1fr; }
  .timeline__line { grid-column: 1; }
  .timeline__entry:nth-child(odd),
  .timeline__entry:nth-child(even) { grid-column: 2; text-align: left; }
  .timeline__entry::before { left: -7px; right: auto; }
}

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-grid label { display: flex; flex-direction: column; gap: 0.5rem; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.form-grid label input,
.form-grid label textarea,
.form-grid label select {
  padding: 0.9em 1em;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.form-grid label input:focus,
.form-grid label textarea:focus,
.form-grid label select:focus {
  outline: 0;
  border-color: var(--aubergine);
}
.form-grid label textarea { min-height: 140px; resize: vertical; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid .submit { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal-toc {
  background: var(--paper-warm);
  padding: 2rem;
  margin-bottom: 3rem;
}
.legal-toc h4 {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1rem;
}
.legal-toc ol { padding-left: 1.4rem; list-style: decimal; }
.legal-toc ol li { padding: 0.4rem 0; font-size: 14px; }
.legal-content h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  margin: 3rem 0 1rem;
}
.legal-content h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 2rem 0 0.5rem;
}
.legal-content p, .legal-content ul, .legal-content ol { margin-bottom: 1rem; color: var(--ink-soft); }
.legal-content ul, .legal-content ol { padding-left: 1.6rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.foot {
  background: var(--aubergine-deep);
  color: var(--paper);
  padding-top: clamp(80px, 10vw, 140px);
}
.foot__top {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(60px, 8vw, 90px);
  border-bottom: 1px solid rgba(245, 238, 244, 0.12);
}
.foot__brand img {
  width: 140px; margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.foot__lede {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  max-width: 28ch;
  color: var(--gold);
}
.foot__col h5 {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(245, 238, 244, 0.55);
  margin-bottom: 1.4rem;
  font-family: var(--sans); font-weight: 500;
}
.foot__col ul li { margin-bottom: 0.7rem; font-size: 14px; }
.foot__col ul li a:hover { color: var(--gold); }
.foot__bot {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245, 238, 244, 0.55);
  flex-wrap: wrap; gap: 1rem;
}
.foot__legal a + a { margin-left: 1.6rem; }
@media (max-width: 1000px) { .foot__top { grid-template-columns: 1fr 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }
@media (max-width: 700px)  { .foot__top { grid-template-columns: 1fr 1fr; } }

/* ── Cookie banner ───────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 90;
  background: var(--aubergine-deep);
  color: var(--paper);
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(245, 238, 244, 0.15);
  display: none;
  align-items: center; justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 13px;
}
.cookie-banner.is-shown { display: flex; }
.cookie-banner a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 0.8rem; }
.cookie-banner button { padding: 0.6em 1.2em; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; border: 1px solid currentColor; transition: all 0.3s; }
.cookie-banner button:hover { background: var(--paper); color: var(--aubergine-deep); border-color: var(--paper); }

/* ── Reveal-on-scroll ────────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* ── Mobile breakpoints (general) ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__metaribbon ul { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topnav__action { display: none; }    /* keep only logo + hamburger on phones */
}
@media (max-width: 600px) {
  :root { --gutter: 1.2rem; }
  .stats { grid-template-columns: 1fr; }
  .hero__metaribbon ul { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}

/* ──────────────────────────────────────────────────────────────────────────
   2026-05 REFRESH: tighter spacing, BCG-style menu, world map, vertical
   timeline, companies row, and a few fixes.
   ────────────────────────────────────────────────────────────────────────── */

/* Tighter section variant used for the meta-ribbon → companies transition */
.section--tight {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

/* Ensure the hero meta-ribbon and the following section never overlap */
.hero__metaribbon { display: block; position: relative; z-index: 3; }
.hero__metaribbon + section { margin-top: 0; }
.hero { isolation: isolate; }

/* ── BCG / McKinsey style overlay menu ───────────────────────────────────── */
.menu {
  /* override the previous big italic style */
  padding: 88px 6vw 36px;
}
.menu__nav { margin-top: 1.2rem; gap: 0; justify-content: flex-start; counter-reset: menu; }
.menu__nav a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.005em;
  color: var(--paper);
  border-top: 1px solid rgba(245, 238, 244, 0.12);
  border-bottom: 0;
  text-transform: none;
  transition: color 0.25s var(--ease), padding 0.3s var(--ease);
}
.menu__nav a::before {
  content: counter(menu, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(245, 238, 244, 0.45);
  align-self: center;
}
.menu__nav a::after {
  content: '→';
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(245, 238, 244, 0.45);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.menu__nav a:hover { color: var(--gold); padding-left: 4px; }
.menu__nav a:hover::before { color: var(--gold); }
.menu__nav a:hover::after  { color: var(--gold); opacity: 1; transform: translateX(0); }
.menu__nav a:last-child { border-bottom: 1px solid rgba(245, 238, 244, 0.12); }

/* a two-column layout on wide screens */
@media (min-width: 900px) {
  .menu__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 0;
    max-width: 1100px;
    margin: 2rem auto 0;
    width: 100%;
  }
}

.menu__close {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.menu__foot {
  max-width: 1100px;
  margin: 32px auto 0;
  width: 100%;
}

/* ── Companies row (4-on-one-line) ───────────────────────────────────────── */
.companies-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
  align-items: stretch;
}
.company-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  height: 100%;
}
.company-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 50px -22px rgba(44, 13, 40, 0.35);
}
.company-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.company-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
}
.company-card:hover .company-card__media img { transform: scale(1.05); }
.company-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex; flex-direction: column;
  flex: 1; gap: 0.6rem;
}
.company-card__logo {
  height: 60px;
  margin: -1.3rem -1.4rem 0.2rem;
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--paper);
}
.company-card__logo img {
  max-height: 38px;
  max-width: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Per-brand backgrounds for the card logo plate, matched to each logo's bg */
.company-card[href="#rm-patel"]   .company-card__logo,
.company-card[href="#terra-agri"] .company-card__logo,
.company-card[href="#farmsphere"] .company-card__logo { background: var(--paper); }
.company-card[href="#presnost"]   .company-card__logo { background: #1a446d; }
.company-card[href="#farmsphere"] .company-card__logo img { max-height: 42px; max-width: 42px; }

/* Detail-row logo plate */
.company-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 0.8rem 1.4rem;
  margin: 0.4rem 0 1.6rem;
  background: var(--paper);
  border: 1px solid var(--rule);
}
.company-logo img {
  max-height: 60px;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Per-brand backgrounds for the detail-row logo plate */
#presnost   .company-logo { background: #1a446d; border-color: #1a446d; }
#farmsphere .company-logo img { max-height: 64px; max-width: 64px; }
.company-card__num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.company-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.15;
  color: var(--aubergine-deep);
  margin: 0;
  min-height: calc(2 * 1.15em);
}
.company-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.company-card__more {
  margin-top: auto;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
  align-self: flex-start;
}
@media (max-width: 1100px) {
  .companies-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .companies-row { grid-template-columns: 1fr; }
}

/* ── World map ────────────────────────────────────────────────────────────── */
.worldmap {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.worldmap svg {
  width: 100%;
  height: auto;
  display: block;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
}
.worldmap__legend {
  display: grid;
  gap: 1rem;
}
.worldmap__legend-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.worldmap__legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--aubergine);
  box-shadow: 0 0 0 3px rgba(74, 25, 66, 0.15);
  margin-top: 6px;
  flex-shrink: 0;
}
.worldmap__legend-city {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  color: var(--aubergine-deep);
  line-height: 1.1;
}
.worldmap__legend-role {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-top: 4px;
}
@media (max-width: 980px) {
  .worldmap { grid-template-columns: 1fr; }
}

/* ── Vertical centre-spine timeline ──────────────────────────────────────── */
.vtimeline {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  position: relative;
}
.vtimeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 8%, var(--gold) 92%, transparent 100%);
  transform: translateX(-1px);
}
.vtimeline__item {
  position: relative;
  width: 50%;
  padding: 22px 40px;
  box-sizing: border-box;
}
.vtimeline__item--left  { left: 0;  text-align: right; }
.vtimeline__item--right { left: 50%; text-align: left; }
.vtimeline__dot {
  position: absolute;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 160, 74, 0.18);
  z-index: 1;
}
.vtimeline__item--left  .vtimeline__dot { right: -8px; }
.vtimeline__item--right .vtimeline__dot { left:  -8px; }
.vtimeline__card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 18px 22px 22px;
}
.vtimeline__year {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.vtimeline__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--aubergine-deep);
}
.vtimeline__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 800px) {
  .vtimeline::before { left: 18px; }
  .vtimeline__item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 14px 0 14px 44px;
  }
  .vtimeline__item--left .vtimeline__dot,
  .vtimeline__item--right .vtimeline__dot {
    left: 10px; right: auto;
  }
}

/* Section spacing trims on home + capabilities */
.section--paper { padding: clamp(60px, 7vw, 110px) 0; }
.section--cream { padding: clamp(60px, 7vw, 110px) 0; }

/* Capability/Sector page tightening - shrink the alternating fsplit padding */
.section--paper .fsplit,
.section--cream .fsplit { padding: clamp(50px, 6vw, 90px) 0; }

/* Minimal topnav: brand + Contact + hamburger only (no inline link row) */
.topnav__inner--minimal { justify-content: space-between; }
.topnav__inner--minimal .topnav__nav { display: none; }

/* Menu header block */
.menu__head {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.menu__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.menu__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--paper);
  margin: 0;
}

/* World map: real Wikipedia base layer + SVG marker overlay */
.worldmap__canvas {
  position: relative;
  aspect-ratio: 1920 / 1280;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.worldmap__base {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* tint the black map toward aubergine on cream */
  filter: invert(0.18) sepia(0.45) hue-rotate(265deg) saturate(1.2);
  opacity: 0.78;
  mix-blend-mode: multiply;
}
.worldmap__overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
}
