/* Variables */
:root {
  --green: #1A3C2A;
  --green-mid: #2C5240;
  --green-light: #3D6B55;
  --amber: #E8A838;
  --amber-light: #F5C96A;
  --bg: #F7F5F0;
  --bg-warm: #F0EDE6;
  --text: #1A1A18;
  --text-mid: #4A4A45;
  --text-light: #7A7A72;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 60, 42, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-logo em {
  font-style: normal;
  color: var(--amber);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.geo-1 {
  width: 600px;
  height: 600px;
  background: var(--amber);
  top: -200px;
  right: -100px;
}
.geo-2 {
  width: 400px;
  height: 400px;
  background: white;
  bottom: 80px;
  left: -150px;
}
.geo-3 {
  width: 200px;
  height: 200px;
  background: var(--amber-light);
  top: 40%;
  right: 30%;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3rem;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 1rem;
}
.hero-company {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.hero-company strong {
  color: var(--amber-light);
  font-weight: 500;
}

/* Stats */
.stats {
  background: var(--green-mid);
  padding: 4rem 2rem;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Services */
.services {
  padding: 7rem 2rem;
  background: var(--bg);
}
.services-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--green);
  border: 1.5px solid var(--green);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2.5rem 2.5rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-warm); }
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,168,56,0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Network */
.network {
  padding: 7rem 2rem;
  background: var(--green);
}
.network-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.network-overline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.network-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.network-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.network-units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.unit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.unit-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.unit-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.3rem;
}
.unit-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  background: var(--bg-warm);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 4rem 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(26,60,42,0.1);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.3rem;
}
.footer-brand em { font-style: normal; color: var(--amber); }
.footer-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding-bottom: 4rem; }
  .hero-headline { font-size: 2.5rem; }
  .stats-grid { flex-wrap: wrap; gap: 1.5rem; }
  .stat { flex: 0 0 calc(50% - 1.5rem); }
  .stat-sep { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .network-units { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .nav-tagline { display: none; }
  .hero-sub { font-size: 1rem; }
  .stat { flex: 0 0 100%; }
}