:root {
  --ink: #0b2238;
  --ink-soft: #33485b;
  --sage: #617f43;
  --sage-deep: #496332;
  --sage-light: #edf2e8;
  --line: #dbe3dd;
  --paper: #ffffff;
  --wash: #f5f8f5;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(11, 34, 56, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); text-align: center; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: white; padding: 10px 14px; z-index: 99; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219,227,221,.8);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 750; letter-spacing: -.02em; }
.brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 10px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { text-decoration: none; font-weight: 650; font-size: .95rem; }
.nav-cta { background: var(--ink); color: white; padding: 10px 17px; border-radius: 999px; }
.menu-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 10px; padding: 9px 12px; font-weight: 700; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(97,127,67,.16), transparent 31%),
    linear-gradient(180deg, #fbfdfb 0%, #ffffff 100%);
}
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; padding-block: 72px; }
.eyebrow, .section-kicker { color: var(--sage-deep); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin: 0 0 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 7vw, 6.3rem); line-height: .94; letter-spacing: -.055em; margin-bottom: 24px; max-width: 10ch; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4.4vw, 4.1rem); line-height: 1.02; letter-spacing: -.045em; margin-bottom: 22px; }
h3 { font-size: 1.18rem; line-height: 1.25; margin-bottom: 10px; }
.hero-lede { max-width: 700px; color: var(--ink-soft); font-size: 1.2rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 20px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.button.primary { background: var(--sage); color: white; box-shadow: 0 10px 24px rgba(73,99,50,.2); }
.button.secondary { border: 1px solid var(--line); background: white; }
.button.disabled { opacity: .65; pointer-events: none; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-row span { border: 1px solid var(--line); background: rgba(255,255,255,.8); border-radius: 999px; padding: 8px 12px; font-size: .86rem; font-weight: 700; color: var(--ink-soft); }
.hero-mark { display: flex; justify-content: center; }
.hero-mark img { width: min(560px, 100%); filter: drop-shadow(0 25px 34px rgba(11,34,56,.12)); border-radius: 22px; }

.section { padding: 100px 0; }
.intro { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro p:last-child { font-size: 1.12rem; color: var(--ink-soft); }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--ink-soft); }

.services { background: var(--wash); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; min-height: 235px; box-shadow: 0 8px 24px rgba(11,34,56,.04); }
.service-card .icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--sage-light); color: var(--sage-deep); font-weight: 900; margin-bottom: 28px; }
.service-card p { color: var(--ink-soft); margin-bottom: 0; }

.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.approach-grid > div > p:last-child { color: var(--ink-soft); font-size: 1.08rem; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.steps li > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-weight: 800; }
.steps strong { font-size: 1.05rem; }
.steps p { margin: 4px 0 0; color: var(--ink-soft); }

.about { background: var(--ink); color: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.about .section-kicker { color: #a9c589; }
.about h2 { margin-bottom: 0; }
.about-copy p { color: #dce5ec; font-size: 1.06rem; }
.about-copy .note { font-size: .9rem; color: #aebcca; border-left: 3px solid var(--sage); padding-left: 16px; margin-top: 28px; }

.contact { background: linear-gradient(135deg, #edf2e8 0%, #f9fbf7 100%); }
.contact-box { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 52px; box-shadow: var(--shadow); }
.contact-box h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.contact-box p { color: var(--ink-soft); }
.contact-actions { text-align: center; }
.contact-actions .button { width: 100%; }
.contact-note { font-size: .82rem; margin: 10px 0 0; }

.site-footer { border-top: 1px solid var(--line); padding: 38px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.site-footer p { margin: 4px 0 0; color: var(--ink-soft); font-size: .9rem; }
.footer-right { text-align: right; }

@media (max-width: 900px) {
  .hero-grid, .section-heading, .approach-grid, .about-grid, .contact-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; padding-block: 54px 70px; }
  .hero-copy { text-align: center; }
  h1 { max-width: 100%; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-mark img { width: min(480px, 88vw); }
  .section-heading { gap: 10px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .brand span { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 77px; left: 14px; right: 14px;
    background: white; border: 1px solid var(--line); border-radius: 16px;
    padding: 16px; flex-direction: column; align-items: stretch; gap: 4px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .nav-cta { text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
}


/* Professional credibility */
.credibility {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: white;
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.credibility-grid > div {
  padding: 26px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.credibility-grid > div:last-child { border-right: 0; }
.credibility-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 7px;
  color: #fff;
}
.credibility-grid span {
  display: block;
  color: #cbd8df;
  font-size: .85rem;
  font-weight: 650;
}
.disclaimer {
  max-width: 520px;
  margin-left: auto !important;
  font-size: .72rem !important;
  opacity: .78;
}
@media (max-width: 700px) {
  .credibility-grid { grid-template-columns: 1fr; }
  .credibility-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 20px;
  }
  .credibility-grid > div:last-child { border-bottom: 0; }
  .disclaimer { margin-left: 0 !important; }
}
