/* ============================================================
   KaShuRa Gold — Institutional Landing Page
   landing.css
   ============================================================ */

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

/* ── Variables ────────────────────────────────────────────── */
:root {
  --emerald:       #0E4B3C;
  --forest:        #08362A;
  --ink:           #0D1B2A;
  --gold:          #C8A14D;
  --gold-light:    #D8B46A;
  --gold-pale:     #EDD99A;
  --charcoal:      #1D1D1D;
  --stone:         #F7F6F2;
  --white:         #FFFFFF;
  --white-60:      rgba(255,255,255,0.60);
  --white-30:      rgba(255,255,255,0.30);
  --gold-alpha:    rgba(200,161,77,0.20);
  --gold-border:   rgba(200,161,77,0.35);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Manrope', 'Inter', Helvetica, sans-serif;

  --nav-h:         76px;
  --pad-x:         clamp(1.5rem, 5vw, 5rem);
  --pad-y:         clamp(5rem, 10vw, 9rem);
  --max-w:         1320px;
  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; }
body {
  background: var(--stone);
  color: var(--charcoal);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }

/* ── Custom Cursor ─────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-expo), height 0.25s var(--ease-expo), opacity 0.3s;
  will-change: transform;
}
#cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  pointer-events: none;
  z-index: 9998;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), border-color 0.3s, opacity 0.3s;
  will-change: transform;
}
body.cursor-expand #cursor-dot  { width: 12px; height: 12px; background: var(--gold-light); }
body.cursor-expand #cursor-ring { width: 56px; height: 56px; border-color: rgba(200,161,77,0.6); }

/* ── Navigation ──────────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  z-index: 500;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
#nav.nav-filled {
  background: rgba(8, 54, 42, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(200,161,77,0.12);
}
/* Permanent dark scrim behind the nav so text reads over any hero image */
#nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.4s;
}
#nav.nav-filled::before { opacity: 0; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: none;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.nav-logo .logo-gold { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.25s;
  cursor: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.nav-links a:hover { color: var(--white); }
.nav-cta-link a {
  padding: 0.55rem 1.3rem;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 700 !important;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(200,161,77,0.25);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s !important;
}
.nav-cta-link a:hover {
  background: transparent !important;
  border-color: var(--gold-light) !important;
  color: var(--gold-light) !important;
  box-shadow: 0 6px 18px rgba(200,161,77,0.15);
}

/* ── Section Shared ──────────────────────────────────────── */
.section-pad {
  padding: var(--pad-y) var(--pad-x);
}
.inner { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 55fr 45fr;
  position: relative;
  overflow: hidden;
}

/* Left — copy */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) var(--pad-x) 4rem;
  position: relative;
  z-index: 2;
}
.hero-overline {
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
  opacity: 0; transform: translateY(18px); /* GSAP init */
}
.hero-overline::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0; transform: translateY(28px); /* GSAP init */
  max-width: 560px;
}
.hero-h1 .gold-word { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  line-height: 1.85;
  color: var(--white-60);
  max-width: 460px;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.88rem 2rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-hero-primary {
  background: var(--gold-alpha);
  border: 1px solid var(--gold);
  color: var(--gold-pale);
}
.btn-hero-primary:hover {
  background: rgba(200,161,77,0.3);
  box-shadow: 0 0 24px rgba(200,161,77,0.15);
  color: var(--white);
}
.btn-hero-ghost {
  background: transparent;
  border: 1px solid var(--white-30);
  color: var(--white-60);
}
.btn-hero-ghost:hover {
  border-color: var(--white-60);
  color: var(--white);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0; /* GSAP init */
}
.hero-scroll-hint span {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.scroll-line {
  width: 44px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: linePulse 2.4s ease-in-out infinite;
}
@keyframes linePulse {
  0%,100% { opacity: 0.3; transform: scaleX(0.6); transform-origin: left; }
  50%      { opacity: 1;   transform: scaleX(1);   transform-origin: left; }
}

/* Right — monolith canvas */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, rgba(8,54,42,0.15) 55%, rgba(8,54,42,0.55) 100%);
  z-index: 1;
}
/* Monolith tilt container */
#monolith-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}
#monolith-inner {
  position: relative;
  width: 52%;
  max-width: 300px;
  aspect-ratio: 2/3;
  transform-style: preserve-3d;
  will-change: transform;
}
.monolith-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(200,161,77,0.18)) drop-shadow(0 0 80px rgba(200,161,77,0.08));
  /* Fallback gradient if image missing */
  background: linear-gradient(145deg, rgba(200,161,77,0.08), transparent);
}
/* Frosted glass panel behind monolith */
.glass-panel {
  position: absolute;
  inset: -10% -14%;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  z-index: 1;
  box-shadow: inset 0 0 50px rgba(200,161,77,0.03), 0 0 100px rgba(0,0,0,0.4);
}
/* Gold corner brackets on glass panel */
.glass-panel::before,
.glass-panel::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(200,161,77,0.38);
  border-style: solid;
}
.glass-panel::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.glass-panel::after  { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
/* Ambient gold glow beneath monolith */
.monolith-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 80px;
  background: radial-gradient(ellipse, rgba(200,161,77,0.22) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ── SECTION 1 — CORPORATE PROFILE ─────────────────────────── */
#profile {
  background: var(--charcoal);
  padding: clamp(6rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
/* Ambient glow accents */
#profile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(200,161,77,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(14,75,60,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.prof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}

/* ── Left ─────────────────────────────── */
.prof-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.prof-label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.prof-label-row .section-label { color: var(--gold); flex-shrink: 0; }
.prof-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform-origin: left center;
  transform: scaleX(0); /* GSAP animates to scaleX(1) */
}

/* Heading — large editorial serif */
.prof-heading {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  line-height: 1.12;
  color: #F0EFE9;
  margin: 0;
}
.prof-line  { display: block; overflow: hidden; }
.prof-accent {
  color: var(--gold);
  font-style: normal;
  margin-top: 0.25rem;
}

/* Body */
.prof-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prof-body p {
  font-size: 0.83rem;
  line-height: 1.95;
  color: rgba(240,239,233,0.48);
  letter-spacing: 0.02em;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(200,161,77,0.25);
  margin: 0;
}

/* CTA */
.prof-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(200,161,77,0.3);
  transition: border-color 0.3s, gap 0.3s;
  cursor: none;
  align-self: flex-start;
  text-decoration: none;
}
.prof-cta:hover { border-color: var(--gold); gap: 1.2rem; }
.prof-arrow { transition: transform 0.3s; }
.prof-cta:hover .prof-arrow { transform: translateX(4px); }

/* ── Right ────────────────────────────── */
.prof-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Map image frame */
.prof-img-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
  transform-origin: center;
}
.prof-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transform: scale(1.06);
  transform-origin: center;
  transition: transform 12s ease;
}
.prof-img-frame:hover .prof-img { transform: scale(1.0); }
.prof-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(8,54,42,0.42) 0%,
    rgba(8,20,14,0.22) 100%
  );
}

/* Gold corner brackets */
.prof-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(200,161,77,0.6);
  border-style: solid;
  pointer-events: none;
  transition: width 0.6s, height 0.6s;
}
.prof-img-frame:hover .prof-corner { width: 30px; height: 30px; }
.prof-tl { top: 14px;    left: 14px;    border-width: 1px 0 0 1px; }
.prof-tr { top: 14px;    right: 14px;   border-width: 1px 1px 0 0; }
.prof-bl { bottom: 14px; left: 14px;    border-width: 0 0 1px 1px; }
.prof-br { bottom: 14px; right: 14px;   border-width: 0 1px 1px 0; }

/* Stats bar */
.prof-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,161,77,0.14);
  border-radius: 3px;
  overflow: hidden;
}
.prof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.3s;
}
.prof-stat:hover { background: rgba(200,161,77,0.05); }
.prof-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.prof-stat-lbl {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,239,233,0.38);
  line-height: 1.4;
}
.prof-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(200,161,77,0.14);
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 860px) {
  .prof-grid { grid-template-columns: 1fr; gap: 3rem; }
  .prof-right { order: -1; }
  .prof-heading { font-size: clamp(2rem, 6vw, 3rem); }
}



/* ── SECTION 2 — CAPABILITIES (Stacked Card Scroll) ──────── */
#capabilities { background: var(--stone); }


/* The tall runway that creates scroll space for 6 cards */
#caps-runway {
  position: relative;
  /* 100vh sticky frame + 6 cards × 65vh each */
  height: calc(100vh + 6 * 65vh);
}

/* Sticky viewport — flex column: heading at top, cards below */
#caps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--stone);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: var(--nav-h);
}

/* Header that stays visible throughout the card-stack scroll */
.caps-sticky-header {
  flex-shrink: 0;
  text-align: center;
  padding: 2rem var(--pad-x) 1.5rem;
  background: var(--stone);
  position: relative;
  z-index: 20;
}
.caps-sticky-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.caps-sticky-header p {
  font-size: 0.83rem;
  color: #777;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.025em;
}
/* Thin gold separator under header */
.caps-sticky-header::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.25rem auto 0;
}

/* Card zone — remaining height, cards center here */
.caps-card-zone {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card counter — bottom-right of the card zone */
.caps-counter {
  position: absolute;
  bottom: 1.25rem;
  right: var(--pad-x);
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(0,0,0,0.22);
  letter-spacing: 0.08em;
  pointer-events: none;
  z-index: 10;
}
.caps-sep { margin: 0 0.2em; }
#caps-cur {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--emerald);
}

/* Each stacking card — centered inside .caps-card-zone */
.csc {
  /* inset:0 + margin:auto + height:fit-content = centered both axes */
  position: absolute;
  inset: 0;
  width: min(var(--max-w), 92vw);
  height: fit-content;
  margin: auto;
  z-index: var(--ci);
  /* GSAP animates y from 110vh → 0 (natural centered position) */
  transform: translateY(110vh);
  will-change: transform;

  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;

  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.04),
    0 12px 40px rgba(0,0,0,0.08),
    0 32px 80px rgba(0,0,0,0.06);
}

/* Left column — number + icon on emerald bg */
.csc-left {
  background: var(--emerald);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 220px;
}
.csc-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  letter-spacing: -0.02em;
}
.csc-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  margin-top: auto;
}

/* Right column — content */
.csc-right {
  padding: 2.5rem 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.csc-label {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.csc-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.csc-desc {
  font-size: 0.83rem;
  line-height: 1.85;
  color: #777;
  letter-spacing: 0.02em;
  flex: 1;
}
.csc-rule {
  margin-top: 1.5rem;
  height: 1px;
  width: 40px;
  background: linear-gradient(to right, var(--gold), transparent);
}


/* ── SECTION 3 — GLOBAL SUPPLY MAP ───────────────────────── */
#supply {
  background: var(--emerald);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.supply-map-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}
.supply-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 52% 58%, rgba(14,75,60,0.1) 0%, rgba(8,54,42,0.85) 75%),
    linear-gradient(to bottom, rgba(8,54,42,0.72) 0%, rgba(8,54,42,0.2) 40%, rgba(8,54,42,0.2) 60%, rgba(8,54,42,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
/* SVG trade-route arcs overlay */
#supply-svg {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.trade-arc {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1; /* GSAP animates: dasharray=length, dashoffset→0 */
}
.trade-dot {
  fill: var(--gold);
  r: 3;
  opacity: 0;
}
/* Origin dot — East Africa */
.origin-dot {
  fill: var(--gold-light);
  r: 5;
  filter: drop-shadow(0 0 6px rgba(200,161,77,0.7));
  animation: originPulse 2.5s ease-in-out infinite;
}
@keyframes originPulse {
  0%,100% { r: 4; opacity: 0.7; }
  50%      { r: 7; opacity: 1; }
}
.supply-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--pad-y) var(--pad-x);
}
.supply-content-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.supply-text h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.supply-text p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
/* Floating stat cards */
.supply-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(200,161,77,0.2);
  border-radius: 3px;
  padding: 1.5rem 1.5rem;
  opacity: 0; transform: translateY(20px); /* GSAP init */
}
.stat-card-label {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.stat-card-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ── SECTION 4 — COMPLIANCE (Dark Slate) ─────────────────── */
#compliance {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200,161,77,0.1);
}
.texture-bg {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
#compliance .inner, #engagement .inner { position: relative; z-index: 1; }
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.compliance-intro h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.compliance-intro p {
  font-size: 0.84rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-track {
  position: relative;
}
/* Vertical connecting line */
.timeline-track::before {
  content: '';
  position: absolute;
  left: 22px; top: 24px; bottom: 24px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
/* Animated gold fill */
#timeline-progress {
  position: absolute;
  left: 22px; top: 24px;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  z-index: 1;
  pointer-events: none;
  transition: height 0.05s linear;
}
.t-stage {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: relative;
}
.t-stage + .t-stage { border-top: 1px solid rgba(255,255,255,0.04); }
.t-node {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: border-color 0.6s, box-shadow 0.6s, background 0.6s;
}
.t-node svg { width: 20px; height: 20px; }
.t-node svg path, .t-node svg circle,
.t-node svg line, .t-node svg polyline, .t-node svg rect {
  stroke: rgba(255,255,255,0.22);
  transition: stroke 0.6s;
}
.t-body { padding: 0.35rem 0; }
.t-num {
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0.2rem;
}
.t-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.3rem;
  transition: color 0.6s;
  line-height: 1.3;
}
.t-desc {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
  transition: color 0.6s;
}
/* Active state */
.t-stage.t-active .t-node {
  border-color: var(--gold);
  background: rgba(200,161,77,0.08);
  box-shadow: 0 0 22px rgba(200,161,77,0.22);
}
.t-stage.t-active .t-node svg path,
.t-stage.t-active .t-node svg circle,
.t-stage.t-active .t-node svg line,
.t-stage.t-active .t-node svg polyline,
.t-stage.t-active .t-node svg rect { stroke: var(--gold); }
.t-stage.t-active .t-title { color: var(--white); }
.t-stage.t-active .t-desc  { color: rgba(255,255,255,0.52); }

/* ── SECTION 5 — CLIENT ENGAGEMENT ───────────────────────── */
#engagement {
  background: #161616;
  border-top: 1px solid rgba(200,161,77,0.08);
  overflow: hidden;
  position: relative;
}
.engagement-intro {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.engagement-intro h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.engagement-intro p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.42);
  max-width: 540px;
  letter-spacing: 0.025em;
}
/* Horizontal steps */
.engagement-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  gap: 0;
}
/* Connecting line across the steps */
.engagement-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px; right: 22px;
  height: 1px;
  background: rgba(255,255,255,0.07);
  z-index: 0;
}
.eng-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem 2rem;
  position: relative;
  z-index: 1;
  cursor: none;
}
.eng-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: border-color 0.5s, box-shadow 0.5s, background 0.5s;
  flex-shrink: 0;
}
.eng-node svg { width: 18px; height: 18px; }
.eng-node svg path, .eng-node svg circle,
.eng-node svg line, .eng-node svg polyline, .eng-node svg rect {
  stroke: rgba(255,255,255,0.2);
  transition: stroke 0.5s;
}
.eng-step-num {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-bottom: 0.3rem;
}
.eng-step-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  line-height: 1.3;
  transition: color 0.5s;
}
/* Active engagement step */
.eng-step.eng-active .eng-node {
  border-color: var(--gold);
  background: rgba(200,161,77,0.07);
  box-shadow: 0 0 18px rgba(200,161,77,0.2);
}
.eng-step.eng-active .eng-node svg path,
.eng-step.eng-active .eng-node svg circle,
.eng-step.eng-active .eng-node svg line,
.eng-step.eng-active .eng-node svg polyline,
.eng-step.eng-active .eng-node svg rect { stroke: var(--gold); }
.eng-step.eng-active .eng-step-title { color: var(--white); }

/* ── SECTION 6 — CORPORATE VALUES ────────────────────────── */
#values { background: var(--stone); }
.values-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.values-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.value-card {
  background: var(--stone);
  padding: 2.75rem 1.75rem;
  text-align: center;
  transition: background 0.35s;
  cursor: none;
}
.value-card:hover { background: #FFFFFF; }
.value-icon {
  width: 44px; height: 44px;
  margin: 0 auto 1.25rem;
}
.value-icon path, .value-icon circle,
.value-icon line, .value-icon polyline, .value-icon rect {
  stroke: var(--emerald);
  transition: stroke 0.3s;
}
.value-card:hover .value-icon path,
.value-card:hover .value-icon circle,
.value-card:hover .value-icon line,
.value-card:hover .value-icon polyline { stroke: var(--gold); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}
.value-card p {
  font-size: 0.77rem;
  line-height: 1.75;
  color: #888;
  letter-spacing: 0.02em;
}

/* ── SECTION 7 — GOVERNANCE ──────────────────────────────── */
#governance {
  background: var(--emerald);
  text-align: center;
  border-top: 1px solid rgba(200,161,77,0.1);
}
.gov-inner { max-width: 680px; margin: 0 auto; }
.gov-inner h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.gov-inner p {
  font-size: 0.84rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.52);
  margin-bottom: 0.85rem;
  letter-spacing: 0.025em;
}
.gov-divider {
  width: 44px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2rem auto;
}
.btn-gov {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: none;
}
.btn-gov:hover {
  background: var(--gold-alpha);
  border-color: var(--gold);
  color: var(--white);
}

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--forest);
  padding: 5rem var(--pad-x) 2.5rem;
  border-top: 1px solid rgba(200,161,77,0.12);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-family: var(--font-display);
}
.footer-about-text {
  font-size: 0.76rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.3);
  max-width: 260px;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.footer-contact-line {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.footer-contact-line a:hover { color: var(--white-60); }
.footer-col-head {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  transition: color 0.25s;
  cursor: none;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
/* Cinematic hero link — special highlight */
.footer-links .cinematic-link {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.82rem;
}
.footer-links .cinematic-link:hover { color: var(--gold-light); }
.footer-links .cinematic-link::before {
  content: '▶';
  font-size: 0.55rem;
  font-style: normal;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-legal-links a {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s;
  cursor: none;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.45); }

/* ── Utility — fade-up init (GSAP controls) ──────────────── */
.gsap-fade-up { opacity: 0; transform: translateY(28px); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .engagement-steps { grid-template-columns: repeat(3, 1fr); }
  .csc { grid-template-columns: 160px 1fr; }
}
@media (max-width: 860px) {
  .profile-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .supply-content-inner { grid-template-columns: 1fr; }
  .csc { grid-template-columns: 1fr; }
  .csc-left { min-height: auto; flex-direction: row; align-items: center; padding: 1.5rem 2rem; }
  .csc-num { font-size: 2rem; }
}
@media (max-width: 580px) {
  .values-grid { grid-template-columns: 1fr; }
  .engagement-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .csc { width: 95vw; }
  .csc-right { padding: 1.5rem; }
}

/* ============================================================
   KaShuRa Investments & Legal Portal Layouts
   ============================================================ */

/* Page-specific Body Backgrounds */
.inv-body { background: var(--charcoal); color: #F0EFE9; }
.legal-body { background: var(--stone); color: var(--charcoal); }

/* Grid Helper */
.inv-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: flex-start;
}

/* Investments Hero Customization */
.inv-hero {
  background: radial-gradient(circle at 75% 50%, var(--emerald) 0%, var(--forest) 100%) !important;
}
.inv-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inv-mesh-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 161, 77, 0.1) 0%, transparent 60%);
  opacity: 0.8;
}
.inv-monolith {
  width: 55%;
  max-width: 320px;
  aspect-ratio: 2/3;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(200,161,77,0.12));
}
.inv-monolith::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(200, 161, 77, 0.15) 0%, rgba(8, 54, 42, 0.4) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2;
}

/* Overview Section */
.inv-overview {
  border-bottom: 1px solid rgba(200, 161, 77, 0.1);
  position: relative;
}
.inv-section-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--white);
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.inv-desc-p p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(240, 239, 233, 0.6);
  margin-bottom: 1.5rem;
}
.inv-vision-mission {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.inv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 161, 77, 0.15);
  border-radius: 4px;
  padding: 2.2rem;
  position: relative;
}
.inv-card-tag {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.inv-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.inv-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(240, 239, 233, 0.55);
}

/* Core Services */
.inv-services {
  background: #171717;
  border-bottom: 1px solid rgba(200, 161, 77, 0.1);
}
.inv-section-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.inv-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
}
.inv-section-header p {
  font-size: 0.95rem;
  color: rgba(240, 239, 233, 0.5);
}
.inv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.inv-service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 161, 77, 0.1);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  transition: transform 0.4s var(--ease-expo), border-color 0.4s;
}
.inv-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
}
.inv-service-icon {
  width: 42px; height: 42px;
  margin-bottom: 1.5rem;
}
.inv-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.inv-service-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(240, 239, 233, 0.48);
}

/* Clientele & USP Section */
.inv-clientele {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(200, 161, 77, 0.1);
}
.inv-group-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.inv-box-sub {
  font-size: 0.85rem;
  color: rgba(240, 239, 233, 0.5);
  margin-bottom: 2rem;
}
.inv-list, .inv-usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.inv-list li, .inv-usp-list li {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(240, 239, 233, 0.48);
  position: relative;
  padding-left: 1.5rem;
}
.inv-list li::before {
  content: '■';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-size: 0.6rem;
}
.inv-usp-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
}
.inv-list li strong, .inv-usp-list li strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Footprint Section */
.inv-footprint {
  background: #171717;
  border-bottom: 1px solid rgba(200, 161, 77, 0.1);
}
.inv-footprint h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
}
.inv-footprint-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(3rem, 6vw, 6rem);
}
.inv-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.inv-region-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.inv-region-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.inv-region-col li {
  font-size: 0.82rem;
  color: rgba(240, 239, 233, 0.65);
}
.inv-region-col li strong {
  color: var(--white);
}
.inv-lead-p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(240, 239, 233, 0.65);
  margin-bottom: 1.5rem;
}
.inv-alert {
  background: rgba(200, 161, 77, 0.05);
  border: 1px solid rgba(200, 161, 77, 0.15);
  border-radius: 3px;
  padding: 1.2rem;
  margin-bottom: 2.5rem;
}
.inv-alert p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--gold-pale);
}
.inv-impact-box h4 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.inv-impact-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.inv-impact-box li {
  font-size: 0.82rem;
  color: rgba(240, 239, 233, 0.65);
  position: relative;
  padding-left: 1.25rem;
}
.inv-impact-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Contact Section & Card Reconstruction */
.inv-contact-sec {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.premium-contact-card {
  width: 100%;
  max-width: 480px;
  background: #063c31; /* Deep forest teal */
  border: 1px solid rgba(200, 161, 77, 0.25);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.pcc-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.pcc-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gold-pale);
  letter-spacing: 0.02em;
  margin-bottom: 3.5rem;
}
.pcc-info-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  width: 100%;
}
.pcc-icon {
  font-size: 1.3rem;
  color: var(--gold);
}
.pcc-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gold-pale);
  line-height: 1.6;
}
.pcc-text a {
  color: var(--gold-pale);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.pcc-text a:hover {
  color: var(--white);
}
.pcc-notice {
  margin-top: 3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.6;
  opacity: 0.95;
  border-top: 1px solid rgba(200, 161, 77, 0.15);
  padding-top: 1.5rem;
  width: 100%;
}

/* Legal Portal Layout */
.legal-hero {
  background: var(--forest);
  padding: calc(var(--nav-h) + 4rem) var(--pad-x) 4rem;
  color: var(--white);
  border-bottom: 1px solid rgba(200, 161, 77, 0.15);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(200,161,77,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.legal-hero p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-60);
  max-width: 550px;
}

.legal-content-section {
  background: var(--stone);
  padding: 5rem 0 9rem;
}
.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding: 0 var(--pad-x);
}
.legal-sidebar {
  position: relative;
}
.legal-nav-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.legal-sidebar h3 {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
.legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-nav-item {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: rgba(29, 29, 29, 0.45);
  padding: 0.6rem 0.8rem;
  border-left: 2px solid transparent;
  transition: all 0.3s;
  cursor: none;
}
.legal-nav-item:hover, .legal-nav-item.active {
  color: var(--emerald);
  border-left-color: var(--gold);
  background: rgba(14, 75, 60, 0.04);
}

.legal-docs {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.legal-doc-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}
.legal-doc-card h2 {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.doc-meta {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
}
.doc-body h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.doc-body p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(29, 29, 29, 0.65);
  margin-bottom: 1.25rem;
}

/* New Responsive Breakpoints for Added Sections */
@media (max-width: 1024px) {
  .legal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-sidebar { display: none; } /* On tablets, they scroll naturally through documents */
  .inv-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .inv-grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .inv-footprint-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .inv-services-grid { grid-template-columns: 1fr; }
  .inv-regions { grid-template-columns: 1fr; }
  .premium-contact-card { padding: 2rem 1.5rem; }
  .pcc-title { font-size: 1.8rem; }
  .pcc-subtitle { margin-bottom: 2.5rem; }
}

/* ── Mobile Hamburger & Navigation Drawer ──────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: none; /* Let the custom cursor handle this */
  padding: 0.5rem;
  z-index: 1100;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  position: relative;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}

/* Prevent scrolling on the page when the mobile drawer is open */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* off-screen initially */
    width: min(320px, 80vw);
    height: 100vh;
    background: rgba(8, 54, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(200, 161, 77, 0.15);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 7rem 2.5rem 3rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-links.nav-active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-links .nav-cta-link a {
    border-bottom: none;
    margin-top: 1.5rem;
    text-align: center;
  }
  
  /* Hamburger Active Animation */
  .nav-toggle.toggle-active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: var(--gold);
  }
  .nav-toggle.toggle-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.toggle-active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: var(--gold);
  }
}


