/*
 * Theme Name:  GeneratePress Child
 * Template:    generatepress
 * Description: HALO FastHub — ACF-based build.
 */

/*
 * Colours, fonts, and spacing are owned by GP's settings:
 *   generate_settings        → global_colors, typography, font_manager, color options
 *   generate_spacing_settings → header padding, nav item height, container width
 *
 * GP outputs these as :root custom properties (HALO FastHub Brand Guidelines V1.0):
 *   --contrast   #000000    --charcoal    #3D4647    --contrast-2  #8A8A8A
 *   --contrast-3 #D8D8D8    --base        #D8D8D8    --base-2      #F5F5F5
 *   --base-3     #FFFFFF    --warm        #E8E6DF    --accent      #F7A803
 *   --footer-bg  #000000
 *
 * This file contains only:
 *   · Layout tokens (container, section padding)
 *   · GP structural overrides
 *   · Component CSS for 21 ACF section layouts
 */

/* ── Layout tokens (not in GP) ────────────────────────────────── */
:root {
  --container: 1280px;
  --pad-x:     80px;
  --pad-y:     96px;
}

/* ── GP full-width reset ──────────────────────────────────────── */
.site.grid-container  { max-width: none !important; padding: 0 !important; }
.site-content         { max-width: none !important; padding: 0 !important; display: block !important; }
.site-main            { margin: 0 !important; width: 100%; min-width: 0; display: block; }

/* ── GP header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .inside-header {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-description { display: none; }

/* Logo — single combined lockup. 800×200px source displayed at 36px tall. */
.halo-logo {
  height: 36px;
  width: auto;
  display: block;
}

/* Enquiry CTA in nav — orange pill */
.main-navigation .menu-item-cta {
  display: flex;
  align-items: center;
  align-self: center;
  height: auto;
  margin-left: 1.5rem;
}
.main-navigation .menu-item-cta > a {
  display: inline-flex !important;
  align-items: center;
  align-self: center;
  height: auto !important;
  background: var(--accent) !important;
  color: var(--contrast) !important;
  padding: 10px 22px !important;
  border-radius: 999px !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  border: 2px solid var(--accent) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: box-shadow 0.15s ease;
}
.main-navigation .menu-item-cta > a:hover {
  color: var(--contrast) !important;
  box-shadow: inset 0 0 0 2px var(--contrast);
}

/* ── Hide GP native footer ────────────────────────────────────── */
.site-footer { display: none !important; }

/* ── Shared section styles ────────────────────────────────────── */
/* GP applies margin-bottom:20px to .site-main>* — zero it for our sections */
.halo-section { width: 100%; box-sizing: border-box; margin: 0; }

/* ── Padding utilities (override per-section defaults) ────────── */
.halo-pad-t-none   { padding-top: 0 !important; }
.halo-pad-t-small  { padding-top: 20px !important; }
.halo-pad-t-medium { padding-top: 48px !important; }
.halo-pad-t-large  { padding-top: var(--pad-y) !important; }
.halo-pad-b-none   { padding-bottom: 0 !important; }
.halo-pad-b-small  { padding-bottom: 20px !important; }
.halo-pad-b-medium { padding-bottom: 48px !important; }
.halo-pad-b-large  { padding-bottom: var(--pad-y) !important; }

/* Adjacent sections: no external gap, 20px internal breathing room */
.halo-section + .halo-section { padding-top: 20px; }

/* Hero sections always get full pad-y top — overrides adjacent-sibling 20px */
.halo-hero.halo-section,
.halo-section + .halo-hero.halo-section,
.halo-hero-fb__bar + .halo-hero.halo-section { padding-top: var(--pad-y); }

/* Fullbleed hero elements aren't .halo-section — zero GP's margin on them too */
.halo-hero-fb,
.halo-hero-fb__bar { margin: 0; }

/* Hero stat bar into next section — same 20px breathing room */
.halo-hero-fb__bar + .halo-section { padding-top: 20px; }
.halo-inner   {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Tones */
.halo-tone-light    { background: var(--base-3); }
.halo-tone-offwhite { background: var(--base-2); }
.halo-tone-warm     { background: var(--warm); }
.halo-tone-dark     { background: var(--contrast); color: var(--base-3); }

/* ── Typography overrides (GP owns family/weight; we own these) ── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.06;
  letter-spacing: -0.018em;
}
.halo-tone-dark h1,
.halo-tone-dark h2,
.halo-tone-dark h3 { color: var(--base-3); }

/* ── Eyebrow ──────────────────────────────────────────────────── */
.halo-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--contrast-2);
  margin-bottom: 2rem;
}
.halo-tone-dark .halo-eyebrow { color: rgba(255,255,255,0.55); }

/* ── Buttons ──────────────────────────────────────────────────── */
.halo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.halo-btn--primary {
  background: var(--accent);
  color: var(--contrast);
  border-color: var(--accent);
}
.halo-btn--primary:hover {
  box-shadow: inset 0 0 0 2px var(--contrast);
}
.halo-btn--outline {
  background: transparent;
  color: var(--base-3);
  border: 1px solid var(--accent);
}
.halo-btn--outline:hover { box-shadow: inset 0 0 0 2px var(--base-3); color: var(--base-3); }
.halo-btn--outline-dark {
  background: var(--base-3);
  color: var(--contrast);
  border-color: var(--accent);
}
.halo-btn--outline-dark:hover { background: var(--base-2); box-shadow: inset 0 0 0 2px var(--contrast); color: var(--contrast); }

/* ── 01 · Page Hero ───────────────────────────────────────────── */
.halo-hero {
  padding: var(--pad-y) 0;
  position: relative;
  overflow: hidden;
}
.halo-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.halo-hero__content { display: flex; flex-direction: column; gap: 1.5rem; }
.halo-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 500;
  color: var(--contrast);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 16ch;
}
.halo-hero__sub {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--contrast-2);
  max-width: 52ch;
  margin: 0;
}
.halo-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.halo-hero__image {
  background: var(--contrast-3);
  border: 1px solid var(--contrast-3);
  min-height: 420px;
  overflow: hidden;
}
.halo-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.halo-img-placeholder { min-height: 420px; }
.halo-hero__stats {
  display: flex;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--contrast-3);
  flex-wrap: wrap;
  align-items: baseline;
}
.halo-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 1rem;
}
.halo-hero__stat-value {
  font-size: clamp(2.25rem, 3.75vw, 3.75rem);
  font-weight: 600;
  color: var(--contrast);
  letter-spacing: -0.026em;
  line-height: 1;
}
.halo-hero__stat-unit {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--contrast-2);
  margin-left: 6px;
  letter-spacing: 0;
}
.halo-hero__stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--contrast);
}

/* Hero on dark background — flip all text and buttons to white */
.halo-tone-dark .halo-hero__title  { color: var(--base-3); }
.halo-tone-dark .halo-hero__sub    { color: rgba(255,255,255,0.7); }
.halo-tone-dark .halo-hero__image  { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.halo-tone-dark .halo-hero__stats  { border-top-color: rgba(255,255,255,0.18); }
.halo-tone-dark .halo-hero__stat-value { color: var(--base-3); }
.halo-tone-dark .halo-hero__stat-unit  { color: rgba(255,255,255,0.55); }
.halo-tone-dark .halo-hero__stat-label { color: var(--base-3); }
/* Hero outline button — light bg: dark text; dark bg: white text */
.halo-hero .halo-btn--outline { color: var(--contrast); }
.halo-hero:not(.halo-tone-dark) .halo-btn--outline:hover { box-shadow: inset 0 0 0 2px var(--contrast); }
.halo-hero.halo-tone-dark .halo-btn--outline { color: var(--base-3); }

/* Fullbleed hero — 2nd button: black bg + black border; white inset keyline on hover */
.halo-hero-fb .halo-btn--outline {
  background: var(--contrast);
  color: var(--base-3);
  border-color: var(--accent);
}
.halo-hero-fb .halo-btn--outline:hover {
  box-shadow: inset 0 0 0 2px var(--base-3);
}

/* Compact hero variant */
.halo-hero--compact { padding: 4.5rem 0; }
.halo-hero--compact .halo-hero__inner { grid-template-columns: 1fr; }
.halo-hero--compact .halo-hero__title { max-width: 100%; }

/* ── Full-bleed hero (photo background + gradient + support bar) ── */
.halo-hero-fb {
  position: relative;
  height: 720px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.halo-hero-fb__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Gradient: heavy at top for text legibility, fades to clear in middle */
.halo-hero-fb__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.18) 100%
  );
  pointer-events: none;
}
.halo-hero-fb__content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
}
.halo-hero-fb__content .halo-eyebrow { color: rgba(255,255,255,0.65); }
.halo-hero-fb__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 500;
  color: var(--base-3);
  letter-spacing: -0.026em;
  line-height: 0.98;
  margin: 0 0 2.5rem;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.halo-hero-fb__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Support bar */
.halo-hero-fb__bar { border-top: 1px dotted var(--contrast-3); }
.halo-hero-fb__bar-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.halo-hero-fb__bar-sub { flex: 1.4; font-size: 1.125rem; line-height: 1.45; color: var(--contrast-2); max-width: 44ch; }
.halo-hero-fb__bar-stat { flex: 1; display: flex; flex-direction: column; gap: 0.625rem; }
/* Divider appears automatically between sub-copy→stat and stat→stat */
.halo-hero-fb__bar-sub + .halo-hero-fb__bar-stat,
.halo-hero-fb__bar-stat + .halo-hero-fb__bar-stat { border-left: 1px solid var(--contrast-3); padding-left: 2rem; }
.halo-hero-fb__bar-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--contrast-2); }
.halo-hero-fb__bar-value { font-size: 2.25rem; font-weight: 500; letter-spacing: -0.018em; line-height: 1; color: var(--contrast); }
.halo-hero-fb__bar-unit  { font-size: 14px; color: var(--contrast-2); margin-left: 6px; letter-spacing: 0; }

/* Dark tone */
.halo-hero-fb__bar.halo-tone-dark { border-top-color: rgba(255,255,255,0.18); }
.halo-hero-fb__bar.halo-tone-dark .halo-hero-fb__bar-sub   { color: rgba(255,255,255,0.78); }
.halo-hero-fb__bar.halo-tone-dark .halo-hero-fb__bar-label { color: rgba(255,255,255,0.5); }
.halo-hero-fb__bar.halo-tone-dark .halo-hero-fb__bar-unit  { color: rgba(255,255,255,0.55); }
.halo-hero-fb__bar.halo-tone-dark .halo-hero-fb__bar-value { color: var(--base-3); }
.halo-hero-fb__bar.halo-tone-dark .halo-hero-fb__bar-sub + .halo-hero-fb__bar-stat,
.halo-hero-fb__bar.halo-tone-dark .halo-hero-fb__bar-stat + .halo-hero-fb__bar-stat { border-left-color: rgba(255,255,255,0.18); }

/* Responsive — stack on mobile */
@media (max-width: 768px) {
  .halo-hero-fb { height: 560px; }
  .halo-hero-fb__content { padding-bottom: 4rem; }
  .halo-hero-fb__bar { border-top: none; }
  .halo-hero-fb__bar-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .halo-hero-fb__bar-sub { margin-bottom: 1.5rem; }
  .halo-hero-fb__bar-stat,
  .halo-hero-fb__bar-sub + .halo-hero-fb__bar-stat,
  .halo-hero-fb__bar-stat + .halo-hero-fb__bar-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--contrast-3); padding-top: 1.25rem; padding-bottom: 1.25rem; width: 100%; }
  .halo-hero-fb__bar.halo-tone-dark .halo-hero-fb__bar-stat { border-top-color: rgba(255,255,255,0.12); }
}

/* ── 02 · CTA Band ────────────────────────────────────────────── */
.halo-cta-band { padding: 20px 0 var(--pad-y); }
.halo-cta-band__title {
  font-weight: 500;
  line-height: 1.02;
  color: var(--contrast);
  margin: 0 0 1.5rem;
}
.halo-cta-band__title--large  { font-size: clamp(3rem, 8vw, 7rem);         letter-spacing: -0.026em; max-width: 16ch; }
.halo-cta-band__title--medium { font-size: clamp(2.5rem, 5.5vw, 5.5rem);  letter-spacing: -0.022em; max-width: 18ch; }
.halo-cta-band__title--small  { font-size: clamp(2.25rem, 3.75vw, 3.75rem); letter-spacing: -0.018em; max-width: 28ch; }
.halo-cta-band__sub {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--contrast-2);
  margin: 0 0 2.5rem;
  max-width: 52ch;
}
.halo-cta-band__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Dark tone overrides */
.halo-cta-band.halo-tone-dark .halo-eyebrow        { color: rgba(255,255,255,0.55); }
.halo-cta-band.halo-tone-dark .halo-cta-band__title { color: var(--base-3); }
.halo-cta-band.halo-tone-dark .halo-cta-band__sub   { color: rgba(255,255,255,0.7); }

/* ── 03 · Section Intro ───────────────────────────────────────── */
.halo-section-intro { padding: 20px 0 calc(var(--pad-y) * 0.5); }
.halo-section-intro--left { text-align: left; }
.halo-section-intro:not(.halo-section-intro--left) { text-align: center; }
.halo-section-intro__heading {
  font-weight: 500;
  line-height: 1.06;
  margin: 0 0 1.25rem;
}
.halo-section-intro__heading--large  { font-size: clamp(3rem, 8vw, 7rem);          letter-spacing: -0.026em; max-width: 16ch; }
.halo-section-intro__heading--medium { font-size: clamp(2.5rem, 5.5vw, 5.5rem);   letter-spacing: -0.022em; max-width: 18ch; }
.halo-section-intro__heading--small  { font-size: clamp(2.25rem, 3.75vw, 3.75rem); letter-spacing: -0.018em; max-width: 24ch; }
.halo-section-intro:not(.halo-section-intro--left) .halo-section-intro__heading { margin-inline: auto; }
.halo-section-intro__sub {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--contrast-2);
  max-width: 52ch;
  margin: 0;
}
.halo-tone-dark .halo-section-intro__sub { color: rgba(255,255,255,0.7); }
.halo-section-intro:not(.halo-section-intro--left) .halo-section-intro__sub { margin-inline: auto; }

/* ── Shared heading size classes (all blocks) ─────────────────── */
[class$="__heading--large"]  { font-size: clamp(3rem, 8vw, 7rem);           font-weight: 500; letter-spacing: -0.026em; line-height: 1.02; margin: 0 0 1.25rem; max-width: 16ch; }
[class$="__heading--medium"] { font-size: clamp(2.5rem, 5.5vw, 5.5rem);    font-weight: 500; letter-spacing: -0.022em; line-height: 1.04; margin: 0 0 1.25rem; max-width: 18ch; }
[class$="__heading--small"]  { font-size: clamp(2.25rem, 3.75vw, 3.75rem); font-weight: 500; letter-spacing: -0.018em; line-height: 1.06; margin: 0 0 1.25rem; max-width: 24ch; }
[class$="__heading--xsmall"] { font-size: clamp(1.75rem, 3vw, 2.5rem);     font-weight: 500; letter-spacing: -0.014em; line-height: 1.08; margin: 0 0 1.25rem; max-width: 32ch; }

/* ── 04 · Column Layout ───────────────────────────────────────── */
.halo-columns { padding: 20px 0 var(--pad-y); }
.halo-columns__grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
.halo-columns__grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.halo-columns__grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.halo-columns__grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.halo-columns__grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.halo-col-item {
  display: flex;
  flex-direction: column;
}
.halo-col-item__image img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:4px; margin-bottom:1.25rem; }
.halo-col-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.75rem;
}
.halo-col-item__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--contrast-2);
}
.halo-tone-dark .halo-col-item__title { color: var(--base-3); }
.halo-tone-dark .halo-col-item__body  { color: rgba(255,255,255,0.7); }
/* Push button to bottom so all buttons align across columns */
.halo-col-item .halo-btn { margin-top: auto; align-self: flex-start; }

/* ── 05 · Stat Grid ───────────────────────────────────────────── */
/* note at top (context label), then value + unit on same row */
.halo-stats { padding: 20px 0 var(--pad-y); }
.halo-stats__header { margin-bottom: 2.5rem; text-align: left; }
.halo-stats__grid {
  display: grid;
  gap: 1rem;
}
.halo-stats__grid[data-count="2"] { grid-template-columns: repeat(2,1fr); }
.halo-stats__grid[data-count="3"] { grid-template-columns: repeat(3,1fr); }
.halo-stats__grid[data-count="4"] { grid-template-columns: repeat(4,1fr); }
.halo-stats__grid[data-count="5"] { grid-template-columns: repeat(5,1fr); }
.halo-stat-item {
  background: var(--base-3);
  border: 1px solid var(--contrast-3);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.halo-stat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.halo-tone-dark .halo-stat-item {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
/* note — context overline, tight gap above value */
.halo-stat-note {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--contrast-2);
  margin: 0;
}
.halo-tone-dark .halo-stat-note { color: rgba(255,255,255,0.5); }
/* value */
.halo-stat-value {
  font-size: 3rem;
  font-weight: 600;
  color: var(--contrast);
  letter-spacing: -0.022em;
  line-height: 1;
}
.halo-tone-dark .halo-stat-value { color: var(--base-3); }
/* label */
.halo-stat-label {
  font-size: 0.875rem;
  color: var(--contrast-2);
  line-height: 1.4;
}
.halo-tone-dark .halo-stat-label { color: rgba(255,255,255,0.6); }
/* Stat grid heading — smaller than the generic heading scale */
.halo-stats__heading { font-weight: 500; max-width: 20ch; margin: 0.5rem 0 0; }
.halo-stats__heading--large  { font-size: clamp(2.25rem, 3.5vw, 3.5rem);  letter-spacing: -0.022em; }
.halo-stats__heading--medium { font-size: clamp(1.875rem, 2.75vw, 3rem);  letter-spacing: -0.018em; }
.halo-stats__heading--small  { font-size: clamp(1.5rem, 2vw, 2.25rem);    letter-spacing: -0.014em; }
.halo-stats__heading--xsmall { font-size: clamp(1.25rem, 1.5vw, 1.75rem); letter-spacing: -0.01em; }

/* ── 06 · Story Rows ──────────────────────────────────────────── */
/* Individual white cards per row, stacked with a gap */
.halo-story-rows { padding: 20px 0 var(--pad-y); }
.halo-story-rows__header { margin-bottom: 3rem; }
.halo-story-rows__list { display: flex; flex-direction: column; gap: 1.5rem; }
.halo-story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--base-3);
  border: 1px solid var(--contrast-3);
  padding: 1.75rem;
}
.halo-tone-dark .halo-story-row { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.halo-story-row:nth-child(even) .halo-story-row__image { order: -1; }
/* row 1: text left, no extra outer pad — sits close to card edge */
/* row 2: text right, inner left pad — pushes text away from image */
.halo-story-row__content { padding: 0 0 0 40px; }
.halo-story-row:nth-child(even) .halo-story-row__content { padding: 0 0 0 40px; }
/* Step number — displayed large like "01", "02" */
.halo-story-row__step {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--contrast);
  line-height: 1;
  margin: 0 0 1.25rem;
}
.halo-tone-dark .halo-story-row__step { color: var(--base-3); }
.halo-story-row__title {
  font-size: clamp(1.75rem, 2.5vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}
.halo-tone-dark .halo-story-row__title { color: var(--base-3); }
.halo-story-row__body  {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--contrast-2);
}
.halo-tone-dark .halo-story-row__body { color: rgba(255,255,255,0.65); }
.halo-story-row__image {
  background: var(--warm);
  height: 360px;
  overflow: hidden;
}
.halo-tone-dark .halo-story-row__image { background: rgba(255,255,255,0.06); }
.halo-story-row__image img { width:100%; height:100%; object-fit:cover; display:block; }

/* ── 07 · Pull Quote ──────────────────────────────────────────── */
.halo-pull-quote { padding: 20px 0 var(--pad-y); }
.halo-pull-quote .halo-inner { display: flex; flex-direction: column; max-width: 860px; }
.halo-pull-quote .halo-eyebrow { margin-bottom: 1.5rem; }
.halo-pull-quote__text {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}
.halo-pull-quote__text::before { content: '\201C'; font-size: 1.5em; line-height: 0; vertical-align: -0.35em; color: var(--contrast-3); margin-right: 0.08em; }
.halo-pull-quote__text::after  { content: '\201D'; font-size: 1.5em; line-height: 0; vertical-align: -0.35em; color: var(--contrast-3); margin-left: 0.08em; }
.halo-pull-quote__attribution {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--contrast-2);
}
.halo-tone-dark .halo-pull-quote__text { color: var(--base-3); }
.halo-tone-dark .halo-pull-quote__attribution { color: rgba(255,255,255,0.6); }

/* ── 08 · Spec Table ──────────────────────────────────────────── */
.halo-spec-table { padding: 20px 0 var(--pad-y); }
.halo-spec-table__intro { margin-bottom: 3rem; }
.halo-spec-table__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--contrast-3);
  border-radius: 4px;
  overflow: hidden;
}
.halo-spec-row { display: contents; }
.halo-spec-row > div {
  padding: 0.9375rem 1.5rem;
  border-bottom: 1px solid var(--contrast-3);
  border-right: 1px solid var(--contrast-3);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.halo-spec-row > div:nth-child(3n) { border-right: none; }
.halo-spec-row:last-child > div { border-bottom: none; }
.halo-spec-row--header > div {
  background: var(--contrast);
  color: var(--base-3);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.halo-spec-row:nth-child(even):not(.halo-spec-row--header) > div { background: var(--base-2); }

/* ── 09 · Accordion ───────────────────────────────────────────── */
.halo-accordion { padding: 20px 0 var(--pad-y); }
.halo-accordion__intro { margin-bottom: 3rem; }
.halo-accordion__item {
  border-top: 1px solid var(--contrast-3);
}
.halo-accordion__item:last-child { border-bottom: 1px solid var(--contrast-3); }
.halo-accordion__item summary {
  list-style: none;
  padding: 1.625rem 0;
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.halo-accordion__item summary::-webkit-details-marker { display: none; }
.halo-accordion__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
.halo-accordion__item[open] summary::after { content: '–'; }
.halo-accordion__body {
  padding: 0 0 1.625rem;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 70ch;
}

/* ── 10 · Timeline ────────────────────────────────────────────── */
.halo-timeline { padding: 20px 0 var(--pad-y); }
.halo-timeline__intro { margin-bottom: 3.5rem; }
.halo-timeline__steps {
  display: grid;
  grid-template-columns: repeat(var(--step-count, 4), 1fr);
  gap: 1.25rem;
}
.halo-timeline__step {
  border-top: 2px solid var(--contrast);
  padding-top: 1.25rem;
}
.halo-timeline__marker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--contrast-2);
  margin-bottom: 0.75rem;
}
.halo-timeline__step-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.625rem;
}
.halo-timeline__step-body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--contrast-2);
  margin: 0;
}
.halo-tone-dark .halo-timeline__step { border-top-color: rgba(255,255,255,0.2); }
.halo-tone-dark .halo-timeline__step-title { color: var(--base-3); }
.halo-tone-dark .halo-timeline__marker,
.halo-tone-dark .halo-timeline__step-body { color: rgba(255,255,255,0.6); }

/* ── 11 · Logo Strip ──────────────────────────────────────────── */
.halo-logo-strip { padding: 20px 0 var(--pad-y); }
.halo-logo-strip__header { text-align: center; margin-bottom: 2.5rem; }
.halo-logo-strip__header--left { text-align: left; }
.halo-logo-strip__heading { font-weight: 500; margin: 0.5rem 0 0; }
.halo-logo-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.halo-logo-strip__logo {
  height: 56px;
  width: 160px;
  background: var(--warm);
  border: 1px solid var(--contrast-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.halo-logo-strip__logo img { height: 100%; width: 100%; object-fit: contain; padding: 8px; }

/* ── 12 · Big Headline ────────────────────────────────────────── */
.halo-big-headline { padding: 20px 0 var(--pad-y); }
.halo-big-headline__eyebrow { margin-bottom: 2.5rem; }
.halo-big-headline__items { border-top: 1px solid var(--contrast-3); }
.halo-big-headline__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid var(--contrast-3);
  text-decoration: none;
  color: inherit;
  gap: 2rem;
  transition: color 0.15s;
}
.halo-big-headline__item:hover { color: var(--accent); }
.halo-big-headline__item > div { flex: 1; }
.halo-big-headline__item-text {
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.06;
}
.halo-big-headline__item-sub {
  font-size: 0.9375rem;
  color: var(--contrast-2);
  margin-top: 0.5rem;
}
.halo-big-headline__arrow {
  font-size: 1.5rem;
  opacity: 0.35;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: opacity 0.15s;
}
.halo-big-headline__item:hover .halo-big-headline__arrow { opacity: 1; }

/* ── 13 · Certifications ──────────────────────────────────────── */
.halo-certs { padding: 20px 0 var(--pad-y); }
.halo-certs__intro { margin-bottom: 3rem; }
.halo-certs__grid { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: flex-start; }
.halo-cert-item { max-width: 180px; }
.halo-cert-item__logo img { height: 64px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.halo-cert-item__title { font-size: 0.875rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.3rem; }
.halo-cert-item__note  { font-size: 0.8rem; color: var(--contrast-2); line-height: 1.5; }
.halo-certs__notes { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--contrast-3); }
.halo-certs__notes p { font-size: 0.8125rem; color: var(--contrast-2); margin: 0 0 0.4rem; }

/* ── 14 · Case Study Grid ─────────────────────────────────────── */
.halo-cs-grid { padding: 20px 0 var(--pad-y); }
.halo-cs-grid__filters { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }

/* Filter pills — white with lightgrey border → black when active. Never orange. */
.halo-filter-pill {
  padding: 10px 20px;
  border: 1px solid var(--contrast-3);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: var(--base-3);
  color: var(--contrast);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.halo-filter-pill.active,
.halo-filter-pill:hover { background: var(--contrast); color: var(--base-3); border-color: var(--contrast); }
.halo-cs-grid__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* Case study card — white card with lightgrey border, stat bar at bottom */
.halo-cs-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--base-3);
  border: 1px solid var(--contrast-3);
  transition: border-color 0.15s;
}
.halo-cs-card:hover { border-color: var(--contrast); }
.halo-cs-card__image { height: 190px; overflow: hidden; border-bottom: 1px solid var(--contrast-3); flex-shrink: 0; background: var(--warm); }
.halo-cs-card__image img { width:100%; height:100%; object-fit:cover; display:block; }
.halo-cs-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 0.75rem; }
.halo-cs-card__header { display: flex; justify-content: space-between; align-items: center; }
.halo-cs-card__sector { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--contrast-2); }
.halo-cs-card__arrow { font-size: 0.9375rem; color: var(--accent); }
.halo-cs-card__title { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; margin: 0; }
.halo-cs-card__stat { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--contrast-3); display: flex; align-items: baseline; gap: 0.625rem; }
.halo-cs-card__stat-value { font-size: 2.5rem; font-weight: 600; color: var(--contrast); letter-spacing: -0.022em; line-height: 1; }
.halo-cs-card__stat-label { font-size: 0.8125rem; color: var(--contrast-2); line-height: 1.3; }

/* ── 15 · News Archive ────────────────────────────────────────── */
.halo-news-archive { padding: 20px 0 var(--pad-y); }
.halo-news-archive__header { margin-bottom: 2.5rem; }
.halo-news-archive__filters { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.halo-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* News card — white card, category badge overlaid on image, orange → in meta */
.halo-news-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--base-3);
  border: 1px solid var(--contrast-3);
  transition: border-color 0.15s;
}
.halo-news-card:hover { border-color: var(--contrast); }
.halo-news-card__image { height: 180px; overflow: hidden; border-bottom: 1px solid var(--contrast-3); flex-shrink: 0; background: var(--warm); position: relative; }
.halo-news-card__image img { width:100%; height:100%; object-fit:cover; display:block; }
/* Category badge overlaid bottom-left of image */
.halo-news-card__badge {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--base-3); color: var(--contrast);
  padding: 4px 10px;
}
.halo-news-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 1rem; }
.halo-news-card__title { font-size: 1.1875rem; font-weight: 600; letter-spacing: -0.008em; line-height: 1.25; margin: 0; }
.halo-news-card__meta {
  margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--contrast-3);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--contrast-2);
}
.halo-news-card__arrow { font-size: 0.875rem; color: var(--accent); }

/* ── 16 · Related Case Studies ────────────────────────────────── */
.halo-related { padding: 20px 0 var(--pad-y); }
.halo-related__intro { margin-bottom: 2.5rem; }
.halo-related__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* ── 17 · Article Body ────────────────────────────────────────── */
.halo-article-body { padding: 20px 0 var(--pad-y); }
.halo-article-body__inner { max-width: 680px; }
.halo-article-body__content { font-size: 1.125rem; font-weight: 400; line-height: 1.7; }
.halo-article-body__content h2 { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.012em; line-height: 1.15; margin: 2.5rem 0 1rem; }
.halo-article-body__content h3 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.008em; line-height: 1.2; margin: 2rem 0 0.75rem; }
.halo-article-body__content p  { margin: 0 0 1.5rem; }
.halo-article-body__content ul,
.halo-article-body__content ol { padding-left: 1.375rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.halo-article-body__content li { line-height: 1.6; }
.halo-article-body__content a  { color: var(--accent); border-bottom: 1px solid var(--accent); text-decoration: none; }
.halo-article-body__content blockquote {
  border-left: 2px solid var(--accent);
  margin: 2.25rem 0;
  padding: 0.25rem 0 0.25rem 1.75rem;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ── 18 · Enquiry Form ────────────────────────────────────────── */
/* GP owns all form visual styling (colours, borders, focus, button).
   This block is layout only. */
.halo-enquiry-form { padding: 20px 0 var(--pad-y); }
.halo-enquiry-form__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.halo-enquiry-form__intro h2 {
  margin-bottom: 1rem;
}
.halo-enquiry-form__sub { font-size: 1rem; line-height: 1.6; color: var(--contrast-2); }

/* CF7 form layout */
.halo-form { display: flex; flex-direction: column; gap: 1.25rem; }
.halo-form__row { display: grid; gap: 1.25rem; }
.halo-form__row--2 { grid-template-columns: 1fr 1fr; }
.halo-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.halo-form__field label { font-size: 0.875rem; font-weight: 500; }
.halo-form__field abbr { text-decoration: none; color: var(--accent); }

/* Inputs — width and sizing only; colours come from GP form settings */
.halo-form input[type="text"],
.halo-form input[type="email"],
.halo-form input[type="tel"],
.halo-form select,
.halo-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.halo-form textarea { resize: vertical; min-height: 120px; }

/* Consent checkbox row */
.halo-form__field--check { flex-direction: row; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; line-height: 1.5; }
.halo-form__field--check input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--accent); }

/* Submit — width only; colour comes from GP form_button_background_color */
.halo-form .wpcf7-submit {
  width: auto;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

/* CF7 validation messages */
.wpcf7-not-valid-tip { font-size: 0.8125rem; color: #c0392b; margin-top: 0.25rem; display: block; }
.wpcf7-response-output { margin-top: 1.5rem; padding: 0.75rem 1rem; border-radius: 4px; font-size: 0.875rem; }
.wpcf7-mail-sent-ok    { background: #e8f5e9; border: 1px solid #a5d6a7; }
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng    { background: #fdecea; border: 1px solid #ef9a9a; }

/* ── 19 · Location ────────────────────────────────────────────── */
.halo-location { padding: 20px 0 var(--pad-y); }
.halo-location__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.halo-location__details { display: flex; flex-direction: column; gap: 1.5rem; }
.halo-location__item { display: flex; flex-direction: column; gap: 0.2rem; }
.halo-location__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--contrast-2);
  margin-bottom: 0.25rem;
}
.halo-location__value { font-size: 1rem; font-weight: 400; line-height: 1.6; }
.halo-location__value a { color: inherit; border-bottom: 1px solid var(--accent); text-decoration: none; }
.halo-location__map { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; background: var(--base-2); }
.halo-location__map img  { width:100%; height:100%; object-fit:cover; }
.halo-location__map iframe { width:100%; height:100%; border:none; }

/* ── 20 · ROI Calculator placeholder ─────────────────────────── */
.halo-roi { padding: 20px 0 var(--pad-y); background: var(--base-2); text-align: center; }
.halo-roi__label { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--contrast-2); margin-bottom: 1.5rem; }
.halo-roi__title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 500; letter-spacing: -0.018em; margin-bottom: 1rem; }
.halo-roi__sub   { color: var(--contrast-2); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; max-width: 52ch; margin-inline: auto; }

/* ── Team card ────────────────────────────────────────────────── */
.halo-team-card { display: flex; flex-direction: column; }
.halo-team-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid var(--contrast-3);
}
.halo-team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.halo-team-card__info { padding-top: 1.25rem; }
.halo-team-card__name { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 0.25rem; }
.halo-team-card__role { font-size: 0.8125rem; color: var(--contrast-2); margin: 0 0 0.75rem; letter-spacing: 0.02em; }
.halo-team-card__bio  { font-size: 0.875rem; line-height: 1.55; margin: 0; max-width: 34ch; }

/* ── 21 · Card Picker ─────────────────────────────────────────── */
.halo-card-picker { padding: 20px 0 var(--pad-y); }
.halo-card-picker__intro { margin-bottom: 3rem; }
.halo-card-picker__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ── Mobile navigation ────────────────────────────────────────── */
/* GP hides .menu-toggle by default; only apply our styles inside breakpoint */
@media (max-width: 1100px) {
  .menu-toggle {
    width: 40px !important;
    height: 36px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 2px solid var(--contrast) !important;
    border-radius: 4px !important;
    color: var(--contrast) !important;
    box-sizing: border-box;
    flex-shrink: 0;
    line-height: 1;
  }
  .menu-toggle .gp-icon svg { width: 18px; height: 18px; fill: var(--contrast); }

  #site-navigation.toggled {
    background: var(--base-3) !important;
    border-top: 1px solid var(--contrast-3);
    border-bottom: 2px solid var(--contrast-3);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 200;
  }
  #site-navigation .inside-navigation { display: block !important; max-width: none !important; padding: 0.25rem 0 1rem; }
  #site-navigation .menu-toggle { display: none !important; }
  #site-navigation.toggled .main-nav ul {
    display: flex !important; flex-direction: column; flex-wrap: nowrap;
    list-style: none; margin: 0; padding: 0;
  }
  #site-navigation.toggled .main-nav ul > li > a {
    display: block; padding: 0.8rem 2rem;
    border-bottom: 1px solid var(--contrast-3);
    font-size: 0.8125rem;
  }
  #site-navigation.toggled .menu-item-cta > a {
    background: var(--accent) !important;
    border-bottom: none !important; border-radius: 999px;
    margin: 0.75rem 2rem; padding: 10px 22px !important; display: inline-block;
  }
}

/* ── Footer ───────────────────────────────────────────────────── */
.halo-footer {
  background: var(--footer-bg);
  color: var(--base-3);
  padding: 4rem 0 0;
}
.halo-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.halo-footer__brand-name {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--base-3);
  margin-bottom: 0.75rem;
}
.halo-footer__brand-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 32ch;
}
.halo-footer__social { display: flex; flex-direction: column; gap: 0.375rem; }
.halo-footer__social a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.halo-footer__social a:hover { color: var(--base-3); }
.halo-footer__col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.halo-footer__col { display: flex; flex-direction: column; gap: 0; }
.halo-footer__col a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.3rem 0;
}
.halo-footer__col a:hover { color: var(--base-3); }
.halo-footer__copy {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--pad-x) 1.5rem;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  letter-spacing: 0.05em;
}
.halo-footer__copy-left { display: flex; align-items: center; gap: 1.25rem; }
.halo-footer__copy-right { display: flex; gap: 1.25rem; }
.halo-footer__copy a { color: inherit; text-decoration: none; }
.halo-footer__copy a:hover { color: rgba(255,255,255,0.7); }
/* B Corp badge */
.halo-footer__bcorp {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  padding: 3px 8px;
  color: rgba(255,255,255,0.5);
}

/* ── Case study single — hero ─────────────────────────────────── */
.halo-cs-hero {
  position: relative;
  padding: var(--pad-y) 0 0;
  overflow: hidden;
  min-height: 560px;
}
.halo-cs-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.halo-cs-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
  padding-bottom: var(--pad-y);
}
.halo-cs-hero__eyebrow { margin-bottom: 1.5rem; }
.halo-cs-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 500;
  color: var(--base-3);
  letter-spacing: -0.022em;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.halo-cs-hero__sub {
  font-size: 1.125rem; line-height: 1.5;
  color: rgba(255,255,255,0.7); margin: 0 0 2rem; max-width: 52ch;
}
.halo-cs-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.halo-cs-hero__panel {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 2.5rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.halo-cs-hero__stat { display: flex; flex-direction: column; gap: 0.5rem; }
.halo-cs-hero__stat-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.halo-cs-hero__stat-value {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600; color: var(--base-3);
  letter-spacing: -0.026em; line-height: 0.95;
}
.halo-cs-hero__stat-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.halo-cs-hero__logo-wrap {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.5rem;
}
.halo-cs-hero__logo {
  height: 48px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.8;
}

/* Stat bar — remaining stats across the bottom of the hero */
.halo-cs-stat-bar {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.halo-cs-stat-bar__inner {
  display: flex; gap: 0; align-items: stretch;
}
.halo-cs-stat-bar__item {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1.5rem 2.5rem 1.5rem 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 2.5rem;
}
.halo-cs-stat-bar__item:last-child { border-right: none; margin-right: 0; }
.halo-cs-stat-bar__value { font-size: 1.75rem; font-weight: 600; color: var(--base-3); letter-spacing: -0.018em; line-height: 1; }
.halo-cs-stat-bar__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ── News / article single ────────────────────────────────────── */
.halo-article-header { padding: var(--pad-y) 0 0; }
.halo-article-header__inner { max-width: 820px; margin-inline: auto; padding-bottom: 2.5rem; }
.halo-article-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.06; margin: 0.5rem 0 1.25rem;
}
.halo-article-header__meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8125rem; color: var(--contrast-2);
}
.halo-article-header__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--contrast-3); flex-shrink: 0;
}
.halo-article-header__image {
  max-width: 1080px; margin: 0 auto;
  height: 440px; overflow: hidden;
  border: 1px solid var(--contrast-3); background: var(--warm);
}
.halo-article-header__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-x: 48px; }
  .halo-columns__grid[data-cols="4"],
  .halo-columns__grid[data-cols="5"] { grid-template-columns: repeat(3,1fr); }
  .halo-stats__grid[data-count="5"]  { grid-template-columns: repeat(3,1fr); }
  .halo-timeline__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --pad-x: 24px; --pad-y: 64px; }
  .halo-hero__inner              { grid-template-columns: 1fr; }
  .halo-hero__image              { display: none; }
  .halo-story-row                { grid-template-columns: 1fr; gap: 2rem; }
  .halo-story-row:nth-child(even) .halo-story-row__image { order: 0; }
  .halo-story-row__content,
  .halo-story-row:nth-child(even) .halo-story-row__content { padding: 0; }
  .halo-columns__grid            { grid-template-columns: 1fr !important; }
  .halo-stats__grid              { grid-template-columns: repeat(2,1fr) !important; }
  .halo-cs-grid__grid,
  .halo-news-grid,
  .halo-related__grid,
  .halo-card-picker__grid        { grid-template-columns: 1fr; }
  .halo-spec-table__grid         { grid-template-columns: 1fr; }
  .halo-spec-row > div:nth-child(3n) { border-right: 1px solid var(--contrast-3); }
  .halo-spec-row > div { border-right: none !important; }
  .halo-enquiry-form__inner      { grid-template-columns: 1fr; gap: 3rem; }
  .halo-form__row--2             { grid-template-columns: 1fr; }
  .halo-cs-hero__inner           { grid-template-columns: 1fr; }
  .halo-cs-hero__panel           { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); padding-left: 0; padding-top: 2rem; }
  .halo-article-header__image    { height: 240px; }
  .halo-cs-stat-bar__inner       { flex-wrap: wrap; }
  .halo-location__inner          { grid-template-columns: 1fr; }
  .halo-footer__inner            { grid-template-columns: 1fr; gap: 2rem; }
  .halo-timeline__steps          { grid-template-columns: 1fr !important; }
  .halo-hero__stats              { gap: 1.5rem; }
  .halo-footer                   { padding: 3rem var(--pad-x) 2rem; }
}
@media (max-width: 480px) {
  .halo-stats__grid { grid-template-columns: 1fr !important; }
  .halo-hero__stats { flex-direction: column; gap: 1.25rem; }
}
