/* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* Brand palette — exact values, nothing else */
    :root {
      --navy:   #1B2A4A;   /* Deep Navy   — primary */
      --slate:  #556578;   /* Slate Grey  — secondary */
      --light:  #E8ECF0;   /* Light Bg    — dividers */
      --white:  #FFFFFF;   /* White       — backgrounds */
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      color: var(--navy);
      background: var(--white);
      line-height: 1.5;
    }

    /* ── Typography ── */
    h1, h2, h3, h4 {
      font-family: 'Georgia', 'Times New Roman', serif;
      line-height: 1.25;
    }

    p { line-height: 1.5; }

    /* ── Layout ── */
    .container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 32px;
    }

    section { padding: 96px 0; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--navy);
      border-bottom: 1px solid var(--slate);
    }

    .nav-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: 'Georgia', serif;
      font-size: 1.1rem;
      font-weight: normal;
      color: var(--white);
      letter-spacing: 0.06em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--light);
      text-decoration: none;
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    /* ── HAMBURGER (mobile) ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
    }

    /* ── HERO ── */
    #home {
      background: var(--navy);
      padding: 160px 0 96px;
    }

    .hero-eyebrow {
      display: inline-block;
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--slate);
    }

    .hero-headline {
      font-size: clamp(2.1rem, 5vw, 3.2rem);
      color: var(--white);
      font-weight: bold;
      max-width: 720px;
      margin-bottom: 28px;
    }

    .hero-tagline {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 1.05rem;
      color: var(--light);
      max-width: 580px;
      margin-bottom: 52px;
      line-height: 1.6;
    }

    .hero-divider {
      width: 48px;
      height: 2px;
      background: var(--slate);
      margin-bottom: 32px;
    }

    .hero-distinction {
      font-family: 'Georgia', serif;
      font-size: 1.25rem;
      font-style: italic;
      color: var(--white);
      max-width: 520px;
      line-height: 1.6;
    }

    /* ── SECTION LABELS ── */
    .section-label {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--slate);
      margin-bottom: 12px;
    }

    .section-label-light {
      color: var(--light);
    }

    .section-title {
      font-family: 'Georgia', serif;
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      color: var(--navy);
      font-weight: bold;
      margin-bottom: 16px;
    }

    .section-title-light {
      color: var(--white);
    }

    .title-rule {
      width: 48px;
      height: 2px;
      background: var(--navy);
      margin-bottom: 52px;
    }

    .title-rule-light {
      background: var(--light);
    }

    /* ── SERVICES ── */
    #services {
      background: var(--light);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--slate);
      border: 1px solid var(--slate);
    }

    .service-card {
      background: var(--white);
      padding: 44px 36px;
    }

    .service-number {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      color: var(--slate);
      margin-bottom: 20px;
    }

    .service-title {
      font-family: 'Georgia', serif;
      font-size: 1rem;
      font-weight: bold;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .service-body {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.93rem;
      color: var(--slate);
      line-height: 1.6;
    }

    /* ── TRACK RECORD ── */
    #results {
      background: var(--navy);
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--slate);
      border: 1px solid var(--slate);
    }

    .result-card {
      background: var(--navy);
      padding: 40px 28px;
      text-align: center;
    }

    .result-number {
      font-family: 'Georgia', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: bold;
      color: var(--white);
      margin-bottom: 12px;
    }

    .result-label {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.85rem;
      color: var(--light);
      line-height: 1.5;
    }

    .results-note {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.78rem;
      color: var(--slate);
      margin-top: 32px;
      text-align: center;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 80px;
      align-items: start;
    }

    .about-right p {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.95rem;
      color: var(--slate);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .about-right p:last-child { margin-bottom: 0; }

    /* ── WHY CHOOSE ── */
    #why {
      background: var(--navy);
    }

    .why-intro {
      font-family: 'Georgia', serif;
      font-size: clamp(1rem, 2vw, 1.35rem);
      font-style: italic;
      color: var(--white);
      margin-bottom: 64px;
      white-space: nowrap;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--slate);
      border: 1px solid var(--slate);
    }

    .pillar {
      background: var(--navy);
      padding: 44px 36px;
      border-top: 2px solid var(--slate);
      transition: border-top-color 0.2s;
    }

    .pillar:hover { border-top-color: var(--white); }

    .pillar-rule {
      width: 32px;
      height: 2px;
      background: var(--slate);
      margin-bottom: 28px;
    }

    .pillar-title {
      font-family: 'Georgia', serif;
      font-size: 1rem;
      font-weight: bold;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .pillar-body {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.9rem;
      color: var(--light);
      line-height: 1.6;
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--light);
    }

    .contact-inner {
      max-width: 680px;
    }

    .contact-body {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.95rem;
      color: var(--slate);
      line-height: 1.6;
      margin-bottom: 36px;
    }

    .contact-email-link {
      display: inline-block;
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 1rem;
      font-weight: bold;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--navy);
      padding-bottom: 3px;
      margin-bottom: 32px;
      transition: color 0.2s, border-color 0.2s;
    }

    .contact-email-link:hover {
      color: var(--slate);
      border-color: var(--slate);
    }

    .contact-cta {
      font-family: 'Georgia', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: var(--navy);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 32px 0;
      text-align: center;
      border-top: 1px solid var(--slate);
    }

    .footer-text {
      font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
      font-size: 0.8rem;
      color: var(--light);
      letter-spacing: 0.04em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
      section { padding: 72px 0; }

      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        border-top: 1px solid var(--slate);
      }
      .nav-links.open { display: flex; }
      .nav-links li a {
        display: block;
        padding: 14px 32px;
      }

      .services-grid { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: 1fr 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .pillars-grid { grid-template-columns: 1fr; }
      .why-intro { white-space: normal; }

      #home { padding: 130px 0 72px; }
    }

    @media (max-width: 520px) {
      .container { padding: 0 20px; }
      .hero-headline { font-size: 1.9rem; }
    }

/* ─────────────────────────────────────────────
   MULTI-PAGE ADDITIONS
   ───────────────────────────────────────────── */

/* Inner-page hero (smaller navy band) */
.page-hero {
  background: var(--navy);
  padding: 150px 0 72px;
}
.page-hero .hero-eyebrow { margin-bottom: 18px; }
.page-hero-title {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--white);
  font-weight: bold;
  max-width: 780px;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--light);
  max-width: 620px;
  line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  background: var(--light);
  border-bottom: 1px solid #d7dde3;
}
.breadcrumbs a, .breadcrumbs span {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--slate);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs .sep { margin: 0 8px; color: #b6bfc9; }
.breadcrumbs .current { color: var(--navy); }

/* Article / prose content */
.prose { max-width: 760px; }
.prose h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  color: var(--navy);
  margin: 40px 0 14px;
}
.prose h3 {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 28px 0 10px;
}
.prose p {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 18px;
}
.prose ul { margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.prose li {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 0 0 12px 26px;
  position: relative;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 2px;
  background: var(--slate);
}
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--slate); }
.prose .lead {
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border: 1px solid var(--navy);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: transparent; color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--slate); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* Service hub cards (linked) */
.service-card-link {
  display: block;
  text-decoration: none;
  background: var(--white);
  padding: 44px 36px;
  transition: transform 0.2s;
}
.service-card-link:hover { transform: translateY(-3px); }
.service-card-link .service-title { transition: color 0.2s; }
.service-card-link:hover .service-title { color: var(--slate); }
.service-more {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Related links row */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--slate);
  border: 1px solid var(--slate);
  margin-top: 24px;
}
.related-card {
  background: var(--white);
  padding: 28px 30px;
  text-decoration: none;
  display: block;
}
.related-card .related-label {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.related-card .related-title {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--navy);
}
.related-card:hover .related-title { color: var(--slate); }

/* CTA band */
.cta-band { background: var(--navy); }
.cta-band .container { text-align: center; }
.cta-title {
  font-family: 'Georgia', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  font-weight: bold;
  margin-bottom: 16px;
}
.cta-text {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 1rem;
  color: var(--light);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Richer footer */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  text-align: left;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--slate);
}
.footer-brand {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-tag {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--light);
  line-height: 1.6;
  max-width: 320px;
}
.footer-head {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}
.footer-grid a {
  display: block;
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--light);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--white); }
.footer-copy {
  font-family: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--slate);
  text-align: center;
}
footer { text-align: center; }

@media (max-width: 820px) {
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 120px 0 56px; }
}
