/* ===================================================================
   TOKENS
   =================================================================== */
:root {
  --navy: #0B1F63;
  --ink-navy: #0A1230;
  --slate: #7B7B7B;
  --amber: #C28B3E;
  --white: #FFFFFF;
  --warm-white: #F7F6F2;
  --ink: #1B1E22;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --container-max: 1200px;
  --transition: 200ms ease;
  --transition-slow: 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Verified contrast pairs (WCAG AA, normal text, computed by hand):
   - ink-navy text (#0B1F63) on amber (#C28B3E) fill  -> ~5.1:1, passes
   - amber text (#C28B3E) on ink-navy bg (#0A1230)    -> ~6.2:1, passes
   - amber text on white/warm-white                  -> ~3.0:1, FAILS — never use amber as body text on light backgrounds.
   Amber on light surfaces is restricted to fills, borders, icon strokes, and decorative (aria-hidden) graphics. */

/* ===================================================================
   RESET & BASE
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

main { display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.12; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { max-width: 38em; }
p.lede { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--ink-navy);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: var(--space-3) var(--space-4);
  z-index: 1000;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===================================================================
   LAYOUT
   =================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-7); }
.section--dark { background: var(--ink-navy); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--warm { background: var(--warm-white); }

.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  /* Centers a lone trailing tile instead of leaving it stuck on the left when the count isn't a multiple of 3. */
  .grid--3 > *:last-child:nth-child(3n+1) { grid-column: 2; }
}

.section-head { max-width: 46em; margin-bottom: var(--space-6); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ===================================================================
   TYPOGRAPHY UTILITIES
   =================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--slate);
}
.eyebrow--live { color: var(--amber); }
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.readout {
  font-family: var(--font-mono);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--amber); color: var(--ink-navy); }
.btn--primary:hover { background: #d49b4d; }
.btn--ghost-dark { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn--ghost-dark:hover { border-color: var(--white); }
.btn--ghost-light { border-color: var(--navy); color: var(--navy); }
.btn--ghost-light:hover { background: var(--navy); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
}

.logo { display: inline-flex; flex-direction: column; gap: 2px; color: var(--white); }
.logo--navy { color: var(--navy); }
.logo__word {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.logo__a { width: 0.6em; height: 0.6em; margin: 0 0.04em; }
.logo__a svg { width: 100%; height: 100%; }
.logo__tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  color: var(--white);
}
.nav-toggle span { width: 22px; height: 2px; background: currentColor; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--ink-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav.is-open { display: block; }
.site-nav__list { display: flex; flex-direction: column; padding: var(--space-4) var(--space-5) var(--space-6); }
.site-nav__list a {
  display: block;
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav__list a[aria-current="page"] { color: var(--amber); }
.site-nav .btn { margin-top: var(--space-4); width: 100%; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: 0;
  }
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
    padding: 0;
  }
  .site-nav__list a { padding: 0; border: 0; font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; }
  .site-nav .btn { margin-top: 0; width: auto; margin-left: var(--space-4); }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,18,48,0.88) 0%, rgba(10,18,48,0.78) 45%, rgba(10,18,48,0.94) 100%),
    var(--ink-navy) url("/assets/img/hero-photo.png") center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding-block: var(--space-9) var(--space-8);
}
.hero__content { position: relative; z-index: 2; max-width: 42em; }
.hero h1 { color: var(--white); margin-block: var(--space-4) var(--space-5); }
.hero p.lede { color: rgba(255,255,255,0.78); }
.hero .btn-row { margin-top: var(--space-6); }

.waveform { position: absolute; inset: 0; pointer-events: none; }
.waveform__svg { width: 100%; height: 100%; }
.waveform__path { stroke: var(--amber); stroke-width: 4; opacity: 0.55; }

.waveform--hero { top: auto; bottom: -10%; height: 55%; opacity: 0.9; }
.waveform--divider { position: relative; height: 90px; margin-block: 0; }
.waveform--divider .waveform__path { stroke: var(--navy); opacity: 0.35; stroke-width: 3; }
.waveform--footer { position: relative; height: 70px; }
.waveform--footer .waveform__path { opacity: 0.5; }

@media (prefers-reduced-motion: no-preference) {
  .waveform__path {
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    animation: draw-waveform 2.6s ease-out forwards;
  }
}
@keyframes draw-waveform {
  to { stroke-dashoffset: 0; }
}
/* Hidden-then-revealed only once JS confirms it's running (html.js, set in base.njk head) — keeps content visible by default for no-JS users. */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   PROOF STRIP
   =================================================================== */
.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (min-width: 640px) { .proof-strip { grid-template-columns: repeat(4, 1fr); } }
.proof-strip__item .readout { display: block; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.25rem); font-weight: 600; color: var(--amber); }
.proof-strip__item span.label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: var(--space-1); }

/* ===================================================================
   TRUSTED-BY STRIP
   =================================================================== */
.trusted-by { background: var(--warm-white); padding-block: var(--space-6); }
.trusted-by__label { text-align: center; margin-bottom: var(--space-5); }
.trusted-by__list { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-7); }
.trusted-by__list li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--slate);
  letter-spacing: 0.01em;
}

/* ===================================================================
   CARDS
   =================================================================== */
.card {
  background: var(--white);
  border: 1px solid #E7E5DF;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  height: 100%;
}
.card h3 { margin-bottom: var(--space-2); }
.card p { color: var(--slate); font-size: 0.95rem; }
.card--dark { background: var(--ink-navy); border-color: rgba(255,255,255,0.1); }
.card--dark h3 { color: var(--white); }
.card--dark p { color: rgba(255,255,255,0.7); }

/* Service tiles: description is tucked away by default and revealed on hover/focus,
   so the grid reads as clean labels until you engage with one. Touch devices (no real
   hover) always show the description, since there's nothing to "hover" on a phone. */
.card--service {
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card--service h3 { margin-bottom: 0; transition: margin-bottom var(--transition-slow); }
.card--service p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), opacity var(--transition-slow), margin-top var(--transition-slow);
}
.card--service:hover,
.card--service:focus,
.card--service:focus-within {
  border-color: var(--amber);
  box-shadow: 0 12px 24px rgba(11,31,99,0.08);
  transform: translateY(-2px);
}
.card--service:hover h3,
.card--service:focus h3,
.card--service:focus-within h3 { margin-bottom: var(--space-2); }
.card--service:hover p,
.card--service:focus p,
.card--service:focus-within p {
  max-height: 12em;
  opacity: 1;
  margin-top: var(--space-2);
}
@media (hover: none) {
  .card--service p { max-height: none; opacity: 1; margin-top: var(--space-2); }
  .card--service h3 { margin-bottom: var(--space-2); }
}

.industry-card, .product-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}
.industry-card__mark, .product-item__mark {
  flex-shrink: 0;
  width: 1em; height: 1em;
}
.industry-card__mark svg, .product-item__mark svg { width: 100%; height: 100%; }

.leadership-card { text-align: left; }
.leadership-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
  position: relative;
}
.leadership-card__badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  opacity: 0.6;
}
.leadership-card__title { color: var(--slate); font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-3); }

.project-card { display: flex; flex-direction: column; gap: var(--space-2); }
.project-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }
.project-card__client { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--navy); }
.project-card__years { font-family: var(--font-mono); font-size: 0.8rem; color: var(--slate); }
.project-card__tags { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-1); }
.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #D8D5CC;
  color: var(--slate);
}
.tag--repeat { border-color: var(--amber); color: var(--ink-navy); background: rgba(194,139,62,0.12); }
.project-card p { color: var(--ink); font-size: 0.95rem; }

/* ===================================================================
   FOOTPRINT
   =================================================================== */
.footprint-list { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.footprint-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  background: var(--white);
  border: 1px solid #E7E5DF;
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}
.footprint-list li span.note { font-family: var(--font-mono); font-size: 0.7rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===================================================================
   PROCESS STEPS
   =================================================================== */
.process-list { display: grid; gap: var(--space-5); counter-reset: step; }
@media (min-width: 900px) { .process-list { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding-top: var(--space-6); }
.process-step__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--amber);
  display: block;
  margin-bottom: var(--space-2);
}
.process-step__num::before { content: ""; display: inline-block; width: 10px; height: 10px; margin-right: var(--space-2); background: var(--amber); clip-path: polygon(50% 0%, 100% 100%, 0% 100%); vertical-align: middle; }
.process-step h3 { margin-bottom: var(--space-2); }
.process-step p { color: var(--slate); font-size: 0.95rem; }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--space-6) + 5px);
  left: calc(100% + var(--space-2) - var(--space-5) / 2);
  width: var(--space-5);
  height: 1px;
  background: #D8D5CC;
  display: none;
}
@media (min-width: 900px) { .process-step:not(:last-child)::after { display: block; } }

/* ===================================================================
   CERTIFICATION BADGES
   =================================================================== */
.cert-badges { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.cert-badge {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5);
  min-width: 200px;
}
.cert-badge__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.cert-badge__status { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); }
.cert-badge__note { font-size: 0.8rem; color: var(--slate); }

.membership-list { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .membership-list { grid-template-columns: repeat(3, 1fr); } }
.membership-list .card { border-left: 3px solid var(--amber); }
.membership-list .role { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--amber); display: block; margin-bottom: var(--space-2); }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-band {
  background: var(--ink-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-8);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-6); position: relative; z-index: 2; }
.cta-band__content { position: relative; z-index: 2; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--ink-navy); color: rgba(255,255,255,0.8); padding-top: var(--space-8); }
.site-footer .logo__tagline { color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; gap: var(--space-6); padding-bottom: var(--space-7); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); font-weight: 500; margin-bottom: var(--space-3); }
.footer-col p, .footer-col address { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-style: normal; }
.footer-col ul li { margin-bottom: var(--space-2); }
.footer-col a:hover { color: var(--amber); }
.footer-office { margin-bottom: var(--space-4); }
.footer-office strong { color: var(--white); display: block; margin-bottom: var(--space-1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 639px) {
  /* Reserve room so the fixed WhatsApp button (bottom-right) doesn't sit over the last line of footer text. */
  .footer-bottom { flex-direction: column; padding-right: 4.5rem; }
}

/* ===================================================================
   WHATSAPP FLOATING BUTTON
   =================================================================== */
.whatsapp-float {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #25D366;
  color: #0A1230;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(10,18,48,0.25);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }
.whatsapp-float__label { display: none; }
@media (min-width: 640px) { .whatsapp-float__label { display: inline; } }

/* ===================================================================
   FORMS (Contact)
   =================================================================== */
.form-grid { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .form-grid--2col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); }
.field input, .field select, .field textarea {
  border: 1.5px solid #D8D5CC;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  background: var(--white);
  font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--slate); margin-top: var(--space-3); }

.office-card { border-left: 3px solid var(--navy); }
.office-card iframe { width: 100%; height: 220px; border: 0; border-radius: var(--radius-sm); margin-top: var(--space-4); }
.office-card address { margin-block: var(--space-3); font-style: normal; color: var(--ink); }
.office-card .readout { font-size: 1.1rem; }

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,18,48,0.88) 0%, rgba(10,18,48,0.78) 45%, rgba(10,18,48,0.94) 100%),
    var(--ink-navy) url("/assets/img/about-hero-photo.png") center center / cover no-repeat;
  padding-block: var(--space-9) var(--space-8);
}
.story { max-width: 52em; }
.story p { margin-bottom: var(--space-4); font-size: 1.05rem; }
.advantage-intro { max-width: 56em; margin-bottom: var(--space-6); }
.advantage-intro p { margin-bottom: var(--space-4); }
.mission-vision { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .mission-vision { grid-template-columns: 1fr 1fr; } }

/* ===================================================================
   SOLUTIONS PAGE
   =================================================================== */
.solutions-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,18,48,0.88) 0%, rgba(10,18,48,0.78) 45%, rgba(10,18,48,0.94) 100%),
    var(--ink-navy) url("/assets/img/solutions-hero-photo.png") center center / cover no-repeat;
  padding-block: var(--space-9) var(--space-8);
}

.timeline { max-width: 50em; }
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: var(--space-7);
  border-left: 2px solid #E7E5DF;
}
.timeline-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
}
.timeline-item__year { display: block; color: var(--amber); margin-bottom: var(--space-1); font-size: 0.85rem; }
.timeline-item h3 { margin-bottom: var(--space-2); }
.timeline-item p { color: var(--slate); }

/* ===================================================================
   ILLUSTRATIONS
   =================================================================== */
.illustration { width: 100%; max-width: 220px; margin-inline: auto; }

/* ===================================================================
   CENTERED-TEXT PAGES (scoped to body.page-centered — set per-page via
   `centered: true` in front matter, applied in base.njk)
   =================================================================== */
.page-centered .container { text-align: center; }
.page-centered .hero__content,
.page-centered .section-head,
.page-centered .story,
.page-centered .advantage-intro,
.page-centered p { margin-inline: auto; }
.page-centered .btn-row,
.page-centered .footprint-list { justify-content: center; }
.page-centered .industry-card { justify-content: center; }
/* The timeline's connecting rail and bullet markers are built around left-aligned
   text — center the block on the page, but keep its own text left-aligned. */
.page-centered .timeline { margin-inline: auto; text-align: left; }
