:root {
  --bg: #F5EDE0;
  --bg-alt: #EDE3D4;
  --fg: #1A1A1A;
  --fg-muted: #5C5248;
  --accent: #C2714F;
  --accent-dark: #9E5A3D;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid rgba(27,67,50,0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 7px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--green);
  color: var(--white);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 96px;
  min-height: 540px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--green);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-mid);
  background: rgba(27,67,50,0.08);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(27,67,50,0.12);
  background: rgba(27,67,50,0.03);
}

.ring-1 { width: 280px; height: 280px; }
.ring-2 { width: 200px; height: 200px; border-color: rgba(194,113,79,0.2); background: rgba(194,113,79,0.04); }
.ring-3 { width: 120px; height: 120px; border-color: rgba(194,113,79,0.3); background: rgba(194,113,79,0.06); }

.visual-center {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(27,67,50,0.3);
}

/* SERVICES */
.services {
  background: var(--green);
  padding: 80px 48px;
}

.section-header {
  margin-bottom: 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  max-width: 560px;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
  transition: background 0.2s;
}

.service-card:hover {
  background: rgba(255,255,255,0.12);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.service-icon {
  margin-bottom: 20px;
}

/* DIFFERENTIATORS */
.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.diff-content {
  padding: 80px 48px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-alt);
}

.diff-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin: 16px 0 20px;
}

.diff-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

.diff-visual {
  background: var(--green);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 260px;
  line-height: 1.5;
}

/* COVERAGE */
.coverage {
  background: var(--bg);
  padding: 80px 48px;
}

.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.coverage-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(27,67,50,0.07);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(27,67,50,0.12);
}

.coverage-highlight {
  background: rgba(194,113,79,0.1);
  color: var(--accent-dark);
  border-color: rgba(194,113,79,0.25);
  font-weight: 600;
}

.coverage-note {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--bg-alt);
  padding: 96px 48px;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.closing-sub {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* FOOTER */
.site-footer {
  background: var(--green);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 64px; gap: 40px; }
  .hero-visual { display: none; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr; }
  .diff-content { padding: 60px 24px; }
  .diff-visual { padding: 60px 24px; }
  .coverage { padding: 60px 24px; }
  .closing { padding: 64px 24px; }
  .site-footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
}