:root {
  --ink: #182724;
  --muted: #5e6e69;
  --paper: #f5f3ed;
  --white: #fff;
  --green: #184d43;
  --green-dark: #103a33;
  --aqua: #8abbb0;
  --line: #d7ddd8;
  --max: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 92px;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245,243,237,.97); border-bottom: 1px solid var(--line); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 1.35rem; font-weight: 800; letter-spacing: .05em; }
.brand span { display: block; color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .18em; }
.brand-logo { width: 62.4px; height: 55.2px; object-fit: contain; mix-blend-mode: multiply; }
.brand .brand-copy { color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; }
.brand .brand-copy span { color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .18em; }
.nav ul { display: flex; flex-wrap: wrap; gap: 25px; margin: 0; padding: 0; list-style: none; }
.nav a { text-decoration: none; font-size: calc(.92rem + 4pt); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--green); text-decoration: underline; text-underline-offset: 7px; }

.hero { padding: clamp(70px, 10vw, 145px) 0; background: var(--green); color: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1.5fr .7fr; gap: 70px; align-items: end; }
.eyebrow { margin: 0 0 18px; color: var(--aqua); font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; }
h1 { max-width: 850px; margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.7rem, 6vw, 5.6rem); font-weight: 400; letter-spacing: -.035em; }
.hero-copy { margin: 0; color: #dbe9e5; font-size: 1.08rem; }

.section { padding: clamp(62px, 8vw, 110px) 0; }
body:not(.home) main > .section { position: relative; isolation: isolate; overflow: hidden; }
body:not(.home) main { min-height: calc(100vh - 170px); display: flex; flex-direction: column; }
body:not(.home) main > .section { flex: 1; }
body:not(.home) main > .section::before { content: ""; position: absolute; inset: 0; z-index: 2; background: var(--page-watermark) center / cover no-repeat fixed; opacity: .16; filter: grayscale(1); pointer-events: none; }
body:not(.home) main > .section > .container { position: relative; z-index: 1; }
main > .page-hero + .section { padding-top: 1.5cm; }
.section-white { background: var(--white); }
.section-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 55px; margin-bottom: 50px; }
.section h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
.lead { margin: 0; color: var(--muted); font-size: 1.15rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 260px; padding: 30px; background: var(--white); border: 1px solid var(--line); }
.section-white .card { background: var(--paper); }
.card-number { color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.card h3 { margin: 38px 0 14px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.55rem; font-weight: 400; }
.card p { color: var(--muted); }
.text-link { font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }

.expertise-list { border-top: 1px solid var(--line); }
.expertise-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.expertise-row h2 { font-size: clamp(1.65rem, 3vw, 2.45rem); }
.expertise-row p { max-width: 660px; margin: 0; color: var(--muted); }
.expertise-row ul { margin: 0; padding-left: 18px; columns: 2; column-gap: 28px; }
.expertise-row li { break-inside: avoid; margin-bottom: 6px; }

.statement { background: var(--green-dark); color: var(--white); }
.statement blockquote { max-width: 920px; margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.25; }
.statement p { max-width: 760px; color: #c9dcd7; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.button { display: inline-block; padding: 14px 22px; color: var(--white); background: var(--green); text-decoration: none; font-weight: 700; }

.page-hero {
  position: sticky;
  top: 79px;
  z-index: 80;
  padding: 0 0 3px;
  background: var(--green);
  color: var(--white);
}
.page-hero h1 { font-size: clamp(2rem, 3vw, 3.2rem); }
.placeholder { min-height: 48vh; }

.site-footer { position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; padding: 34px 0; color: #c9dcd7; background: var(--green); font-size: .88rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 25px; }

@media (max-width: 820px) {
  body { padding-bottom: 146px; }
  .nav { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .nav ul { gap: 14px 20px; }
  .hero-grid, .section-heading, .expertise-row { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .cards { grid-template-columns: 1fr; }
  .expertise-row { gap: 14px; }
  .expertise-row ul { columns: 1; }
  .cta, .footer-inner { align-items: flex-start; flex-direction: column; }
}
