/* ═══════════════════════════════════════════════
   ZERIVON INDUSTRIES
   Redesigned — Corelix Structure, New Identity
   Color Palette: Deep Forest Green + Burnished Copper
   ═══════════════════════════════════════════════ */

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

:root {
  --forest:     #0d2318;
  --deep-forest:#081710;
  --mid-forest: #163b27;
  --copper:     #b5722a;
  --copper-light:#d4913c;
  --copper-pale: #e8b86d;
  --off-white:  #f5f3ee;
  --cream:      #fdfbf7;
  --text-body:  #3a3530;
  --text-light: rgba(255,255,255,0.88);
  --text-muted: rgba(255,255,255,0.55);
  --divider-dark: rgba(181,114,42,0.45);
  --divider-light: rgba(181,114,42,0.3);
  --card-border: rgba(181,114,42,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-title.light { color: #fff; }
.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 620px;
}
.section-body.light { color: var(--text-light); }
.divider {
  width: 48px;
  height: 2px;
  background: var(--copper);
  margin: 18px 0 30px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: var(--deep-forest);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-left { display: flex; align-items: center; gap: 20px; }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* logo in nav */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 38px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

/* search */
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 6px 12px;
}
.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  width: 120px;
}
.nav-search input::placeholder { color: rgba(255,255,255,0.5); }

/* ── SIDE MENU ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,23,16,0.7);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.side-menu {
  position: fixed;
  top: 0; left: 0;
  width: 340px;
  height: 100vh;
  background: var(--deep-forest);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.side-menu.open { transform: translateX(0); }

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(181,114,42,0.2);
}
.menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.menu-close:hover { color: var(--copper-light); }

.menu-section { border-bottom: 1px solid rgba(255,255,255,0.06); }
.menu-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.menu-section-title:hover { color: var(--copper-light); }
.menu-chevron {
  font-size: 10px;
  transition: transform 0.3s;
}
.menu-section.expanded .menu-chevron { transform: rotate(180deg); }

.menu-items {
  display: none;
  flex-direction: column;
  padding: 0 0 12px;
}
.menu-section.expanded .menu-items { display: flex; }

.menu-item {
  padding: 9px 24px 9px 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, padding-left 0.2s;
  border-left: 2px solid transparent;
}
.menu-item:hover {
  color: #fff;
  padding-left: 36px;
  border-left-color: var(--copper);
}
.menu-item.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 12px 24px 6px;
}
.menu-item.active-page { color: var(--copper-light); }

.menu-footer {
  margin-top: auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-footer-link {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: color 0.2s;
}
.menu-footer-link:hover { color: var(--copper-light); }

/* ── FLOATING BADGES ── */
.floating-badges {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contract-badge {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: var(--deep-forest);
  padding: 18px 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.82em;
  box-shadow: 0 8px 32px rgba(181,114,42,0.4);
  animation: badge-glow 3s ease-in-out infinite;
  max-width: 140px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.contract-badge:hover { transform: translateY(-3px) scale(1.03); }
.contract-badge::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s infinite;
}
.contract-badge .years {
  font-size: 1.9em;
  display: block;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}
.contract-badge .text {
  font-size: 0.78em;
  display: block;
  margin-top: 5px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.billion-badge {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep-forest) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(8,23,16,0.5);
  animation: badge-pulse 3s ease-in-out infinite;
  border: 2.5px solid var(--copper);
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
  position: relative;
}
.billion-badge::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg, var(--copper), var(--copper-light), var(--copper));
  border-radius: 50%;
  z-index: -1;
  animation: rotate-border 4s linear infinite;
  opacity: 0.5;
}
.billion-badge:hover { transform: scale(1.07); }
.billion-badge .dollar { font-size: 2.3em; line-height: 1; font-family: 'Cormorant Garamond', serif; }
.billion-badge .amount { font-size: 1.7em; line-height: 1; margin-top: -4px; font-family: 'Cormorant Garamond', serif; }
.billion-badge .subtext { font-size: 0.65em; margin-top: 6px; font-weight: 700; letter-spacing: 1.5px; }

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(181,114,42,0.4); }
  50% { box-shadow: 0 8px 44px rgba(181,114,42,0.65), 0 0 20px rgba(181,114,42,0.25); }
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(8,23,16,0.5), 0 0 0 0 rgba(181,114,42,0.3); }
  50% { box-shadow: 0 12px 48px rgba(8,23,16,0.6), 0 0 0 8px rgba(181,114,42,0); }
}
@keyframes shimmer {
  0% { transform: rotate(45deg) translate(-100%, -100%); }
  100% { transform: rotate(45deg) translate(100%, 100%); }
}
@keyframes rotate-border {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--mid-forest);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,23,16,0.8) 40%, rgba(8,23,16,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 56px;
  max-width: 900px;
}
.page-hero-breadcrumb {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}
.page-hero-breadcrumb a { color: var(--copper-light); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
}

/* ── HERO HOMEPAGE (slideshow) ── */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep-forest);
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  filter: brightness(0.85);
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,23,16,0.92) 0%,
    rgba(8,23,16,0.5) 50%,
    rgba(8,23,16,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6.5vw, 86px);
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--copper-light);
  width: 22px;
  border-radius: 3px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 2px;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--forest);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  border-radius: 2px;
}
.btn-white:hover { background: var(--copper-pale); transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--forest);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid var(--forest);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  border-radius: 2px;
}
.btn-outline-dark:hover { background: var(--forest); color: #fff; }

/* ── SECTIONS ── */
.section {
  padding: 88px 60px;
}
.section-bg-white { background: var(--cream); }
.section-bg-off   { background: var(--off-white); }
.section-bg-forest { background: var(--forest); }
.section-bg-dark  { background: var(--deep-forest); }

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
}
.stat-label.light { color: var(--text-light); }

/* ── SPLIT GRID ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.split-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--card-border);
  padding: 36px 32px;
  border-radius: 2px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  box-shadow: 0 8px 40px rgba(13,35,24,0.1);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2em;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 12px;
}
.feature-card p { font-size: 14px; line-height: 1.75; color: #666; }

/* ── OPERATIONS GRID ── */
.operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.op-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  cursor: pointer;
  background: var(--mid-forest);
}
.op-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.op-card:hover .op-card-bg { transform: scale(1.05); }
.op-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,23,16,0.92) 0%, rgba(8,23,16,0.3) 100%);
  transition: background 0.4s;
}
.op-card:hover .op-card-overlay {
  background: linear-gradient(to top, rgba(8,23,16,0.98) 0%, rgba(8,23,16,0.5) 100%);
}
.op-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
}
.op-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--copper-light);
  margin-bottom: 10px;
}
.op-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.op-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
.op-card:hover .op-card-text { max-height: 100px; }
.op-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-light);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.op-card:hover .op-card-arrow { opacity: 1; transform: translateX(0); }

/* ── GALLERY ── */
.premium-gallery { margin-top: 40px; }
.gallery-container {
  position: relative;
  width: 100%;
  height: 480px;
  background: var(--mid-forest);
  overflow: hidden;
  border-radius: 2px;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8,23,16,0.7);
  border: 1px solid rgba(181,114,42,0.4);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 18px;
  transition: background 0.2s;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-prev:hover,
.gallery-next:hover { background: var(--copper); }
.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  z-index: 5;
  background: rgba(8,23,16,0.6);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── BOARD / LEADERSHIP GRID ── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.person-card {
  background: var(--off-white);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.person-card:hover { box-shadow: 0 8px 40px rgba(13,35,24,0.12); }
.person-photo {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center top;
  background-color: var(--mid-forest);
}
.person-info { padding: 24px 24px 28px; }
.person-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.person-title {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--copper);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.person-bio { font-size: 13px; line-height: 1.7; color: #666; }

/* ── JOB LISTINGS ── */
.job-listing {
  background: #fff;
  border: 1px solid var(--card-border);
  padding: 32px;
  margin-bottom: 16px;
  border-radius: 2px;
  border-left: 3px solid var(--copper);
  transition: box-shadow 0.2s;
}
.job-listing:hover { box-shadow: 0 6px 30px rgba(13,35,24,0.08); }
.job-dept {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.job-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 10px;
}
.job-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.job-tag {
  font-size: 12px;
  background: var(--off-white);
  padding: 4px 10px;
  border-radius: 2px;
  color: #666;
  border: 1px solid var(--card-border);
}
.job-desc { font-size: 14px; line-height: 1.75; color: #666; }

/* ── SUSTAINABILITY GRID ── */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.sustain-item {
  padding: 40px 36px;
  background: rgba(13,35,24,0.04);
  border: 1px solid var(--card-border);
  display: flex;
  gap: 20px;
}
.sustain-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  flex-shrink: 0;
}
.sustain-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 10px;
}
.sustain-text { font-size: 14px; line-height: 1.75; color: #555; }

/* ── INVESTOR CARDS ── */
.investor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.investor-card {
  background: var(--off-white);
  border: 1px solid var(--card-border);
  padding: 36px;
  display: flex;
  gap: 20px;
  border-radius: 2px;
  transition: box-shadow 0.3s;
}
.investor-card:hover { box-shadow: 0 8px 40px rgba(13,35,24,0.1); }
.investor-icon { font-size: 2em; flex-shrink: 0; }
.investor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 10px;
}
.investor-text { font-size: 13px; line-height: 1.75; color: #666; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(181,114,42,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  flex-shrink: 0;
}
.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 4px;
}
.contact-value { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--copper-light); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--forest); color: #fff; }

/* ── CTA BAND ── */
.cta-band {
  padding: 72px 60px;
  text-align: center;
}
.cta-band.forest { background: var(--forest); }
.cta-band.copper { background: var(--copper); }
.cta-band .section-title { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 15px; }

/* ── HISTORY TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 760px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--copper), var(--copper-pale));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--copper);
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-text { font-size: 14px; line-height: 1.75; color: #555; }

/* ── SUSTAINABILITY STATS ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.stats-strip-item {
  padding: 36px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(181,114,42,0.15);
  text-align: center;
}
.stats-strip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--copper-light);
  line-height: 1;
}
.stats-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ── READ MORE LINK ── */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.read-more:hover { color: var(--forest); border-color: var(--forest); }

/* ── FOOTER ── */
.footer { background: var(--deep-forest); }
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 60px 48px;
}
.footer-logo-img { height: 44px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand-text { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-group h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.footer-group a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-group a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── COOKIE BAR ── */
.cookie-bar {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  background: var(--forest);
  border-top: 1px solid rgba(181,114,42,0.3);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9000;
  transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-bar.show { bottom: 0; }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.8); }
.cookie-text a { color: var(--copper-light); border-bottom: 1px solid rgba(181,114,42,0.4); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--copper);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--copper-light); }
.cookie-manage {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-manage:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .section { padding: 60px 32px; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 32px 32px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 0 32px 60px; }
  .page-hero-content { padding: 0 32px 40px; }
}
@media (max-width: 640px) {
  .floating-badges { right: 12px; gap: 10px; }
  .contract-badge { max-width: 110px; padding: 12px 10px; }
  .billion-badge { width: 100px; height: 100px; }
  .billion-badge .dollar { font-size: 1.8em; }
  .billion-badge .amount { font-size: 1.3em; }
  .section { padding: 48px 20px; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 24px 28px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .hero-dots { right: 20px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
}
