:root {
  --forest: #0c2217;
  --forest-light: #123320;
  --bg: #ffffff;
  --bg-soft: #f8f8f6;
  --text: #111111;
  --text-mute: #666;
  --gold: #c8960c;
  --gold-light: #f0c040;
  --border: #e5e5e5;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad-x); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  transition: all 0.2s; cursor: pointer;
}
.btn-light { background: #fff; color: var(--forest); }
.btn-light:hover { background: #e8e8e8; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-light); }

/* Eyebrow */
.eyebrow { font-size: 11px; letter-spacing: 4px; font-weight: 800; text-transform: uppercase; color: var(--gold); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-size: 13px; letter-spacing: 3px; font-weight: 800; color: var(--text); }
.nav-main { display: flex; gap: 36px; }
.nav-main a { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mute); transition: color 0.2s; }
.nav-main a:hover { color: var(--forest); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s; }
@media (max-width: 768px) {
  .nav-row { flex-wrap: wrap; align-items: center; }
  .nav-main {
    display: none; flex-direction: column; gap: 0;
    width: 100%; order: 3;
    background: var(--bg); border-top: 1px solid var(--border);
    padding-bottom: 8px;
  }
  .nav-main.open { display: flex; }
  .nav-main a { font-size: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); text-transform: none; letter-spacing: 0.5px; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: var(--forest);
  padding-block: clamp(100px, 16vw, 180px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,150,12,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero-badge {
  display: inline-block;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 32px;
}
.hero-title {
  font-weight: 800; font-size: clamp(36px, 6vw, 72px);
  line-height: 1.0; letter-spacing: -2px;
  color: #fff; margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-sub { color: rgba(255,255,255,0.65); font-size: clamp(15px, 1.8vw, 18px); font-weight: 300; max-width: 520px; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Services */
.services { padding-block: clamp(80px, 12vw, 140px); border-bottom: 1px solid var(--border); }
.section-title { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; margin-block: 12px 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 40px 32px; background: var(--bg-soft);
  border-left: 4px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { border-left-color: var(--forest); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.svc-num { font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 24px; font-style: italic; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 14px; color: var(--text-mute); line-height: 1.75; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Impact */
.impact {
  background: var(--forest);
  padding-block: clamp(80px, 12vw, 140px);
}
.impact-eyebrow { color: var(--gold-light); }
.impact-heading { color: #fff; }
.impact-lead { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 580px; margin-bottom: 56px; font-weight: 300; line-height: 1.7; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.bento-cell { background: var(--forest); padding: 40px 32px; }
.bento-hl { background: var(--gold); }
.b-num {
  font-size: clamp(48px, 6vw, 72px); font-weight: 900;
  line-height: 1; color: #fff; margin-bottom: 10px;
  letter-spacing: -1px;
}
.b-num span { color: var(--gold-light); font-size: 0.6em; }
.bento-hl .b-num { color: var(--forest); }
.bento-hl .b-num span { color: var(--forest); }
.b-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.b-label small { display: block; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 11px; margin-top: 4px; color: rgba(255,255,255,0.4); }
.bento-hl .b-label { color: rgba(12,34,23,0.7); }
.bento-hl .b-label small { color: rgba(12,34,23,0.5); }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .bento { grid-template-columns: 1fr; } }

@media (max-width: 480px) {
  .hero { padding-block: 72px 56px; }
  .hero-title { font-size: 32px; letter-spacing: -1px; line-height: 1.05; }
  .hero-badge { font-size: 10px; letter-spacing: 2px; margin-bottom: 20px; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .btn { padding: 13px 22px; font-size: 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bento-cell { padding: 24px 20px; }
  .b-num { font-size: 44px; }
  .section-title { font-size: 26px; letter-spacing: -0.5px; margin-block: 10px 36px; }
  .service-card { padding: 28px 20px; }
  .contact-pill { font-size: 13px; padding: 12px 20px; width: 100%; text-align: center; box-sizing: border-box; }
  .contact-row { flex-direction: column; align-items: stretch; }
}

/* About */
.about { padding-block: clamp(80px, 12vw, 140px); border-bottom: 1px solid var(--border); }
.about .section-title { max-width: 600px; }
.about-text { font-size: 17px; color: var(--text-mute); line-height: 1.8; max-width: 640px; margin-bottom: 16px; }
.about .eyebrow { margin-bottom: 12px; }

/* Contact */
.contact { padding-block: clamp(80px, 12vw, 140px); }
.contact-inner { text-align: center; }
.contact-inner .section-title { max-width: 100%; }
.contact-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
.contact-pill {
  display: inline-block; padding: 14px 28px; border-radius: 100px;
  background: var(--bg-soft); color: var(--text);
  font-size: 14px; font-weight: 500; border: 1px solid var(--border);
  transition: all 0.2s;
}
a.contact-pill:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.contact-pill-plain { cursor: default; }

/* Footer */
.site-footer { padding-block: 28px; border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-meta { color: var(--text-mute); font-size: 12px; }

/* Service badge */
.service-badge {
  display: block; margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 10px; letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase; color: var(--text-mute);
}

/* Testimonial */
.testimonial {
  margin-top: 28px; padding: 20px 24px;
  border-left: 3px solid var(--gold); background: #f5faf7;
}
.testimonial blockquote { font-size: 16px; line-height: 1.65; color: var(--text); margin-bottom: 10px; font-style: italic; }
.testimonial cite { font-size: 11px; letter-spacing: 2px; color: var(--text-mute); text-transform: uppercase; font-style: normal; font-weight: 700; }

/* Compliance */
.compliance { padding-block: clamp(60px, 8vw, 100px); border-bottom: 1px solid var(--border); }
.compliance .section-title { margin-bottom: 48px; }
.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 600px) { .compliance-grid { grid-template-columns: 1fr; } }
.compliance-card { padding: 28px 24px; background: var(--bg-soft); border: 1px solid var(--border); }
.comp-label { font-size: 10px; letter-spacing: 3px; font-weight: 800; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.comp-desc { font-size: 13px; color: var(--text-mute); }
