:root {
  --navy: #0f2435;
  --navy-2: #172f43;
  --charcoal: #252b2f;
  --green: #6f7f3c;
  --green-2: #8a984f;
  --gold: #b9a15a;
  --cream: #f6f5ef;
  --soft: #eef1ea;
  --white: #ffffff;
  --muted: #66717b;
  --line: rgba(15, 36, 53, 0.12);
  --shadow: 0 22px 60px rgba(15, 36, 53, 0.16);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.hidden { display: none !important; }
.skip-link { position: absolute; left: -9999px; top: auto; background: var(--navy); color: white; padding: 10px 14px; z-index: 1000; }
.skip-link:focus { left: 16px; top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 245, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 54px; height: 54px; border-radius: 14px; object-fit: contain; background: white; box-shadow: 0 8px 24px rgba(15,36,53,.12); }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { letter-spacing: -0.02em; }
.brand-text small { color: var(--green); font-weight: 800; text-transform: uppercase; font-size: 11px; letter-spacing: .14em; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 14px; }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--navy); color: white !important; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 10%, rgba(111,127,60,.18), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(185,161,90,.18), transparent 28%),
    linear-gradient(135deg, var(--cream), #ffffff 48%, #eef1ea);
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -25% 45%; height: 420px;
  background: linear-gradient(135deg, rgba(15,36,53,.08), rgba(111,127,60,.16));
  transform: rotate(-9deg); border-radius: 70px;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--green); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: 13px; margin: 0 0 16px; }
.eyebrow.light { color: #d8cd9a; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); letter-spacing: -0.06em; max-width: 860px; }
h2 { font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -0.045em; }
h3 { font-size: 20px; letter-spacing: -0.025em; }
.hero-text { max-width: 680px; font-size: 19px; color: var(--muted); margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 14px 22px; border-radius: 999px; text-decoration: none; border: 1px solid transparent; font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: white; box-shadow: 0 14px 34px rgba(15,36,53,.24); }
.button.secondary { background: white; color: var(--navy); border-color: var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-row span { background: rgba(255,255,255,.76); border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; font-weight: 800; color: var(--navy-2); font-size: 13px; }
.hero-card { background: rgba(255,255,255,.84); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.8); padding: 34px; border-radius: 36px; box-shadow: var(--shadow); }
.card-topline { color: var(--green); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; margin-bottom: 10px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 720; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 23px; height: 23px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(111,127,60,.18); color: var(--green); font-weight: 900; }
.check-list.gold li::before { background: rgba(185,161,90,.18); color: #d8cd9a; }

.proof-strip { padding: 34px 0; background: var(--navy); color: white; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-grid div { border-left: 3px solid var(--gold); padding-left: 18px; }
.proof-grid strong { display: block; font-size: 18px; margin-bottom: 3px; }
.proof-grid span { color: rgba(255,255,255,.76); font-size: 14px; }

.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .ops-card, .process-step, details, .contact-card, .request-form { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(15,36,53,.06); }
.service-card { padding: 28px; }
.service-card p, .ops-card p, .process-step p { color: var(--muted); margin-bottom: 0; }
.muted { background: var(--soft); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-step { padding: 28px; }
.process-step span { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--navy); color: white; font-weight: 900; margin-bottom: 20px; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.split-grid p { color: var(--muted); font-size: 18px; }
.text-link { color: var(--green); font-weight: 900; text-decoration: none; }
.client-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.client-list span { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px; font-weight: 820; }
.dark-panel { background: var(--navy); color: white; }
.dark-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: center; }
.dark-panel p { color: rgba(255,255,255,.78); font-size: 18px; }
.leadership-grid { display: grid; grid-template-columns: 380px 1fr; gap: 54px; align-items: center; }
.leader-photo { background: linear-gradient(135deg, rgba(111,127,60,.28), rgba(185,161,90,.24)); padding: 14px; border-radius: 36px; box-shadow: var(--shadow); }
.leader-photo img { border-radius: 28px; aspect-ratio: 1 / 1; object-fit: cover; }
.leadership-grid p { color: var(--muted); font-size: 18px; }
.ops-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ops-card { padding: 24px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.contact-card { padding: 34px; position: sticky; top: 100px; }
.contact-lines { margin-top: 24px; display: grid; gap: 9px; }
.contact-lines p { margin: 0; color: var(--muted); }
.contact-lines a { color: var(--navy); font-weight: 850; }
.placeholder { color: var(--green); font-weight: 900; }
.request-form { padding: 32px; scroll-margin-top: 110px; }
.request-form h2 { margin-bottom: 22px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
label { display: grid; gap: 7px; margin-bottom: 16px; font-weight: 820; }
input, select, textarea { width: 100%; border: 1px solid rgba(15,36,53,.18); border-radius: 14px; padding: 13px 14px; font: inherit; background: #fbfcf8; color: var(--navy); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(111,127,60,.22); border-color: var(--green); }
.form-button { width: 100%; border: 0; margin-top: 4px; }
.form-note { color: var(--muted); font-size: 13px; margin-bottom: 0; }
.faq-section { padding-top: 20px; }
.faq-list { display: grid; gap: 12px; max-width: 900px; }
details { padding: 20px 24px; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { color: var(--muted); }

.site-footer { background: #081a27; color: white; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr 1fr; gap: 44px; }
.footer-logo { width: 100px; border-radius: 18px; background: white; padding: 8px; margin-bottom: 14px; }
.footer-grid p, .footer-grid span { color: rgba(255,255,255,.72); }
.footer-grid h3 { font-size: 16px; color: #d8cd9a; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; }
.footer-grid a { display: block; color: rgba(255,255,255,.82); text-decoration: none; margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; margin-top: 38px; color: rgba(255,255,255,.62); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .split-grid, .dark-grid, .leadership-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { gap: 30px; }
  .leader-photo { max-width: 420px; }
  .contact-card { position: static; }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .brand-text { display: none; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 14px; right: 14px; top: 82px; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero { min-height: auto; }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
  .service-grid, .process-grid, .ops-grid, .client-list, .form-row.two, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-card, .request-form, .contact-card { padding: 24px; border-radius: 24px; }
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(139, 195, 74, 0.45);
}
.button.ghost:hover {
  background: rgba(139, 195, 74, 0.08);
}
