/* ═══════════════════════════════════════════════
   ZERIVON INDUSTRIES — Redesigned
   Color: Deep Forest Green + Burnished Copper
   v2 — Larger text, bolder weights, fast fonts
   ═══════════════════════════════════════════════ */

/* PERFORMANCE: Use system fonts first, load Google Fonts async via JS */
:root {
  --forest:      #0d2318;
  --deep-forest: #081710;
  --mid-forest:  #163b27;
  --copper:      #b5722a;
  --copper-light:#d4913c;
  --copper-pale: #e8b86d;
  --off-white:   #f5f3ee;
  --cream:       #fdfbf7;
  --text-body:   #2a2520;
  --text-light:  rgba(255,255,255,0.92);
  --text-muted:  rgba(255,255,255,0.6);
  --card-border: rgba(181,114,42,0.2);
  /* Font stack — fast, no external dependency */
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   'Segoe UI', Arial, Helvetica, sans-serif;
  --font-cond:   'Arial Narrow', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-title.light { color: #fff; }
.section-body {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 640px;
}
.section-body.light { color: var(--text-light); }
.divider {
  width: 52px;
  height: 3px;
  background: var(--copper);
  margin: 18px 0 32px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  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 {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 7px 14px;
}
.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  width: 130px;
}
.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.72);
  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: 360px;
  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: 22px 26px;
  border-bottom: 1px solid rgba(181,114,42,0.22);
}
.menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.menu-close:hover { color: var(--copper-light); }

.menu-section { border-bottom: 1px solid rgba(255,255,255,0.07); }
.menu-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.menu-section-title:hover { color: var(--copper-light); }
.menu-chevron { font-size: 11px; transition: transform 0.3s; }
.menu-section.expanded .menu-chevron { transform: rotate(180deg); }

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

.menu-item {
  padding: 10px 26px 10px 36px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s, padding-left 0.2s;
  border-left: 2px solid transparent;
}
.menu-item:hover {
  color: #fff;
  padding-left: 40px;
  border-left-color: var(--copper);
}
.menu-item.heading {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 14px 26px 6px;
}
.menu-item.active-page { color: var(--copper-light); }

.menu-footer {
  margin-top: auto;
  padding: 22px 26px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-footer-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.48);
  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;
  align-items: center;
}

/* CONTRACT BADGE — vibrant gold, bouncing glow */
.contract-badge {
  background: linear-gradient(145deg, #c8922a 0%, #e8b86d 50%, #c8922a 100%);
  color: #0d2318;
  padding: 20px 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 800;
  max-width: 148px;
  width: 148px;
  display: block;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: badge-bounce 2.8s ease-in-out infinite;
  box-shadow:
    0 8px 28px rgba(200,146,42,0.55),
    0 2px 8px rgba(200,146,42,0.3);
  transition: transform 0.25s;
  border: 2px solid rgba(255,255,255,0.25);
}
.contract-badge:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 14px 40px rgba(200,146,42,0.7),
    0 4px 14px rgba(200,146,42,0.4);
}
/* shimmer sweep */
.contract-badge::after {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 220%; height: 220%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.35) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translateX(-100%);
  animation: badge-shimmer 2.8s ease-in-out infinite;
}
.contract-badge .years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1em;
  font-weight: 700;
  display: block;
  line-height: 1;
  color: #0d2318;
  letter-spacing: 1px;
}
.contract-badge .text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72em;
  display: block;
  margin-top: 6px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0d2318;
}

/* BILLION BADGE — deep navy circle, spinning border, pulsing */
.billion-badge {
  width: 138px;
  height: 138px;
  background: linear-gradient(145deg, #0d2318 0%, #163b27 60%, #0d2318 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #e8b86d;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
  position: relative;
  border: 3px solid #b5722a;
  animation: badge-pulse 2.8s ease-in-out infinite;
  box-shadow:
    0 10px 36px rgba(8,23,16,0.6),
    0 0 0 0 rgba(181,114,42,0.4);
}
/* spinning gold ring */
.billion-badge::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #b5722a 0deg,
    #e8b86d 90deg,
    #c8922a 180deg,
    #e8b86d 270deg,
    #b5722a 360deg
  );
  z-index: -1;
  animation: spin-ring 3s linear infinite;
}
/* inner mask to keep circle clean */
.billion-badge::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d2318 0%, #163b27 60%, #0d2318 100%);
  z-index: 0;
}
/* bring text above the mask */
.billion-badge .dollar,
.billion-badge .amount,
.billion-badge .subtext {
  position: relative;
  z-index: 1;
}
.billion-badge:hover { transform: scale(1.08) rotate(3deg); }
.billion-badge .dollar {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  line-height: 1;
  color: #e8b86d;
  font-weight: 600;
}
.billion-badge .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1em;
  line-height: 1;
  margin-top: -4px;
  color: #e8b86d;
  font-weight: 700;
  letter-spacing: 1px;
}
.billion-badge .subtext {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62em;
  margin-top: 5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,184,109,0.8);
}

/* KEYFRAMES */
@keyframes badge-bounce {
  0%   { transform: translateY(0);    box-shadow: 0 8px 28px rgba(200,146,42,0.55), 0 2px 8px rgba(200,146,42,0.3); }
  30%  { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(200,146,42,0.7), 0 6px 16px rgba(200,146,42,0.35); }
  50%  { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(200,146,42,0.6), 0 4px 12px rgba(200,146,42,0.3); }
  70%  { transform: translateY(-9px); box-shadow: 0 20px 44px rgba(200,146,42,0.72), 0 6px 18px rgba(200,146,42,0.38); }
  100% { transform: translateY(0);    box-shadow: 0 8px 28px rgba(200,146,42,0.55), 0 2px 8px rgba(200,146,42,0.3); }
}
@keyframes badge-shimmer {
  0%   { transform: rotate(45deg) translateX(-120%); opacity: 0; }
  20%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: rotate(45deg) translateX(120%); opacity: 0; }
}
@keyframes badge-pulse {
  0%   { box-shadow: 0 10px 36px rgba(8,23,16,0.6), 0 0 0 0   rgba(181,114,42,0.5); }
  50%  { box-shadow: 0 14px 48px rgba(8,23,16,0.7), 0 0 0 12px rgba(181,114,42,0); }
  100% { box-shadow: 0 10px 36px rgba(8,23,16,0.6), 0 0 0 0   rgba(181,114,42,0.5); }
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@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: 480px;
  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.82) 40%, rgba(8,23,16,0.42) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 60px;
  max-width: 920px;
}
.page-hero-breadcrumb {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  font-family: var(--font-cond);
  text-transform: uppercase;
}
.page-hero-breadcrumb a { color: var(--copper-light); }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}

/* ── HERO HOMEPAGE ── */
.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.93) 0%,
    rgba(8,23,16,0.5) 50%,
    rgba(8,23,16,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 90px;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.5vw, 90px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 42px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 30px;
  right: 64px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 7px; height: 7px;
  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: 24px;
  border-radius: 3px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #fff;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  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: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1.5px solid rgba(255,255,255,0.55);
  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.1); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--forest);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  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: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 2px 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: 90px 64px; }
.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: 44px; flex-wrap: wrap; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-top: 5px;
  font-family: var(--font-cond);
}
.stat-label.light { color: var(--text-light); }

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

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--card-border);
  padding: 38px 34px;
  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: 2.2em; margin-bottom: 18px; }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.feature-card p { font-size: 16px; font-weight: 500; line-height: 1.8; color: #444; }

/* ── OPERATIONS GRID ── */
.operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3px;
  margin-top: 52px;
}
.op-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  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.93) 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.52) 100%);
}
.op-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 34px;
  z-index: 2;
}
.op-card-num {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--copper-light);
  margin-bottom: 10px;
}
.op-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.op-card-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
.op-card:hover .op-card-text { max-height: 110px; }
.op-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  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: 500px;
  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.72);
  border: 1px solid rgba(181,114,42,0.45);
  color: #fff;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 20px;
  font-weight: 700;
  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: 18px; right: 22px;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  z-index: 5;
  background: rgba(8,23,16,0.65);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ── PEOPLE GRID ── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 3px;
  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.13); }
.person-photo {
  width: 100%;
  height: 270px;
  background-size: cover;
  background-position: center top;
  background-color: var(--mid-forest);
}
.person-info { padding: 26px 26px 30px; }
.person-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 5px;
}
.person-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--copper);
  font-family: var(--font-cond);
  text-transform: uppercase;
  margin-bottom: 13px;
}
.person-bio { font-size: 15px; font-weight: 500; line-height: 1.75; color: #444; }

/* ── JOB LISTINGS ── */
.job-listing {
  background: #fff;
  border: 1px solid var(--card-border);
  padding: 36px;
  margin-bottom: 18px;
  border-radius: 2px;
  border-left: 4px solid var(--copper);
  transition: box-shadow 0.2s;
}
.job-listing:hover { box-shadow: 0 6px 30px rgba(13,35,24,0.09); }
.job-dept {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 7px;
}
.job-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.job-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.job-tag {
  font-size: 13px;
  font-weight: 600;
  background: var(--off-white);
  padding: 5px 12px;
  border-radius: 2px;
  color: #555;
  border: 1px solid var(--card-border);
}
.job-desc { font-size: 16px; font-weight: 500; line-height: 1.8; color: #444; }

/* ── SUSTAINABILITY GRID ── */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3px;
  margin-top: 52px;
}
.sustain-item {
  padding: 42px 38px;
  background: rgba(13,35,24,0.04);
  border: 1px solid var(--card-border);
  display: flex;
  gap: 22px;
}
.sustain-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  flex-shrink: 0;
}
.sustain-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 11px;
}
.sustain-text { font-size: 16px; font-weight: 500; line-height: 1.8; color: #444; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.contact-icon-box {
  width: 44px; height: 44px;
  background: rgba(181,114,42,0.16);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3em;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 4px;
}
.contact-value { font-size: 16px; font-weight: 500; color: var(--text-light); line-height: 1.65; }
.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.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  padding: 13px 17px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  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: 130px; resize: vertical; }
.form-group select option { background: var(--forest); color: #fff; }

/* ── CTA BAND ── */
.cta-band { padding: 76px 64px; text-align: center; }
.cta-band.forest { background: var(--forest); }
.cta-band.copper { background: var(--copper); }
.cta-band .section-title { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 34px; font-size: 18px; font-weight: 500; }

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 780px;
}
.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: 44px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -43px; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--copper);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--copper);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 6px;
}
.timeline-text { font-size: 16px; font-weight: 500; line-height: 1.8; color: rgba(255,255,255,0.78); }

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.stats-strip-item {
  padding: 38px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(181,114,42,0.16);
  text-align: center;
}
.stats-strip-num {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
}
.stats-strip-label {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 9px;
}

/* ── READ MORE ── */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  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: 68px 64px 52px;
}
.footer-logo-img { height: 46px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-brand-text { font-size: 15px; font-weight: 500; line-height: 1.75; color: rgba(255,255,255,0.52); max-width: 270px; }
.footer-group h4 {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.footer-group a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.52);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-group a:hover { color: #fff; }
.footer-bottom {
  padding: 22px 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-legal a:hover { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.28); }

/* ── COOKIE BAR ── */
.cookie-bar {
  position: fixed;
  bottom: -120px;
  left: 0; right: 0;
  background: var(--forest);
  border-top: 1px solid rgba(181,114,42,0.3);
  padding: 18px 44px;
  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: 15px; font-weight: 500; color: rgba(255,255,255,0.85); }
.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: 9px 22px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  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.65);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 18px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  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.55); 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); }

/* ── INLINE BULLET LISTS ── */
li[style*="border-left"] {
  font-size: 16px !important;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .section { padding: 64px 36px; }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 52px 36px 36px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 0 36px 64px; }
  .page-hero-content { padding: 0 36px 44px; }
  .footer-bottom { padding: 22px 36px; }
}
@media (max-width: 640px) {
  .floating-badges { right: 10px; gap: 12px; }
  .contract-badge { max-width: 118px; width: 118px; padding: 14px 10px; }
  .billion-badge { width: 100px; height: 100px; border-radius: 50%; }
  .billion-badge .dollar { font-size: 1em; }
  .billion-badge .amount { font-size: 1.6em; }
  .billion-badge .subtext { font-size: 0.52em; }

  /* Layout */
  .section { padding: 44px 18px; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 22px 28px; }
  .footer-bottom { padding: 16px 22px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-dots { right: 18px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 20px; }

  /* Mobile typography improvements */
  .section-title { font-size: clamp(24px, 7vw, 34px); }
  .page-hero-title { font-size: clamp(28px, 9vw, 48px); }
  .hero-title { font-size: clamp(32px, 9.5vw, 52px); }
  .hero-sub { font-size: 14px; }
  .section-body { font-size: 14px; }
  .feature-card h3 { font-size: 19px; }
  .person-name { font-size: 18px; }
  .job-title { font-size: 20px; }
  .sustain-title { font-size: 18px; }
  .sustain-num { font-size: 38px; }
  .stat-number { font-size: 34px; }
  .stats-strip-num { font-size: 36px; }
  .op-card-title { font-size: 22px; }
  .section-label { font-size: 10px; }
  .footer-group h4 { font-size: 10px; }
  .footer-group a { font-size: 13px; }
  .footer-brand-text { font-size: 13px; }
  .footer-copy { font-size: 11px; }
  .footer-legal a { font-size: 11px; }
  .page-hero-content { padding: 0 20px 32px; }
  .hero-content { padding: 0 20px 56px; }
  .hero-eyebrow { font-size: 10px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline, .btn-white { font-size: 12px; padding: 12px 22px; }
  .cta-band p { font-size: 13px; }
  .job-meta { gap: 8px; }
  .job-tag { font-size: 11px; }
  .contact-label { font-size: 10px; }
  .contact-value { font-size: 13px; }
  .timeline-year { font-size: 18px; }
  .timeline-text { font-size: 13px; }
}
