/* Agenda Corporate Services homepage styles.
   Productionised from the client-approved design direction
   (direction-1, modular institutional), locked 9 June.

   Brand source of truth: Agenda Brand Standards.
   Primary navy #125B9D (Pantone 647), secondary grey #454545 (Pantone Cool Grey 11).
   Secondary palette: yellow #F1C400, orange #EA7600, cyan #42C7CF, grey #8A8D8F.

   TYPEFACE NOTE: Brand fonts are Interstate (headings) and Arial (body).
   Decision 2026-07-21 (Tom): rather than licensing Interstate, headings use
   Overpass, a close but rarely used relative (shared US highway-signage
   lettering DNA). Body remains Arial, the brand body face. */

:root {
  --navy: #125B9D;
  --navy-deep: #0E4A82;
  --navy-ink: #0A2A4A;
  --charcoal: #454545;
  --yellow: #F1C400;
  --orange: #EA7600;
  --cyan: #42C7CF;
  --grey: #8A8D8F;
  --paper: #FBFCFD; /* near-white surface; pure #FFFFFF avoided deliberately */
  --paper-tint: #F4F6F9;
  --rule: #D9DEE5;
  --rule-strong: #B8C2CE;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  /* Headings: Overpass (Interstate-adjacent, decision 2026-07-21); body: brand Arial. */
  font-family: Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  background: var(--paper);
  color: var(--navy-ink);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
/* Headings: Overpass, the chosen Interstate-adjacent face. */
h1, h2, h3, h4 {
  font-family: 'Overpass', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; display: block; }

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--navy-ink);
  padding: 12px 20px;
  z-index: 100;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Utility strip */
.utility {
  background: var(--navy-ink);
  color: #C7D3E2;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.utility-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.utility-left { display: flex; gap: 24px; align-items: center; }
.utility-left span + span::before { content: '\00B7'; color: var(--yellow); margin-right: 16px; }
.utility-right { display: flex; gap: 18px; align-items: center; font-weight: 500; }
.utility-right a { color: #C7D3E2; text-decoration: none; }
.utility-right a:hover { color: var(--yellow); }

/* Nav */
nav.primary {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.cta {
  background: var(--navy);
  color: #fff;
  padding: 11px 22px;
  border-radius: 2px;
  font-weight: 600;
}
.nav-links a.cta:hover { background: var(--navy-deep); color: #fff; }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #0E4A82 0%, #0A3A6A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 32px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--yellow);
}
.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #C7D3E2;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy-ink);
}
.btn-primary:hover { background: #FFD42E; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

/* Hero side block */
.hero-side {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding: 8px 0 0 36px;
  margin-top: 16px;
}
.hero-side-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-side dl { display: grid; gap: 20px; }
.hero-side dt {
  font-size: 12px;
  color: #8FA5BD;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.hero-side dd {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.35;
}

/* Authority strip flush at hero base */
.authority {
  background: var(--navy-ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}
.authority-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.auth-cell {
  padding: 28px 24px 28px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.auth-cell:last-child { border-right: none; padding-right: 0; }
.auth-cell:not(:first-child) { padding-left: 24px; }
.auth-num {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 600;
}
.auth-num span { color: var(--yellow); font-size: 18px; vertical-align: top; margin-left: 4px; font-weight: 400; }
.auth-label {
  font-size: 12px;
  color: #8FA5BD;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Section base */
section { padding: 100px 0; }
.section-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: start;
}
.section-num {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.06em;
  padding-top: 12px;
  border-top: 2px solid var(--navy);
  display: inline-block;
  font-weight: 600;
}
.section-num em { font-style: normal; color: var(--charcoal); margin-left: 12px; text-transform: uppercase; font-size: 11px; letter-spacing: 0.12em; font-weight: 600; }
.section-title {
  font-size: 40px;
  line-height: 1.12;
  color: var(--navy-ink);
  max-width: 760px;
  letter-spacing: -0.02em;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.svc-card {
  grid-column: span 3;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 28px 32px;
  position: relative;
  transition: background 0.2s;
  background: #fff;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.svc-card:nth-child(1)::before { background: var(--navy); }
.svc-card:nth-child(2)::before { background: var(--yellow); }
.svc-card:nth-child(3)::before { background: var(--orange); }
.svc-card:nth-child(4)::before { background: var(--cyan); }
.svc-card:hover { background: var(--paper-tint); }
.svc-num {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
.svc-name {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy-ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.svc-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.svc-link {
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-link::after { content: '\2192'; transition: transform 0.2s; }
.svc-link:hover::after { transform: translateX(4px); }

/* Trust signals row */
.trust {
  background: var(--paper-tint);
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.trust-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  margin-bottom: 32px;
  font-weight: 700;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: stretch;
  list-style: none;
}
.trust-item {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 16px;
  color: var(--navy-ink);
  line-height: 1.35;
  padding-left: 16px;
  border-left: 2px solid var(--navy);
}

/* About teaser */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-head {
  font-size: 34px;
  line-height: 1.15;
  color: var(--navy-ink);
  letter-spacing: -0.02em;
}
.about-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.about-body a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
}

/* Audience teaser as navy table */
.audience { background: var(--navy-ink); color: #fff; }
.audience .section-num { color: var(--cyan); border-top-color: var(--cyan); }
.audience .section-num em { color: #8FA5BD; }
.audience .section-title { color: #fff; }
.audience-table {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.audience-row {
  display: grid;
  grid-template-columns: 60px 220px 1fr;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  gap: 20px;
}
.aud-num {
  font-family: 'Overpass', Arial, sans-serif;
  color: var(--cyan);
  font-size: 14px;
}
.aud-name {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.aud-path {
  font-family: 'Overpass', Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  color: #8FA5BD;
  letter-spacing: 0.02em;
}
.aud-arrow {
  text-align: right;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

/* Pillar guide */
.pillar { background: var(--paper); }
.pillar-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--rule);
}
.photo-placeholder {
  background: #ebebeb;
  border: 1.5px dashed #888;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  text-align: center;
  font-family: Arial, sans-serif;
  gap: 8px;
  min-height: 340px;
}
.photo-placeholder .ph-kicker {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}
.photo-placeholder .ph-note {
  font-size: 14px;
  font-style: italic;
  color: #444;
}
.pillar-body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pillar-title {
  font-size: 28px;
  line-height: 1.2;
  color: var(--navy-ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.pillar-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.pillar-cta {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 12px 22px;
  border: 1px solid var(--navy);
  border-radius: 2px;
}
.pillar-cta:hover { background: var(--navy); color: #fff; }

/* Testimonial, bordered card */
.testimonial { background: var(--paper-tint); }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 64px 72px;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 80px;
  background: var(--yellow);
}
.testimonial-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.placeholder-badge {
  background: rgba(241, 196, 0, 0.18);
  color: #6B5000;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.testimonial-quote {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 28px;
  line-height: 1.4;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 32px;
  font-weight: 400;
}
.testimonial-attr {
  font-size: 14px;
  color: var(--grey);
  letter-spacing: 0.02em;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.testimonial-note {
  font-size: 12px;
  color: var(--grey);
  margin-top: 12px;
  font-style: italic;
}

/* Final CTA */
.final {
  background: var(--navy);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.final-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.final h2 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}
.final p {
  font-size: 17px;
  color: #C7D3E2;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.final .btn-primary { font-size: 16px; padding: 18px 32px; }
.final-meta {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 40px;
}
.final-meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.final-meta dd {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.4;
}
.final-meta dd:last-child { margin-bottom: 0; }

/* Footer */
footer {
  background: var(--navy-ink);
  color: #8FA5BD;
  padding: 64px 0 32px;
  font-size: 13px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p { line-height: 1.6; }
.footer-col h4 {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #8FA5BD; text-decoration: none; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom a { color: #8FA5BD; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   The approved mockup ships a single 1080px breakpoint.
   Tablet (<=1080) keeps that behaviour; mobile (<=640) refines
   spacing, type scale, and the navy data tables for small screens.
   Desktop layout above is unchanged.
   ============================================================ */

/* Tablet and below */
@media (max-width: 1080px) {
  .hero-inner, .about, .pillar-card, .final-inner { grid-template-columns: 1fr; }
  .svc-card { grid-column: span 6; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .authority-inner { grid-template-columns: repeat(2, 1fr); }
  .auth-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .auth-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 24px; }
  .auth-cell:first-child { padding-left: 0; }
  .hero h1 { font-size: 42px; }
  .audience-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .aud-path, .aud-arrow { display: none; }
  .hero-side { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 32px; margin-top: 8px; }
  .final-meta { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 32px; }

  /* Collapsible nav for tablet/mobile */
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 12px 24px rgba(10,42,74,0.08);
    padding: 8px 0;
  }
  nav.primary { position: relative; }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 32px;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links a.cta {
    margin: 12px 32px 4px;
    text-align: center;
    border-bottom: none;
    border-radius: 2px;
  }
}

/* Tablet portrait */
@media (max-width: 820px) {
  section { padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .section-num { width: max-content; }
  .section-title { font-size: 32px; }
  .pillar-body { padding: 40px; }
  .testimonial-card { padding: 48px 40px; }
}

/* Mobile */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .utility-inner { flex-direction: column; align-items: flex-start; gap: 8px; padding: 10px 20px; }
  .utility-right { gap: 14px; }
  .nav-inner { padding: 16px 20px; }
  .hero-inner { padding: 48px 20px 0; gap: 40px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { gap: 12px; margin-bottom: 48px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .authority-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .auth-cell, .auth-cell:nth-child(odd) { border-right: none; padding: 20px 0; }
  .section-inner, .trust-inner, .final-inner, .footer-inner { padding-left: 20px; padding-right: 20px; }
  .section-title { font-size: 28px; }
  .svc-card { grid-column: span 12; }
  .trust-row { grid-template-columns: 1fr; gap: 20px; }
  .about { gap: 32px; }
  .about-head { font-size: 26px; }
  .about-body p { font-size: 16px; }
  .aud-name { font-size: 22px; }
  .pillar-body { padding: 32px 24px; }
  .pillar-title { font-size: 24px; }
  .testimonial-card { padding: 36px 24px; }
  .testimonial-quote { font-size: 22px; }
  .final h2 { font-size: 34px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PILLAR PAGE COMPONENTS
   Batch 1 (service pillars). Extends the homepage system;
   nothing above this line changes. Same palette, same rhythm.
   ============================================================ */

/* Breadcrumbs */
.breadcrumbs {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; color: var(--charcoal); }
.breadcrumbs li + li::before { content: '/'; color: var(--rule-strong); }
.breadcrumbs a { color: var(--navy); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--charcoal); }

/* Page hero: reduced-height variant of the home hero */
.hero--page .hero-inner { padding: 56px 32px 56px; }
.hero--page h1 { font-size: 44px; }

/* Sub-service grid variants (homepage grid is 4-up) */
.services-grid--three .svc-card { grid-column: span 4; }
.services-grid--two .svc-card { grid-column: span 6; }

/* Numbered process list */
.steps { border-top: 1px solid var(--rule); }
.step {
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
}
.step-num {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.step-name {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.step-body { font-size: 15px; line-height: 1.65; color: var(--charcoal); max-width: 640px; }
.step-body a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--navy); }

/* Statutory fact table */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--rule);
}
.fact-table th {
  text-align: left;
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  background: var(--paper-tint);
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
}
.fact-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--charcoal);
  line-height: 1.6;
}
.fact-table tr:last-child td { border-bottom: none; }
.fact-table td:first-child {
  font-family: 'Overpass', Arial, sans-serif;
  font-weight: 600;
  color: var(--navy-ink);
  width: 32%;
}
.fact-note { font-size: 12px; color: var(--grey); margin-top: 14px; font-style: italic; }

/* Prose blocks */
.prose { max-width: 800px; font-size: 16px; line-height: 1.7; color: var(--charcoal); }
.prose p + p { margin-top: 18px; }
.prose h3 {
  font-size: 22px;
  color: var(--navy-ink);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.prose h3:first-child { margin-top: 0; }
.prose ul { margin: 16px 0 16px 20px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--navy); }
.prose a:hover { color: var(--navy-deep); }

/* Prose with side panel */
.body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.side-panel {
  border: 1px solid var(--rule);
  background: #fff;
  padding: 28px;
}
.side-panel h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-bottom: 18px;
  font-weight: 700;
}
.side-panel ul { list-style: none; }
.side-panel li { padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
.side-panel li:last-child { border-bottom: none; }
.side-panel a { color: var(--navy); font-weight: 600; text-decoration: none; }
.side-panel a:hover { text-decoration: underline; }
.side-panel p { font-size: 14px; line-height: 1.6; color: var(--charcoal); }

/* FAQ (native details/summary, no JS dependency) */
.faq-list { border-top: 1px solid var(--rule); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  font-family: 'Overpass', Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--navy); font-size: 22px; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 0 26px; color: var(--charcoal); font-size: 15px; line-height: 1.65; max-width: 760px; }
.faq-answer p + p { margin-top: 12px; }
.faq-answer a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--navy); }

/* Pillar-page responsive refinements */
@media (max-width: 1080px) {
  .body-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid--three .svc-card { grid-column: span 6; }
}
@media (max-width: 820px) {
  .hero--page h1 { font-size: 34px; }
  .step { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .fact-table td:first-child { width: auto; }
}
@media (max-width: 640px) {
  .breadcrumbs ol { padding: 12px 20px; }
  .services-grid--three .svc-card, .services-grid--two .svc-card { grid-column: span 12; }
  .fact-table { display: block; overflow-x: auto; }
  .faq-item summary { font-size: 16px; }
}

/* ============================================================
   LIVE-FEEL FEATURE PACK
   Contact form, intro-call modal, resource toast, and cookie
   consent. The banner, toast, and modal markup is injected by
   js/site.js; only the contact page carries the form markup.
   Same palette, same rhythm as everything above.
   ============================================================ */

/* Utility strip booking entry point */
.utility-right a.utility-book { color: var(--yellow); font-weight: 600; }
.utility-right a.utility-book:hover { color: #FFD42E; }

/* Navy outline button for light surfaces (mirrors .pillar-cta) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  background: transparent;
  text-decoration: none;
  font-family: Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--paper); }

/* Contact form */
.contact-form { max-width: 760px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-ink);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-size: 15px;
  color: var(--navy-ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 12px 14px;
  width: 100%;
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 1px;
  border-color: var(--navy);
}
.form-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-actions .btn-primary { border: none; cursor: pointer; font-family: inherit; }
.form-actions .btn-primary:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-note { font-size: 12px; color: var(--grey); }

/* Netlify honeypot field, visually removed but present in the DOM */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submission states */
.form-success {
  position: relative;
  max-width: 760px;
  background: var(--paper-tint);
  border: 1px solid var(--rule);
  padding: 44px 48px;
}
.form-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 64px;
  background: var(--yellow);
}
.form-success:focus { outline: none; }
.form-success:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.form-success h2 {
  font-size: 26px;
  color: var(--navy-ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.form-success p { font-size: 15px; line-height: 1.65; color: var(--charcoal); }
.form-success p + p { margin-top: 12px; }
.form-error {
  margin-top: 20px;
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-ink);
  max-width: 640px;
}

/* Intro-call side panel action spacing */
.side-panel .btn-outline { margin-top: 18px; }

/* Intro-call modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 42, 74, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: var(--paper);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 24px 64px rgba(10, 42, 74, 0.3);
  padding: 44px 48px;
}
.modal:focus { outline: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  border-radius: 2px;
}
.modal-close:hover { color: var(--navy-ink); background: var(--paper-tint); }
.modal-kicker {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 14px;
}
.modal-title {
  font-size: 28px;
  line-height: 1.15;
  color: var(--navy-ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-right: 24px;
}
.modal-desc p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.modal-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.modal-dismiss {
  background: none;
  border: none;
  font-family: Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  padding: 8px 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-dismiss:hover { color: var(--navy); }
.booking-note[hidden] { display: none; }
.booking-note {
  display: inline-block;
  margin-top: 16px;
  background: rgba(241, 196, 0, 0.18);
  color: #6B5000;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 2px;
}
body.modal-open { overflow: hidden; }

/* Resource toast */
.site-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--yellow);
  box-shadow: 0 16px 40px rgba(10, 42, 74, 0.18);
  padding: 20px 22px;
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  /* pointer-events gating: while sliding in or out the toast must not
     swallow clicks aimed at content behind it */
  pointer-events: none;
  transition:
    transform 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 280ms ease;
}
.site-toast.is-visible { transform: none; opacity: 1; pointer-events: auto; }
.site-toast[hidden] { display: none; }
.toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  border-radius: 2px;
}
.toast-close:hover { color: var(--navy-ink); background: var(--paper-tint); }
.toast-kicker {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 8px;
  padding-right: 28px;
}
.toast-title {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy-ink);
  margin-bottom: 8px;
}
.toast-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.toast-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}
.toast-cta:hover { color: var(--navy-deep); }

/* Cookie consent bar */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--navy-ink);
  color: #C7D3E2;
  border-top: 2px solid var(--yellow);
  box-shadow: 0 -8px 24px rgba(10, 42, 74, 0.25);
}
.consent-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 32px;
}
.consent-main {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.consent-text {
  flex: 1 1 320px;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.consent-text a { color: var(--yellow); }
.consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.consent-btn {
  font-family: Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.consent-btn-accept {
  background: var(--yellow);
  color: var(--navy-ink);
  border: 1px solid var(--yellow);
}
.consent-btn-accept:hover { background: #FFD42E; border-color: #FFD42E; }
.consent-btn-ghost {
  background: transparent;
  color: #C7D3E2;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.consent-btn-ghost:hover { color: var(--paper); border-color: var(--paper); }
.consent-prefs { max-width: 720px; padding-top: 4px; }
.consent-prefs-title {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 14px;
}
.consent-cat {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.consent-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.consent-cat-name {
  font-family: 'Overpass', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
}
label.consent-cat-name { cursor: pointer; }
.consent-cat-badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(241, 196, 0, 0.4);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.consent-cat-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #8FA5BD;
  margin: 0;
}
.consent-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-prefs .consent-actions { margin-top: 16px; }

/* Feature pack, small screens */
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-success { padding: 32px 24px; }
  .modal { padding: 36px 24px; }
  .site-toast { right: 16px; left: 16px; bottom: 16px; width: auto; }
  .consent-inner { padding: 16px 20px; }
  .consent-main { flex-direction: column; align-items: flex-start; gap: 14px; }
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1 1 auto; text-align: center; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Print: show full page */
@media print {
  .utility, .nav-toggle, nav.primary { position: static; }
  .hero, .final, .audience, footer { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ==================================================================
   Glossary page (/glossary)
   A-Z jump navigation and the definition list. Tokens and rhythm
   match the fact-table and side-panel components above.
   ================================================================== */
.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.glossary-nav a {
  font-family: 'Overpass', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--rule);
  padding: 6px 12px;
  background: #fff;
}
.glossary-nav a:hover {
  border-color: var(--navy);
  background: var(--paper-tint);
}
.term-group {
  scroll-margin-top: 96px;
  border-top: 1px solid var(--rule-strong);
  padding-top: 26px;
  margin-bottom: 44px;
  max-width: 980px;
}
.term-letter {
  font-family: 'Overpass', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
.term-list { margin: 0; }
.term {
  scroll-margin-top: 96px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
.term:last-child { border-bottom: none; }
.term dt {
  font-family: 'Overpass', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-ink);
}
.term dd {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  margin: 0;
}
.term dd a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
}
.term dd a:hover { color: var(--navy-deep); }
@media (max-width: 720px) {
  .term { grid-template-columns: 1fr; gap: 8px; }
}

/* Photo exhibit device: offset hairline frame, yellow corner ticks,
   small caption. Images read as mounted exhibits, not placed stock. */
.photo-exhibit { position: relative; padding: 10px; }
.photo-exhibit::before { content: ''; position: absolute; inset: 0; border: 1px solid rgba(10, 42, 74, 0.3); pointer-events: none; }
.photo-exhibit::after { content: ''; position: absolute; top: -1px; left: -1px; width: 14px; height: 14px; border-top: 2px solid var(--yellow); border-left: 2px solid var(--yellow); }
.photo-exhibit .exhibit-tick { position: absolute; bottom: -1px; right: -1px; width: 14px; height: 14px; border-bottom: 2px solid var(--yellow); border-right: 2px solid var(--yellow); }
.photo-exhibit img { width: 100%; height: auto; object-fit: cover; display: block; }
.photo-exhibit figcaption { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); padding: 8px 2px 0; }
.photo-exhibit figcaption b { color: var(--navy); font-weight: 600; }
.hero-textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600;
                 font-size: 15px; color: #fff; padding: 16px 4px; text-decoration: none; }
.hero-textlink:hover { color: var(--yellow); }

  /* Legal pages (privacy, terms, sub-processors), added 2026-08-14 */
  .legal-body { max-width: 760px; }
  .legal-body h2 { font-family: var(--display, 'Overpass', Arial, sans-serif); font-size: 21px; font-weight: 600; line-height: 1.25; margin: 36px 0 12px; color: var(--navy-ink, #0A2A4A); }
  .legal-body h2:first-child { margin-top: 0; }
  .legal-body h3 { font-family: var(--display, 'Overpass', Arial, sans-serif); font-size: 16px; font-weight: 600; margin: 22px 0 8px; color: var(--navy-ink, #0A2A4A); }
  .legal-body p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft, #454545); margin: 0 0 14px; }
  .legal-body ul { margin: 0 0 16px; padding-left: 22px; }
  .legal-body li { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft, #454545); margin-bottom: 8px; }
  .legal-body a { color: var(--navy, #125B9D); font-weight: 600; }
  .legal-table-wrap { overflow-x: auto; margin: 0 0 18px; max-width: 900px; }
  .legal-table { border-collapse: collapse; width: 100%; font-size: 13.5px; }
  .legal-table th, .legal-table td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--rule, #E1E5EA); }
  .legal-table th { font-family: var(--mono, 'Spline Sans Mono', monospace); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy, #125B9D); font-weight: 600; }
  .legal-table td { color: var(--ink-soft, #454545); line-height: 1.5; }
  .legal-note { font-size: 13px; color: var(--silver, #8A8D8F); font-style: normal; max-width: 760px; }

/* Mobile fixes, 2026-09-03 (Tom's review): consent bar height, utility strip, card spacing */
@media (max-width: 640px) {
  /* 1. Consent bar: the 320px flex-basis became a 320px-tall block once the row turned into a column */
  .consent-text { flex: 0 0 auto; }

  /* 2. Utility strip: drop the descriptive line and the EN stub, keep Contact, make Book an intro call the obvious action on the right */
  .utility-left { display: none; }
  .utility-inner { flex-direction: row; align-items: center; justify-content: flex-end; gap: 0; padding: 8px 20px; }
  .utility-right { width: 100%; justify-content: flex-end; gap: 16px; }
  .utility-right a[href="#en"] { display: none; }
  .utility-right a.utility-book { order: 2; border: 1px solid rgba(241, 196, 0, 0.6); padding: 6px 12px; white-space: nowrap; }

  /* 3. Service cards: stacked cards get their own border and a gap instead of one shared rule */
  .services-grid { border: 0; gap: 16px; }
  .svc-card { border: 1px solid var(--rule); }
}

/* Audiences: statement rows, no sub-pages behind them (2026-09-03) */
@media (max-width: 640px) {
  .audience-row { grid-template-columns: 40px 1fr; row-gap: 6px; padding: 22px 0; }
  .aud-path { grid-column: 2; }
  .aud-name { font-size: 22px; }
}
