:root {
  --forest-950: #091d17;
  --forest-900: #0d2a20;
  --forest-800: #113b2c;
  --forest-700: #1c5b43;
  --forest-600: #2e7658;
  --sage-300: #b9c8b6;
  --sage-200: #dbe4d8;
  --sage-100: #eaf0e7;
  --cream: #f4f1e8;
  --paper: #fbfaf5;
  --ink: #10211b;
  --muted: #627168;
  --line: rgba(16, 33, 27, 0.16);
  --lime: #b7d445;
  --gold: #d4b266;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 31, 23, 0.14);
  --shadow-soft: 0 18px 48px rgba(8, 31, 23, 0.09);
  --radius: 14px;
  --radius-large: 24px;
  --container: min(1240px, calc(100% - 56px));
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "DM Sans", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.045em; line-height: 1.02; }
h1, h2 { font-weight: 600; }
h3 { font-weight: 600; }
em { color: var(--forest-600); font-family: var(--serif); font-weight: 400; }
::selection { background: var(--lime); color: var(--forest-950); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 74px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  padding: 10px 16px;
  color: var(--forest-900);
}
.skip-link:focus, .skip-link:focus-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--forest-600);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,0.82); }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--forest-800);
  border-radius: var(--radius);
  background: var(--forest-800);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { background: var(--forest-950); border-color: var(--forest-950); transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding-inline: 18px; }
.button-light { border-color: var(--white); background: var(--white); color: var(--forest-900); }
.button-light:hover { background: var(--lime); border-color: var(--lime); color: var(--forest-950); }
.button-accent { border-color: var(--lime); background: var(--lime); color: var(--forest-950); }
.button-accent:hover { background: var(--white); border-color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 0.86rem; font-weight: 700; text-underline-offset: 6px; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.light-link { color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 92px;
  border-bottom: 1px solid rgba(16, 33, 27, 0.12);
  background: rgba(251, 250, 245, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.scrolled { box-shadow: 0 8px 36px rgba(9, 29, 23, 0.09); background: rgba(251, 250, 245, 0.98); }
.header-inner { min-height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
.brand-cluster { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--forest-950); }
.site-header .brand { padding: 3px 5px; overflow: hidden; border: 1px solid rgba(17,59,44,0.18); border-radius: 10px; background: #edf2e9; box-shadow: 0 5px 16px rgba(9,29,23,0.08); }
.brand-logo { width: auto; height: 68px; object-fit: contain; background: var(--white); }
.site-header .brand-logo { height: 68px; background: transparent; filter: contrast(1.16) saturate(1.08); mix-blend-mode: multiply; }
.group-brand-menu { position: relative; display: flex; align-items: center; }
.group-brand-trigger { position: relative; width: 88px; height: 68px; display: grid; place-items: center; padding: 6px; border: 1px solid rgba(17,59,44,0.18); border-radius: 11px; background: var(--white); box-shadow: 0 5px 16px rgba(9,29,23,0.07); cursor: pointer; }
.group-brand-trigger::after { content: ""; position: absolute; right: 4px; bottom: 6px; width: 0; height: 0; border-right: 3px solid transparent; border-left: 3px solid transparent; border-top: 4px solid var(--lime); transition: transform 180ms ease; }
.group-brand-trigger img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; margin: auto; border-radius: 5px; object-fit: contain; }
.group-brand-menu.open .group-brand-trigger::after, .group-brand-menu:focus-within .group-brand-trigger::after { transform: rotate(180deg); }
.division-brand-dropdown { position: absolute; top: calc(100% + 10px); left: 0; z-index: 130; width: 410px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 12px; border: 1px solid rgba(17,59,44,0.18); border-radius: 16px; background: rgba(251,250,245,0.99); box-shadow: 0 22px 55px rgba(9,29,23,0.22); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease; }
.group-brand-menu.open .division-brand-dropdown, .group-brand-menu:hover .division-brand-dropdown, .group-brand-menu:focus-within .division-brand-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.division-brand-option { min-width: 0; min-height: 90px; display: grid; grid-template-rows: 58px auto; place-items: center; gap: 4px; padding: 7px; overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: var(--white); color: var(--forest-950); text-align: center; text-decoration: none; transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.division-brand-option:hover, .division-brand-option:focus-visible { border-color: var(--lime); box-shadow: 0 8px 22px rgba(9,29,23,0.14); transform: translateY(-2px); outline: none; }
.division-brand-option img { display: block; width: auto; height: auto; max-width: 100%; max-height: 58px; object-fit: contain; }
.division-brand-option span { font-size: 0.56rem; font-weight: 800; line-height: 1.15; }
.division-brand-option.division-brand-coin { background: var(--white); color: var(--forest-950); }
.division-brand-option.division-brand-coin img { max-width: 58px; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 17px; }
.primary-nav a { position: relative; color: #44534b; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; letter-spacing: 0; line-height: 1.3; text-decoration: none; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--forest-700); transform: scaleX(0); transition: transform 180ms ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.primary-nav a.active { color: var(--forest-900); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 5px auto; background: var(--forest-950); transition: transform 180ms ease; }

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}
.hero::before { content: ""; position: absolute; z-index: 1; inset: 92px auto 0 7%; width: 1px; background: rgba(255,255,255,0.11); }
.hero-image { position: absolute; inset: 92px 0 0 45%; background: url("assets/cjlc-mauritius-energy-hero.png") 58% center / cover no-repeat; clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--forest-950) 0%, var(--forest-950) 43%, rgba(9,29,23,0.82) 54%, rgba(9,29,23,0.12) 82%), linear-gradient(0deg, rgba(7,24,18,0.68), transparent 48%); }
.hero-inner { position: relative; z-index: 2; min-height: 680px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.56fr); align-items: end; gap: 60px; padding-top: 126px; padding-bottom: 50px; }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 790px; margin-bottom: 30px; font-size: clamp(3.7rem, 6.7vw, 6.8rem); line-height: 0.89; letter-spacing: -0.072em; }
.hero h1 em { color: var(--lime); }
.hero-lead { max-width: 660px; margin-bottom: 38px; color: rgba(255,255,255,0.8); font-size: clamp(1.02rem, 1.55vw, 1.28rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.hero-panel { align-self: end; padding: 32px; border: 1px solid rgba(255,255,255,0.42); border-radius: var(--radius-large); background: rgba(9,29,23,0.78); box-shadow: 0 28px 80px rgba(0,0,0,0.24); backdrop-filter: blur(18px); }
.panel-kicker { margin-bottom: 16px; color: var(--lime); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-panel h2 { margin: 0 0 18px; color: var(--white); font-size: 1.65rem; line-height: 1.08; }
.hero-panel > p:not(.panel-kicker) { margin-bottom: 26px; color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; }
.hero-metrics div { display: flex; flex-direction: column; gap: 8px; }
.hero-metrics strong { color: var(--white); font-size: 1.6rem; line-height: 1; letter-spacing: -0.06em; }
.hero-metrics span { color: rgba(255,255,255,0.56); font-size: 0.62rem; line-height: 1.35; }
.hero-scroll { position: absolute; z-index: 3; right: 30px; bottom: 42px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.62); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.hero-scroll span { width: 44px; height: 1px; background: rgba(255,255,255,0.45); }

/* Portfolio overview */
.portfolio-strip { position: relative; z-index: 4; border-bottom: 1px solid var(--line); background: var(--paper); }
.portfolio-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.portfolio-strip-grid > div { min-height: 96px; display: grid; grid-template-columns: 30px 1fr; align-content: center; gap: 4px 16px; padding: 18px 24px; border-left: 1px solid var(--line); }
.portfolio-strip-grid > div:last-child { border-right: 1px solid var(--line); }
.portfolio-strip-grid span { grid-row: 1 / 3; color: var(--forest-600); font-family: var(--serif); font-size: 0.78rem; }
.portfolio-strip-grid strong { font-size: 0.9rem; }
.portfolio-strip-grid small { color: var(--muted); font-size: 0.68rem; line-height: 1.45; }

/* Services */
.services { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 0.36fr 1fr; gap: 48px; align-items: start; margin-bottom: 36px; }
.section-heading h2, .project-heading h2, .team-heading h2, .contact-heading h2 { margin-bottom: 24px; font-size: clamp(2.8rem, 5.1vw, 5.35rem); }
.section-heading h2 em { white-space: nowrap; }
.section-heading > div > p { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 1.02rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--sage-100); transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.service-card:hover { z-index: 2; background: var(--white); transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card-number { color: var(--forest-600); font-family: var(--serif); font-size: 0.82rem; }
.service-icon { width: 44px; height: 44px; margin: 24px 0 20px; fill: none; stroke: var(--forest-700); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.service-card h3 { margin-bottom: 18px; font-size: 1.55rem; }
.service-card > p { color: var(--muted); font-size: 0.88rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin: auto 0 0; padding: 26px 0 0; list-style: none; }
.tag-list li { padding: 5px 8px; border: 1px solid rgba(17,59,44,0.16); color: var(--forest-700); font-family: var(--serif); font-size: 0.67rem; }
.leadership-teaser { display: grid; grid-template-columns: auto minmax(300px, 1fr) auto; align-items: center; gap: 32px; margin-top: 28px; padding: 30px 34px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--white); box-shadow: var(--shadow-soft); }
.leadership-portraits { display: flex; padding-left: 12px; }
.leadership-portraits svg { width: 54px; height: 54px; margin-left: -12px; overflow: hidden; border: 3px solid var(--white); border-radius: 50%; background: var(--forest-900); }
.leadership-teaser > div:nth-child(2) { display: flex; flex-direction: column; gap: 5px; }
.leadership-teaser > div:nth-child(2) span { color: var(--forest-600); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.leadership-teaser > div:nth-child(2) strong { max-width: 620px; font-size: 0.92rem; line-height: 1.5; }
.leadership-teaser .text-link { color: var(--forest-800); white-space: nowrap; }

/* About */
.about { border-top: 1px solid var(--line); background: var(--cream); }
.about-layout { display: grid; grid-template-columns: 0.96fr 1.04fr; align-items: center; gap: 50px; }
.division-orbit { position: relative; width: 100%; max-width: 620px; aspect-ratio: 1; margin: 0; overflow: hidden; border-radius: 28px; background: var(--forest-900); color: var(--white); box-shadow: var(--shadow-soft); isolation: isolate; }
.division-orbit::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 50%, rgba(183,212,69,0.16), transparent 35%), linear-gradient(135deg, transparent 44%, rgba(255,255,255,0.045) 44% 44.7%, transparent 44.7%); }
.orbit-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.orbit-rings span { position: absolute; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; }
.orbit-rings span:nth-child(1) { width: 48%; }
.orbit-rings span:nth-child(2) { width: 66%; }
.orbit-rings span:nth-child(3) { width: 84%; }
.orbit-core { position: absolute; top: 52%; left: 50%; z-index: 3; width: 172px; height: 172px; display: grid; grid-template-rows: 96px 50px; align-content: center; gap: 4px; padding: 11px; overflow: hidden; border: 1px solid rgba(183,212,69,0.84); border-radius: 50%; background: linear-gradient(160deg, #c9e65d, #8fac25); color: var(--forest-950); text-align: center; box-shadow: 0 0 0 20px rgba(183,212,69,0.12), 0 20px 42px rgba(0,0,0,0.24); transform: translate(-50%, -50%); }
.orbit-core > strong, .orbit-core > small { display: none; }
.orbit-core a { display: grid; place-items: center; overflow: hidden; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.orbit-core a:hover { transform: translateY(-2px); }
.orbit-core-cjlc { padding: 6px 16px; border-radius: 46px 46px 12px 12px; background: rgba(255,255,255,0.96); box-shadow: 0 8px 22px rgba(9,29,23,0.12); }
.orbit-core-cjlc img { width: 88px; height: 82px; object-fit: contain; }
.orbit-core-group { padding: 4px 14px; border-radius: 10px 10px 46px 46px; background: rgba(4,16,12,0.96); }
.orbit-core-group img { width: 96px; height: 40px; object-fit: contain; }
.orbit-group { position: absolute; top: 25%; left: 50%; z-index: 4; width: 168px; height: 58px; display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 8px; padding: 5px 9px; border: 1px solid rgba(183,212,69,0.72); border-radius: 10px; background: rgba(5,18,13,0.94); color: var(--white); text-decoration: none; transform: translateX(-50%); transition: border-color 180ms ease, transform 180ms ease; }
.orbit-group:hover { border-color: var(--white); transform: translateX(-50%) translateY(-2px); }
.orbit-group img { width: 48px; height: 46px; padding: 1px; border-radius: 6px; background: #000; object-fit: contain; }
.orbit-group span { font-size: 0.58rem; font-weight: 700; line-height: 1.25; }
.orbit-group { display: none; }
.orbit-node { position: absolute; z-index: 5; width: 154px; height: 96px; display: grid; grid-template-rows: 62px auto; place-items: center; gap: 3px; padding: 7px 9px; border: 2px solid transparent; border-radius: 13px; background: var(--white); color: var(--forest-950); text-align: center; text-decoration: none; box-shadow: 0 10px 26px rgba(0,0,0,0.16); transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.orbit-node:hover { border-color: var(--lime); box-shadow: 0 16px 34px rgba(0,0,0,0.24); transform: translateY(-3px); }
.orbit-node img { width: 100%; height: 62px; padding: 2px; object-fit: contain; }
.orbit-node span { font-size: 0.58rem; font-weight: 700; line-height: 1.15; }
.orbit-node:not(.orbit-coin) { grid-template-rows: 1fr; }
.orbit-node:not(.orbit-coin) span { display: none; }
.orbit-node:not(.orbit-coin) img { height: 76px; }
.orbit-node.dark-orbit img { width: 62px; padding: 0; background: #000; }
.orbit-node.orbit-coal img { width: 68px; height: 64px; padding: 0; }
.orbit-medicinals { top: 3%; left: 50%; transform: translateX(-50%); }
.orbit-medicinals:hover { transform: translateX(-50%) translateY(-3px); }
.orbit-coin { top: 20%; left: 2%; }
.orbit-agriculture { top: 20%; right: 2%; }
.orbit-coal { bottom: 19%; left: 0; }
.orbit-power { right: 0; bottom: 19%; }
.orbit-water { bottom: 2%; left: 50%; height: 106px; grid-template-rows: 72px auto; transform: translateX(-50%); }
.orbit-water img { width: 72px; height: 70px; padding: 0; }
.orbit-water span { position: relative; z-index: 2; margin-top: 4px; }
.orbit-water:hover { transform: translateX(-50%) translateY(-3px); }
.orbit-node.is-active { z-index: 8; border-color: var(--lime); box-shadow: 0 0 0 5px rgba(183,212,69,0.28), 0 18px 38px rgba(0,0,0,0.3); }
.orbit-node.is-active::after { content: "Current division"; position: absolute; top: -12px; left: 50%; padding: 3px 7px; border-radius: 999px; background: var(--lime); color: var(--forest-950); font-size: 0.48rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; transform: translateX(-50%); }
.division-orbit figcaption { position: absolute; top: 18px; left: 20px; z-index: 4; max-width: 150px; color: rgba(255,255,255,0.68); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; line-height: 1.4; text-transform: uppercase; }
.structure-orbit { max-width: 700px; margin-inline: auto; }
.division-network-layout { display: grid; grid-template-columns: minmax(420px, 0.9fr) 1.1fr; align-items: center; gap: 64px; }
.division-page-orbit { max-width: 520px; }
.division-network-copy .page-section-header { display: block; margin-bottom: 28px; }
.division-network-copy .page-section-header .eyebrow { margin-bottom: 18px; }
.division-network-copy .page-section-header h2 { font-size: clamp(2.7rem, 4.4vw, 4.4rem); }
.division-related-grid { grid-template-columns: 1fr; }
.division-related-grid .link-card { min-height: 132px; }
.about-copy h2 { margin-bottom: 24px; font-size: clamp(2.8rem, 4.5vw, 4.7rem); }
.about-copy > p { color: var(--muted); }
.about-copy .large-copy { color: var(--ink); font-size: 1.15rem; line-height: 1.75; }
.principles { margin-top: 28px; border-top: 1px solid var(--line); }
.principles > div { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.principles strong { font-size: 0.82rem; }
.principles span { color: var(--muted); font-size: 0.82rem; }
.future-vision { margin-top: 20px; padding: 20px 22px; border-left: 3px solid var(--lime); border-radius: 0 var(--radius) var(--radius) 0; background: rgba(219,228,216,0.62); }
.future-vision span { display: block; margin-bottom: 8px; color: var(--forest-600); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.future-vision p { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 1rem; line-height: 1.55; }

/* Group */
.group { background: var(--forest-950); color: var(--white); }
.group em { color: var(--lime); }
.page-hero.green-group-hero { min-height: 430px; padding: 52px 0 28px; background: var(--forest-950); isolation: isolate; }
.page-hero.green-group-hero::before { inset: 0; z-index: 0; background: url("assets/green-group-connected-visual.png") right 2.5vw center / min(45vw, 660px) auto no-repeat; opacity: 0.92; filter: saturate(1.06) contrast(1.03); transform: none; }
.page-hero.green-group-hero::after { inset: 0; z-index: 0; width: auto; height: auto; border: 0; border-radius: 0; background: linear-gradient(90deg, rgba(5,22,16,0.99) 0%, rgba(5,22,16,0.94) 31%, rgba(5,22,16,0.52) 51%, rgba(5,22,16,0.08) 76%, rgba(5,22,16,0.03) 100%), linear-gradient(0deg, rgba(5,22,16,0.48) 0%, transparent 45%); box-shadow: none; }
.green-group-hero .page-hero-inner { grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.55fr); }
.green-group-hero .page-hero-copy { max-width: 610px; padding: 16px 22px; border-left: 2px solid var(--lime); border-radius: 0 18px 18px 0; background: rgba(5,22,16,0.48); backdrop-filter: blur(3px); }
.green-group-hero .breadcrumb { margin-bottom: 18px; }
.green-group-hero h1 { margin-bottom: 18px; font-size: clamp(2.8rem, 4.4vw, 4.6rem); }
.green-group-hero .page-hero-aside { display: none; }
.group-heading { display: grid; grid-template-columns: 1fr 0.8fr; align-items: end; gap: 70px; margin-bottom: 36px; }
.group-heading h2 { margin-bottom: 0; font-size: clamp(3.2rem, 6vw, 6rem); }
.group-summary { display: flex; flex-direction: column; align-items: flex-start; }
.group-brandmark { width: 168px; height: auto; margin-bottom: 18px; border-radius: 12px; box-shadow: 0 14px 36px rgba(0,0,0,0.22); }
.group-summary > p { max-width: 490px; margin-bottom: 0; color: rgba(255,255,255,0.66); }
.division-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.division-card { min-height: 292px; display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(255,255,255,0.17); border-radius: var(--radius-large); background: rgba(255,255,255,0.025); transition: background 180ms ease, transform 180ms ease, border-color 180ms ease; }
.division-card:hover { border-color: rgba(183,212,69,0.5); background: rgba(255,255,255,0.065); transform: translateY(-4px); }
.division-top { min-height: 116px; display: flex; align-items: center; justify-content: center; }
.division-mark { width: 156px; height: 108px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; background: var(--white); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.division-mark:hover { transform: scale(1.035); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.division-mark.wide-mark { width: 188px; }
.division-mark img { display: block; width: auto; height: auto; max-width: calc(100% - 16px); max-height: calc(100% - 16px); padding: 0; object-fit: contain; }
.division-mark.coin-mark { width: 108px; height: 108px; background: #000; }
.division-mark.coin-mark img { max-width: 100%; max-height: 100%; padding: 0; }
.division-mark.coal-mark { width: 142px; height: 120px; padding: 3px; }
.division-mark.coal-mark img { max-width: calc(100% - 4px); max-height: calc(100% - 4px); padding: 0; }
.division-mark.water-mark { width: 136px; height: 118px; }
.division-mark.water-mark img { width: auto; height: auto; max-width: calc(100% - 24px); max-height: calc(100% - 24px); padding: 0; }
.division-card h3 { margin: 24px 0 14px; font-size: 1.6rem; }
.division-card > p { margin-bottom: 24px; color: rgba(255,255,255,0.62); font-size: 0.88rem; }
.division-link { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 15px 0 0; border: 0; border-top: 1px solid rgba(255,255,255,0.16); background: transparent; color: var(--white); cursor: pointer; font-size: 0.76rem; font-weight: 700; text-align: left; }
.division-link span { color: var(--lime); transition: transform 180ms ease; }
.division-link:hover span { transform: translate(3px, -3px); }

/* Projects */
.projects { background: var(--paper); }
.project-heading, .team-heading { display: grid; grid-template-columns: 1.1fr 0.7fr; align-items: end; gap: 70px; margin-bottom: 34px; }
.project-heading h2, .team-heading h2 { margin-bottom: 0; }
.project-heading > p, .team-heading > p { margin-bottom: 8px; color: var(--muted); }
.pipeline-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.pipeline-summary > div { min-height: 90px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 18px 22px; background: var(--sage-100); }
.pipeline-summary strong { color: var(--forest-800); font-size: 1.5rem; letter-spacing: -0.05em; }
.pipeline-summary span { color: var(--muted); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.project-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filter-button { min-height: 40px; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; color: var(--muted); font-size: 0.72rem; font-weight: 700; transition: background 180ms ease, color 180ms ease; }
.filter-button:hover, .filter-button.active { background: var(--forest-800); color: var(--white); }
.project-list { display: grid; gap: 9px; }
.project-row { display: grid; grid-template-columns: 48px minmax(290px, 1.4fr) 0.55fr 0.55fr 82px; align-items: center; gap: 20px; min-height: 94px; padding: 0 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: background 180ms ease, transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease; }
.project-row:hover { background: var(--sage-100); transform: translateX(5px); box-shadow: var(--shadow-soft); }
.project-row[hidden] { display: none; }
.project-index { color: var(--forest-600); font-family: var(--serif); font-size: 0.78rem; }
.project-row h3 { margin-bottom: 7px; font-size: 1.3rem; }
.project-row p { margin-bottom: 0; color: var(--muted); font-size: 0.75rem; }
.project-location { color: var(--muted); font-size: 0.74rem; }
.project-capex { color: var(--forest-600); font-family: var(--serif); font-size: 0.74rem; }
.project-capex strong { display: block; color: var(--forest-800); font-family: var(--sans); font-size: 0.78rem; }
.project-status { justify-self: end; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; }
.project-note { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 0.72rem; }

/* Investment */
.investment { overflow: hidden; background: var(--forest-800); color: var(--white); }
.investment em { color: var(--lime); }
.investment-layout { display: grid; grid-template-columns: 1fr 0.75fr; gap: 36px 90px; }
.investment-copy h2 { max-width: 650px; margin-bottom: 28px; font-size: clamp(3.2rem, 6vw, 6.2rem); }
.investment-copy > p:not(.eyebrow) { max-width: 640px; margin-bottom: 34px; color: rgba(255,255,255,0.68); font-size: 1.05rem; }
.return-card { position: relative; padding: 38px; overflow: hidden; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-large); background: var(--forest-950); box-shadow: 0 30px 80px rgba(0,0,0,0.18); }
.return-card::before { content: ""; position: absolute; top: -1px; right: -1px; width: 74px; height: 74px; border-top: 3px solid var(--lime); border-right: 3px solid var(--lime); }
.return-label { color: var(--sage-300); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.return-card > strong { display: flex; align-items: baseline; gap: 12px; margin: 34px 0 12px; color: var(--lime); font-size: clamp(4rem, 7vw, 6.5rem); line-height: 0.8; letter-spacing: -0.08em; }
.return-card > strong span { color: var(--white); font-family: var(--serif); font-size: 1.3rem; font-style: italic; letter-spacing: 0; }
.return-card > p { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.return-card ul { margin: 28px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,0.16); list-style: none; }
.return-card li { position: relative; padding: 8px 0 8px 18px; color: rgba(255,255,255,0.78); font-size: 0.78rem; }
.return-card li::before { content: ""; position: absolute; top: 1.08em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.investment-disclaimer { grid-column: 1 / -1; display: grid; grid-template-columns: 190px 1fr; gap: 30px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,0.2); }
.investment-disclaimer strong { color: var(--lime); font-size: 0.76rem; }
.investment-disclaimer p { max-width: 870px; margin-bottom: 0; color: rgba(255,255,255,0.5); font-size: 0.72rem; }

/* Team */
.team { background: var(--sage-100); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.person-card { display: grid; grid-template-columns: 104px 1fr; gap: 26px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-large); background: rgba(255,255,255,0.58); transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.person-card:hover { background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.person-avatar { position: relative; grid-row: 1 / 3; width: 94px; height: 122px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: linear-gradient(160deg, #4f775e, #173b2d); color: var(--white); }
.person-avatar::before { content: ""; position: absolute; width: 80px; height: 80px; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; transform: translate(25px, -28px); }
.person-avatar span { position: relative; font-family: var(--serif); font-size: 1.25rem; }
.person-photo { display: block; background: var(--forest-900); }
.avatar-two { background: linear-gradient(160deg, #7e8d79, #244837); }
.avatar-three { background: linear-gradient(160deg, #4d6d62, #0d2a20); }
.avatar-four { background: linear-gradient(160deg, #6d7d5c, #274533); }
.person-meta h3 { margin: 4px 0 5px; font-size: 1.45rem; }
.person-meta p { margin-bottom: 0; color: var(--forest-600); font-family: var(--serif); font-size: 0.9rem; font-style: italic; }
.person-card > p { grid-column: 2; margin-bottom: 0; color: var(--muted); font-size: 0.82rem; }
.photo-note { margin: 22px 0 0; color: var(--muted); font-size: 0.7rem; }

/* Contact */
.contact { background: var(--paper); }
.contact-heading { max-width: 940px; margin-bottom: 36px; }
.contact-heading h2 { max-width: 920px; margin-bottom: 0; font-size: clamp(3.7rem, 7vw, 7rem); }
.contact-layout { display: grid; grid-template-columns: 1fr 0.45fr; gap: 100px; }
.contact-form { padding-right: 28px; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
.contact-form label { display: block; }
.contact-form label > span:first-child { display: block; margin-bottom: 7px; color: var(--forest-600); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}
.contact-form input:not([type="checkbox"]), .contact-form select { min-height: 50px; padding-inline: 14px; }
.contact-form textarea { min-height: 138px; padding: 14px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9aa39d; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(46,118,88,0.1); }
.contact-form > label { margin-top: 34px; }
.hidden-field { display: none; }
.form-status { margin: -14px 0 22px; padding: 12px 14px; border: 1px solid #b94a48; border-radius: 4px; background: #fff4f3; color: #7d2525; font-size: 0.8rem; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0 30px; color: var(--muted); font-size: 0.72rem; }
.contact-form .consent input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--forest-700); }
.contact-form .consent span { margin: 0; color: var(--muted); font-size: inherit; font-weight: 400; letter-spacing: 0; text-transform: none; }
.contact-details { padding-left: 48px; border-left: 1px solid var(--line); }
.contact-details > div { display: flex; flex-direction: column; margin-bottom: 42px; }
.contact-label { margin-bottom: 12px; color: var(--forest-600); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.contact-details a { width: fit-content; font-size: 0.9rem; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-details .whatsapp { margin-top: 9px; color: var(--forest-600); font-size: 0.75rem; }
.contact-base { display: grid !important; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-base span { font-size: 0.76rem; }
.contact-base small { display: block; margin-bottom: 6px; color: var(--muted); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-base a { font-size: inherit; }

/* Footer and dialog */
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: var(--paper); }
.back-to-top { position: fixed; z-index: 90; right: 24px; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; gap: 0; padding: 7px 0 5px; border: 1px solid rgba(255,255,255,0.36); border-radius: 50%; background: var(--forest-800); color: var(--white); box-shadow: 0 14px 34px rgba(7,24,18,0.26); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity 180ms ease, transform 180ms ease, background 180ms ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--forest-950); transform: translateY(-3px); }
.back-to-top span { font-size: 1.18rem; line-height: 0.9; }
.back-to-top small { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: var(--muted); font-size: 0.7rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); font-weight: 700; text-decoration: none; }
.footer-logo { width: auto; height: 62px; object-fit: contain; background: var(--white); }
.footer-brand span { width: 112px; height: 62px; display: block; overflow: hidden; border-radius: 9px; background: #000 url("assets/green-group.png") center / contain no-repeat; box-shadow: 0 8px 20px rgba(9,29,23,0.12); color: transparent; font-size: 0; line-height: 0; text-indent: -9999px; }
.footer-inner p { margin: 0; }
.footer-inner > div { display: flex; justify-content: flex-end; gap: 24px; }
.footer-inner > div a { text-decoration: none; }
.division-dialog { width: min(720px, calc(100% - 34px)); max-height: calc(100vh - 34px); padding: 54px; border: 1px solid var(--forest-700); background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.division-dialog::backdrop { background: rgba(4,18,13,0.78); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 18px; right: 20px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.3rem; }
.dialog-number { color: var(--forest-600); font-family: var(--serif); }
.division-dialog h2 { margin: 22px 0; font-size: clamp(2.5rem, 6vw, 4.2rem); }
.dialog-lead { max-width: 600px; color: var(--muted); font-size: 1rem; }
.dialog-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin: 38px 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dialog-columns h3 { margin-bottom: 14px; color: var(--forest-600); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }
.dialog-columns p, .dialog-columns li { color: var(--muted); font-size: 0.8rem; }
.dialog-columns ul { margin: 0; padding-left: 18px; }

/* Thank-you page */
.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--forest-950); }
.thanks-card { width: min(720px, 100%); padding: 64px; background: var(--paper); box-shadow: var(--shadow); }
.thanks-card .brand { margin-bottom: 70px; }
.thanks-card h1 { max-width: 560px; margin-bottom: 24px; font-size: clamp(3rem, 7vw, 5.5rem); }
.thanks-card > p:not(.eyebrow) { max-width: 560px; margin-bottom: 34px; color: var(--muted); }

/* Interior pages */
.inner-page main { padding-top: 92px; }
.inner-page .site-header { background: rgba(251,250,245,0.98); }
.inner-page .primary-nav a[aria-current="page"] { color: var(--forest-900); }
.inner-page .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,0.62); font-size: 0.7rem; }
.breadcrumb a { color: inherit; text-underline-offset: 4px; }
.breadcrumb span { color: rgba(255,255,255,0.34); }
.page-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; padding: 94px 0 64px; background: var(--forest-950); color: var(--white); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 24%, rgba(183,212,69,0.15), transparent 28%), linear-gradient(115deg, transparent 64%, rgba(255,255,255,0.045) 64% 64.2%, transparent 64.2%); }
.page-hero::after { content: ""; position: absolute; right: -160px; bottom: -330px; width: 660px; height: 660px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; box-shadow: 0 0 0 88px rgba(255,255,255,0.025), 0 0 0 176px rgba(255,255,255,0.018); }
.page-hero-inner { position: relative; z-index: 1; width: var(--container); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr); align-items: end; gap: 70px; }
.page-hero-copy { max-width: 850px; }
.page-hero h1 { margin-bottom: 28px; font-size: clamp(3.7rem, 7vw, 7.1rem); line-height: 0.9; letter-spacing: -0.07em; }
.page-hero h1 em { color: var(--lime); }
.page-hero-lead { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,0.72); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.page-hero-aside { justify-self: end; width: min(100%, 330px); padding: 30px; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-large); background: rgba(13,42,32,0.66); backdrop-filter: blur(12px); }
.page-hero-aside img { width: 100%; height: 126px; padding: 10px; border-radius: 12px; background: var(--white); object-fit: contain; }
.page-hero-aside.dark-logo img { background: #000; }
.page-hero-aside p { margin: 20px 0 0; color: rgba(255,255,255,0.68); font-size: 0.77rem; }
.page-hero-meta { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,0.18); }
.page-hero-meta div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.page-hero-meta span { color: rgba(255,255,255,0.48); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.page-hero-meta strong { color: var(--white); font-size: 0.78rem; }
.page-hero.page-hero-short { min-height: 460px; }
.page-section { padding: 82px 0; }
.page-section.sage { background: var(--sage-100); }
.page-section.dark { background: var(--forest-800); color: var(--white); }
.page-section.dark em { color: var(--lime); }
.page-section-header { display: grid; grid-template-columns: 0.55fr 1fr; gap: 64px; margin-bottom: 46px; }
.page-section-header h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
.page-section-header > div > p:not(.eyebrow), .page-section-header > p { max-width: 680px; margin: 0; color: var(--muted); }
.dark .page-section-header > div > p:not(.eyebrow), .dark .page-section-header > p { color: rgba(255,255,255,0.62); }
.intro-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 80px; align-items: start; }
.intro-statement { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.7rem); line-height: 1.06; letter-spacing: -0.04em; }
.intro-copy { color: var(--muted); font-size: 1rem; }
.intro-copy > p:first-child { color: var(--ink); font-size: 1.18rem; }
.fact-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-strip > div { min-height: 128px; padding: 28px; border-right: 1px solid var(--line); }
.fact-strip > div:first-child { border-left: 1px solid var(--line); }
.fact-strip strong { display: block; margin-bottom: 7px; color: var(--forest-800); font-size: 1.18rem; }
.fact-strip span { color: var(--muted); font-size: 0.72rem; }
.content-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.content-card { min-height: 290px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--white); }
.content-card-number { display: block; margin-bottom: 58px; color: var(--forest-600); font-family: var(--serif); font-size: 0.8rem; }
.content-card h3 { margin-bottom: 16px; font-size: 1.55rem; }
.content-card p { margin-bottom: 0; color: var(--muted); font-size: 0.82rem; }
.dark .content-card { border-color: rgba(255,255,255,0.16); background: rgba(9,29,23,0.4); }
.dark .content-card-number { color: var(--lime); }
.dark .content-card h3 { color: var(--white); }
.dark .content-card p { color: rgba(255,255,255,0.58); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { position: relative; min-height: 190px; padding: 30px 24px; border-right: 1px solid var(--line); }
.process-step:first-child { border-left: 1px solid var(--line); }
.process-step span { color: var(--forest-600); font-family: var(--serif); font-size: 0.75rem; }
.process-step h3 { margin: 42px 0 8px; font-size: 1.12rem; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: 0.7rem; }
.link-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.link-card { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-decoration: none; transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.link-card:hover { background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.link-card small { color: var(--forest-600); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.link-card h3 { margin: 26px 0 12px; font-size: 1.55rem; }
.link-card p { margin: 0; color: var(--muted); font-size: 0.76rem; }
.link-card > span { align-self: flex-end; color: var(--forest-600); }
.page-cta { padding: 88px 0; background: var(--lime); color: var(--forest-950); }
.page-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.page-cta h2 { max-width: 780px; margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.page-cta .button { white-space: nowrap; }
.division-directory { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.division-directory-card { min-height: 250px; display: grid; grid-template-columns: 1fr 150px; gap: 24px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--white); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.division-directory-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.division-directory-card img { align-self: start; width: 150px; height: 90px; padding: 8px; border-radius: 10px; background: var(--paper); object-fit: contain; }
.division-directory-card.coin img { width: 90px; justify-self: end; padding: 0; background: #000; }
.division-directory-card h3 { margin: 34px 0 12px; font-size: 1.65rem; }
.division-directory-card p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.division-directory-card span { color: var(--forest-600); font-size: 0.68rem; }
.project-row { color: inherit; text-decoration: none; }
.project-detail-summary { display: grid; grid-template-columns: 1fr 0.7fr; gap: 80px; }
.project-detail-summary h2 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.project-detail-summary > div > p { color: var(--muted); font-size: 1.02rem; }
.detail-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.detail-list li { position: relative; padding: 20px 12px 20px 36px; border-bottom: 1px solid var(--line); color: var(--muted); }
.detail-list li::before { content: ""; position: absolute; top: 29px; left: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.notice-panel { padding: 26px 30px; border-left: 3px solid var(--lime); background: var(--sage-100); }
.notice-panel strong { display: block; margin-bottom: 7px; color: var(--forest-800); font-size: 0.76rem; }
.notice-panel p { margin: 0; color: var(--muted); font-size: 0.72rem; }
.profile-layout { display: grid; grid-template-columns: 330px 1fr; gap: 86px; align-items: start; }
.profile-photo { width: 100%; height: 410px; border-radius: var(--radius-large); background: var(--forest-800); box-shadow: var(--shadow-soft); }
.profile-copy h2 { margin-bottom: 26px; font-size: clamp(2.7rem, 5vw, 5rem); }
.profile-copy > p { max-width: 760px; color: var(--muted); font-size: 1rem; }
.profile-strengths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 36px; }
.profile-strengths span { padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; color: var(--forest-700); font-size: 0.74rem; font-weight: 700; }
.structure-page-map { max-width: 1050px; margin: 0 auto; }
.structure-page-map .structure-node { min-height: 105px; }
.structure-page-map .structure-branches { margin-top: 34px; }
.structure-responsibilities { display: grid; grid-template-columns: 0.7fr 1fr; gap: 70px; margin-top: 70px; }
.responsibility-list { display: grid; gap: 10px; }
.responsibility-list div { padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.responsibility-list strong { display: block; margin-bottom: 5px; }
.responsibility-list span { color: var(--muted); font-size: 0.76rem; }
.news-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 14px; }
.news-card { min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-large); background: var(--white); }
.news-card:first-child { min-height: 440px; background: var(--forest-800); color: var(--white); }
.news-card small { margin-bottom: auto; color: var(--forest-600); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.news-card:first-child small { color: var(--lime); }
.news-card h3 { margin: 28px 0 12px; font-size: 1.7rem; }
.news-card:first-child h3 { font-size: 2.4rem; }
.news-card p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.news-card:first-child p { color: rgba(255,255,255,0.62); }
.person-meta a { text-decoration: none; }
.person-meta a:hover { text-decoration: underline; text-underline-offset: 5px; }

/* Reveal enhancement */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --container: min(100% - 40px, 960px); }
  .header-inner { gap: 12px; }
  .brand-cluster { gap: 6px; }
  .site-header .brand-logo { height: 60px; }
  .group-brand-trigger { width: 74px; height: 60px; }
  .header-cta { display: none; }
  .primary-nav { gap: 10px; }
  .primary-nav a { font-size: 0.78rem; }
  .hero-inner { grid-template-columns: 1fr 320px; gap: 44px; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.5rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { gap: 46px; }
  .group-heading, .project-heading, .team-heading { gap: 54px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 980px) {
  :root { --container: min(100% - 34px, 760px); }
  html { scroll-padding-top: 76px; }
  .section { padding: 62px 0; }
  .site-header { min-height: 68px; backdrop-filter: none; }
  .header-inner { min-height: 68px; grid-template-columns: 1fr auto; }
  .brand-cluster { z-index: 102; }
  .brand { position: relative; }
  .division-brand-dropdown { position: fixed; top: 72px; right: 17px; left: 17px; width: auto; }
  .header-cta { display: none; }
  .menu-toggle { display: block; z-index: 102; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-3px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; z-index: 101; width: 100%; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; padding: 104px 34px 44px; overflow-y: auto; overscroll-behavior: contain; background: var(--cream); transform: translateX(100%); transition: transform 260ms ease; }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.4rem, 6.3vw, 2.3rem); line-height: 1.08; letter-spacing: -0.045em; white-space: normal; }
  .primary-nav a::after { display: none; }
  .hero::before { display: none; }
  .hero-image { inset: 68px 0 0; clip-path: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,24,18,0.94), rgba(7,24,18,0.4)), linear-gradient(0deg, rgba(7,24,18,0.76), transparent 58%); }
  .hero, .hero-inner { min-height: 680px; }
  .hero-inner { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-end; gap: 30px; padding-bottom: 40px; }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(3.4rem, 12vw, 6.4rem); }
  .hero-panel { max-width: 600px; }
  .hero-scroll { display: none; }
  .portfolio-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-strip-grid > div:nth-child(3) { border-top: 1px solid var(--line); }
  .portfolio-strip-grid > div:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .leadership-teaser { grid-template-columns: auto 1fr; }
  .leadership-teaser .text-link { grid-column: 2; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .about-layout { grid-template-columns: 1fr; }
  .division-orbit { margin-inline: auto; }
  .division-network-layout { grid-template-columns: 1fr; gap: 42px; }
  .division-page-orbit { max-width: 620px; }
  .group-heading, .project-heading, .team-heading { grid-template-columns: 1fr; gap: 28px; }
  .group-summary > p, .project-heading > p, .team-heading > p { max-width: 640px; }
  .division-grid { grid-template-columns: repeat(2, 1fr); }
  .project-row { grid-template-columns: 44px 1fr auto; gap: 10px 16px; padding: 20px; }
  .project-location { grid-column: 2; }
  .project-capex { grid-column: 2; }
  .project-status { grid-column: 3; grid-row: 1; }
  .investment-layout { grid-template-columns: 1fr; }
  .investment-disclaimer { grid-column: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { padding-right: 0; }
  .contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 40px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .contact-base { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner p { display: none; }
  .inner-page main { padding-top: 68px; }
  .site-header .brand-logo { height: 54px; }
  .page-hero.green-group-hero::before { background-position: center 16%; background-size: min(76vw, 650px) auto; opacity: 0.48; filter: saturate(1.02) contrast(1.02); }
  .page-hero.green-group-hero::after { background: linear-gradient(0deg, rgba(5,22,16,0.96) 0%, rgba(5,22,16,0.78) 46%, rgba(5,22,16,0.14) 100%); }
  .green-group-hero .page-hero-copy { align-self: end; max-width: 620px; }
  .page-hero-inner, .page-section-header, .intro-grid, .project-detail-summary, .structure-responsibilities { grid-template-columns: 1fr; }
  .green-group-hero .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-inner { gap: 42px; }
  .page-hero-aside { justify-self: start; }
  .page-section-header, .intro-grid, .project-detail-summary, .structure-responsibilities { gap: 32px; }
  .content-card-grid, .link-card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(4) { border-left: 1px solid var(--line); }
  .division-directory { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 260px 1fr; gap: 50px; }
  .profile-photo { height: 340px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 28px); }
  html { scroll-padding-top: 74px; }
  .section { padding: 52px 0; }
  .page-hero.green-group-hero { min-height: 420px; padding: 58px 0 22px; background-position: center; }
  .page-hero.green-group-hero::before { background-position: center 12%; background-size: 100% auto; opacity: 0.5; filter: saturate(1.04) contrast(1.02); }
  .green-group-hero .page-hero-copy { padding: 14px 16px; }
  .green-group-hero h1 { font-size: clamp(2.7rem, 13vw, 3.6rem); }
  .site-header { min-height: 66px; }
  .header-inner { min-height: 66px; }
  .brand-cluster { gap: 5px; }
  .brand-logo, .site-header .brand-logo { height: 50px; }
  .group-brand-trigger { width: 56px; height: 46px; padding: 5px; border-radius: 8px; }
  .group-brand-trigger img { margin: auto; }
  .division-brand-dropdown { top: 70px; right: 14px; left: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; padding: 9px; }
  .division-brand-option { min-height: 80px; grid-template-rows: 50px auto; padding: 5px; }
  .division-brand-option img { max-height: 50px; }
  .division-brand-option span { font-size: 0.5rem; }
  .footer-logo { height: 56px; }
  .hero, .hero-inner { min-height: 650px; }
  .hero-image { inset: 66px 0 0; background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,24,18,0.92), rgba(7,24,18,0.42)), linear-gradient(0deg, rgba(7,24,18,0.75), transparent 60%); }
  .hero-inner { padding-top: 108px; padding-bottom: 32px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero-lead { font-size: 0.92rem; }
  .hero-actions { gap: 20px; }
  .hero-panel { padding: 22px; border-radius: 18px; }
  .hero-panel h2 { font-size: 1.35rem; }
  .hero-panel > p:not(.panel-kicker) { display: none; }
  .hero-metrics { padding-top: 18px; }
  .hero-metrics strong { font-size: 1.3rem; }
  .portfolio-strip-grid { grid-template-columns: 1fr; }
  .portfolio-strip-grid > div { min-height: 90px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .portfolio-strip-grid > div:first-child { border-top: 0; }
  .section-heading h2, .project-heading h2, .team-heading h2, .contact-heading h2 { font-size: clamp(2.55rem, 13vw, 4.5rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-icon { margin-top: 24px; }
  .leadership-teaser { grid-template-columns: 1fr; gap: 22px; padding: 26px 22px; }
  .leadership-teaser .text-link { grid-column: auto; white-space: normal; }
  .division-orbit { aspect-ratio: 0.78; border-radius: 20px; }
  .orbit-core { width: 128px; height: 128px; grid-template-rows: 70px 38px; gap: 3px; padding: 8px; }
  .orbit-core-cjlc { padding: 4px 12px; }
  .orbit-core-cjlc img { width: 66px; height: 60px; }
  .orbit-core-group { padding: 3px 10px; }
  .orbit-core-group img { width: 72px; height: 30px; }
  .orbit-core strong { font-size: 1.55rem; }
  .orbit-core small { max-width: 82px; font-size: 0.48rem; }
  .orbit-group { top: 25%; width: 138px; height: 48px; grid-template-columns: 42px 1fr; }
  .orbit-group img { width: 38px; height: 38px; }
  .orbit-group span { font-size: 0.49rem; }
  .orbit-node { width: 31%; height: 76px; grid-template-rows: 47px auto; padding: 5px; border-radius: 10px; }
  .orbit-node img { height: 47px; }
  .orbit-node.dark-orbit img { width: 47px; }
  .orbit-node.orbit-coal img { width: 50px; height: 48px; }
  .orbit-node span { font-size: 0.47rem; }
  .orbit-medicinals { top: 3%; }
  .orbit-coin, .orbit-agriculture { top: 21%; }
  .orbit-coal, .orbit-power { bottom: 19%; }
  .orbit-water { bottom: 2%; height: 84px; grid-template-rows: 55px auto; }
  .orbit-water img { width: 55px; height: 54px; }
  .division-orbit figcaption { top: 12px; left: 12px; max-width: 108px; font-size: 0.46rem; }
  .orbit-node.is-active::after { font-size: 0.4rem; }
  .division-network-layout { gap: 32px; }
  .about-copy h2 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .principles > div { grid-template-columns: 1fr; gap: 5px; }
  .group-heading h2, .investment-copy h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .division-grid { grid-template-columns: 1fr; }
  .division-card { min-height: 300px; }
  .division-card h3 { margin-top: 22px; }
  .project-toolbar { display: grid; grid-template-columns: 1fr 1fr; }
  .pipeline-summary { grid-template-columns: repeat(2, 1fr); }
  .pipeline-summary > div { min-height: 98px; padding: 18px; }
  .pipeline-summary strong { font-size: 1.25rem; }
  .project-row { grid-template-columns: 34px 1fr; }
  .project-status { grid-column: 1; grid-row: auto; justify-self: start; }
  .project-location, .project-capex { grid-column: 2; }
  .return-card { padding: 28px 22px; }
  .investment-disclaimer { grid-template-columns: 1fr; gap: 10px; }
  .team-grid { grid-template-columns: 1fr; }
  .person-card { grid-template-columns: 68px 1fr; padding: 28px 22px; }
  .person-avatar { width: 62px; height: 84px; }
  .field-grid { grid-template-columns: 1fr; }
  .contact-heading { margin-bottom: 34px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-base { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner > div { justify-content: center; }
  .back-to-top { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .division-dialog { padding: 50px 24px 30px; }
  .dialog-columns { grid-template-columns: 1fr; }
  .thanks-card { padding: 42px 24px; }
  .inner-page main { padding-top: 66px; }
  .page-hero { min-height: 470px; padding: 72px 0 52px; }
  .page-hero.page-hero-short { min-height: 430px; }
  .page-hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .page-hero-aside { width: 100%; padding: 22px; }
  .page-hero-aside img { height: 104px; }
  .page-section { padding: 64px 0; }
  .page-section-header { margin-bottom: 34px; }
  .page-section-header h2 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .fact-strip, .content-card-grid, .link-card-grid, .process-grid, .profile-strengths, .news-grid { grid-template-columns: 1fr; }
  .fact-strip > div { min-height: 100px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .content-card { min-height: 240px; padding: 28px 24px; }
  .content-card-number { margin-bottom: 40px; }
  .process-step, .process-step:nth-child(4) { min-height: 150px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-step h3 { margin-top: 24px; }
  .page-cta-inner { grid-template-columns: 1fr; }
  .division-directory-card { grid-template-columns: 1fr 105px; padding: 25px; }
  .division-directory-card img { width: 105px; height: 72px; }
  .division-directory-card h3 { margin-top: 24px; font-size: 1.45rem; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-photo { width: min(280px, 100%); height: 350px; }
  .news-card:first-child { grid-column: auto; min-height: 370px; }
  .news-card:first-child h3 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
