/* =======================================================
   HERA HOLDING INVESTMENTS — WEBSITE STYLESHEET
   Brand Colors:
     Cape Verde  : #00594E  (Primary Dark Green)
     Bev. Glass  : #80C7BC  (Secondary Teal)
     Gold Accent : #D4AF6A
     Deep Forest : #0A2B24  (Dark Backgrounds)
   Fonts: Cormorant Garamond (Display) + Inter (Body)
======================================================= */

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: var(--gold);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
  z-index: 990;
  box-shadow: 0 4px 18px rgba(0,89,78,.25);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,175,106,.3);
}
@media (max-width: 480px) {
  #back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 17px; }
}

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --green:       #00594E;
  --green-dark:  #003D35;
  --green-deep:  #0A2B24;
  --teal:        #80C7BC;
  --teal-light:  #B8DDD9;
  --gold:        #D4AF6A;
  --gold-dark:   #B8924A;
  --gold-pale:   #F0E4C2;
  --white:       #FFFFFF;
  --off-white:   #F6F4EF;
  --teal-bg:     #EBF4F2;
  --text:        #0A2B24;
  --text-mid:    #3E5E58;
  --text-muted:  rgba(10,43,36,.55);
  --border:      rgba(0,89,78,.10);
  --border-gold: rgba(212,175,106,.25);

  --display:     'Cormorant Garamond', Georgia, serif;
  --body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:       1200px;
  --gutter:      40px;
  --nav-h:       80px;
  --radius:      0px;
  --ease:        0.3s ease;
  --ease-slow:   0.65s cubic-bezier(.25,.46,.45,.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;   /* Required on mobile — body alone doesn't stop horiz scroll */
  max-width: 100%;
}
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--body); cursor: pointer; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-white  { background: var(--white); }
.section-alt    { background: var(--off-white); }
.section-dark   { background: var(--green-deep); }
.section-teal   { background: var(--teal-bg); }

/* ---- TYPOGRAPHY ---- */
.tag {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.tag-light { color: var(--gold-pale); }

.h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}
.h2-light { color: var(--white); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

.section-lead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}
.section-lead-light { color: rgba(255,255,255,.65); }

.lead-text {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.body-text {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.75;
}

/* ---- GOLD RULE ---- */
.gold-rule {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin-bottom: 30px;
}
.gold-rule-center { margin-left: auto; margin-right: auto; }
.gold-rule-short  { width: 36px; margin-bottom: 20px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,106,.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.mt-24 { margin-top: 24px; }

/* ===============================================
   NAVIGATION
=============================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}
/*
  backdrop-filter is placed on a ::after pseudo-element instead of the navbar
  itself. This prevents the navbar from creating a stacking context that would
  break position:fixed on the mobile nav-menu (known Safari/Chrome mobile bug).
*/
.navbar::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: backdrop-filter var(--ease), -webkit-backdrop-filter var(--ease), opacity var(--ease);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.navbar.is-scrolled-dark {
  background: rgba(10,43,36,.96);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.navbar.is-scrolled-dark::after  { opacity: 1; }
.navbar.is-scrolled-light {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 18px rgba(0,0,0,.08);
}
.navbar.is-scrolled-light::after { opacity: 1; }
.navbar.is-scrolled-light .nav-link { color: var(--text); }
.navbar.is-scrolled-light .nav-link:hover { color: var(--green); }
.navbar.is-scrolled-light .logo-hera { color: var(--gold-dark); }
.navbar.is-scrolled-light .logo-holding { color: var(--green); }
.navbar.is-scrolled-light .logo-investments { color: var(--text-mid); }
.navbar.is-scrolled-light .nav-cta {
  border-color: var(--green) !important;
  color: var(--green) !important;
}
.navbar.is-scrolled-light .nav-cta:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}
.navbar.is-scrolled-light .hamburger span { background: var(--text); }
.navbar.is-scrolled-light .dropdown-menu {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.navbar.is-scrolled-light .dropdown-menu a { color: var(--text-mid); }
.navbar.is-scrolled-light .dropdown-menu a:hover { color: var(--green); background: var(--off-white); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1; /* stay above the navbar::after blur pseudo-element */
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { max-height: 60px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.logo-top { display: flex; align-items: baseline; gap: 6px; }
.logo-hera {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}
.logo-holding {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-investments {
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 0; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
  padding: 8px 14px;
  transition: color var(--ease);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-arrow { font-size: 9px; margin-left: 2px; }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 7px 18px;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--green-deep);
  border: 1px solid rgba(212,175,106,.18);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  transition: all var(--ease);
}
.dropdown-menu li a:hover {
  color: var(--gold);
  padding-left: 28px;
  background: rgba(255,255,255,.04);
}

/* ── Dual Logo switching ──
   !important on the hide rules ensures no browser quirk or cached rule
   can ever show both logos simultaneously. */
.nav-logo img.nav-logo-dark  { display: block !important; }
.nav-logo img.nav-logo-light { display: none  !important; }
.navbar.is-scrolled-light .nav-logo img.nav-logo-dark  { display: none  !important; }
.navbar.is-scrolled-light .nav-logo img.nav-logo-light { display: block !important; }

/* ── Mobile Nav Overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.is-open { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: 16px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===============================================
   HERO
=============================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* excludes mobile browser chrome */
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Photo background support (set via inline style from PHP) */
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,43,36,.92) 0%, rgba(0,89,78,.82) 55%, rgba(6,61,52,.95) 100%);
  overflow: hidden;
}
/* When a photo/slide is loaded, switch to a lighter cinematic overlay */
.hero-photo .hero-overlay {
  background: linear-gradient(180deg,
    rgba(5,16,12,.50) 0%,
    rgba(10,43,36,.40) 50%,
    rgba(5,16,12,.60) 100%);
}

/* ── Hero Background Slides ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  /* Extra 15% top/bottom gives parallax room without showing page bg */
  top: -10%; left: 0; right: 0;
  height: 120%;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: transform, opacity;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 9s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

/* ── Slide Dots ── */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.30);
  cursor: pointer;
  transition: all .35s ease;
  border: none;
  padding: 0;
}
.hero-dot.active {
  width: 22px;
  background: var(--gold);
}
.hero-overlay::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(128,199,188,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,106,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 24px;
  /* Centred layout */
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.hero-eyebrow       { justify-content: center; }
.hero-subtitle      { margin-left: auto; margin-right: auto; }
.hero-tagline       { max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-actions       { justify-content: center; }
.hero-stats         { justify-content: center; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-line {
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.03;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -1px;
}
/* Hero title two-line HTML styling helpers */
.hero-title .ht-primary {
  display: block;
  color: var(--white);       /* "Sovereign Capital." — pure white, slightly larger */
  font-size: 1.12em;
  line-height: 1.0;
}
.hero-title .ht-sub {
  display: block;
  color: var(--white);       /* "Enduring Legacy." — white */
  font-size: 0.86em;
  line-height: 1.08;
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.hero-tagline {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 1;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 20px;
}
.hero-stat { text-align: center; }
.stat-number {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
}
.stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.12);
}

/* ── Strategic Investment Themes strip (below hero) ── */
.hero-themes {
  background: rgba(6,30,22,.97);
  border-top: 1px solid rgba(212,175,106,.15);
  position: relative;
  z-index: 2;
}
.hero-themes-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero-theme {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease);
}
.hero-theme:last-child { border-right: none; }
.hero-theme:hover { background: rgba(255,255,255,.04); }
.hero-theme-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(212,175,106,.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  transition: all var(--ease);
}
.hero-theme:hover .hero-theme-icon {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.hero-theme-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.hero-themes-heading {
  text-align: center;
  padding: 40px var(--gutter) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-themes-heading p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero-themes-heading h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .hero-themes-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-theme { padding: 24px 16px; }
  .hero-theme:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .hero-themes-inner { grid-template-columns: 1fr 1fr; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px; right: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.5); }
}

/* ===============================================
   TWO-COLUMN LAYOUT
=============================================== */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-center { align-items: center; }
.col-sticky { position: sticky; top: calc(var(--nav-h) + 40px); }

/* ===============================================
   OVERVIEW
=============================================== */
.section-overview { background: var(--white); }

/* Centred lead text block */
.overview-lead {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.overview-lead .lead-text { font-size: 20px; margin-bottom: 16px; }
.overview-lead .body-text  { margin-bottom: 0; }

/* 3-column card row */
.overview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);   /* thin gap lines between cards */
}
.overview-card {
  background: var(--white);
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.overview-card:hover::before { transform: scaleX(1); }
.overview-card:hover {
  box-shadow: 0 12px 48px rgba(0,89,78,.10);
  transform: translateY(-4px);
}

/* Large ghost number */
.ov-card-num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 300;
  color: var(--green);
  opacity: 1;
  line-height: 1;
  margin-bottom: -24px;   /* overlap with icon */
  letter-spacing: -2px;
}
/* Gold diamond icon */
.ov-card-icon {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 18px;
  display: block;
}
.overview-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.overview-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .overview-cards { grid-template-columns: 1fr; gap: 1px; }
  .overview-card { padding: 32px 28px; }
  .overview-card:hover { transform: none; }
  .overview-lead { margin-bottom: 40px; }
}

/* ===============================================
   PORTFOLIO SNAPSHOT
=============================================== */
.portfolio-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.snap-card {
  background: var(--white);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  border-bottom: 3px solid transparent;
}
.snap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-slow);
}
.snap-card:hover::before { transform: scaleX(1); }
.snap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,89,78,.12);
}
.snap-sector {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.snap-company {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.snap-geo {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.snap-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.snap-logo {
  height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.snap-logo img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}
.snap-ext-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color var(--ease);
}
.snap-ext-link:hover { color: var(--gold); }

/* ===============================================
   STRATEGIC PILLARS
=============================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.05);
}
.pillar {
  padding: 44px 28px;
  border-right: 1px solid rgba(255,255,255,.05);
  transition: background var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,.05); }
.pillar-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pillar p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ===============================================
   ABOUT
=============================================== */
.philosophy-block {
  background: var(--green-deep);
  padding: 36px;
  margin-bottom: 20px;
  color: var(--white);
}
.philosophy-block h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 14px;
}
.philosophy-block p { font-size: 14px; line-height: 1.78; color: rgba(255,255,255,.85); }

.core-principles h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}
.cp-list { display: flex; flex-direction: column; }
.cp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cp-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}
.cp-text { color: var(--text-mid); padding-top: 2px; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.mv-box {
  padding: 22px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.mv-box h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.mv-box p { font-size: 13px; color: var(--text-mid); margin: 0; }

/* ===============================================
   INVESTMENT PHILOSOPHY
=============================================== */
.inv-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}
/* Left column */
.inv-mandate {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.inv-mandate-bar {
  width: 3px;
  min-height: 88px;
  background: linear-gradient(180deg, var(--gold), transparent);
  flex-shrink: 0;
  margin-top: 3px;
}
.inv-mandate p {
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
}
/* Right column — criteria rows */
.inv-right {
  border-top: 2px solid var(--green);
}
.inv-crit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.inv-crit-item:last-child { border-bottom: none; }
.inv-crit-item:hover .inv-crit-num { opacity: 1; color: var(--green); }
.inv-crit-num {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  padding-top: 2px;
  transition: opacity var(--ease), color var(--ease);
}
.inv-crit-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .1px;
}
.inv-crit-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 900px) {
  .inv-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .inv-right { border-top: 2px solid var(--green); }
}

/* ===============================================
   INVESTMENT PHASES
=============================================== */
.phases-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto 56px;
}
.phase-connector-v {
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, rgba(212,175,106,.4), rgba(212,175,106,.1));
  margin-left: 38px;
}
.phase {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.phase-circle {
  width: 76px; height: 76px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--green-deep);
  transition: all var(--ease);
  position: relative;
  z-index: 1;
}
.phase:hover .phase-circle {
  background: var(--gold);
  border-color: var(--gold);
}
.phase-circle span {
  font-family: var(--display);
  font-size: 26px;
  color: var(--gold);
  font-weight: 400;
  transition: color var(--ease);
}
.phase:hover .phase-circle span { color: var(--green-deep); }
.phase-body { padding-top: 12px; }
.phase-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65;
  margin-bottom: 2px;
}
.phase-body h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.phase-sub {
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 10px;
}
.phase-body p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.68; }

.capital-statement {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  border-top: 1px solid rgba(212,175,106,.18);
}
.capital-statement p {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ===============================================
   PORTFOLIO DETAIL
=============================================== */
.portfolio-segment {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.seg-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.seg-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 300;
  color: var(--teal);
  opacity: .5;
  line-height: 1;
}
.seg-header h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
}
.seg-desc { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; max-width: 760px; line-height: 1.75; }

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.company-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  transition: all var(--ease);
}
.company-card:hover {
  border-left-color: var(--green);
  background: var(--teal-bg);
  transform: translateX(4px);
}
.cc-icon { color: var(--teal); font-size: 18px; flex-shrink: 0; margin-top: 3px; opacity: .6; }
.cc-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.geo {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: 2px 8px;
  font-family: var(--body);
}
.cc-body p { font-size: 12px; color: var(--text-mid); line-height: 1.65; }
.cc-logo { width: 48px; height: 48px; flex-shrink: 0; opacity: 1 !important; }
.cc-logo img { width: 100%; height: 100%; object-fit: contain; }
.cc-ext-link {
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  margin-left: 6px;
  font-weight: 500;
  vertical-align: middle;
  transition: color var(--ease);
}
.cc-ext-link:hover { color: var(--gold); }

/* ===============================================
   OUR FINANCIALS
=============================================== */
.fin-intro {
  max-width: 800px;
  margin: 0 auto 52px;
  text-align: center;
}
.fin-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.65);
}
/* Flow bridge: Sources ─── HERA ─── Uses */
.fin-flow-bridge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
}
.fin-flow-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}
.fin-flow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,106,.38));
}
.fin-flow-line-r {
  background: linear-gradient(90deg, rgba(212,175,106,.38), transparent);
}
.fin-flow-node {
  border: 1px solid rgba(212,175,106,.45);
  padding: 7px 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  white-space: nowrap;
}
/* Two-column split */
.fin-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 64px;
  align-items: start;
}
.fin-col-divider {
  background: rgba(212,175,106,.18);
  align-self: stretch;
}
.fin-col-head {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .5px;
  padding-bottom: 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
/* Items shared */
.fin-item {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fin-item:last-child { border-bottom: none; }
.fin-item-body h5 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  margin-bottom: 5px;
  letter-spacing: .2px;
  line-height: 1.35;
}
.fin-item-body p {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 0;
}
/* Numbered badge — Sources column */
.fin-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212,175,106,.1);
  border: 1px solid rgba(212,175,106,.35);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Dot — Uses column */
.fin-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: .75;
}
@media (max-width: 900px) {
  .fin-split {
    grid-template-columns: 1fr;
    gap: 44px 0;
  }
  .fin-col-divider { display: none; }
  .fin-flow-bridge { display: none; }
}

/* ===============================================
   INNOVATION
=============================================== */
.inno-cards { display: flex; flex-direction: column; gap: 16px; }
.inno-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.inno-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0,89,78,.10);
  transform: translateX(4px);
}
.inno-icon { color: var(--teal); font-size: 20px; flex-shrink: 0; margin-top: 3px; }
.inno-card h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.inno-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ===============================================
   GOVERNANCE
=============================================== */
.gov-layers {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.gov-layer {
  flex: 1;
  min-width: 180px;
  padding: 32px 24px;
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease);
}
.gov-layer:last-child { border-right: none; }
.gov-layer:hover { background: rgba(255,255,255,.08); }
.gov-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: .35;
  font-size: 18px;
  padding: 40px 8px;
  flex-shrink: 0;
}
.gov-level {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65;
  margin-bottom: 8px;
}
.gov-layer h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.gov-layer p { font-size: 12px; color: rgba(255,255,255,.50); line-height: 1.65; }

.share-structure {
  border-top: 1px solid rgba(212,175,106,.18);
  padding-top: 44px;
}
.share-structure h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}
.share-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.share-class {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
  padding: 18px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease);
}
.share-class:hover { background: rgba(255,255,255,.08); }
.sc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--green-deep);
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sc-desc { font-size: 12px; color: rgba(255,255,255,.65); }

/* ===============================================
   LEADERSHIP
=============================================== */
.leader-card {
  background: var(--white);
  padding: 56px;
  box-shadow: 0 4px 40px rgba(0,89,78,.07);
  display: flex;
  gap: 52px;
  align-items: flex-start;
}
.leader-avatar { flex-shrink: 0; }
.avatar-initials {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 300;
}
.leader-body h3 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.leader-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.leader-body p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.75;
  max-width: 640px;
}

/* ===============================================
   NEWS
=============================================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.news-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-slow);
}
.news-card:hover::after { transform: scaleX(1); }
.news-card:hover {
  border-color: var(--teal-light);
  box-shadow: 0 12px 40px rgba(0,89,78,.09);
  transform: translateY(-4px);
}
.news-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.news-card h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
}
.news-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.news-footer {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===============================================
   CONTACT
=============================================== */
.contact-section { padding-bottom: 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
}
.contact-intro { font-size: 14px; color: rgba(255,255,255,.68); margin-bottom: 36px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.cd-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.cd-item p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
.cd-item a { color: var(--teal); transition: color var(--ease); }
.cd-item a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 13px 15px;
  font-family: var(--body);
  font-size: 13px;
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--green-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===============================================
   FOOTER
=============================================== */
.footer { background: var(--green-deep); border-top: 1px solid rgba(255,255,255,.05); }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 64px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-hera { font-size: 26px; }
.footer-logo .logo-holding { font-size: 26px; }
.footer-slogan {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
}
.footer-address { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 4px;
}
.fl-col h5 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.fl-col ul { display: flex; flex-direction: column; gap: 10px; }
.fl-col a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.fl-col a:hover { color: var(--teal); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.25); }
.footer-url { letter-spacing: 2px; }

/* ===============================================
   NEWSLETTER
=============================================== */
.section-newsletter {
  background: var(--green);
  padding: 80px 0;
  border-top: 1px solid rgba(212,175,106,.15);
}
.newsletter-text .h2 {
  font-style: italic;
  font-weight: 300;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nl-fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.nl-input {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 13px;
  outline: none;
  transition: border-color var(--ease);
}
.nl-input::placeholder { color: rgba(255,255,255,.45); }
.nl-input:focus { border-color: var(--gold); }
.nl-note {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,.38);
}
.nl-flash {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  border: 1px solid;
}
.nl-flash.success {
  background: rgba(128,199,188,.12);
  border-color: rgba(128,199,188,.30);
  color: var(--teal);
}
.nl-flash.error {
  background: rgba(220,80,80,.10);
  border-color: rgba(220,80,80,.25);
  color: #e87c7c;
}
@media (max-width: 900px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
  .section-newsletter { padding: 60px 0; }
}

/* ===============================================
   SCROLL ANIMATIONS
=============================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-slow), transform .7s var(--ease-slow);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===============================================
   RESPONSIVE — 1100px
=============================================== */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .phases-grid { max-width: 680px; }
}

/* ===============================================
   RESPONSIVE — 900px
=============================================== */
@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .section { padding: 72px 0; }
  .two-col-layout { grid-template-columns: 1fr; gap: 44px; }
  .col-sticky { position: static; }
  .portfolio-snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .gov-layers { flex-direction: column; }
  .gov-arrow { transform: rotate(90deg); padding: 0 36px; }
  .leader-card { padding: 36px; flex-direction: column; gap: 28px; }
  .share-grid { flex-direction: column; }

  /* ── Mobile Navigation (hamburger menu) ── */
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--green-deep);
    flex-direction: column;
    align-items: stretch;   /* override desktop align-items:center so items fill full width */
    padding: 20px 24px 28px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 20px 50px rgba(0,0,0,.50);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.is-open {
    display: flex;
    animation: mobileNavIn .22s ease both;
  }
  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.85);
    width: 100%;
    text-align: left;
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-cta {
    border: none !important;
    margin-left: 0;
    color: var(--gold) !important;
    padding-left: 0;
  }
  .nav-arrow { display: none; }
  /* Force nav-link text to stay white on mobile regardless of navbar scroll state */
  .navbar.is-scrolled-light .nav-link:not(.nav-cta),
  .navbar.is-scrolled-dark  .nav-link:not(.nav-cta) {
    color: rgba(255,255,255,.85) !important;
  }
  .navbar.is-scrolled-light .nav-link:not(.nav-cta):hover,
  .navbar.is-scrolled-dark  .nav-link:not(.nav-cta):hover {
    color: var(--gold) !important;
  }
  /*
    Override the desktop `.navbar.is-scrolled-light .dropdown-menu` white background.
    Those rules have higher specificity, so we must match or exceed them here.
  */
  .dropdown-menu,
  .navbar.is-scrolled-light .dropdown-menu,
  .navbar.is-scrolled-dark  .dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 4px 16px;
    min-width: 0;
  }
  .dropdown-menu li a,
  .navbar.is-scrolled-light .dropdown-menu li a,
  .navbar.is-scrolled-dark  .dropdown-menu li a {
    padding: 9px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    color: rgba(255,255,255,.55) !important;
    background: transparent !important;
  }
  .dropdown-menu li a:hover,
  .navbar.is-scrolled-light .dropdown-menu li a:hover,
  .navbar.is-scrolled-dark  .dropdown-menu li a:hover {
    padding-left: 8px;
    color: var(--gold) !important;
    background: transparent !important;
  }
}

/* ===============================================
   RESPONSIVE — 768px (Mobile)
=============================================== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* ── Hero: release fixed viewport height, flow naturally ── */
  .hero {
    height: auto;
    min-height: 0;
    align-items: flex-start; /* top-align so content never overflows upward */
  }
  .hero-inner {
    padding-top: calc(var(--nav-h) + 56px); /* extra room to fully clear logo */
    padding-bottom: 60px;
  }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero-title {
    font-size: clamp(34px, 9vw, 52px);
    margin-bottom: 16px;
    line-height: 1.06;
  }
  .hero-tagline {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .hero-subtitle { display: none; } /* tagline covers it on mobile */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 220px;
    text-align: center;
  }
  .hero-stats {
    padding-top: 16px;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-number { font-size: 28px; }
  .stat-sep { display: none; }
  .hero-scroll { display: none; }
  .hero-dots { bottom: 16px; }

  /* ── Other layout resets ── */
  .portfolio-snapshot-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ===============================================
   RESPONSIVE — 480px
=============================================== */
@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .h2 { font-size: 30px; }
  .leadership-card { padding: 28px 20px; }
}
