/* ============================================================
   C&R — About page
   Source: Claude Design "About V1" — flush navy banner + 2-col
   story + horizontal facts strip, then chassis sections (founder,
   journey, expertise, industries, accreditations).

   Builds on core.css + home.css (nav, footer, .contact form, .accred-grid).
   Tokens follow core.css.
   ============================================================ */

:root {
  --ab-bg-2:    var(--surface-cream);   /* cream surface for alt sections */
  --ab-line:    rgba(27, 20, 66, .08);
  --ab-line-2:  rgba(27, 20, 66, .14);
  --ab-ink-2:   #4A4660;

  /* Frontier-tier easing tokens (per notes/brand-tokens.md) */
  --ease-mech:     cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-mech-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-mech-in:  cubic-bezier(0.4, 0.0, 1.0, 1);
}

/* ============================================================
   NAV — current-page underline
   ============================================================ */
.nav-links a.is-current {
  color: var(--green);
  position: relative;
}
.nav-links a.is-current::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--green);
}


/* ============================================================
   1. NAVY BANNER — flush, no overlap (.abv1-banner)
   ============================================================ */
.abv1-banner {
  background: #0E0930;
  color: var(--white);
  padding: clamp(72px, 9vw, 124px) 0 clamp(72px, 9vw, 124px);
  position: relative;
  overflow: hidden;
}
.abv1-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 10% 0%, rgba(var(--green-rgb), .10), transparent 60%),
    radial-gradient(60% 60% at 95% 100%, rgba(var(--green-rgb), .05), transparent 65%);
  pointer-events: none;
}
.abv1-banner .container { position: relative; }

.abv1-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.abv1-title {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.022em;
  margin: 0;
  max-width: 1000px;
  text-wrap: balance;
}
.abv1-title .is-green { color: var(--green); }
.abv1-sub {
  margin: 22px 0 0;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
}


/* ============================================================
   2. STORY — 2-col reading layout (sticky aside)
   ============================================================ */
.abv1-story {
  background: var(--white);
  padding: clamp(80px, 9vw, 128px) 0;
}
.abv1-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.abv1-story-aside { position: sticky; top: 120px; }
.abv1-section-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.abv1-story-h {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -.022em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.abv1-story-h .is-green { color: var(--green); }
.abv1-story-lede {
  font-family: var(--font-display);
  font-weight: var(--w-regular);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 22px;
  max-width: 620px;
  letter-spacing: -.005em;
  text-wrap: pretty;
}
.abv1-story-lede strong { font-weight: var(--w-semibold); }
.abv1-story-p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #4A4660;
  margin: 0 0 18px;
  max-width: 620px;
}
.abv1-story-p:last-child { margin-bottom: 0; }
.abv1-story-p a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: var(--w-medium);
}


/* ============================================================
   3. AT A GLANCE — facts strip on cream
   ============================================================ */
.abv1-glance {
  background: var(--navy-deep, #0E0930);
  color: var(--white);
  padding: clamp(56px, 8vw, 112px) 0;
}
.abv1-glance-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 clamp(30px, 4vw, 54px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.abv1-glance-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}
.abv1-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 72px);
  margin: 0;
}
.abv1-glance-item {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 14px;
}
.abv1-glance-item dt {
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}
.abv1-glance-item dd {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(48px, 6.5vw, 84px);
  letter-spacing: -.025em;
  line-height: .9;
  color: var(--white);
  margin: 0;
}
.abv1-glance-item dd .is-green { color: var(--green); }


/* ============================================================
   SECTION FRAME — used by founder / journey / expertise /
   industries / accreditations
   ============================================================ */
.ab-section {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--white);
}
.ab-section + .ab-section { border-top: 1px solid var(--ab-line); }
.ab-section--alt {
  background: var(--ab-bg-2);
}
.ab-section--alt + .ab-section,
.ab-section + .ab-section--alt { border-top: 0; }

.ab-section-head {
  max-width: 820px;
  margin: 0 0 56px;
}
.ab-section-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.ab-section-title {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.ab-section-title .is-green { color: var(--green); }
.ab-section-sub {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ab-ink-2);
  margin: 0;
  max-width: 720px;
}


/* ============================================================
   CARD TYPOGRAPHY — shared by founder body, etc.
   ============================================================ */
.ab-card-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 12px;
  display: block;
}
.ab-card-lede {
  font-family: var(--font-display);
  font-weight: var(--w-regular);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: -.005em;
  text-wrap: pretty;
}
.ab-card-lede strong { font-weight: var(--w-semibold); }
.ab-card-body p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ab-ink-2);
  margin: 0 0 14px;
}
.ab-card-body p:last-child { margin-bottom: 0; }
.ab-card-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: var(--w-medium);
}


/* ============================================================
   FOUNDER — portrait + bio + quals
   ============================================================ */
.ab-founder {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.ab-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #0E0930;
  margin: 0;
}
.ab-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Source is landscape 2560×1828; Darren sits in the right third of the frame
     with three framed accreditation certificates on the left wall behind him.
     Cropped to the design's 4:5 portrait container, this puts Darren's face
     centre-right and keeps the certificates partly visible on the left. */
  object-position: 68% 32%;
  display: block;
}
.ab-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 9, 48, .9) 100%);
  pointer-events: none;
}
.ab-portrait-cap {
  position: absolute;
  left: 24px; bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--white);
  z-index: 1;
}
.ab-portrait-name {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 19px;
  letter-spacing: -.012em;
}
.ab-portrait-role {
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
}

.ab-founder-body { padding-top: 6px; }
.ab-founder-body .ab-card-lede { color: var(--navy); }
.ab-founder-body .ab-card-body p {
  max-width: 580px;
}

/* Qualifications — hairline list */
.ab-quals {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--ab-line);
}
.ab-quals-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.ab-quals-rule {
  flex: 1;
  height: 1px;
  background: var(--ab-line);
}
.ab-quals-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}
.ab-quals-list li {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--navy);
  padding: 14px 0 14px 24px;
  border-top: 1px solid var(--ab-line);
  position: relative;
  font-weight: var(--w-medium);
}
.ab-quals-list li:last-child,
.ab-quals-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: 1px solid var(--ab-line);
}
.ab-quals-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}


/* ============================================================
   JOURNEY — restrained horizontal timeline
   ============================================================ */
.ab-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
.ab-tl-step {
  position: relative;
  padding-top: 36px;
}
.ab-tl-rail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ab-line-2);
}
.ab-tl-rail::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green);
  box-sizing: border-box;
}
.ab-tl-step.is-current .ab-tl-rail::before {
  background: var(--green);
}
.ab-tl-yr {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 14px;
}
.ab-tl-h {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 18px;
  letter-spacing: -.012em;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 8px;
  max-width: 220px;
  text-wrap: balance;
}
.ab-tl-h .is-green { color: var(--green); }
.ab-tl-b {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ab-ink-2);
  margin: 0;
  max-width: 240px;
}


/* ============================================================
   EXPERTISE — editorial copy + materials chip card (sticky)
   ============================================================ */
.ab-cap-section { padding: clamp(96px, 11vw, 144px) 0; background: var(--white); }

.ab-cap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* When the materials sidebar isn't present, expertise reads as single column.
   :has() support: Safari 15.4+, Chrome 105+, Firefox 121+ — graceful degradation
   to the 2-col grid with an empty right column on older browsers. */
.ab-cap-grid:not(:has(.ab-cap-materials)) {
  grid-template-columns: minmax(0, 1fr);
}

.ab-cap-copy { padding-top: 4px; }
.ab-cap-copy .ab-section-eyebrow { margin-bottom: 18px; }

.ab-cap-title {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -.028em;
  color: var(--navy);
  margin: 0 0 36px;
  text-wrap: balance;
}
.ab-cap-title em {
  font-style: italic;
  font-weight: var(--w-regular);
  color: var(--navy);
}
.ab-cap-title .is-green { color: var(--green); }

.ab-cap-lede {
  font-family: var(--font-display);
  font-weight: var(--w-regular);
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.45;
  letter-spacing: -.008em;
  color: var(--navy);
  margin: 0 0 24px;
  max-width: 720px;
  text-wrap: pretty;
}
.ab-cap-lede:last-child { margin-bottom: 0; }
.ab-cap-lede strong {
  font-weight: var(--w-semibold);
  color: var(--navy);
}
.ab-cap-lede a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  font-weight: var(--w-medium);
  transition: text-decoration-thickness var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.ab-cap-lede a:hover {
  color: var(--green);
  text-decoration-thickness: 3px;
}

.ab-cap-materials {
  padding: 24px 28px;
  background: var(--ab-bg-2);
  border: 1px solid var(--ab-line);
  border-radius: 12px;
  /* Centred against the title + lede via the grid's align-items:center; the
     translateY nudge (= ~half the eyebrow block) re-centres on the title+desc
     so the eyebrow above the title isn't counted. transform = no layout shift. */
  transform: translateY(16px);
}
.ab-cap-materials-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ab-line-2);
}
.ab-cap-materials-label {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
}
.ab-cap-materials-count {
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.ab-cap-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ab-cap-chips li {
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  font-size: 14px;
  letter-spacing: -.005em;
  color: var(--navy);
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--ab-line);
  position: relative;
  line-height: 1.3;
}
.ab-cap-chips li:nth-child(-n+2) { border-top: 0; }
.ab-cap-chips li:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--ab-line); }
.ab-cap-chips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 4px;
  background: var(--green);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}


/* ============================================================
   INDUSTRIES — photographic bento
   12-col mixed-size cards with imagery, frosted overlay band,
   hover zoom + arrow nudge.
   ============================================================ */
.ab-ind-section { padding: clamp(96px, 11vw, 144px) 0; }
.ab-ind-section .ab-section-head { margin-bottom: clamp(48px, 5vw, 64px); }

.ab-ind-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.ab-ind-01 { grid-column: span 7; grid-row: span 2; }
.ab-ind-02 { grid-column: span 5; grid-row: span 1; }
.ab-ind-03 { grid-column: span 5; grid-row: span 1; }
.ab-ind-04 { grid-column: span 6; grid-row: span 1; }
.ab-ind-05 { grid-column: span 6; grid-row: span 1; }

.ab-ind-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  color: var(--white);
  display: block;
  isolation: isolate;
  background: #0E0930;
}
.ab-ind-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.ab-ind-card:hover img { transform: scale(1.05); }

.ab-ind-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14, 9, 48, 0)   0%,
    rgba(14, 9, 48, 0)   30%,
    rgba(14, 9, 48, .55) 65%,
    rgba(14, 9, 48, .92) 100%
  );
  z-index: 1;
}
.ab-ind-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.ab-ind-meta {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-ind-01 .ab-ind-meta { left: 32px; right: 32px; bottom: 32px; gap: 12px; }
.ab-ind-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.ab-ind-tag {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ab-ind-tag::before {
  content: '';
  display: inline-block;
  width: 16px; height: 7px;
  background: var(--green);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
}
.ab-ind-title {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -.014em;
  line-height: 1.18;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
  text-wrap: balance;
}
.ab-ind-01 .ab-ind-title {
  font-size: clamp(26px, 2.4vw, 36px);
  max-width: 520px;
}
.ab-ind-title .is-green { color: var(--green); }

.ab-ind-body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
  margin: 0;
  max-width: 460px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.ab-ind-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  transition:
    background var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
  color: var(--white);
}
.ab-ind-arrow svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease-out); }
.ab-ind-card:hover .ab-ind-arrow {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
}
.ab-ind-card:hover .ab-ind-arrow svg { transform: translateX(2px); }


/* ============================================================
   ACCREDITATIONS — extends homepage .accred-grid, slight tweaks
   ============================================================ */
.ab-section--accred { background: var(--white); padding-bottom: clamp(72px, 9vw, 120px); }
.ab-section--accred .ab-section-head {
  margin-bottom: 44px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ab-section--accred .ab-section-sub {
  margin-left: auto;
  margin-right: auto;
}
.ab-accred-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 36px;
  align-items: center;
}
.ab-accred-grid li {
  min-width: 0;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-accred-grid img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .58;
  transition: filter var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.ab-accred-grid li:hover img {
  filter: none;
  opacity: 1;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --page-pad: 32px; }
}

@media (max-width: 1024px) {
  .abv1-story-grid { grid-template-columns: 1fr; gap: 28px; }
  .abv1-story-aside { position: static; }
  .ab-edge-grid { grid-template-columns: 1fr; gap: 28px; }
  .ab-edge-head { position: static; }
  .ab-founder { grid-template-columns: 1fr; gap: 40px; }
  .ab-portrait { max-width: 460px; }
  .ab-timeline { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .ab-accred-grid { grid-template-columns: repeat(4, 1fr); }

  .ab-cap-grid { grid-template-columns: 1fr; gap: 36px; }
  .ab-cap-materials { position: static; transform: none; }

  .ab-ind-bento { grid-auto-rows: 240px; gap: 12px; }
  .ab-ind-01 { grid-column: span 12; grid-row: span 2; }
  .ab-ind-02 { grid-column: span 6; }
  .ab-ind-03 { grid-column: span 6; }
  .ab-ind-04 { grid-column: span 6; }
  .ab-ind-05 { grid-column: span 6; }
}

@media (max-width: 900px) {
  :root { --page-pad: 24px; }

  .nav-links a.is-current::after { display: none; }
}

/* ============================================================
   HERO BACKDROP (added 2026-05-21)
   ============================================================ */
.abv1-banner { min-height: clamp(440px, 56vh, 600px); display: flex; align-items: center; }
.abv1-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.abv1-banner-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(70% 60% at 12% 6%, rgba(var(--green-rgb), .12), transparent 60%),
    linear-gradient(105deg, rgba(14, 9, 48, .95) 0%, rgba(14, 9, 48, .82) 44%, rgba(14, 9, 48, .58) 100%),
    linear-gradient(0deg, rgba(14, 9, 48, .85) 0%, rgba(14, 9, 48, .28) 42%, transparent 78%);
}
.abv1-banner .container { z-index: 1; width: 100%; }


/* ============================================================
   TRUSTED BY — reuses .delivered; sits in the proof cluster
   ============================================================ */
.ab-trusted { background: var(--white); }


/* ============================================================
   TIMELINE — staggered reveal (reuses home-polish [data-reveal])
   ============================================================ */
html.reveal-ready .ab-timeline .ab-tl-step:nth-child(1) { transition-delay: 0ms; }
html.reveal-ready .ab-timeline .ab-tl-step:nth-child(2) { transition-delay: 90ms; }
html.reveal-ready .ab-timeline .ab-tl-step:nth-child(3) { transition-delay: 180ms; }
html.reveal-ready .ab-timeline .ab-tl-step:nth-child(4) { transition-delay: 270ms; }
html.reveal-ready .ab-timeline .ab-tl-step:nth-child(5) { transition-delay: 360ms; }


/* ============================================================
   WHY C&R — editorial 2-col differentiator list (no icon grid)
   ============================================================ */
.ab-edge-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.ab-edge-head { position: sticky; top: 120px; }
.ab-edge-list { list-style: none; padding: 0; margin: 0; }
.ab-edge-item {
  padding: 30px 0;
  border-top: 1px solid var(--ab-line);
}
.ab-edge-item:first-child { border-top: 0; padding-top: 0; }
.ab-edge-item:last-child { padding-bottom: 0; }
.ab-edge-h {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: -.018em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 10px;
}
.ab-edge-h .is-green { color: var(--green); }
.ab-edge-b {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ab-ink-2);
  margin: 0;
  max-width: 580px;
}


/* ============================================================
   MATERIALS & LIFESPAN — 3-up comparison cards (service detail)
   ============================================================ */
.cp-mat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}
.cp-mat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ab-line);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 1px 2px rgba(14, 9, 48, .04), 0 18px 40px -24px rgba(14, 9, 48, .22);
}
.cp-mat-badge {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: var(--w-semibold);
  font-size: 13px;
  letter-spacing: .01em;
  color: var(--navy);
  background: var(--surface-cream);
  border-radius: 999px;
  padding: 7px 14px;
  margin: 0 0 22px;
}
.cp-mat-card--feature .cp-mat-badge {
  color: #0E0930;
  background: color-mix(in srgb, var(--green) 24%, #fff);
}
.cp-mat-name {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -.018em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 12px;
}
.cp-mat-name .is-green { color: var(--green); }
.cp-mat-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ab-ink-2);
  margin: 0 0 24px;
}
.cp-mat-best {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ab-line);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ab-ink-2);
}
.cp-mat-best strong {
  display: block;
  font-weight: var(--w-semibold);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 5px;
}
@media (max-width: 860px) {
  .cp-mat-grid { grid-template-columns: 1fr; }
}
.cp-work .prj-grid { margin-top: clamp(40px, 5vw, 64px); grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* Exactly two projects: fill the full width that three cards would take. */
.cp-work .prj-grid:not(:has(.prj-card:nth-child(3))) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 720px) { .cp-work .prj-grid, .cp-work .prj-grid:not(:has(.prj-card:nth-child(3))) { grid-template-columns: 1fr; } }
/* Fewer than two projects to show: hide the whole section (as if there were none). */
.ab-section:has(.cp-work):not(:has(.prj-card ~ .prj-card)) { display: none; }
.cp-work-cta { margin-top: clamp(36px, 4vw, 52px); text-align: center; }


/* ============================================================
   EDITORIAL PULL-QUOTE — grounded verbatim line, cream band
   ============================================================ */
.ab-pullquote {
  background: var(--surface-cream);
  padding: clamp(72px, 10vw, 136px) 0;
}
.ab-pullquote-q {
  margin: 0;
  max-width: 1000px;
  font-family: var(--font-display);
  font-weight: var(--w-regular);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--navy);
  text-wrap: balance;
}
.ab-pullquote-q::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 0 0 clamp(22px, 3vw, 32px);
}
.ab-pullquote-q .is-green { color: var(--green); }


/* ============================================================
   EXPERTISE — "whole surface" capability steps
   (replaces the unverified materials chip list)
   ============================================================ */
.ab-cap-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}
.ab-cap-steps li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.ab-cap-steps li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}
@media (max-width: 560px) {
  .ab-cap-steps { grid-template-columns: 1fr; }
}
.ab-cap-step-text { display: flex; flex-direction: column; gap: 5px; }
.ab-cap-step-h {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--navy);
}
.ab-cap-step-b {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ab-ink-2);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  :root { --page-pad: 20px; }

  .abv1-glance-grid { grid-template-columns: 1fr; gap: 32px; }

  .ab-timeline { grid-template-columns: 1fr; row-gap: 24px; }
  .ab-quals-list { grid-template-columns: 1fr; }
  .ab-accred-grid { grid-template-columns: repeat(3, 1fr); }

  .ab-cap-chips { grid-template-columns: 1fr; }
  .ab-cap-chips li:nth-child(odd) { border-right: 0; padding-right: 0; }
  .ab-cap-chips li { border-top: 1px solid var(--ab-line); }
  .ab-cap-chips li:first-child { border-top: 0; }

  .ab-ind-bento { grid-auto-rows: 220px; }
  .ab-ind-01,
  .ab-ind-02,
  .ab-ind-03,
  .ab-ind-04,
  .ab-ind-05 { grid-column: span 12; grid-row: span 1; }
  .ab-ind-01 { grid-row: span 2; }
  .ab-ind-meta { left: 18px; right: 18px; bottom: 18px; }
  .ab-ind-arrow { top: 16px; right: 16px; width: 36px; height: 36px; }
}

/* ===== Slip-resistance scale (anti-slip / surface coatings / warehouse) ===== */
.slip-scale {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 64px);
}
.slip-band {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ab-line);
  border-radius: 18px;
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: 0 1px 2px rgba(14, 9, 48, .04), 0 18px 40px -24px rgba(14, 9, 48, .22);
}
.slip-band-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: var(--w-semibold);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 13px;
  margin: 0 0 20px;
}
.slip-band-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.slip-band--low  .slip-band-tag { color: #2E8B57; background: color-mix(in srgb, var(--green) 16%, #fff); }
.slip-band--mod  .slip-band-tag { color: #B6802A; background: color-mix(in srgb, #E6A93C 22%, #fff); }
.slip-band--high .slip-band-tag { color: #C0473C; background: color-mix(in srgb, #D9534F 14%, #fff); }
.slip-band-n {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0 0 6px;
}
.slip-band-label {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 12px;
}
.slip-band-meaning {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ab-ink-2);
  margin: 0;
}
.slip-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--ab-line);
}
.slip-note {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ab-ink-2);
  margin: 0;
}
.slip-note strong { color: var(--navy); font-weight: var(--w-semibold); }
.slip-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--green) 20%, #fff);
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 6px var(--green);
}
@media (max-width: 860px) {
  .slip-scale, .slip-notes { grid-template-columns: 1fr; }
  .slip-notes { gap: 18px; }
}

/* ===== Material comparison table (line marking / floor coatings) ===== */
.cmp-wrap { margin-top: clamp(40px, 5vw, 64px); }
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--ab-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(14, 9, 48, .04), 0 18px 40px -24px rgba(14, 9, 48, .22);
}
.cmp-table thead th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 13px;
  letter-spacing: .02em;
  color: #fff;
  background: var(--navy);
  padding: 16px 20px;
}
.cmp-table tbody th,
.cmp-table tbody td {
  text-align: left;
  vertical-align: top;
  padding: 18px 20px;
  border-top: 1px solid var(--ab-line);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ab-ink-2);
}
.cmp-table tbody th {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  color: var(--navy);
}
.cmp-table tbody tr:nth-child(even) { background: color-mix(in srgb, var(--surface-cream) 45%, #fff); }
@media (max-width: 760px) {
  .cmp-table { border-radius: 14px; display: block; }
  .cmp-table thead { display: none; }
  .cmp-table tbody,
  .cmp-table tbody tr { display: block; }
  .cmp-table tbody tr { padding: 16px 18px; border-top: 1px solid var(--ab-line); }
  .cmp-table tbody tr:first-child { border-top: 0; }
  .cmp-table tbody th,
  .cmp-table tbody td { display: block; padding: 4px 0; border-top: 0; }
  .cmp-table tbody th { font-size: 16.5px; padding-bottom: 8px; }
  .cmp-table tbody td[data-label]::before {
    content: attr(data-label) ": ";
    font-weight: var(--w-semibold);
    color: var(--navy);
  }
}

/* ===== Warehouse floor colour-code guide ===== */
.wh-colours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 64px);
}
.wh-colour {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ab-line);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(14, 9, 48, .04), 0 18px 40px -24px rgba(14, 9, 48, .22);
}
.wh-swatch {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--ab-line);
}
.wh-swatch--yellow { background: #F4C20D; }
.wh-swatch--white  { background: #fff; }
.wh-swatch--red    { background: #D0021B; }
.wh-swatch--green  { background: #3FA34D; }
.wh-swatch--hazard { background: repeating-linear-gradient(45deg, #16122E 0 8px, #F4C20D 8px 16px); }
.wh-colour-name {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 4px;
}
.wh-colour-meaning {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ab-ink-2);
  margin: 0;
}
.wh-colour-note {
  margin-top: clamp(24px, 3vw, 36px);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ab-ink-2);
  max-width: 760px;
}

/* ===== Compliance self-check ===== */
.cl-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin-top: clamp(40px, 5vw, 64px);
}
.cl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ab-line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 1px 2px rgba(14, 9, 48, .04), 0 14px 34px -26px rgba(14, 9, 48, .22);
}
.cl-box {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--green);
  margin-top: 2px;
}
.cl-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ab-ink-2);
  margin: 0;
}
.cl-foot {
  margin-top: clamp(28px, 3vw, 40px);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  max-width: 760px;
}
@media (max-width: 700px) {
  .cl-list { grid-template-columns: 1fr; }
}

/* ===== Jet Washing division theme (page-scoped) =====
   C&R Design System (2026-06-15): the Jet Washing division swaps the line-marking
   green accent for the brand jet-blue, keeping the shared navy. Applied only on
   pages carrying .theme-jetwash. The whole green token family remaps to jet, so
   every accent — eyebrows, headline flourishes, CTAs, links, hovers, translucent
   glows — follows, while navy structure stays put. Other pages untouched. */
.theme-jetwash {
  --green:       var(--jet);        /* #1C9CD4 — mid jet, the on-light working accent */
  --green-hover: var(--jet-hover);  /* #1789BD */
  --green-rgb:   var(--jet-rgb);    /* translucent accents follow */
}
/* On navy/dark surfaces the mid jet doesn't pop, so the accent shifts to the
   lighter sky (design-system rule). Overriding the token on the section wrapper
   cascades to every var(--green) descendant within it. */
.theme-jetwash .nav,
.theme-jetwash .abv1-banner,
.theme-jetwash .faq,
.theme-jetwash .foot {
  --green:       var(--jet-sky);     /* #67BDE0 */
  --green-hover: var(--jet-sky);
  --green-rgb:   var(--jet-sky-rgb);
}
/* The nav CTA is a working button, not an on-navy text accent — keep it a solid
   mid-jet fill (with the navy label it inherits) rather than the sky tint. */
.theme-jetwash .nav .btn-cta-nav { background: var(--jet); }
.theme-jetwash .nav .btn-cta-nav:hover { background: var(--jet-hover); }
/* Nav phone / email icons carry an inline stroke="#61CC6B"; a CSS stroke wins
   over the presentation attribute, so they track --green without per-page edits. */
.nav-util-link .ico path,
.nav-util-link .ico rect { stroke: var(--green); }

/* ============================================================
   NHSS 7 — public-highway credential band (road marking page)
   ============================================================ */
.nhss-cred {
  background: #F0F0F0;
  border-top: 1px solid rgba(27, 20, 66, 0.08);
  border-bottom: 1px solid rgba(27, 20, 66, 0.08);
}
.nhss-cred-inner {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(44px, 6vw, 76px) 0;
}
.nhss-cred-logo {
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 14px;
  padding: clamp(20px, 2.4vw, 30px) clamp(26px, 3vw, 40px);
  box-shadow: 0 18px 44px -30px rgba(27, 20, 66, 0.5);
}
.nhss-cred-logo img {
  display: block;
  width: clamp(170px, 22vw, 230px);
  height: auto;
}
.nhss-cred-text { flex: 1 1 auto; min-width: 0; }
.nhss-cred-text .ab-section-eyebrow { margin-bottom: 14px; }
.nhss-cred-h {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.nhss-cred-h .is-green { color: var(--green); }
.nhss-cred-p {
  color: var(--fg-muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
}
@media (max-width: 760px) {
  .nhss-cred-inner { flex-direction: column; align-items: flex-start; gap: 26px; }
  .nhss-cred-logo { padding: 20px 28px; }
  .nhss-cred-logo img { width: 180px; }
}

/* Centred logo strip — balances any number of items: every row centres, so
   an odd count (e.g. 13) reads as deliberate instead of stranding one item. */
.accred-grid--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 28px;
}
.accred-grid--centered li {
  flex: 0 0 auto;
  width: auto;
}

/* Hard row break in the centred strip (desktop) — forces everything after it
   onto the next line, so row composition is explicit and never auto-reshuffles. */
.accred-grid--centered .accred-break {
  flex: 0 0 100%;
  height: 0;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .accred-grid--centered .accred-break { display: none; }
}
