/* ==========================================================================
   Unity Workforce Solutions Ltd — Site Stylesheet
   Brand tokens: Navy #0D2D6C · Red #EF4046 · Light Blue #BFDDF4
   ========================================================================== */

:root {
  --navy: #0d2d6c;
  --navy-dark: #081c46;
  --navy-mid: #133a86;
  --red: #ef4046;
  --red-dark: #d32b31;
  --light-blue: #bfddf4;
  --dark: #1d1d1d;
  --grey-text: #5a6472;
  --bg: #ffffff;
  --grey: #f5f7fa;
  --border: #e3e8ef;
  --white: #ffffff;
  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 16px 40px rgba(13, 45, 108, 0.14);
  --shadow-sm: 0 6px 18px rgba(13, 45, 108, 0.08);
  --max: 1180px;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: 0.6s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 16px; color: var(--dark); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.accent-red { color: var(--red); }

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Motion system: scroll reveals + entry animation + hover choreography
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll-triggered reveals: JS toggles .in-view on .reveal elements */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-group.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-group.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-group.in-view > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-group.in-view > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-group.in-view > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-group.in-view > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-group.in-view > *:nth-child(6) { transition-delay: 0.42s; }

/* Hero entry animation on load (above the fold — no scroll trigger needed) */
.hero-copy > .eyebrow { animation: fadeUp 0.7s var(--ease) 0.05s both; }
.hero-copy > h1 { animation: fadeUp 0.75s var(--ease) 0.15s both; }
.hero-copy > .hero-subhead { animation: fadeUp 0.75s var(--ease) 0.28s both; }
.hero-copy > .hero-ctas { animation: fadeUp 0.75s var(--ease) 0.4s both; }
.hero-visual { animation: fadeIn 1s var(--ease) 0.1s both; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .hero-copy > *, .hero-visual { animation: none !important; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); box-shadow: var(--shadow); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 10px 24px rgba(239, 64, 70, 0.3); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li { list-style: none; }
.mobile-nav-logo { display: none; }
.main-nav a {
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s ease;
}
.main-nav a::before {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover::before { transform: scaleX(1); }
.main-nav a:hover { background: var(--grey); }
.main-nav a[aria-current="page"] { color: var(--red); }
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-dropdown-toggle:hover { background: var(--grey); }
.nav-dropdown-toggle .chev { transition: transform 0.15s ease; font-size: 0.7em; }
.nav-dropdown[data-open="true"] .chev { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 230px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown[data-open="true"] .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--dark);
}
.nav-dropdown-menu a:hover { background: var(--grey); color: var(--navy); }
/* Dropdown items are a vertical list, not the horizontal top-nav, so they
   don't use its underline pseudo-elements — those would either overlap the
   next item (positioned absolutely with little room in a tightly stacked
   list) or double up with the hover background on the active item. A plain
   background + colour treatment reads better here. */
.nav-dropdown-menu a::before,
.nav-dropdown-menu a[aria-current="page"]::after { content: none; }
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--red);
  background: var(--grey);
  font-weight: 700;
}

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 460;
  width: 42px;
  height: 42px;
  background: none;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.nav-toggle-bars {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle-bars .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

html.nav-locked, html.nav-locked body {
  overflow: hidden;
  height: 100%;
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(76, 88, 110, 0.32);
  z-index: 400;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.nav-scrim[data-open="true"] { display: block; opacity: 1; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 88px 12px 24px;
    box-shadow: -12px 0 40px rgba(13, 45, 108, 0.18);
    z-index: 450;
    gap: 2px;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.38s var(--ease), opacity 0.3s var(--ease), visibility 0s linear 0.38s;
  }
  .main-nav[data-open="true"] {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.38s var(--ease), opacity 0.3s var(--ease), visibility 0s linear 0s;
  }
  .main-nav a {
    padding: 15px 16px;
    border-radius: var(--radius-sm);
    display: block;
  }
  .main-nav a::before { display: none; }
  .main-nav li + li { margin-top: 2px; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    margin-top: 2px;
    gap: 2px;
  }
  .nav-dropdown-menu a { padding: 13px 16px; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 15px 16px; }
  .mobile-nav-logo {
    display: block;
    padding: 4px 16px 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav-logo img { height: 38px; width: auto; }
  .nav-toggle { display: block; }
  .header-cta .btn span.btn-text-long { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav, .nav-scrim, .nav-toggle-bars .bar {
    transition-duration: 0.001ms !important;
  }
}

/* ==========================================================================
   Hero — full-bleed photography to the right, asymmetric split
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grey);
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero-visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,45,108,0.05), rgba(13,45,108,0.22));
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 540px; padding: 88px 0; }
.hero-subhead { font-size: 1.1rem; color: var(--grey-text); max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero { display: block; min-height: 0; }
  .hero-visual {
    position: static;
    width: 100%;
    height: 260px;
    clip-path: none;
  }
  .hero-copy { padding: 32px 0; max-width: none; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { background: var(--navy); padding: 26px 0; }
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-item { color: #fff; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 0.98rem; margin-bottom: 4px; }
.trust-item span { color: #c9d6ef; font-size: 0.9rem; }
@media (max-width: 900px) {
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Sections generic
   ========================================================================== */
.section { padding: 76px 0; }
.section-grey { background: var(--grey); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #cfd9ec; }
.section-navy .checklist li { color: #fff; }
.section-navy .eyebrow { color: #ff8f92; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p { color: var(--grey-text); font-size: 1.05rem; }
.section-navy .section-head p { color: #cfd9ec; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Card grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.section-navy .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: 6px;
  background: var(--light-blue);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card-plain { border-top: 3px solid var(--border); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease; }
.card-plain:hover { border-top-color: var(--red); }
.section-navy .card-plain { border-top-color: rgba(255,255,255,0.18); }
.section-navy .card-plain:hover { border-top-color: var(--red); }
.card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card p { color: var(--grey-text); font-size: 0.95rem; margin-bottom: 0; }
.section-navy .card p { color: #c9d6ef; }

/* Sector cards with image + link */
.sector-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.sector-card .sc-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.sector-card .sc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.sector-card:hover .sc-media img { transform: scale(1.08); }
.sector-card .sc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.sector-card h3 { margin-bottom: 8px; }
/* .sector-card always has a solid white body regardless of the section
   behind it, so its heading must stay navy even inside .section-navy
   (which otherwise turns h2/h3 white for direct use on the navy background). */
.section-navy .sector-card h3 { color: var(--navy); }
.sector-card p { color: var(--grey-text); font-size: 0.95rem; flex: 1; }
.sector-card .sc-link {
  font-weight: 700;
  color: var(--red);
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sector-card .sc-link .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.sector-card:hover .sc-link .arrow { transform: translateX(5px); }

/* Pills */
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.section-navy .pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; }

/* Checklist */
.checklist { list-style: none; margin: 0 0 24px; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  top: 2px;
}

/* Two column layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }

/* Challenge card (side panel with red accent list) */
.side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--red); margin-bottom: 14px; }
.side-card ul { margin: 0; padding: 0; list-style: none; }
.side-card ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  color: var(--dark);
  font-size: 0.95rem;
}
.side-card ul li:last-child { margin-bottom: 0; }
.side-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

/* Two-card challenge/approach layout */
.duo-card { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .duo-card { grid-template-columns: 1fr; } }

/* ==========================================================================
   Verification checklist — process-led, distinct from pill_list/qualities
   ========================================================================== */
.verify-list {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}
.verify-item {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 0 0 26px;
}
.verify-item:last-child { padding-bottom: 0; }
.verify-check {
  position: absolute;
  left: -29px;
  top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--grey);
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.verify-item:hover .verify-check { background: var(--red); transform: scale(1.15); }
.verify-body h3 { font-size: 0.98rem; margin-bottom: 4px; }
.verify-body p { font-size: 0.95rem; color: var(--grey-text); margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .verify-check { transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Quality statement — central message treatment (Warehouse), distinct
   from the Healthcare qualities_strip band
   ========================================================================== */
.quality-statement { text-align: center; max-width: 820px; margin: 0 auto; }
.quality-lead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.3;
}
.quality-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--light-blue);
}
.q-dot { color: var(--red); font-size: 0.7rem; margin: 0 4px; }

/* ==========================================================================
   Charter — formal service-standard presentation
   ========================================================================== */
.charter {
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 32px 36px;
  background: #fff;
}
.charter > h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.charter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
@media (max-width: 700px) { .charter-grid { grid-template-columns: 1fr; } }
.charter-item { display: flex; align-items: center; gap: 12px; }
.charter-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.charter-item p { margin: 0; font-weight: 600; color: var(--dark); font-size: 0.98rem; }

/* ==========================================================================
   Journey pillars (Understand / Recruit / Support style structure)
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-step {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.pillar:nth-child(2) .pillar-step { background: var(--red); }
.pillar:nth-child(3) .pillar-step { background: var(--navy-mid); }
.pillar h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pillar p { color: var(--grey-text); font-size: 0.94rem; margin-bottom: 16px; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pillar-tag {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
@media (prefers-reduced-motion: reduce) {
  .pillar { transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Mission/Promise/Commitment style offset connected progression
   ========================================================================== */
.progression {
  display: flex;
  align-items: stretch;
  gap: 4px;
}
.prog-panel {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.prog-panel:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.progression > .prog-panel:nth-of-type(1) { margin-top: 0; }
.progression > .prog-panel:nth-of-type(2) { margin-top: 26px; }
.progression > .prog-panel:nth-of-type(3) { margin-top: 52px; }
.prog-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: var(--light-blue);
  margin-bottom: 6px;
}
.prog-panel h3 { font-size: 1.05rem; margin-bottom: 8px; }
.prog-panel p { font-size: 0.94rem; color: var(--grey-text); margin-bottom: 0; }
.prog-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 1.3rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .progression { flex-direction: column; gap: 16px; }
  .progression > .prog-panel:nth-of-type(2),
  .progression > .prog-panel:nth-of-type(3) { margin-top: 0; }
  .prog-arrow { transform: rotate(90deg); padding: 2px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .prog-panel { transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Numbered principles panel
   ========================================================================== */
.principles-panel {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.principles-panel h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--red); margin-bottom: 18px; }
.principle-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.principle-row:first-of-type { border-top: none; padding-top: 0; }
.principle-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--light-blue);
  flex-shrink: 0;
  min-width: 32px;
}
.principle-row p { margin: 0; font-size: 0.97rem; color: var(--dark); }

/* ==========================================================================
   Service pathway — connected vertical sequence, replaces checkmark bullets
   ========================================================================== */
.pathway { margin: 20px 0 28px; padding-left: 4px; }
.pathway-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 20px 0;
  margin-left: 6px;
  border-left: 2px solid rgba(255,255,255,0.18);
  padding-left: 22px;
}
.pathway-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.pathway-dot {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--navy);
}
.pathway-item p { margin: 0; color: #fff; font-size: 0.98rem; font-weight: 500; }
.section:not(.section-navy) .pathway-item { border-left-color: var(--border); }
.section:not(.section-navy) .pathway-dot { box-shadow: 0 0 0 4px #fff; }
.section:not(.section-navy) .pathway-item p { color: var(--dark); }

/* ==========================================================================
   Challenge -> Response paired list (replaces single bullet "challenges" panel)
   ========================================================================== */
.cr-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.cr-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  transition: background 0.25s ease;
}
.cr-row:nth-child(even) { background: var(--grey); }
.cr-row:hover { background: var(--light-blue); }
.cr-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.cr-response .cr-label { color: var(--navy); }
.cr-challenge p, .cr-response p { margin: 0; font-size: 0.96rem; color: var(--dark); }
.cr-arrow { color: var(--border); font-size: 1.2rem; }
.cr-disclaimer { margin-top: 16px; font-size: 0.86rem; color: var(--grey-text); font-style: italic; }

@media (max-width: 700px) {
  .cr-row { grid-template-columns: 1fr; gap: 10px; padding: 16px 18px; }
  .cr-arrow { display: none; }
  .cr-response { padding-left: 14px; border-left: 3px solid var(--navy); }
}

/* ==========================================================================
   Challenge -> Approach -> Outcome flow (replaces flat duo-card)
   ========================================================================== */
.flow-sequence {
  display: flex;
  align-items: stretch;
  gap: 6px;
}
.flow-panel {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.flow-panel:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.flow-panel.flow-challenge { border-top-color: var(--red); margin-top: 0; }
.flow-panel.flow-approach { border-top-color: var(--navy); margin-top: 28px; }
.flow-panel.flow-outcome { border-top-color: var(--light-blue); margin-top: 56px; }
.flow-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.flow-challenge .flow-label { color: var(--red); }
.flow-approach .flow-label { color: var(--navy); }
.flow-outcome .flow-label { color: #4a90c2; }
.flow-panel p { font-size: 0.94rem; color: var(--grey-text); margin-bottom: 0; }
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--border);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 900px) {
  .flow-sequence { flex-direction: column; gap: 16px; }
  .flow-panel.flow-approach, .flow-panel.flow-outcome { margin-top: 0; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .flow-panel { transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Values list — editorial/typographic, replaces icon-box card treatment
   ========================================================================== */
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
}
.value-row {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: padding-left 0.3s var(--ease), border-color 0.3s ease;
}
.value-row:hover, .value-row:focus-visible {
  padding-left: 14px;
  border-color: var(--red);
  outline: none;
}
.value-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.32);
  flex-shrink: 0;
  min-width: 46px;
  transition: color 0.3s ease;
}
.value-row:hover .value-num, .value-row:focus-visible .value-num { color: var(--red); }
.value-body h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.value-body p { color: #cfd9ec; font-size: 0.96rem; margin-bottom: 0; }

@media (max-width: 900px) {
  .values-list { grid-template-columns: 1fr; column-gap: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .value-row { transition-duration: 0.001ms !important; }
}
.process-steps {
  display: flex;
  gap: 8px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 34px; left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 16px 10px 18px;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: default;
}
.step:hover, .step:focus-visible, .step.is-active {
  background: var(--grey);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.section-navy .step:hover, .section-navy .step:focus-visible, .section-navy .step.is-active {
  background: rgba(255,255,255,0.06);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
  margin: 0 auto 14px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid var(--red);
  opacity: 0;
  transform: scale(0.75) rotate(0deg);
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease);
}
.step:nth-child(2n) .step-num { background: var(--red); }
.step:nth-child(2n) .step-num::after { border-color: var(--navy); }
.step:hover .step-num, .step:focus-visible .step-num, .step.is-active .step-num {
  transform: scale(1.14) translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 45, 108, 0.28);
}
.step:hover .step-num::after, .step:focus-visible .step-num::after, .step.is-active .step-num::after {
  opacity: 1;
  transform: scale(1) rotate(50deg);
}
.step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  transition: font-size 0.3s var(--ease), color 0.3s var(--ease);
}
.step:hover h3, .step:focus-visible h3, .step.is-active h3 { font-size: 1.08rem; color: var(--red); }
.section-navy .step:nth-child(2n):hover h3,
.section-navy .step:nth-child(2n):focus-visible h3 { color: var(--light-blue); }
.step p { font-size: 0.95rem; color: var(--grey-text); }

/* Long sequences (5+ stages, e.g. 7-8 step journeys) — grid instead of a
   single-row line, since an unbroken connector breaks once steps wrap. */
.process-steps.is-long {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-steps.is-long::before { display: none; }
.process-steps.is-long .step {
  background: var(--grey);
  border: 1px solid var(--border);
  padding: 22px 16px 20px;
}
.section-navy .process-steps.is-long .step { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.process-steps.is-long .step:hover,
.process-steps.is-long .step:focus-visible,
.process-steps.is-long .step.is-active {
  background: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.section-navy .process-steps.is-long .step:hover,
.section-navy .process-steps.is-long .step:focus-visible { background: rgba(255,255,255,0.09); }

@media (max-width: 1100px) and (min-width: 901px) {
  .process-steps.is-long { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .process-steps.is-long { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process-steps.is-long .step { text-align: left; display: block; }
  .process-steps.is-long .step-num { margin: 0 0 12px; }
}
@media (max-width: 560px) {
  .process-steps.is-long { grid-template-columns: 1fr; }
  .process-steps.is-long .step { display: flex; gap: 16px; align-items: flex-start; text-align: left; }
  .process-steps.is-long .step-num { margin: 0; }
}

@media (max-width: 900px) {
  .process-steps { flex-direction: column; gap: 4px; }
  .process-steps::before { display: none; }
  .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-num { margin: 0; flex-shrink: 0; }
  .step:hover, .step:focus-visible, .step.is-active { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .step, .step-num, .step-num::after, .step h3 { transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Roles grid (dark navy band, columns of role lists)
   ========================================================================== */
.roles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px 32px; }
@media (max-width: 600px) { .roles-grid { grid-template-columns: 1fr; } }
.roles-col h3 { font-size: 1rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 10px; margin-bottom: 16px; }
.role-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.role-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.88rem;
  color: #cfd9ec;
  transition: background 0.25s var(--ease), color 0.25s ease, transform 0.25s var(--ease), border-color 0.25s ease;
}
.role-chip:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.role-chip-extra {
  display: none;
  animation: fadeIn 0.3s ease;
}
.role-chips.is-expanded .role-chip-extra { display: inline-block; }
.role-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--light-blue);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  padding: 4px 2px;
}
.role-toggle::after {
  content: "\2193";
  font-size: 0.75rem;
  transition: transform 0.25s var(--ease);
}
.role-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
.role-toggle:hover { color: #fff; text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .role-chip { transition-duration: 0.001ms !important; }
  .role-chip-extra { animation: none !important; }
}

/* Qualities strip */
.qualities-strip {
  background: var(--navy);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}
.qualities-strip div {
  padding: 22px 16px;
  text-align: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.qualities-strip div:last-child { border-right: none; }
@media (max-width: 700px) {
  .qualities-strip { grid-template-columns: 1fr 1fr; }
  .qualities-strip div { border-right: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14); }
}

/* ==========================================================================
   Closing CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 55%, var(--red) 130%);
  color: #fff;
  padding: 56px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta-band p { color: #e7ecf7; margin-bottom: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Quote block */
.quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-block .eyebrow { display: block; }
.quote-block blockquote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.4;
}
.quote-block cite { font-style: normal; font-weight: 700; color: var(--navy); display: block; }
.quote-block .role { color: var(--grey-text); font-size: 0.9rem; }

/* FAQ accordion */
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .faq-list { grid-template-columns: 1fr; } }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 16px; color: var(--grey-text); font-size: 0.97rem; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: #cfd9ec; padding: 56px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: #a9b8d8; font-size: 0.95rem; max-width: 32ch; }
.footer-col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #cfd9ec; font-size: 0.96rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.footer-social a:hover { background: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #93a4c8;
}
.footer-bottom a { color: #93a4c8; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact page specifics
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-grid > div { padding: 44px; min-width: 0; }
.contact-grid > div:first-child { border-right: 1px solid var(--border); }
.contact-grid > div:last-child { background: var(--grey); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > div:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-grid > div { padding: 28px 22px; }
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field .hint { display: block; font-weight: 400; color: var(--grey-text); font-size: 0.82rem; margin-top: 4px; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea,
.form-field select {
  width: 100%;
  font: inherit;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--dark);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:invalid[data-touched="true"],
.form-field textarea:invalid[data-touched="true"] {
  border-color: var(--red);
}
.form-error {
  color: var(--red-dark);
  font-size: 0.88rem;
  margin-top: 6px;
  display: none;
}
.form-error.show { display: block; }

.audience-toggle { display: flex; gap: 12px; margin-bottom: 24px; }
.audience-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.audience-toggle label {
  flex: 1;
  text-align: center;
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-head);
  cursor: pointer;
  color: var(--navy);
}
.audience-toggle input:checked + label {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.audience-toggle input:focus-visible + label { outline: 3px solid var(--red); outline-offset: 2px; }

#company-field { transition: opacity 0.3s ease; }
#company-field.is-deemphasized { opacity: 0.55; }
#company-field.is-deemphasized label { font-weight: 500; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #e6f6ea; color: #1c6b32; border: 1px solid #b7e3c2; }
.form-status.error { background: #fdeceb; color: #9b2a2a; border: 1px solid #f3bcb9; }

.contact-details { display: grid; gap: 18px; min-width: 0; }
.contact-detail-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--grey);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
}
.contact-detail-card .card-icon { margin-bottom: 0; }
.contact-detail-card > div:last-child { min-width: 0; }
.contact-detail-card h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-detail-card p { margin-bottom: 0; color: var(--grey-text); font-size: 0.97rem; overflow-wrap: break-word; word-break: break-word; }
.contact-detail-card a { color: var(--navy); font-weight: 600; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  z-index: 900;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.85rem; color: var(--grey-text); margin-bottom: 12px; line-height: 1.45; }
.cookie-banner h2 { font-size: 0.92rem; margin-bottom: 6px; }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 8px 14px; font-size: 0.82rem; }

@media (max-width: 640px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
    padding: 14px 16px;
  }
  .cookie-banner-actions .btn { flex: 1 1 auto; text-align: center; }
}

/* ==========================================================================
   Utility classes
   -- Small, reusable layout tweaks that replace one-off inline style="" so
   the site's Content-Security-Policy doesn't need style-src 'unsafe-inline'.
   ========================================================================== */
.u-link-plain { border-color: transparent; }
.u-max-760 { max-width: 760px; }
.u-lead-narrow { max-width: 640px; margin: 0 auto 24px; }
.u-max-640 { max-width: 640px; }
.u-max-840 { max-width: 840px; }
.u-ctas-center { justify-content: center; }
.hint-inline { display: inline; }

.form-audience-fieldset { border: 0; padding: 0; margin: 0 0 24px; }
.form-audience-legend { font-family: var(--font-head); font-weight: 600; color: var(--navy); margin-bottom: 10px; }

.sc-body .checklist { margin-top: 8px; }

.recaptcha-notice { font-size: 0.8rem; color: var(--grey-text); margin-top: 12px; }
.recaptcha-notice a { color: inherit; text-decoration: underline; }

/* ==========================================================================
   Legal content (Privacy Policy / Terms & Conditions / Cookie Policy)
   ========================================================================== */
.legal-meta { color: var(--grey-text); font-size: 0.92rem; margin-bottom: 32px; }
.legal-content h2 { font-size: 1.4rem; margin-top: 40px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin-top: 20px; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--navy); text-decoration: underline; }
.legal-contact-block { margin: 0 0 16px; padding: 0; list-style: none; }
.legal-contact-block li { margin-bottom: 4px; }

.table-scroll { overflow-x: auto; margin: 0 0 24px; -webkit-overflow-scrolling: touch; }
.legal-content table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.92rem;
}
.legal-content th, .legal-content td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-content th {
  background: var(--grey);
  font-family: var(--font-head);
  color: var(--navy);
}
