@import url("../../../shared/css/design-tokens.css");

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

:root {
  --primary: #1a5c32;
  --primary-dark: #0e3a1e;
  --primary-light: #2d8a4e;
  --accent: #c8973e;
  --accent-light: #dbb06a;
  --accent-soft: rgba(200,151,62,0.16);
  --bg: #f8f9f6;
  --bg-warm: #faf8f4;
  --text: #1a2332;
  --text-light: #5a6675;
  --text-muted: #8a94a0;
  --border: #e4e8e0;
  --card: #ffffff;
  --white: #ffffff;
  --font-heading: var(--wg-font-heading);
  --font-body: var(--wg-font-body);
  --radius: var(--wg-radius-xl);
  --shadow-sm: 0 2px 8px rgba(26,92,50,0.06);
  --shadow-md: 0 8px 30px rgba(26,92,50,0.1);
  --shadow-lg: 0 20px 60px rgba(26,92,50,0.12);
  --shadow-xl: 0 28px 72px rgba(11, 44, 24, 0.2);
  --gradient-primary: linear-gradient(135deg, #0e3a1e, #1a5c32, #2d8a4e);
  --gradient-hero: linear-gradient(135deg, rgba(14,58,30,0.88) 0%, rgba(26,92,50,0.55) 50%, rgba(0,0,0,0.3) 100%);
  --gradient-gold: linear-gradient(135deg, #c8973e, #dbb06a);
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: var(--wg-font-size-base);
  color: var(--text);
  background: var(--bg);
  line-height: var(--wg-line-height-relaxed);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: var(--wg-line-height-tight); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--wg-container-max); margin: 0 auto; padding: 0 var(--wg-container-padding); }

/* ========= NAVBAR ========= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(14,58,30,0.88); backdrop-filter: blur(20px);
  box-shadow: 0 10px 32px rgba(6, 20, 10, 0.24); padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease, height 0.3s ease;
}

.navbar:not(.scrolled) .nav-logo img { filter: none; }
.navbar.scrolled .nav-logo img { filter: none; height: 52px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  height: 2px; width: 0; background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.navbar:not(.scrolled) .nav-links a { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--accent-light); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px; margin: 6px 0;
  background: var(--white); transition: all 0.3s;
}
.navbar.scrolled .mobile-toggle span { background: var(--white); }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; color: var(--text); font-weight: 500; font-size: 1rem; }
/* ========= HERO SLIDER ========= */
.hero {
  position: relative; height: min(100vh, 880px); min-height: 820px; overflow: hidden;
  background: #102715;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease, transform 1.2s ease;
  background-size: cover; background-position: center; transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(200,151,62,0.16) 0%, transparent 24%),
    linear-gradient(108deg, rgba(11,44,24,0.92) 0%, rgba(16,63,34,0.68) 42%, rgba(9,22,13,0.52) 100%);
}
.hero-content {
  position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column;
  justify-content: center; max-width: 1320px; margin: 0 auto; padding: 122px 32px 156px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 410px);
  gap: 36px;
  align-items: start;
}
.hero-inner { max-width: 620px; }
.hero-tag {
  display: inline-block; font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--accent-light); background: rgba(200,151,62,0.1);
  padding: 14px 20px; border-radius: 999px; margin-bottom: 24px;
  border: 1px solid rgba(200,151,62,0.16); backdrop-filter: blur(8px);
  max-width: fit-content;
}
.hero h1 {
  font-size: clamp(3.2rem, 5vw, 4.7rem); font-weight: 700; color: var(--white);
  margin-bottom: 18px; line-height: 0.92; letter-spacing: -0.06em; max-width: 8.2ch;
}
.hero h1 .accent { color: var(--accent); }
.hero-desc {
  font-size: 1.04rem; color: rgba(255,255,255,0.86); line-height: 1.68;
  max-width: 34ch; margin-bottom: 24px;
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-bottom: 22px;
}
.hero-highlight {
  padding: 16px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(4, 16, 8, 0.18);
}
.hero-highlight strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.hero-highlight span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-panel {
  justify-self: end;
  width: 100%;
  max-width: 390px;
  margin-top: 18px;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(8,27,15,0.62) 0%, rgba(7,19,11,0.78) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
}
.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hero-panel-label {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
}
.hero-panel-index {
  font-family: var(--font-heading);
  font-size: 2.65rem;
  color: rgba(255,255,255,0.24);
  line-height: 1;
}
.hero-panel-title {
  color: var(--white);
  font-size: 1.68rem;
  margin-bottom: 14px;
}
.hero-panel-copy {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 18px;
}
.hero-metric {
  padding: 16px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-metric strong {
  display: block;
  font-size: 1.34rem;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-metric span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}
.hero-panel-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-panel-kicker {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.hero-panel-focus {
  display: block;
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.58;
}
.hero .btn-primary,
.hero .btn-outline {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
}
.hero .btn-primary {
  background: linear-gradient(135deg, #d2a24a 0%, #b88325 100%);
  color: #102715;
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}
.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.28);
}
.hero .btn-outline {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(8,27,15,0.28);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-primary {
  padding: 14px 32px; background: var(--gradient-primary); color: var(--white);
  border-radius: 0; font-weight: 600; font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(26,92,50,0.3); transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,92,50,0.4); }
.btn-outline {
  padding: 14px 32px; border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  border-radius: 0; font-weight: 600; font-family: var(--font-body);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 11;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.hero-indicators {
  display: flex; gap: 12px; z-index: 10;
}
.hero-indicators button {
  min-width: 132px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  text-align: left;
  backdrop-filter: blur(10px);
}
.hero-indicators button span {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.hero-indicators button.active {
  background: rgba(200,151,62,0.18);
  border-color: rgba(200,151,62,0.4);
  color: var(--white);
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 10;
  color: rgba(255,255,255,0.5);
}
.hero-scroll span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2px; }
.hero-scroll-line {
  width: 1px; height: 42px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 100%;
  background: var(--accent); animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }
.hero-frame {
  position: absolute;
  inset: 108px 32px 74px;
  pointer-events: none;
  z-index: 6;
}
.hero-frame-line,
.hero-frame-corner {
  position: absolute;
  background: rgba(255,255,255,0.12);
}
.hero-frame-line-left,
.hero-frame-line-right {
  top: 0;
  bottom: 0;
  width: 1px;
}
.hero-frame-line-left { left: 0; }
.hero-frame-line-right { right: 0; }
.hero-frame-corner-top,
.hero-frame-corner-bottom {
  left: 0;
  width: 110px;
  height: 1px;
}
.hero-frame-corner-top { top: 0; }
.hero-frame-corner-bottom { bottom: 0; }
.hero-mobile-summary {
  display: none;
}
.hero-mobile-card {
  margin: 20px 24px 0;
  padding: 20px;
  background: rgba(8,27,15,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.hero-mobile-card span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.hero-panel-focus-mobile {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}
.hero-panel-copy-mobile {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

/* Floating particles */
.hero-particles {
  position: absolute; inset: 0; z-index: 5; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  top: -12%;
  left: 0;
  width: 18px;
  height: 12px;
  background: linear-gradient(135deg, rgba(214, 177, 93, 0.72), rgba(118, 163, 70, 0.78));
  border-radius: 2px 14px 2px 14px;
  box-shadow: 0 8px 18px rgba(7, 19, 11, 0.14);
  opacity: 0;
  transform-origin: center center;
  animation: leafFall linear infinite;
}
.particle::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
}
.particle::after {
  content: '';
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.28);
  transform: translateX(-50%) rotate(12deg);
}
@keyframes leafFall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg) scale(0.92);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  25% {
    transform: translate3d(var(--leaf-drift-a, 22px), 22vh, 0) rotate(80deg) scale(1);
  }
  50% {
    transform: translate3d(var(--leaf-drift-b, -18px), 48vh, 0) rotate(168deg) scale(0.98);
    opacity: 0.86;
  }
  75% {
    transform: translate3d(var(--leaf-drift-c, 28px), 74vh, 0) rotate(250deg) scale(0.96);
    opacity: 0.76;
  }
  100% {
    transform: translate3d(var(--leaf-drift-d, -12px), 112vh, 0) rotate(340deg) scale(0.9);
    opacity: 0;
  }
}

/* ========= STATS BAR ========= */
.stats-bar {
  background: linear-gradient(180deg, #f7faf7 0%, #eef4ee 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(26,92,50,0.06), transparent 24%),
    radial-gradient(circle at bottom right, rgba(200,151,62,0.08), transparent 20%);
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent 15%, transparent 85%, rgba(255,255,255,0.45));
  opacity: 0.5;
}
.stats-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.stats-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: center;
}
.stats-intro::before {
  content: '';
}
.stats-intro::after {
  content: none;
}
.stats-kicker {
  display: inline-flex;
  align-self: flex-start;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: center;
}
.stats-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.stats-intro p {
  margin: 0;
  color: var(--text-light);
  max-width: 52rem;
  font-size: 1rem;
  line-height: 1.7;
}
.stats-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.stats-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 0;
  background: rgba(26,92,50,0.06);
  border: 1px solid rgba(26,92,50,0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stats-signal {
  display: none;
}
.stats-signal-copy span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255,255,255,0.48);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stats-signal-copy strong {
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
}
.stats-signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  min-width: 86px;
}
.stats-signal-bars span {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200,151,62,0.95), rgba(200,151,62,0.28));
}
.stats-signal-bars span:nth-child(1) { height: 12px; }
.stats-signal-bars span:nth-child(2) { height: 20px; }
.stats-signal-bars span:nth-child(3) { height: 16px; }
.stats-signal-bars span:nth-child(4) { height: 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}
.stat-item {
  position: relative;
  overflow: hidden;
  color: var(--text);
  padding: 24px 22px 22px;
  border-radius: 0;
  border: 1px solid rgba(26,92,50,0.08);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent 30%);
  pointer-events: none;
}
.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(26,92,50,0.14);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.1);
}
.stat-item-featured {
  background:
    linear-gradient(180deg, rgba(26,92,50,0.06) 0%, rgba(255,255,255,0.92) 100%);
}
.stat-item-accent {
  background:
    linear-gradient(180deg, rgba(200,151,62,0.07) 0%, rgba(255,255,255,0.92) 100%);
}
.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}
.stat-index,
.stat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 0;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stat-index {
  background: rgba(17,24,39,0.04);
  border: 1px solid rgba(17,24,39,0.06);
  color: rgba(17,24,39,0.56);
}
.stat-chip {
  background: rgba(26,92,50,0.06);
  border: 1px solid rgba(26,92,50,0.08);
  color: var(--primary);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: none;
}
.stat-item-featured .stat-number {
  font-size: clamp(2.3rem, 3vw, 3rem);
}
.stat-label {
  font-size: 0.76rem;
  margin-top: 10px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
  font-weight: 700;
}
.stat-note {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: none;
}
.stat-meta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(17,24,39,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.stat-meta span {
  color: rgba(17,24,39,0.46);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stat-meta strong {
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stat-divider { display: none; }

/* ========= SECTION COMMON ========= */
.section { padding: 100px 0; }
.services-section,
.operations-section,
.bg-surface,
.contact-section,
.canopy-section,
.grove-section {
  position: relative;
  overflow: hidden;
}

.services-section::before,
.operations-section::before,
.bg-surface::before,
.contact-section::before,
.canopy-section::before,
.grove-section::before,
.services-section::after,
.operations-section::after,
.bg-surface::after,
.contact-section::after,
.canopy-section::after,
.grove-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-repeat: no-repeat;
  background-size: contain;
}

.services-section::before {
  width: 180px;
  height: 180px;
  top: 44px;
  right: -22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M63 14c21 10 33 29 33 49 0 28-21 44-46 44-8 0-16-2-23-6 0-2 0-4 1-7 4-25 19-46 35-80Z' fill='%23c8973e' fill-opacity='.22'/%3E%3Cpath d='M61 18c5 20 4 45-7 83' stroke='%231a5c32' stroke-opacity='.42' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M53 57c8-3 17-9 24-17' stroke='%231a5c32' stroke-opacity='.22' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(12deg);
}

.services-section::after {
  width: 210px;
  height: 210px;
  bottom: 20px;
  left: -38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140' fill='none'%3E%3Cpath d='M74 18c25 12 39 34 39 57 0 31-24 49-53 49-10 0-18-2-27-7 1-3 1-5 2-8 4-29 22-53 39-91Z' fill='%231a5c32' fill-opacity='.12'/%3E%3Cpath d='M72 22c6 23 5 51-8 95' stroke='%23c8973e' stroke-opacity='.38' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M62 66c11-4 22-11 31-22' stroke='%23c8973e' stroke-opacity='.22' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(-12deg);
}

.operations-section::before {
  width: 220px;
  height: 220px;
  top: 34px;
  left: -52px;
  background-image: radial-gradient(circle, rgba(200,151,62,0.18) 0%, rgba(200,151,62,0.08) 36%, transparent 72%);
  filter: blur(6px);
}

.operations-section::after {
  width: 190px;
  height: 190px;
  right: 24px;
  bottom: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M58 20c18 8 30 25 30 44 0 25-19 40-41 40-7 0-14-2-20-5 0-2 1-4 1-6 3-22 16-41 30-73Z' fill='%231a5c32' fill-opacity='.16'/%3E%3Cpath d='M57 23c4 18 3 40-6 75' stroke='%23c8973e' stroke-opacity='.34' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(36deg);
}

.bg-surface::before {
  width: 230px;
  height: 230px;
  top: 28px;
  right: -34px;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160' fill='none'%3E%3Cpath d='M108 22c18 16 28 37 28 59 0 31-20 56-49 56-15 0-30-6-41-15 6-31 27-57 62-100Z' fill='%23c8973e' fill-opacity='.16'/%3E%3Cpath d='M108 24c-8 20-18 40-46 79' stroke='%231a5c32' stroke-opacity='.3' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M85 58c18 4 33 2 46-6' stroke='%231a5c32' stroke-opacity='.22' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M72 80c16 5 30 4 43-3' stroke='%231a5c32' stroke-opacity='.18' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(8deg);
}

.bg-surface::after {
  width: 210px;
  height: 210px;
  right: 18px;
  bottom: 12px;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 150' fill='none'%3E%3Cpath d='M40 20c14 14 22 34 22 54 0 30-18 52-46 57-4-8-6-17-6-26 0-33 18-60 30-85Z' fill='%231a5c32' fill-opacity='.14'/%3E%3Cpath d='M41 24c10 22 15 44 14 83' stroke='%23c8973e' stroke-opacity='.34' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M51 58c13-3 26-10 37-21' stroke='%23c8973e' stroke-opacity='.18' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(-28deg);
}

.contact-section::before {
  width: 250px;
  height: 250px;
  top: -22px;
  left: -54px;
  opacity: 0.14;
  background-image: radial-gradient(circle, rgba(200,151,62,0.22) 0%, rgba(200,151,62,0.08) 38%, transparent 74%);
  filter: blur(8px);
}

.contact-section::after {
  width: 220px;
  height: 220px;
  bottom: 20px;
  left: -28px;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140' fill='none'%3E%3Cpath d='M40 104c11-29 31-53 65-77 4 27-2 51-18 70-12 15-29 25-47 29Z' fill='%231a5c32' fill-opacity='.14'/%3E%3Cpath d='M42 101c23-18 42-36 61-68' stroke='%23c8973e' stroke-opacity='.32' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M60 76c13 5 25 6 37 1' stroke='%23c8973e' stroke-opacity='.18' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(-6deg);
}

.canopy-section::before {
  width: 280px;
  height: 180px;
  top: -12px;
  right: 24px;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 140' fill='none'%3E%3Cpath d='M22 14c28 12 49 27 63 44 15 17 23 37 23 58' stroke='%231a5c32' stroke-opacity='.18' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M72 24c14 6 27 17 34 34' stroke='%23c8973e' stroke-opacity='.3' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M112 32c14 7 25 18 31 33' stroke='%231a5c32' stroke-opacity='.22' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M145 18c13 6 24 17 30 31' stroke='%23c8973e' stroke-opacity='.24' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M84 48c10-17 20-25 30-31' stroke='%231a5c32' stroke-opacity='.18' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.canopy-section::after {
  width: 170px;
  height: 170px;
  bottom: 26px;
  left: -26px;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M76 14c15 10 23 25 23 42 0 25-18 42-42 46-9-10-14-22-14-35 0-20 10-38 33-53Z' fill='%23c8973e' fill-opacity='.18'/%3E%3Cpath d='M75 18c-3 18-10 38-28 70' stroke='%231a5c32' stroke-opacity='.3' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(18deg);
}

.grove-section::before {
  width: 240px;
  height: 240px;
  top: 18px;
  left: -40px;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 170' fill='none'%3E%3Cpath d='M44 18c16 12 29 29 38 49 11 26 12 53 5 81' stroke='%231a5c32' stroke-opacity='.2' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M61 42c15 2 30-1 43-9' stroke='%23c8973e' stroke-opacity='.28' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M72 74c16 4 31 2 47-8' stroke='%231a5c32' stroke-opacity='.2' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M81 108c15 4 29 3 42-3' stroke='%23c8973e' stroke-opacity='.22' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(-10deg);
}

.grove-section::after {
  width: 200px;
  height: 200px;
  right: -24px;
  bottom: 16px;
  opacity: 0.14;
  background-image: radial-gradient(circle at 40% 40%, rgba(26,92,50,0.14) 0%, rgba(26,92,50,0.05) 30%, transparent 68%);
  filter: blur(4px);
}

.services-section .container,
.operations-section .container,
.bg-surface .container,
.contact-section .container,
.canopy-section .container,
.grove-section .container {
  position: relative;
  z-index: 1;
}
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--primary); background: rgba(26,92,50,0.08);
  padding: 6px 16px; border-radius: 0; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px;
}
.section-title .accent { color: var(--accent); }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========= SERVICES SECTION ========= */
.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: end;
  margin: 42px 0 0;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(26,92,50,0.12);
}
.services-intro-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.02rem;
}
.services-intro-copy p {
  margin: 0;
  color: var(--text-light);
  max-width: 60ch;
}
.services-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.services-intro-tags span {
  padding: 9px 14px;
  background: rgba(26,92,50,0.06);
  border: 1px solid rgba(26,92,50,0.12);
  border-radius: 0;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 44px; }
.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  padding: 40px 32px; transition: all 0.4s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary); transform: scaleX(0); transition: transform 0.4s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(26,92,50,0.18); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--gradient-primary); border: none; color: var(--white);
  box-shadow: var(--shadow-xl);
}
.service-card.featured::before { background: var(--gradient-gold); }
.service-card .badge {
  position: absolute; top: 16px; right: 16px; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 0;
  background: rgba(200,151,62,0.2); color: var(--accent-light);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(26,92,50,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card:not(.featured) .service-icon {
  background: linear-gradient(135deg, rgba(26,92,50,0.12), rgba(26,92,50,0.04));
  color: var(--primary);
}
.service-card.featured .service-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  color: var(--white);
}
.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; flex: 1; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 0.85rem; font-weight: 600; transition: gap 0.3s;
}
.service-card:not(.featured) .learn-more { color: var(--primary); }
.service-card.featured .learn-more { color: var(--accent-light); }
.service-card:hover .learn-more { gap: 12px; }

/* ========= OPERATIONS SECTION ========= */
.operations-section {
  padding-top: 0;
  padding-bottom: 100px;
  background: linear-gradient(135deg, rgba(12,54,27,0.98) 0%, rgba(20,86,42,0.96) 100%);
}
.operations-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,249,246,0.98) 100%);
  color: var(--text);
  padding: 48px 44px 44px;
  border-radius: 0;
  border: 1px solid rgba(26,92,50,0.08);
  box-shadow: 0 32px 72px rgba(17, 24, 39, 0.14);
  position: relative;
  overflow: hidden;
  margin-top: -18px;
  z-index: 2;
}
.operations-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(26,92,50,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,92,50,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
}
.operations-shell::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(200,151,62,0) 100%);
}
.operations-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.operations-copy .section-tag {
  background: rgba(26,92,50,0.06);
  color: var(--primary);
  border: 1px solid rgba(26,92,50,0.1);
  border-radius: 0;
}
.operations-copy .section-title,
.operations-copy .section-desc {
  color: var(--text);
}
.operations-copy .section-title {
  max-width: 14ch;
  margin-bottom: 18px;
}
.operations-copy .section-desc {
  opacity: 1;
  max-width: 60ch;
  line-height: 1.8;
  color: var(--text-light);
}
.operations-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.operation-card {
  padding: 26px 24px 24px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(26,92,50,0.08);
  border-radius: 0;
  min-height: 100%;
  position: relative;
  box-shadow: 0 20px 44px rgba(8, 22, 12, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.operation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
}
.operation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26,92,50,0.14);
  box-shadow: 0 24px 52px rgba(8, 22, 12, 0.2);
}
.operation-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.operation-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========= ABOUT / STORY ========= */
.bg-surface { background: #f2f5ef; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-image { position: relative; }
.story-image img { border-radius: 0; box-shadow: var(--shadow-md); width: 100%; min-height: 420px; object-fit: cover; }
.story-image .experience-badge {
  position: absolute; bottom: -24px; right: -24px; background: var(--primary);
  color: var(--white); border-radius: 0; padding: 24px; box-shadow: var(--shadow-md);
}
.experience-badge .number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); }
.experience-badge .label { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }
.story-image-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 0;
  background: rgba(14,58,30,0.82);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 36px rgba(9, 21, 10, 0.24);
  backdrop-filter: blur(10px);
}
.story-image-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.story-image-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}
.story-text h2 { margin-bottom: 24px; }
.story-text p { color: var(--text-light); margin-bottom: 16px; }
.story-text p strong { color: var(--text); }
.story-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.story-proof-item {
  padding: 16px 16px 14px;
  border-radius: 0;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(26,92,50,0.08);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.05);
}
.story-proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1;
}
.story-proof-item span {
  display: block;
  color: var(--text-light);
  font-size: 0.78rem;
  line-height: 1.45;
}
.feature-list { margin-top: 32px; }
.feature-item { display: flex; gap: 16px; margin-bottom: 16px; }
.feature-item-card {
  padding: 18px 18px 16px;
  border-radius: 0;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(26,92,50,0.08);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.05);
}
.feature-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,92,50,0.12), rgba(26,92,50,0.04));
  border: 1px solid rgba(26,92,50,0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.feature-item .icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  display: block;
  overflow: visible;
}
.feature-item h4 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 0.86rem; color: var(--text-light); margin: 0; line-height: 1.65; }
.story-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.story-note {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 34ch;
}
.story-section-about {
  position: relative;
}
.story-section-about .story-grid {
  align-items: start;
}
.story-section-about .story-image img {
  min-height: 640px;
}
.story-section-about .experience-badge {
  min-width: 150px;
}
.story-section-about .story-image-card {
  max-width: 340px;
  bottom: 28px;
  left: 28px;
}
.story-section-about .story-text {
  padding-top: 12px;
}
.story-section-about .section-title {
  max-width: 10ch;
  line-height: 0.98;
}
.story-section-about .story-text p {
  font-size: 0.97rem;
  line-height: 1.9;
  max-width: 60ch;
}
.story-section-about .story-proof {
  margin-top: 24px;
  margin-bottom: 28px;
}
.story-section-about .story-proof-item {
  min-height: 100%;
}
.story-section-about .story-proof-item strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.story-section-about .feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.story-section-about .feature-item {
  margin-bottom: 0;
}
.story-section-about .feature-item-card {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.06);
}
.story-section-about .feature-item-card .icon {
  background: linear-gradient(135deg, rgba(26,92,50,0.14), rgba(26,92,50,0.05));
}

/* ========= MISSION CARDS ========= */
.mission-intro {
  max-width: 760px;
  margin: 0 auto;
}
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.mission-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  padding: 28px 30px 30px; text-align: left; transition: all 0.4s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 100%;
}
.mission-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(200,151,62,0));
  opacity: 0; transition: opacity 0.3s ease;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-card:hover::before { opacity: 1; }
.mission-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mission-card .icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(26,92,50,0.12), rgba(26,92,50,0.04));
  border: 1px solid rgba(26,92,50,0.12);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  margin: 0 0 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.mission-card .icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
  display: block;
  overflow: visible;
}
.mission-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.mission-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin: 0; }
.mission-values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.mission-values li {
  position: relative;
  padding-left: 18px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}
.mission-values li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ========= APPROACH STEPS ========= */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.step-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  padding: 40px 32px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, rgba(26,92,50,0.08), var(--accent), rgba(26,92,50,0.08));
  opacity: 0; transition: opacity 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-card:hover::before { opacity: 1; }
.step-card .step-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,92,50,0.12), rgba(26,92,50,0.04));
  border: 1px solid rgba(26,92,50,0.12);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.step-card .step-icon svg { width: 22px; height: 22px; stroke-width: 1.9; }
.step-card .step-num {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
  color: rgba(26,92,50,0.1); margin-bottom: 8px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.step-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ========= ACCORDION ========= */
.profile-section-intro {
  max-width: 820px;
  margin: 0 auto;
}
.profile-section-intro-compact {
  margin-bottom: 44px;
}
.profile-accordion-wrap {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}
.accordion-block {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  overflow: hidden; margin-bottom: 16px; transition: box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.04);
}
.accordion-block:hover { box-shadow: var(--shadow-sm); border-color: rgba(26,92,50,0.16); }
.accordion-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body);
}
.accordion-header-left { display: flex; align-items: center; gap: 16px; }
.accordion-header .icon {
  width: 50px; height: 50px; border-radius: 0;
  background: linear-gradient(135deg, rgba(26,92,50,0.12), rgba(26,92,50,0.04));
  border: 1px solid rgba(26,92,50,0.12);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.accordion-header .icon svg { width: 22px; height: 22px; stroke-width: 1.9; }
.accordion-header h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; }
.accordion-header .subtitle { font-size: 0.85rem; color: var(--text-light); }
.accordion-chevron {
  width: 20px; height: 20px; color: var(--text-muted); transition: transform 0.3s;
}
.accordion-block.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-block.open .accordion-body { max-height: 2000px; }
.accordion-body-inner {
  padding: 0 24px 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.detail-group { background: #f2f5ef; border-radius: 0; padding: 20px; }
.detail-group h4 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 12px; }
.detail-group li {
  display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--text-light);
  margin-bottom: 8px;
}
.detail-group li svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }

/* ========= EQUIPMENT & COMPLIANCE ========= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.equipment-list { background: var(--card); border: 1px solid var(--border); border-radius: 0; padding: 32px; box-shadow: 0 18px 36px rgba(17, 24, 39, 0.04); }
.equipment-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-light); padding: 8px 0; }
.equipment-item svg { color: var(--primary); flex-shrink: 0; }
.compliance-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  padding: 24px; display: flex; align-items: center; gap: 16px; margin-bottom: 16px; transition: all 0.3s;
}
.compliance-card:hover { box-shadow: var(--shadow-sm); }
.compliance-card .icon {
  width: 50px; height: 50px; border-radius: 0;
  background: linear-gradient(135deg, rgba(26,92,50,0.12), rgba(26,92,50,0.04));
  border: 1px solid rgba(26,92,50,0.12);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.compliance-card .icon svg { width: 22px; height: 22px; stroke-width: 1.9; }
.compliance-card span { font-family: var(--font-heading); font-weight: 600; }

.kpi-card { background: var(--card); border: 1px solid var(--border); border-radius: 0; padding: 32px; margin-top: 32px; box-shadow: 0 18px 36px rgba(17, 24, 39, 0.04); }
.kpi-card h3 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 20px; }
.kpi-item { margin-bottom: 16px; }
.kpi-item .kpi-header { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
.kpi-bar { height: 6px; border-radius: 0; background: rgba(26,92,50,0.1); overflow: hidden; }
.kpi-bar-fill { height: 100%; border-radius: 0; background: var(--gradient-primary); transition: width 1.5s ease; width: 0; }

/* ========= CTA SECTION ========= */
.cta-section {
  position: relative; padding: 100px 0; overflow: hidden;
}
.cta-section .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-section .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 17, 0.56) 0%, rgba(11, 44, 24, 0.6) 100%),
    linear-gradient(90deg, rgba(8, 31, 17, 0.24) 0%, rgba(8, 31, 17, 0.18) 100%);
}
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.94);
  max-width: 700px;
  margin: 0 auto 40px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  padding: 14px 32px; background: var(--white); color: var(--primary);
  border-radius: 0; font-weight: 600; font-family: var(--font-body);
  box-shadow: var(--shadow-md); transition: all 0.3s; border: none; cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
  padding: 14px 32px; border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  border-radius: 0; font-weight: 600; font-family: var(--font-body);
  background: transparent; transition: all 0.3s; cursor: pointer;
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

.cta-section-about {
  padding: 132px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.cta-section-about .bg {
  transform: scale(1.03);
  filter: saturate(0.7) contrast(0.9) brightness(0.62);
}
.cta-section-about .overlay {
  background:
    linear-gradient(180deg, rgba(20, 85, 46, 0.72) 0%, rgba(18, 72, 39, 0.78) 100%),
    linear-gradient(90deg, rgba(13, 58, 31, 0.42) 0%, rgba(13, 58, 31, 0.42) 100%);
}
.cta-section-about .container {
  text-align: center;
  width: 100%;
}
.cta-panel {
  max-width: 820px;
  padding: 46px 52px 44px;
  margin: 0 auto;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(26,92,50,0.08);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(6px);
  position: relative;
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 3px;
  background: var(--accent);
}
.cta-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cta-section-about h2 {
  max-width: 11ch;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 0.98;
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
}
.cta-section-about p {
  max-width: 52ch;
  margin: 0 auto 32px;
  font-size: 1.02rem;
  color: var(--text-light);
  text-shadow: none;
}
.cta-section-about .cta-buttons {
  justify-content: center;
  gap: 18px;
}
.cta-section-about .btn-white,
.cta-section-about .btn-outline-white {
  min-width: 220px;
  justify-content: center;
}
.cta-section-about .btn-outline-white {
  background: transparent;
  color: var(--primary);
  border-color: rgba(26,92,50,0.28);
}

/* ========= CONTACT FORM ========= */
.contact-section { padding: 100px 0; background: var(--bg-warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-item .icon {
  width: 50px; height: 50px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,92,50,0.12), rgba(26,92,50,0.04));
  border: 1px solid rgba(26,92,50,0.12);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.contact-info-item .icon svg { width: 22px; height: 22px; stroke-width: 1.9; }
.contact-info-item h4 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--text-light); }
.contact-info-item a:hover { color: var(--primary); }
.contact-form {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 0;
  font-family: var(--font-body); font-size: 0.9rem; background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,92,50,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ========= FOOTER ========= */
.footer { background: var(--primary-dark); color: var(--white); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img {
  width: auto;
  max-width: min(100%, 148px);
  max-height: 72px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer p.footer-desc { font-size: 0.9rem; opacity: 0.7; line-height: 1.7; }
.footer h4 { font-weight: 700; font-size: 0.98rem; margin-bottom: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-links a { display: block; font-size: 0.9rem; opacity: 0.7; padding: 6px 0; transition: opacity 0.3s, color 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--accent); }
.footer-links span { display: block; font-size: 0.9rem; opacity: 0.7; padding: 6px 0; }
.footer-contact a, .footer-contact span {
  display: flex; align-items: center; gap: 12px; font-size: 0.9rem; opacity: 0.7; padding: 6px 0;
}
.footer-contact a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; opacity: 0.5;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 22px;
  margin-top: 24px;
}

.footer-socials-title {
  color: rgba(255,255,255,0.56);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-socials-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.76);
  font-size: 0.88rem;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, transform 0.3s;
}

.footer-socials-links a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials-links a:hover {
  color: var(--accent);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.footer-bottom a { color: var(--accent-light); }
.footer-bottom a:hover { color: var(--white); }

/* ========= PAGE HERO (inner pages) ========= */
.page-hero {
  position: relative; min-height: 560px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: left;
}
.page-hero .overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(200,151,62,0.16) 0%, transparent 24%),
    linear-gradient(108deg, rgba(7,31,16,0.94) 0%, rgba(12,54,29,0.82) 46%, rgba(6,19,10,0.54) 100%);
}
.page-hero .container { position: relative; z-index: 1; padding-top: 96px; }
.page-hero .section-tag { background: rgba(200,151,62,0.15); color: var(--accent); border: 1px solid rgba(200,151,62,0.2); }
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 36px;
  align-items: end;
}
.page-hero-copy { max-width: 760px; }
.page-hero-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.74);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  max-width: 12ch;
  line-height: 0.96;
}
.page-hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  max-width: 60ch;
  margin: 0;
  line-height: 1.8;
}
.page-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin-top: 32px;
}
.page-hero-fact {
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(4, 16, 8, 0.18);
  position: relative;
  overflow: hidden;
}
.page-hero-fact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
}
.page-hero-fact strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.page-hero-fact span {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 0.84rem;
  line-height: 1.55;
}
.page-hero-panel {
  padding: 24px 24px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 50px rgba(4, 16, 8, 0.2);
  backdrop-filter: blur(12px);
  position: relative;
}
.page-hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 2px;
  background: var(--accent);
}
.page-hero-panel-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-hero-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.35;
}
.page-hero-panel p {
  margin: 0 0 18px;
  max-width: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.94rem;
  line-height: 1.7;
}
.page-hero-panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.page-hero-panel-list span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
}

/* ========= SCROLL ANIMATIONS ========= */
.reveal {
  opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .stats-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-intro { align-items: flex-start; text-align: left; }
  .stats-kicker { align-self: flex-start; }
  .stats-ribbon { justify-content: flex-start; }
  .stats-intro h2, .stats-intro p { max-width: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-template-columns: 1fr; align-items: start; }
  .services-intro-tags { justify-content: flex-start; }
  .hero-highlights { grid-template-columns: 1fr; max-width: 420px; }
  .hero-panel { max-width: 520px; margin-top: 0; }
  .hero-content { padding-bottom: 180px; }
  .hero-controls { align-items: flex-start; flex-direction: column; }
  .operations-grid { grid-template-columns: 1fr; }
  .page-hero-shell { grid-template-columns: 1fr; }
  .page-hero-panel { max-width: 520px; }
  .page-hero-facts { grid-template-columns: 1fr; max-width: 440px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .story-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .stats-bar { padding: 44px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stats-intro::after { display: none; }
  .stat-number { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image .experience-badge { right: 16px; bottom: -16px; }
  .story-image-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .story-proof { grid-template-columns: 1fr; gap: 10px; }
  .story-actions { align-items: flex-start; }
  .story-section-about .story-image img { min-height: 420px; }
  .story-section-about .story-text { padding-top: 0; }
  .mission-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .accordion-body-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-socials {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; height: auto; padding-top: 86px; padding-bottom: 24px; }
  .hero-content { height: auto; padding: 72px 24px 88px; }
  .hero h1, .hero-desc, .hero-highlights { max-width: none; }
  .hero-panel,
  .hero-frame { display: none; }
  .hero-mobile-summary { display: block; }
  .hero-controls {
    position: static;
    margin-top: 24px;
    padding: 0 24px;
    align-items: stretch;
  }
  .hero-indicators { width: 100%; }
  .hero-indicators button { min-width: 0; flex: 1; }
  .hero-scroll { display: none; }
  .operations-shell { padding: 32px 24px; }
  .page-hero { text-align: center; min-height: 520px; }
  .page-hero .container { padding-top: 64px; }
  .page-hero h1, .page-hero p, .page-hero-facts, .page-hero-panel { max-width: none; margin-left: auto; margin-right: auto; }
  .page-hero-shell { gap: 24px; }
  .page-hero-panel-list { grid-template-columns: 1fr 1fr; }
  .story-image img { min-height: 320px; }
}
@media (max-width: 480px) {
  .hero { padding-top: 78px; padding-bottom: 20px; }
  .hero-content { padding: 56px 20px 76px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4rem); max-width: 7.2ch; }
  .hero-desc { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-indicators { flex-direction: column; }
  .stats-bar { padding: 40px 0; }
  .stats-ribbon span { min-height: 30px; font-size: 0.64rem; letter-spacing: 0.06em; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item-featured { grid-column: span 1; min-height: auto; padding: 22px 18px 20px; }
  .stat-item { padding: 22px 18px 20px; }
  .stat-meta { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-highlight { padding: 14px 16px; }
  .service-card,
  .mission-card,
  .step-card,
  .contact-form { padding-left: 24px; padding-right: 24px; }
  .cta-panel { padding: 28px 24px 30px; }
  .cta-section-about h2 { max-width: none; }
  .cta-section-about .btn-white,
  .cta-section-about .btn-outline-white { min-width: 0; width: 100%; }
  .page-hero-panel { padding-left: 18px; padding-right: 18px; }
  .page-hero-panel-list { grid-template-columns: 1fr; }
  .accordion-header { padding: 18px; }
  .accordion-header-left { align-items: flex-start; }
  .accordion-header .icon { width: 42px; height: 42px; }
  .page-hero h1 { font-size: clamp(2.35rem, 10vw, 3.1rem); }
  .story-image-card { padding: 14px 14px 13px; }
  .story-actions { flex-direction: column; }
}
