:root {
  --ink: #17312b;
  --ink-soft: #405952;
  --pine: #285f50;
  --pine-dark: #19483c;
  --water: #467a91;
  --mist: #e8f0ed;
  --paper: #fbfcf9;
  --sand: #f1ede3;
  --white: #ffffff;
  --line: #cedbd6;
  --shadow: 0 18px 48px rgba(23, 49, 43, 0.10);
  --radius: 18px;
  --content: 1180px;
}

* { 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;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: var(--pine-dark); text-underline-offset: 0.2em; }
a:hover { color: var(--water); }

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
p { margin: 0 0 1.2rem; }
ul { padding-left: 1.2rem; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(206, 219, 214, 0.8);
  background: rgba(251, 252, 249, 0.95);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  max-width: var(--content);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a { color: var(--ink); font-size: 0.95rem; font-weight: 650; text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--water); }
.nav-links .nav-cta {
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--pine);
  color: var(--white);
}
.nav-links .nav-cta:hover { background: var(--pine-dark); color: var(--white); }

.container { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 790px); margin-inline: auto; }

.hero {
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 0 clamp(72px, 9vw, 116px);
  background:
    radial-gradient(circle at 86% 20%, rgba(70, 122, 145, 0.16), transparent 32%),
    radial-gradient(circle at 12% 85%, rgba(40, 95, 80, 0.13), transparent 34%),
    linear-gradient(145deg, #f9fbf7 0%, #eef4f0 100%);
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr); gap: 64px; align-items: end; }
.eyebrow {
  margin-bottom: 1rem;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero h1 { max-width: 940px; margin-bottom: 1.35rem; }
.hero .lead { max-width: 780px; color: var(--ink-soft); font-size: clamp(1.14rem, 2vw, 1.42rem); }
.hero-aside { border-left: 2px solid var(--pine); padding-left: 24px; color: var(--ink-soft); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pine);
  border-radius: 999px;
  background: var(--pine);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}
.button:hover { background: var(--pine-dark); color: var(--white); }
.button.secondary { background: transparent; color: var(--pine-dark); }
.button.secondary:hover { background: var(--mist); }

.credential-strip { border-block: 1px solid var(--line); background: var(--white); }
.credential-strip .container { --content: 1500px; }
.credential-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.credential { padding: 15px 15px; border-right: 1px solid var(--line); }
.credential:last-child { border-right: 0; }
.credential strong { display: block; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 500; }
.credential span { color: var(--ink-soft); font-size: 0.9rem; }

.section { padding: clamp(72px, 9vw, 118px) 0; }
.section.tint { background: var(--mist); }
.section.sand { background: var(--sand); }
.section-heading { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 64px; margin-bottom: 48px; align-items: start; }
.section-heading p { max-width: 720px; color: var(--ink-soft); font-size: 1.08rem; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  display: flex;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(23, 49, 43, 0.04);
}
.card .number { margin-bottom: 1.8rem; color: var(--water); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; }
.card p { color: var(--ink-soft); }
.card a.stretched { margin-top: auto; font-weight: 750; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.proof-list { display: grid; gap: 18px; }
.proof-item { border-top: 1px solid var(--line); padding-top: 18px; }
.proof-item strong { display: block; margin-bottom: 0.25rem; }
.proof-item p { margin: 0; color: var(--ink-soft); }

.quote-block {
  padding: clamp(30px, 5vw, 55px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.quote-block p { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.35; }
.quote-block small { color: #c5d6d0; }

.page-hero { padding: clamp(68px, 9vw, 112px) 0 68px; background: linear-gradient(145deg, #f9fbf7, #e9f1ed); }
.page-hero h1 { max-width: 940px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-hero .lead { max-width: 820px; color: var(--ink-soft); font-size: 1.25rem; }

.breadcrumbs { margin-bottom: 1.5rem; color: var(--ink-soft); font-size: 0.9rem; }
.breadcrumbs a { color: var(--ink-soft); }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 72px; align-items: start; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.8rem, 3vw, 2.45rem); }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose li { margin-bottom: 0.55rem; }
.prose .intro { color: var(--ink); font-size: 1.2rem; }

.sidebar {
  position: sticky;
  top: 108px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.sidebar h2 { font-size: 1.55rem; }
.sidebar p { color: var(--ink-soft); font-size: 0.95rem; }

.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; padding: 0; list-style: none; }
.service-list li { position: relative; padding: 13px 0 13px 24px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.service-list li::before { position: absolute; left: 0; content: "—"; color: var(--pine); }

.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.location { border-top: 3px solid var(--pine); padding-top: 18px; }
.location p { color: var(--ink-soft); }

.cta-band { padding: 58px 0; background: var(--pine-dark); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 0.5rem; }
.cta-inner p { margin: 0; color: #d3e2dc; }
.cta-band .button { border-color: var(--white); background: var(--white); color: var(--pine-dark); white-space: nowrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-list { margin: 2rem 0; padding: 0; list-style: none; }
.contact-list li { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-list strong { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.brief-box { padding: 32px; border-radius: var(--radius); background: var(--mist); }

.site-footer { padding: 64px 0 28px; background: var(--ink); color: #d3e2dc; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 48px; }
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer h2 { font-size: 1.8rem; }
.site-footer h3 { font-family: inherit; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0.45rem 0; }
.site-footer a { color: #d3e2dc; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.16); color: #a9beb6; font-size: 0.88rem; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 77px;
    right: 0;
    left: 0;
    padding: 22px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links .nav-cta { text-align: center; }
  .hero-grid, .section-heading, .content-layout, .proof-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-aside { max-width: 620px; }
  .card-grid.three, .location-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { position: static; }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .credential:nth-child(2) { border-right: 0; }
  .credential:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 32px), var(--content)); }
  .nav-shell { padding: 0 16px; }
  .brand span { max-width: 190px; overflow: hidden; text-overflow: ellipsis; }
  .card-grid, .card-grid.three, .location-grid, .service-list, .footer-grid { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential { border-right: 0; border-bottom: 1px solid var(--line); }
  .credential:last-child { border-bottom: 0; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
