/* ============================================================
   AISIVEN ECOMI — Shared stylesheet
   All pages link to this file. Change a value here and it
   updates across the entire site.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #1A3D2B;
  --green-dark:   #0E2419;
  --green-mid:    #2A6045;
  --green-light:  #3D7A57;
  --gold:         #C8941A;
  --gold-light:   #E8B84B;
  --gold-pale:    #F5E8C8;
  --off-white:    #F7F5F0;
  --warm-gray:    #E8E4DC;
  --text-body:    #2C3E30;
  --text-muted:   #6B7C6F;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 148, 26, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--green-deep);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white) !important;
  background: var(--green-deep);
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--green-mid) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 4rem;
  background: var(--off-white);
}

.hero-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-headline em { font-style: italic; color: var(--gold); }

.hero-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--green-deep);
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-secondary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--warm-gray);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

/* Fallback gradient shown while/if image loads */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1A3D2B 0%, #0E2419 60%, #2A6045 100%);
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) saturate(0.65);
  z-index: 1;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,61,43,0.65) 0%, rgba(14,36,25,0.35) 100%);
  z-index: 2;
}

.hero-right-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 4rem;
}

.hero-right-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin-bottom: 1rem;
  max-width: 380px;
}

.hero-right-attr {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── MARQUEE ── */
.marquee-band {
  background: var(--green-deep);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  min-width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
section { padding: 7rem 4rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-headline em { font-style: italic; color: var(--gold); }

/* ── MISSION ── */
.mission {
  background: var(--off-white);
  border-bottom: 1px solid var(--warm-gray);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 520px;
}

.mission-pull {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
}

.mission-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray);
}

.mission-card {
  background: var(--off-white);
  padding: 2rem;
  transition: background 0.2s;
}

.mission-card:hover { background: var(--gold-pale); }

.mission-card-icon { width: 36px; height: 36px; margin-bottom: 1rem; }

.mission-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.mission-card-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── SERVICES ── */
.services { background: var(--green-dark); }
.services .section-eyebrow { color: var(--gold); }
.services .section-headline { color: var(--off-white); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,245,240,0.55);
  margin-top: 1.5rem;
}

.services-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,148,26,0.4);
  padding-bottom: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.service-item {
  background: var(--green-dark);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(200,148,26,0.2);
  transition: background 0.25s;
}

.service-item:hover { background: rgba(26,61,43,0.8); }

.service-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.service-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247,245,240,0.45);
}

/* ── IMAGE BREAK ── */
.image-break {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 400px;
  overflow: hidden;
}

.image-break-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #1A3D2B 0%, #0E2419 100%);
}

.image-break-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.image-break-panel:hover img { transform: scale(1.04); }

.image-break-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,36,25,0.75) 0%, transparent 60%);
  z-index: 1;
}

.image-break-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── SUSTAINABILITY ── */
.sustainability { background: var(--off-white); }

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.sus-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.sdg-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.sdg-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold-pale);
  border: 1px solid rgba(200,148,26,0.25);
  padding: 6px 14px;
  border-radius: 2px;
}

.sus-right { display: flex; flex-direction: column; }

.esg-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--warm-gray);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.esg-item:first-child { border-top: 1px solid var(--warm-gray); }

.esg-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1;
}

.esg-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.esg-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── GEOGRAPHY ── */
.geography {
  background: var(--green-dark);
  padding: 6rem 4rem;
}

.geography-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.geo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.geo-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.1;
}

.geo-headline em { font-style: italic; color: var(--gold); }

.geo-intro {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,245,240,0.5);
}

.geo-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.geo-region {
  background: rgba(14,36,25,0.7);
  padding: 2rem;
  border-top: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.geo-region:hover {
  background: rgba(26,61,43,0.9);
  border-top-color: var(--gold);
}

.geo-region.primary { border-top-color: var(--gold); }

.geo-region-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.geo-region-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.geo-region-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247,245,240,0.45);
}

.geo-countries {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.geo-country {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,148,26,0.12);
  border: 1px solid rgba(200,148,26,0.25);
  padding: 3px 8px;
  border-radius: 2px;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 480px;
  overflow: hidden;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #2A6045 0%, #0E2419 100%);
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.photo-strip-item:hover img { transform: scale(1.05); }

.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,36,25,0.7) 0%, transparent 50%);
}

.photo-strip-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.7);
}

/* ── STERN ── */
.stern { background: var(--green-deep); padding: 5rem 4rem; }

.stern-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.stern-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.stern-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.stern-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,240,0.55);
  margin-bottom: 2rem;
}

.stern-stars {
  display: flex;
  gap: 8px;
  align-items: center;
}

.star-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(247,245,240,0.4);
  margin-left: 12px;
}

.stern-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.stern-feat {
  background: rgba(14,36,25,0.6);
  padding: 1.75rem;
}

.stern-feat-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.stern-feat-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247,245,240,0.45);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--off-white);
  padding: 7rem 4rem;
  border-top: 1px solid var(--warm-gray);
  text-align: center;
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-headline em { font-style: italic; color: var(--gold); }

.cta-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 3rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  padding: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.5);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.7);
}

.footer-brand-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,245,240,0.35);
  max-width: 260px;
  margin-top: 0.75rem;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.3);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 11px; color: rgba(247,245,240,0.2); }
.footer-reg  { font-size: 11px; color: rgba(247,245,240,0.15); text-align: right; }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .image-break-panel:hover img,
  .photo-strip-item:hover img { transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .geo-regions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-left::before { display: none; }
  .hero-right { min-height: 320px; }
  section { padding: 4rem 1.5rem; }
  .mission-grid,
  .sustainability-grid,
  .stern-inner,
  .services-intro,
  .geo-header { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .geo-regions { grid-template-columns: 1fr 1fr; }
  .image-break { grid-template-columns: 1fr; height: auto; }
  .image-break-panel { height: 220px; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 240px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .geography, .stern { padding: 4rem 1.5rem; }
  .cta-banner { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem; }
}

/* ============================================================
   SUSTAINABILITY PAGE
   ============================================================ */

.page-hero {
  padding: 11rem 4rem 5rem;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-eyebrow::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
  max-width: 900px;
}

.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,245,240,0.6);
  max-width: 640px;
}

.breadcrumb {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.3);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: rgba(247,245,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }

/* ── PRINCIPLE STATEMENT ── */
.principle {
  background: var(--gold-pale);
  padding: 5rem 4rem;
  border-bottom: 1px solid rgba(200,148,26,0.25);
}

.principle-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.principle-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.4;
}

.principle-attr {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  opacity: 0.55;
  margin-top: 1.5rem;
}

/* ── SDG GRID ── */
.sdg-section { background: var(--off-white); }

.sdg-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray);
}

.sdg-card {
  background: var(--off-white);
  padding: 2.25rem 2rem;
  transition: background 0.25s;
}

.sdg-card:hover { background: #fff; }

.sdg-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.sdg-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.sdg-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── CODE OF CONDUCT ── */
.conduct {
  background: var(--green-dark);
}

.conduct .section-eyebrow { color: var(--gold); }
.conduct .section-headline { color: var(--off-white); }

.conduct-header {
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.conduct-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,240,0.55);
  margin-top: 1.5rem;
}

.conduct-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(200,148,26,0.3);
}

.conduct-item {
  background: var(--green-dark);
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  align-items: start;
  transition: background 0.25s;
}

.conduct-item:hover { background: rgba(26,61,43,0.6); }

.conduct-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.75;
  padding-left: 1.5rem;
}

.conduct-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.25;
}

.conduct-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,245,240,0.45);
  padding-right: 1.5rem;
}

/* ── ESG DEEP ── */
.esg-deep { background: var(--off-white); }

.esg-deep-grid {
  display: grid;
  gap: 0;
  margin-top: 3rem;
}

.esg-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--warm-gray);
  align-items: start;
}

.esg-block:last-child { border-bottom: 1px solid var(--warm-gray); }

.esg-big-letter {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.85;
  opacity: 0.9;
}

.esg-big-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-top: 0.75rem;
}

.esg-content-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.esg-content-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 620px;
}

.esg-practices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.practice {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.practice-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 5px;
}

.practice-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── STERN DETAIL ── */
.stern-detail {
  background: var(--warm-gray);
  padding: 6rem 4rem;
}

.stern-detail-inner { max-width: 1200px; margin: 0 auto; }

.stern-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 3rem;
}

.stern-detail-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.05;
}

.stern-detail-headline em { font-style: italic; color: var(--gold); }

.stern-detail-lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.star-ladder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(14,36,25,0.12);
}

.star-step {
  background: var(--off-white);
  padding: 2rem 1.5rem;
  transition: background 0.25s;
}

.star-step:hover { background: #fff; }

.star-step-icons {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
  min-height: 20px;
}

.star-step-grade {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.star-step-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.star-step-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── COMMITMENT CTA ── */
.commitment {
  background: var(--green-deep);
  padding: 6rem 4rem;
  text-align: center;
}

.commitment-inner { max-width: 700px; margin: 0 auto; }

.commitment-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.commitment-headline em { font-style: italic; color: var(--gold); }

.commitment-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,240,0.55);
  margin-bottom: 2.5rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--gold);
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── SUSTAINABILITY RESPONSIVE ── */
@media (max-width: 1024px) {
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .star-ladder { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .principle { padding: 3.5rem 1.5rem; }
  .sdg-header,
  .stern-detail-header { grid-template-columns: 1fr; gap: 2rem; }
  .sdg-grid { grid-template-columns: 1fr; }
  .conduct-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .conduct-num { padding-left: 0; }
  .conduct-body { padding-right: 0; }
  .esg-block { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
  .esg-big-letter { font-size: 4rem; }
  .star-ladder { grid-template-columns: 1fr; }
  .stern-detail { padding: 4rem 1.5rem; }
  .commitment { padding: 4rem 1.5rem; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.svc-index {
  background: var(--gold-pale);
  padding: 3rem 4rem;
  border-bottom: 1px solid rgba(200,148,26,0.25);
}

.svc-index-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.svc-index-item {
  text-decoration: none;
  display: block;
  padding-top: 1rem;
  border-top: 2px solid rgba(26,61,43,0.15);
  transition: border-color 0.25s;
}

.svc-index-item:hover { border-top-color: var(--gold); }

.svc-index-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 6px;
}

.svc-index-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.25;
}

/* ── SERVICE BLOCK ── */
.svc-block {
  padding: 6rem 4rem;
  border-bottom: 1px solid var(--warm-gray);
}

.svc-block:nth-child(even) { background: #fff; }

.svc-block-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

.svc-marker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.svc-marker-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.8;
}

.svc-marker-rule {
  flex: 1;
  height: 1px;
  background: var(--warm-gray);
}

.svc-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.svc-title em { font-style: italic; color: var(--gold); }

.svc-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.svc-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

.svc-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--warm-gray);
}

.svc-deliverables {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.svc-deliverable {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}

.svc-tick {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.svc-deliverable-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.svc-deliverable-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

.svc-fit {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
}

.svc-block:nth-child(even) .svc-fit { background: var(--gold-pale); }

.svc-fit-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.svc-fit-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

/* ── ENGAGEMENT PROCESS ── */
.process {
  background: var(--green-dark);
  padding: 7rem 4rem;
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.process-header .section-eyebrow { color: var(--gold); }
.process-header .section-headline { color: var(--off-white); }

.process-lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,240,0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}

.process-step {
  background: var(--green-dark);
  padding: 2.25rem 1.75rem;
  border-top: 2px solid rgba(200,148,26,0.35);
  transition: background 0.25s;
}

.process-step:hover { background: rgba(26,61,43,0.7); }

.process-step-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.process-step-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,245,240,0.45);
}

/* ── SERVICES RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-index-inner { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .svc-index { padding: 2rem 1.5rem; }
  .svc-index-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .svc-block { padding: 3.5rem 1.5rem; }
  .svc-block-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-marker-num { font-size: 2.5rem; }
  .process { padding: 4rem 1.5rem; }
  .process-header { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.why-sg { background: var(--off-white); }

.why-sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-sg-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.why-sg-body + .why-sg-body { margin-top: 1.25rem; }

.sg-reasons { display: grid; gap: 0; }

.sg-reason {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--warm-gray);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.sg-reason:first-child { border-top: 1px solid var(--warm-gray); }

.sg-reason-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.sg-reason-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.sg-reason-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── LEADERSHIP ── */
.leadership { background: var(--green-dark); }
.leadership .section-eyebrow { color: var(--gold); }
.leadership .section-headline { color: var(--off-white); }

.leadership-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(247,245,240,0.55);
  max-width: 660px;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.person {
  background: var(--green-dark);
  padding: 3rem 2.5rem;
  transition: background 0.25s;
}

.person:hover { background: rgba(26,61,43,0.7); }

.person-initials {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.person-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.person-bio {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,240,0.5);
  margin-bottom: 1.5rem;
}

.person-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.person-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,148,26,0.1);
  border: 1px solid rgba(200,148,26,0.22);
  padding: 4px 9px;
  border-radius: 2px;
}

/* ── GLOBAL TEAM ── */
.global-team {
  background: var(--warm-gray);
  padding: 6rem 4rem;
}

.global-team-inner { max-width: 1200px; margin: 0 auto; }

.gt-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 3rem;
}

.gt-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.05;
}

.gt-headline em { font-style: italic; color: var(--gold); }

.gt-lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(14,36,25,0.1);
}

.location {
  background: var(--off-white);
  padding: 1.75rem;
  transition: background 0.2s;
}

.location:hover { background: #fff; }

.location-region {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.location-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */

.gate-notice {
  background: var(--gold-pale);
  padding: 3.5rem 4rem;
  border-bottom: 1px solid rgba(200,148,26,0.25);
}

.gate-notice-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.gate-icon { width: 32px; height: 32px; margin-top: 2px; }

.gate-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.gate-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

/* ── DISCLOSURE CATEGORIES ── */
.disclosure { background: var(--off-white); }

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray);
  margin-top: 3rem;
}

.disclosure-card {
  background: var(--off-white);
  padding: 2.25rem 2rem;
  transition: background 0.25s;
}

.disclosure-card:hover { background: #fff; }

.disclosure-icon { width: 32px; height: 32px; margin-bottom: 1.25rem; }

.disclosure-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.disclosure-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── FUND TEASER ── */
.fund-teaser {
  background: var(--green-dark);
  padding: 6rem 4rem;
}

.fund-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fund-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,148,26,0.35);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.fund-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.fund-name {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.fund-name em { font-style: italic; color: var(--gold); }

.fund-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}

.fund-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(247,245,240,0.55);
  margin-bottom: 1.25rem;
}

.fund-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.fund-fact {
  background: rgba(14,36,25,0.7);
  padding: 1.75rem;
}

.fund-fact-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.35);
  margin-bottom: 8px;
}

.fund-fact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
}

.fund-disclaimer {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,245,240,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

/* ── ACCREDITATION FORM ── */
.accred {
  background: var(--off-white);
  padding: 7rem 4rem;
}

.accred-inner { max-width: 860px; margin: 0 auto; }

.accred-header { margin-bottom: 3rem; }

.accred-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.form-card {
  background: #fff;
  border: 1px solid var(--warm-gray);
  padding: 3rem;
}

.form-section { margin-bottom: 2.5rem; }

.form-section:last-of-type { margin-bottom: 1.5rem; }

.form-section-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--warm-gray);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-row.single { grid-template-columns: 1fr; }

.form-field { display: flex; flex-direction: column; }

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.form-label .req { color: var(--gold); }

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  background: var(--off-white);
  border: 1px solid var(--warm-gray);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-select { cursor: pointer; appearance: none; background-image: none; }

.form-hint {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 6px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--warm-gray);
  border-radius: 2px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--off-white);
}

.choice:hover { border-color: var(--gold); background: #fff; }

.choice input { margin-top: 3px; accent-color: #C8941A; flex-shrink: 0; }

.choice-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-body);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.consent input { margin-top: 3px; accent-color: #C8941A; flex-shrink: 0; }

.consent-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
}

.consent-text a { color: var(--green-deep); }

.form-submit {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--green-deep);
  border: none;
  border-radius: 2px;
  padding: 17px 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

.form-footnote {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--warm-gray);
}

/* ── LEGAL BLOCK ── */
.legal-block {
  background: var(--warm-gray);
  padding: 3.5rem 4rem;
}

.legal-inner { max-width: 900px; margin: 0 auto; }

.legal-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.legal-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

.legal-text + .legal-text { margin-top: 0.85rem; }

/* ── ABOUT / PROJECTS RESPONSIVE ── */
@media (max-width: 1024px) {
  .locations { grid-template-columns: repeat(2, 1fr); }
  .disclosure-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .why-sg-grid,
  .gt-header,
  .fund-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .people-grid { grid-template-columns: 1fr; }
  .person { padding: 2.5rem 1.5rem; }
  .locations { grid-template-columns: 1fr; }
  .global-team { padding: 4rem 1.5rem; }
  .gate-notice { padding: 2.5rem 1.5rem; }
  .gate-notice-inner { grid-template-columns: 1fr; gap: 1rem; }
  .fund-teaser { padding: 4rem 1.5rem; }
  .fund-facts { grid-template-columns: 1fr; }
  .accred { padding: 4rem 1.5rem; }
  .form-card { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .choice-grid { grid-template-columns: 1fr; }
  .legal-block { padding: 2.5rem 1.5rem; }
}

/* ============================================================
   LEGAL PAGES (privacy, imprint, thank-you)
   ============================================================ */

.doc { background: var(--off-white); padding: 4rem 4rem 6rem; }

.doc-inner { max-width: 780px; margin: 0 auto; }

.doc-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-gray);
  margin-bottom: 2.5rem;
}

.doc h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.doc h2:first-of-type { margin-top: 0; }

.doc h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.doc p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.doc ul {
  margin: 0 0 1.25rem 0;
  padding-left: 1.25rem;
}

.doc li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.doc a { color: var(--green-deep); text-decoration: underline; text-decoration-color: var(--gold); }
.doc a:hover { color: var(--gold); }

.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 13px;
}

.doc-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--warm-gray);
  padding: 10px 14px;
  border: 1px solid var(--warm-gray);
}

.doc-table td {
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  padding: 10px 14px;
  border: 1px solid var(--warm-gray);
  vertical-align: top;
}

.doc-callout {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.doc-callout p { margin-bottom: 0; font-size: 13px; }

.entity-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 14px;
}

.entity-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--warm-gray);
  vertical-align: top;
  line-height: 1.7;
}

.entity-table td:first-child {
  width: 34%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-right: 1.5rem;
}

.entity-table td:last-child {
  font-weight: 300;
  color: var(--text-body);
}

/* ── THANK YOU ── */
.thanks {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 8rem 4rem 6rem;
  text-align: center;
}

.thanks-inner { max-width: 620px; }

.thanks-mark {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thanks-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.thanks-headline em { font-style: italic; color: var(--gold); }

.thanks-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .doc { padding: 2.5rem 1.5rem 4rem; }
  .doc h2 { font-size: 1.4rem; }
  .entity-table td:first-child { width: 40%; }
  .doc-table { font-size: 12px; }
  .doc-table th, .doc-table td { padding: 8px 10px; }
  .thanks { padding: 6rem 1.5rem 4rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-split {
  background: var(--off-white);
  padding: 6rem 4rem;
}

.contact-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-intro-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.contact-intro-body + .contact-intro-body { margin-top: 1.25rem; }

.contact-channels { margin-top: 2.5rem; }

.channel {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--warm-gray);
}

.channel:first-child { border-top: 1px solid var(--warm-gray); }

.channel-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.channel-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.channel-value a {
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,148,26,0.4);
  transition: color 0.2s, border-color 0.2s;
}

.channel-value a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.channel-note {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

.response-note {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.response-note-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
  opacity: 0.75;
}

.response-note-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

/* ── ROUTING BAND ── */
.routing {
  background: var(--green-dark);
  padding: 5rem 4rem;
}

.routing-inner { max-width: 1200px; margin: 0 auto; }

.routing .section-eyebrow { color: var(--gold); }
.routing .section-headline { color: var(--off-white); }

.routing-lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,240,0.5);
  max-width: 620px;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.routing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}

.routing-card {
  background: var(--green-dark);
  padding: 2.25rem 2rem;
  border-top: 2px solid rgba(200,148,26,0.3);
  transition: background 0.25s;
  text-decoration: none;
  display: block;
}

.routing-card:hover { background: rgba(26,61,43,0.75); }

.routing-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.routing-card-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,245,240,0.45);
  margin-bottom: 1rem;
}

.routing-card-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .contact-split { padding: 3.5rem 1.5rem; }
  .contact-split-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .routing { padding: 4rem 1.5rem; }
  .routing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GRID OVERFLOW FIX
   Grid and flex children default to min-width:auto, which stops
   them shrinking below their content's intrinsic width. Form
   inputs have a sizeable intrinsic width, so a form placed in a
   grid column can blow the track out and squash its neighbour.
   Setting min-width:0 lets the tracks honour their fr sizes.
   ============================================================ */

.contact-split-inner > *,
.form-row > *,
.form-field,
.mission-grid > *,
.sustainability-grid > *,
.svc-block-inner > *,
.why-sg-grid > *,
.fund-teaser-inner > *,
.stern-inner > *,
.services-intro > *,
.geo-header > *,
.gt-header > *,
.process-header > *,
.sdg-header > *,
.stern-detail-header > * {
  min-width: 0;
}

.form-input,
.form-select,
.form-textarea {
  min-width: 0;
  max-width: 100%;
}

.form-card { max-width: 100%; }

/* Long email addresses must not force a track wider than its column */
.channel-value,
.channel-value a {
  overflow-wrap: break-word;
  word-break: break-word;
}
