  :root {
    --forest: #0F4D3A;
    --forest-deep: #0A3527;
    --navy: #1B2A4E;
    --navy-light: #2A3A60;
    --gold: #C9A961;
    --gold-deep: #A8884A;
    --cream: #FAF6EE;
    --cream-warm: #F4EFE3;
    --cream-deeper: #EFE9DA;
    --ink: #14181F;
    --body: #2E3440;
    --muted: #5B6470;
    --rule: #D5D1C8;
    --rule-warm: #DDD6C5;
    --white: #FFFFFF;
    --warm-white: #FBF8F1;
    --max: 1240px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    color: var(--body);
    background: var(--warm-white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img, svg { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ─── Typography ─── */
  .display, h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    letter-spacing: -0.012em;
    line-height: 1.08;
    font-weight: 700;
  }
  .h-hero { font-size: clamp(38px, 5.4vw, 70px); line-height: 1.1; }
  .h-section { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.14; }
  .h-sub { font-size: clamp(20px, 2vw, 26px); line-height: 1.25; }

  .eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
  }
  .eyebrow.on-dark { color: var(--gold); }

  .lead { font-size: 18px; line-height: 1.68; color: var(--body); max-width: 58ch; }

  /* ─── Layout primitives ─── */
  .container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

  /* ─── Buttons ─── */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.04em;
    border: 1.5px solid var(--forest);
    background: var(--forest);
    color: var(--cream);
    border-radius: 2px;
    transition: all 0.18s ease;
    cursor: pointer;
  }
  .btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); transform: translateY(-1px); }
  .btn .arrow { transition: transform 0.18s ease; }
  .btn:hover .arrow { transform: translateX(3px); }
  .btn-secondary { background: transparent; color: var(--forest); }
  .btn-secondary:hover { background: var(--forest); color: var(--cream); }
  .btn-on-dark {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--forest-deep);
  }
  .btn-on-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

  /* ─── Nav ─── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251,248,241,0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule-warm);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px;
    max-width: var(--max);
    margin: 0 auto;
    gap: 32px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo .pillar-mark { width: 32px; height: 36px; }
  .nav-logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
  .nav-logo .word-abp { font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: -0.02em; }
  .nav-logo .word-sol { font-size: 8px; color: var(--forest); letter-spacing: 0.32em; font-weight: 500; margin-top: 3px; }
  .nav-links { display: flex; gap: 30px; align-items: center; }
  .nav-links a {
    font-size: 14px; font-weight: 500; color: var(--body);
    position: relative;
    padding: 4px 0;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links a.active::after {
    content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--gold);
  }
  .nav-cta { display: flex; align-items: center; gap: 14px; }
  .nav-cta .small-cta {
    font-size: 12px; padding: 10px 16px; border-radius: 2px;
    background: var(--navy); color: var(--cream);
    font-weight: 600; letter-spacing: 0.05em;
    border: 1.5px solid var(--navy);
  }
  .nav-cta .small-cta:hover { background: var(--forest); border-color: var(--forest); }

  /* ─── Hero ─── */
  .hero {
    padding: 96px 0 104px;
    border-bottom: 1px solid var(--rule-warm);
    background: linear-gradient(180deg, var(--warm-white) 0%, #F6F1E3 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero h1 { margin-top: 24px; }
  .hero h1 .gold-rule {
    display: inline-block;
    width: 52px; height: 3px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 0 18px 0;
  }
  .hero .lead { margin-top: 28px; font-size: 19px; }
  .hero-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid var(--rule-warm);
    display: flex;
    gap: 44px;
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .hero-meta strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 4px; }

  .hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-pillars { width: 100%; max-width: 380px; }
  .hero-pillars svg { width: 100%; height: auto; }
  .hero-stamp {
    position: absolute;
    bottom: 0; right: 0;
    font-family: Georgia, serif;
    font-style: italic;
    color: var(--gold-deep);
    font-size: 14px;
    text-align: right;
    max-width: 240px;
    line-height: 1.45;
  }
  .hero-stamp::before {
    content: ""; display: block;
    width: 24px; height: 1px; background: var(--gold);
    margin-bottom: 8px; margin-left: auto;
  }

  /* ─── Credibility band (revised) ─── */
  .creds {
    background: var(--forest);
    color: var(--cream);
    padding: 84px 0;
  }
  .creds-anchor {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: end;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201,169,97,0.35);
  }
  .creds-number {
    font-family: Georgia, serif;
    font-size: clamp(80px, 11vw, 144px);
    line-height: 0.92;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.03em;
  }
  .creds-number .yrs {
    font-size: 0.42em;
    color: var(--gold);
    letter-spacing: 0;
    margin-left: 4px;
  }
  .creds-tag {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.45;
    color: var(--cream);
    opacity: 0.93;
    max-width: 38ch;
    padding-bottom: 16px;
  }
  .creds-qual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 40px;
  }
  .creds-block dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
  }
  .creds-block dd {
    font-size: 15.5px;
    color: var(--cream);
    line-height: 1.55;
    opacity: 0.95;
  }

  /* ─── Sections ─── */
  section.scroll { scroll-margin-top: 80px; }
  .section { padding: 104px 0; }
  .section.cream { background: var(--cream); }
  .section.white { background: var(--white); }
  .section + .section { border-top: 1px solid var(--rule-warm); }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }
  .section-head .eyebrow { display: block; margin-bottom: 14px; }
  .section-head .head-aside {
    font-size: 16.5px;
    color: var(--body);
    max-width: 52ch;
    padding-bottom: 6px;
    line-height: 1.6;
  }

  /* ─── About preview ─── */
  .about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .about-body p + p { margin-top: 20px; }
  .about-body p { font-size: 17px; line-height: 1.72; color: var(--body); }
  .about-body .lead-first::first-letter {
    font-family: Georgia, serif;
    font-size: 56px;
    float: left;
    line-height: 0.9;
    margin: 8px 12px 0 0;
    color: var(--forest);
    font-weight: 700;
  }
  .about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    color: var(--forest);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold);
    text-transform: uppercase;
  }
  .about-link:hover { color: var(--forest-deep); }

  .about-pillars {
    background: var(--cream-warm);
    padding: 40px 36px 36px;
    border-left: 3px solid var(--gold);
  }
  .about-pillars dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .about-pillars dd {
    color: var(--ink);
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.45;
    font-weight: 500;
  }
  .about-pillars dd:last-of-type { margin-bottom: 0; }

  /* ─── Services (3×2 grid) ─── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule-warm);
    border-left: 1px solid var(--rule-warm);
  }
  .service {
    padding: 36px 32px 38px;
    border-right: 1px solid var(--rule-warm);
    border-bottom: 1px solid var(--rule-warm);
    background: var(--white);
    position: relative;
    transition: background 0.2s ease;
  }
  .service:hover { background: var(--cream); }
  .service-num {
    font-family: Georgia, serif;
    font-size: 14px;
    color: var(--gold-deep);
    font-style: italic;
    margin-bottom: 14px;
  }
  .service h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--navy);
    line-height: 1.18;
  }
  .service p { font-size: 14.5px; color: var(--body); line-height: 1.6; }
  .service ul {
    list-style: none;
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
  }
  .service ul li { padding: 3px 0; }
  .service ul li::before {
    content: "·  ";
    color: var(--gold-deep);
    font-weight: 700;
  }

  /* ─── Past performance (revised, no metric callouts) ─── */
  .pp-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--rule-warm);
  }
  .pp-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    padding: 40px 0;
    border-bottom: 1px solid var(--rule-warm);
    align-items: start;
  }
  .pp-client {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--forest);
  }
  .pp-client small {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 500;
  }
  .pp-body h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--ink);
    line-height: 1.2;
  }
  .pp-body p {
    font-size: 16px;
    color: var(--body);
    line-height: 1.7;
    max-width: 62ch;
  }
  .pp-tag {
    display: inline-block;
    margin-top: 18px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--forest);
    background: var(--cream-warm);
    border: 1px solid var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 1px;
  }
  .pp-cta { margin-top: 56px; text-align: center; }

  /* ─── Pull quote ─── */
  .pullquote {
    background: var(--cream);
    padding: 112px 0;
    text-align: center;
    position: relative;
  }
  .pullquote .container { max-width: 880px; }
  .pullquote-mark {
    font-family: Georgia, serif;
    font-size: 96px;
    color: var(--gold);
    line-height: 0.6;
    margin-bottom: 24px;
  }
  .pullquote blockquote {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.36;
    color: var(--ink);
    margin: 0 auto 32px;
    font-weight: 400;
  }
  .pullquote cite {
    font-style: normal;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .pullquote cite::before, .pullquote cite::after {
    content: ""; display: inline-block;
    width: 20px; height: 1px; background: var(--gold);
  }

  /* ─── Compliance band ─── */
  .compliance {
    background: var(--cream-warm);
    padding: 88px 0;
  }
  .compliance-head {
    text-align: left;
    margin-bottom: 48px;
    max-width: 720px;
  }
  .compliance-head h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin-top: 14px;
  }
  .compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    border-top: 1.5px solid var(--ink);
    padding-top: 32px;
  }
  .comp-block dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-deep);
    font-weight: 700;
    margin-bottom: 12px;
  }
  .comp-block dd {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.55;
    font-weight: 500;
  }
  .comp-block.naics dd { font-family: Georgia, serif; }

  /* ─── Final CTA ─── */
  .final-cta {
    background: var(--forest);
    color: var(--cream);
    padding: 104px 0;
    text-align: center;
  }
  .final-cta .eyebrow { color: var(--gold); }
  .final-cta h2 {
    font-family: Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--cream);
    margin: 20px auto 28px;
    max-width: 20ch;
    line-height: 1.14;
  }
  .final-cta p {
    color: var(--cream);
    opacity: 0.9;
    max-width: 56ch;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.65;
  }
  .final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ─── Footer ─── */
  footer {
    background: var(--navy);
    color: var(--cream);
    padding: 64px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .footer-brand .footer-tag {
    margin-top: 18px;
    font-family: Georgia, serif;
    font-style: italic;
    color: var(--gold);
    font-size: 15px;
    line-height: 1.5;
    max-width: 24ch;
  }
  .footer-col h4 {
    font-family: -apple-system, Arial, sans-serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(250,246,238,0.85);
  }
  .footer-col li a:hover { color: var(--gold); }
  .footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 12px;
    color: rgba(250,246,238,0.6);
    letter-spacing: 0.06em;
  }
  .footer-base .mwosb { color: var(--gold); font-weight: 600; letter-spacing: 0.12em; }

  /* ─── Responsive ─── */
  @media (max-width: 980px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { height: 320px; }
    .creds-anchor { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .creds-tag { padding-bottom: 0; }
    .creds-qual { grid-template-columns: 1fr; gap: 28px; }
    .section-head { grid-template-columns: 1fr; gap: 16px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .pp-item { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
    .compliance-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-base { flex-direction: column; gap: 12px; text-align: center; }
    .nav-links { display: none; }
    .section { padding: 72px 0; }
    .pullquote { padding: 84px 0; }
  }
  @media (max-width: 620px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero { padding: 64px 0 72px; }
    .hero-meta { flex-direction: column; gap: 16px; }
    .compliance-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-cta .small-cta { display: none; }
  }

/* ─────────────────────────────────────────────────── */
/*  PAGE-SPECIFIC STYLES (about / services / past perf / contact) */
/* ─────────────────────────────────────────────────── */

/* ─── Page hero (used on all internal pages) ─── */
.page-hero {
  padding: 88px 0 80px;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--rule-warm);
}
.page-hero .eyebrow {
  display: block;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  font-weight: 700;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 28px;
}
.page-hero h1 .gold-rule {
  display: block;
  width: 52px; height: 3px;
  background: var(--gold);
  margin: 0 0 22px 0;
}
.page-hero .lead {
  font-size: 19px;
  max-width: 64ch;
  line-height: 1.65;
}

/* ─── Founder section (about) ─── */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  border: 1px solid var(--rule-warm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo .photo-placeholder {
  text-align: center;
  color: var(--muted);
  padding: 32px;
}
.founder-photo .photo-placeholder svg {
  width: 56px;
  height: 64px;
  margin: 0 auto 18px;
  opacity: 0.4;
}
.founder-photo .photo-placeholder .ph-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.founder-photo .photo-placeholder .ph-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 22ch;
  margin: 0 auto;
}
.founder-content .founder-name {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 6px;
}
.founder-content .founder-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 20px;
}
.founder-content .founder-creds {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule-warm);
}
.founder-content p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
  margin-bottom: 18px;
}
.founder-content p:last-of-type { margin-bottom: 0; }

/* ─── Principles (about) ─── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-warm);
  border-left: 1px solid var(--rule-warm);
}
.principle {
  padding: 40px 36px;
  border-right: 1px solid var(--rule-warm);
  border-bottom: 1px solid var(--rule-warm);
  background: var(--white);
}
.principle .p-num {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.principle h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
}
.principle p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}

/* ─── Service deep blocks (services page) ─── */
.svc-block {
  padding: 88px 0;
  border-bottom: 1px solid var(--rule-warm);
}
.svc-block.cream { background: var(--cream); }
.svc-block.white { background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.svc-grid .svc-meta .svc-num {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.svc-grid .svc-meta h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 24px;
}
.svc-grid .svc-meta .svc-lead {
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
}
.svc-grid .svc-detail .svc-detail-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 20px;
}
.svc-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  padding-top: 20px;
  border-top: 1.5px solid var(--ink);
}
.svc-detail ul li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}
.svc-detail ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

/* ─── Engagement detail (past performance) ─── */
.engagement {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule-warm);
}
.engagement:first-child { padding-top: 0; }
.eng-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}
.eng-meta .eng-client {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.eng-meta .eng-sector {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule-warm);
}
.eng-meta dl dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 6px;
}
.eng-meta dl dd {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.eng-body h3 {
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 18px;
}
.eng-body .eng-desc {
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
  margin-bottom: 24px;
  max-width: 62ch;
}
.eng-scope {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-warm);
}
.eng-scope-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.eng-scope ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}
.eng-scope ul li {
  font-size: 14px;
  color: var(--body);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.eng-scope ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ─── Industries served strip ─── */
.industries {
  background: var(--forest);
  color: var(--cream);
  padding: 72px 0;
}
.industries h2 {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
}
.industries-list {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--cream);
  max-width: 50ch;
}
.industries-list .accent { color: var(--gold); font-style: italic; }

/* ─── Contact page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-direct dl dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-direct dl dd {
  margin-bottom: 32px;
}
.contact-direct .big-link {
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  transition: color 0.18s ease;
}
.contact-direct .big-link:hover { color: var(--forest); }
.contact-direct .plain {
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}
.contact-direct .hours {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}

.inquiry-types {
  background: var(--cream);
  padding: 36px 36px 32px;
  border-left: 3px solid var(--gold);
}
.inquiry-types h3 {
  font-family: -apple-system, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 24px;
}
.inquiry-types .inq {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule-warm);
}
.inquiry-types .inq:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.inquiry-types .inq-name {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 6px;
}
.inquiry-types .inq-desc {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}

/* Procurement specs strip (contact) */
.proc-specs {
  background: var(--cream-warm);
  padding: 56px 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1px solid var(--rule-warm);
}
.proc-specs-head {
  margin-bottom: 28px;
}
.proc-specs-head .eyebrow { display: block; margin-bottom: 8px; }
.proc-specs-head .label {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--ink);
  font-weight: 700;
}
.proc-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proc-specs-grid .spec dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.proc-specs-grid .spec dd {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}

/* ─── Responsive additions for new pages ─── */
@media (max-width: 920px) {
  .founder { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { max-width: 380px; }
  .principles-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail ul { grid-template-columns: 1fr; }
  .eng-grid { grid-template-columns: 1fr; gap: 24px; }
  .eng-scope ul { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .proc-specs-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 620px) {
  .proc-specs-grid { grid-template-columns: 1fr; }
}
