@font-face {
  font-family: "HC Display";
  src: url("assets/Yapari.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "HC Sans";
  src: url("assets/Cabin.ttf") format("truetype");
  font-display: swap;
}

.hc-home {
  --hc-ink: #080d10;
  --hc-ink-soft: #11191d;
  --hc-navy: #18242a;
  --hc-teal: #29bdd3;
  --hc-cyan: #79d9e7;
  --hc-stone: #e7ecee;
  --hc-paper: #f7f8f8;
  --hc-white: #ffffff;
  --hc-mid: #88949a;
  --hc-line: rgba(8, 13, 16, 0.16);
  --hc-line-light: rgba(255, 255, 255, 0.18);
  --hc-shadow: 0 28px 70px rgba(4, 15, 20, 0.16);
  --hc-container: min(92vw, 1440px);
  --hc-pad: clamp(3.75rem, 5.2vw, 6.25rem);
  --hc-display: "HC Display", Impact, sans-serif;
  --hc-sans: "HC Sans", Arial, sans-serif;
  --hc-serif: Georgia, "Times New Roman", serif;
  margin: 0;
  color: var(--hc-ink);
  background: var(--hc-paper);
  font-family: var(--hc-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

.hc-home *, .hc-home *::before, .hc-home *::after { box-sizing: border-box; }
.hc-home img { display: block; max-width: 100%; }
.hc-home a { color: inherit; }
.hc-home button, .hc-home input, .hc-home select, .hc-home textarea { font: inherit; }
.hc-home h1, .hc-home h2, .hc-home h3, .hc-home p { margin-top: 0; }
.hc-home h1, .hc-home h2, .hc-home h3 { color: inherit; }
.hc-home h1, .hc-home h2 { text-wrap: balance; }
.hc-home .hc-routes h2,
.hc-home .hc-audience--candidate h2,
.hc-home .hc-solutions h2,
.hc-home .hc-method h2,
.hc-home .hc-enquiry h2 { color: var(--hc-white); }

.hc-container { width: var(--hc-container); margin-inline: auto; }

.hc-skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--hc-white);
  background: var(--hc-ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.hc-skip-link:focus { transform: translateY(0); }

.hc-kicker {
  margin-bottom: .9rem;
  color: var(--hc-teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hc-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .68rem 1.1rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.hc-button:hover { transform: translateY(-2px); }
.hc-home .hc-button--ink, .hc-home .hc-button--dark { color: var(--hc-white); background: var(--hc-ink); }
.hc-home .hc-button--ink:hover, .hc-home .hc-button--dark:hover { background: var(--hc-teal); }
.hc-home .hc-button--light { color: var(--hc-ink); background: var(--hc-white); }
.hc-button--light:hover { background: var(--hc-cyan); }

.hc-text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-block: .45rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-weight: 700;
}

.hc-text-link span { transition: transform .25s ease; }
.hc-text-link:hover span { transform: translate(3px, -2px); }
.hc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }

.hc-home :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--hc-cyan);
  outline-offset: 4px;
}

/* Header */
.hc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--hc-ink);
  background: rgba(247, 248, 248, .985);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hc-header.is-scrolled {
  background: rgba(247, 248, 248, .985);
  border-color: var(--hc-line);
  box-shadow: 0 10px 28px rgba(8, 13, 16, .07);
}

.hc-header__inner {
  width: var(--hc-container);
  min-height: 5.6rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: min-height .25s ease;
}

.hc-header.is-scrolled .hc-header__inner { min-height: 4.35rem; }
.hc-brand { width: clamp(10rem, 14vw, 13.5rem); flex: none; }
.hc-brand img { width: 100%; height: auto; }
.hc-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.5rem); }
.hc-nav__links { display: flex; align-items: center; gap: clamp(1.25rem, 2.3vw, 2.7rem); }
.hc-nav__links a { position: relative; text-decoration: none; font-size: .82rem; font-weight: 700; letter-spacing: .025em; }
.hc-nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: var(--hc-teal); transition: right .25s ease; }
.hc-nav__links a:hover::after { right: 0; }
.hc-nav-toggle { display: none; width: 3rem; height: 3rem; padding: .7rem; border: 0; background: transparent; cursor: pointer; }
.hc-nav-toggle span { display: block; height: 1px; margin: .38rem 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.hc-mobile-nav__masthead, .hc-mobile-nav__eyebrow, .hc-mobile-nav__footer { display: none; }

/* Hero */
.hc-hero {
  position: relative;
  padding: clamp(7.5rem, 9vw, 9.5rem) 0 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 16, .05) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    var(--hc-paper);
}

.hc-hero__grid {
  min-height: 36rem;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(30rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
  padding-bottom: clamp(3rem, 4vw, 4.5rem);
}

.hc-hero__copy { position: relative; z-index: 2; padding-block: 2rem; }
.hc-hero h1 { max-width: 45rem; margin-bottom: 1.55rem; font-family: var(--hc-serif); font-size: clamp(4rem, 6.25vw, 7rem); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.hc-hero h1 em { color: var(--hc-teal); font-style: italic; font-weight: 400; }
.hc-hero__intro { max-width: 36rem; margin-bottom: 1.6rem; font-size: clamp(1rem, 1.15vw, 1.12rem); line-height: 1.55; }
.hc-hero__signals { display: flex; flex-wrap: wrap; gap: .55rem 1.25rem; margin-top: 2.3rem; padding-top: 1rem; border-top: 1px solid var(--hc-line); color: #65737a; font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.hc-hero__visual { position: relative; align-self: stretch; min-height: 30rem; display: flex; align-items: center; }
.hc-hero__image-wrap { position: relative; width: 100%; height: min(56vh, 36rem); min-height: 29rem; overflow: hidden; background: var(--hc-ink); box-shadow: var(--hc-shadow); clip-path: polygon(8% 0, 100% 0, 100% 91%, 87% 100%, 0 100%, 0 11%); }
.hc-hero__image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(6, 17, 22, .16), transparent 45%); pointer-events: none; }
.hc-hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hc-hero__caption { position: absolute; right: 1rem; bottom: 1rem; width: min(21rem, 68%); margin: 0; padding: .8rem 1rem; color: var(--hc-white); background: rgba(8,13,16,.92); font-size: .72rem; line-height: 1.45; }
.hc-hero__monogram { position: absolute; top: .5rem; left: -3rem; z-index: -1; color: rgba(41, 189, 211, .08); font-family: var(--hc-serif); font-size: clamp(4rem, 8vw, 8rem); line-height: 1; transform: rotate(-90deg); transform-origin: center; }
.hc-hero__rail { display: grid; grid-template-columns: repeat(3, 1fr); color: var(--hc-white); background: var(--hc-ink); }
.hc-hero__rail span { padding: .8rem 4vw; border-right: 1px solid var(--hc-line-light); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-align: center; text-transform: uppercase; }

/* Routes */
.hc-routes { padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-ink); }
.hc-section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 3.5vw, 4rem); }
.hc-section-head .hc-kicker { align-self: start; color: var(--hc-cyan); }
.hc-section-head h2 { margin: 0; font-family: var(--hc-serif); font-size: clamp(2.8rem, 4.3vw, 4.7rem); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.hc-route-list { border-top: 1px solid var(--hc-line-light); }
.hc-route { position: relative; display: grid; grid-template-columns: minmax(14rem, .8fr) minmax(20rem, 1fr) auto; align-items: center; gap: clamp(1rem, 3vw, 3.5rem); min-height: 8rem; padding: 1.55rem 0; border-bottom: 1px solid var(--hc-line-light); text-decoration: none; overflow: hidden; isolation: isolate; }
.hc-route::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--hc-navy); transform: translateX(-101%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.hc-route--work::before { background: #121f24; }
.hc-route--solutions::before { background: #18282e; }
.hc-route:hover::before, .hc-route:focus-visible::before { transform: translateX(0); }
.hc-route__title { display: flex; flex-direction: column; }
.hc-route__title small { margin-bottom: .35rem; color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hc-route__title strong { font-family: var(--hc-serif); font-size: clamp(2.2rem, 3.5vw, 3.8rem); font-weight: 400; letter-spacing: -.035em; line-height: .95; }
.hc-route > p { max-width: 37rem; margin: 0; color: rgba(255,255,255,.76); font-size: 1rem; }
.hc-route__action { white-space: nowrap; font-size: .78rem; font-weight: 700; }
.hc-route__action b { display: inline-block; margin-left: .55rem; color: var(--hc-cyan); transition: transform .25s ease; }
.hc-route:hover .hc-route__action b { transform: translate(4px, -4px); }
.hc-route__line { position: absolute; bottom: -1px; left: 0; width: 0; height: 2px; background: var(--hc-cyan); transition: width .5s ease; }
.hc-route:hover .hc-route__line { width: 100%; }

/* Recruitment narrative */
.hc-recruitment { padding-block: var(--hc-pad); background: var(--hc-stone); }
.hc-recruitment__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(32rem, 1.12fr); gap: clamp(3rem, 6vw, 6.5rem); align-items: start; }
.hc-recruitment__lead { position: sticky; top: 8rem; }
.hc-recruitment h2 { max-width: 36rem; margin-bottom: 1.25rem; font-family: var(--hc-sans); font-size: clamp(2.35rem, 3.5vw, 3.8rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.hc-recruitment__lead > p:not(.hc-kicker) { max-width: 35rem; margin-bottom: 1.5rem; font-size: 1rem; }
.hc-recruitment__steps { margin: 0; padding: 0; list-style: none; counter-reset: none; border-top: 1px solid var(--hc-line); }
.hc-recruitment__steps li { display: grid; grid-template-columns: 3.25rem 1fr; gap: 1.2rem; padding: 1.25rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-recruitment__steps li > span { color: var(--hc-teal); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.hc-recruitment__steps strong { display: block; margin-bottom: .35rem; font-size: clamp(1.18rem, 1.65vw, 1.5rem); line-height: 1.2; }
.hc-recruitment__steps p { max-width: 34rem; margin: 0; color: #5f6c72; font-size: .94rem; }

/* Employer / candidate */
.hc-audiences { background: var(--hc-white); }
.hc-audience { display: grid; grid-template-columns: 1fr 1fr; height: clamp(25rem, 32vw, 29rem); min-height: 0; }
.hc-audience__image { min-height: 0; overflow: hidden; background: var(--hc-ink-soft); }
.hc-audience__image img { width: 100%; height: 100%; object-fit: cover; }
.hc-audience--employer .hc-audience__image img { object-position: center 38%; }
.hc-audience__image--candidate img { object-position: 58% center; }
.hc-audience__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2.25rem, 3.5vw, 4rem); }
.hc-audience__copy h2 { max-width: 34rem; margin-bottom: 1.15rem; font-family: var(--hc-serif); font-size: clamp(2.45rem, 3.8vw, 4rem); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.hc-audience__copy > p:not(.hc-kicker) { max-width: 36rem; font-size: 1rem; }
.hc-audience--candidate { color: var(--hc-white); background: var(--hc-navy); }
.hc-audience--candidate .hc-kicker { color: var(--hc-cyan); }
.hc-inline-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1rem; }
.hc-inline-links a { padding-bottom: .35rem; border-bottom: 1px solid currentColor; text-decoration: none; font-size: .86rem; font-weight: 700; }

/* Sectors */
.hc-sectors { padding-block: var(--hc-pad); background: var(--hc-paper); }
.hc-sectors__grid { display: grid; grid-template-columns: 1fr minmax(27rem, .78fr); gap: clamp(3rem, 6vw, 6.5rem); align-items: center; }
.hc-sectors__content h2 { max-width: 42rem; margin-bottom: 1.15rem; font-family: var(--hc-sans); font-size: clamp(2.35rem, 3.5vw, 3.8rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.hc-sectors__intro { max-width: 41rem; margin-bottom: 1.8rem; font-size: 1rem; }
.hc-sector-tabs { display: flex; flex-direction: column; border-top: 1px solid var(--hc-line); }
.hc-sector-tabs button { display: flex; align-items: center; justify-content: space-between; padding: .82rem 0; border: 0; border-bottom: 1px solid var(--hc-line); color: #69777d; background: transparent; text-align: left; cursor: pointer; transition: color .25s ease, padding-left .25s ease; }
.hc-sector-tabs button::after { content: "↗"; color: var(--hc-teal); opacity: 0; transform: translate(-5px, 5px); transition: opacity .25s ease, transform .25s ease; }
.hc-sector-tabs button:hover, .hc-sector-tabs button[aria-selected="true"] { padding-left: .75rem; color: var(--hc-ink); }
.hc-sector-tabs button[aria-selected="true"]::after { opacity: 1; transform: translate(0,0); }
.hc-sector-panel { padding: 1.15rem 0 0; min-height: 6.5rem; }
.hc-sector-panel strong { display: block; margin-bottom: .45rem; font-size: 1.2rem; }
.hc-sector-panel p { max-width: 38rem; margin: 0; color: #5f6c72; }
.hc-sectors__visual { position: relative; height: min(58vw, 38rem); max-height: 38rem; margin: 0; overflow: hidden; background: var(--hc-ink); clip-path: polygon(0 0, 89% 0, 100% 9%, 100% 100%, 0 100%); }
.hc-sectors__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: opacity .2s ease, transform .6s ease; }
.hc-sectors__visual.is-changing img { opacity: .25; transform: scale(1.025); }
.hc-sectors__visual figcaption { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: repeat(3, 1fr); color: var(--hc-white); background: rgba(11,23,29,.96); }
.hc-sectors__visual figcaption span { padding: .9rem .5rem; border-right: 1px solid var(--hc-line-light); font-size: .65rem; font-weight: 700; letter-spacing: .11em; text-align: center; text-transform: uppercase; }

/* Solutions index */
.hc-solutions { padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-ink); }
.hc-solutions__head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 6.5rem); align-items: end; margin-bottom: clamp(2.5rem, 3.5vw, 4rem); }
.hc-solutions__head .hc-kicker { color: var(--hc-cyan); }
.hc-solutions__head h2 { max-width: 46rem; margin: 0; font-family: var(--hc-serif); font-size: clamp(2.8rem, 4.3vw, 4.7rem); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.hc-solutions__head > p { max-width: 37rem; margin: 0 0 .4rem; color: rgba(255,255,255,.72); }
.hc-service-index { border-top: 1px solid var(--hc-line-light); }
.hc-service-index details { border-bottom: 1px solid var(--hc-line-light); }
.hc-service-index summary { display: grid; grid-template-columns: minmax(15rem, .8fr) 1.2fr auto; align-items: center; gap: 1.25rem; padding: 1.15rem 0; cursor: pointer; list-style: none; }
.hc-service-index summary::-webkit-details-marker { display: none; }
.hc-service-index summary strong { font-size: clamp(1.08rem, 1.5vw, 1.4rem); line-height: 1.15; }
.hc-service-index summary em { color: rgba(255,255,255,.58); font-style: normal; }
.hc-service-index summary::after { content: "+"; grid-column: 3; color: var(--hc-cyan); font-size: 1.35rem; font-weight: 300; }
.hc-service-index details[open] summary::after { content: "−"; }
.hc-service-index details > div { display: grid; grid-template-columns: minmax(15rem, .8fr) 1.2fr auto; gap: 1.25rem; padding: 0 0 1.25rem; color: rgba(255,255,255,.72); font-size: .92rem; }
.hc-service-index details > div p { grid-column: 2; max-width: 48rem; margin: 0; }
.hc-service-index details > div a { grid-column: 3; align-self: start; color: var(--hc-cyan); font-size: .76rem; font-weight: 700; text-decoration: none; }

/* Method */
.hc-method { padding-block: clamp(2.75rem, 4vw, 4.25rem); background: var(--hc-ink-soft); color: var(--hc-white); }
.hc-method .hc-kicker { color: var(--hc-cyan); opacity: 1; }
.hc-method__grid { display: grid; grid-template-columns: .58fr 1.42fr; gap: clamp(2.5rem, 6vw, 6.5rem); align-items: center; }
.hc-method h2 { margin: 0; font-family: var(--hc-serif); font-size: clamp(2.2rem, 3.2vw, 3.45rem); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.hc-method ol { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(121,217,231,.6); }
.hc-method li { display: grid; grid-template-columns: 2.25rem 1fr; gap: .75rem; padding: 1.15rem 1.2rem 0 0; border-right: 1px solid rgba(255,255,255,.14); }
.hc-method li:last-child { border-right: 0; padding-right: 0; padding-left: 1.2rem; }
.hc-method li:nth-child(2) { padding-left: 1.2rem; }
.hc-method li span { color: var(--hc-cyan); font-size: .66rem; letter-spacing: .15em; }
.hc-method li strong { font-size: clamp(1rem, 1.4vw, 1.28rem); line-height: 1.25; }

/* Proof */
.hc-proof { padding-block: var(--hc-pad); background: var(--hc-stone); }
.hc-proof__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 6vw, 6.5rem); align-items: start; }
.hc-proof__statement h2 { max-width: 49rem; margin-bottom: 1.25rem; font-family: var(--hc-sans); font-size: clamp(2.2rem, 3.25vw, 3.5rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.hc-proof__statement > p:not(.hc-kicker) { max-width: 44rem; margin-bottom: 1.35rem; font-size: 1rem; }
.hc-proof__facts { margin-top: 2rem; border-top: 1px solid var(--hc-line); }
.hc-proof__facts div { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.25rem; padding: .95rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-proof__facts span { color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-proof__facts strong { font-size: .96rem; line-height: 1.4; }

/* Enquiry */
.hc-enquiry { position: relative; padding-block: clamp(3.75rem, 5vw, 5.75rem); color: var(--hc-white); background: var(--hc-navy); overflow: hidden; }
.hc-enquiry::before { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 1px; background: rgba(121,217,231,.35); pointer-events: none; }
.hc-enquiry__grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(3rem, 7vw, 7.5rem); align-items: start; }
.hc-enquiry__copy .hc-kicker { color: var(--hc-cyan); }
.hc-enquiry__copy h2 { max-width: 40rem; margin-bottom: 1.25rem; font-family: var(--hc-serif); font-size: clamp(2.55rem, 3.8vw, 4.1rem); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.hc-enquiry__copy > p:not(.hc-kicker) { max-width: 35rem; color: rgba(255,255,255,.75); }
.hc-enquiry__copy > a { display: inline-block; margin-top: 1rem; color: var(--hc-cyan); font-weight: 700; text-decoration: none; }
.hc-form { display: grid; gap: .75rem; padding: clamp(1.4rem, 2.2vw, 2.25rem); border: 1px solid var(--hc-line-light); background: rgba(8,13,16,.32); }
.hc-form label { display: grid; gap: .35rem; color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.hc-form input, .hc-form select, .hc-form textarea { width: 100%; min-height: 2.85rem; padding: .62rem .75rem; border: 1px solid rgba(255,255,255,.25); border-radius: 0; color: var(--hc-white); background: rgba(255,255,255,.025); font-size: .95rem; letter-spacing: normal; text-transform: none; transition: border-color .2s ease, background .2s ease; }
.hc-form select option { color: var(--hc-ink); background: var(--hc-white); }
.hc-form textarea { min-height: 5.5rem; resize: vertical; }
.hc-form input:focus, .hc-form select:focus, .hc-form textarea:focus { border-color: var(--hc-cyan); background: rgba(255,255,255,.08); }
.hc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.hc-form__hidden { display: none !important; }
.hc-form__status { min-height: 1.5rem; font-size: .86rem; }
.hc-form__status.is-success { color: var(--hc-cyan); }
.hc-form__status.is-error { color: #c7d9de; }
.hc-form .hc-button { justify-self: start; border: 0; cursor: pointer; }
.hc-form .hc-button:disabled { opacity: .6; cursor: wait; }

/* Footer */
.hc-footer { color: var(--hc-white); background: #05090b; }
.hc-footer__top { display: grid; grid-template-columns: 1.25fr repeat(4, .75fr); gap: clamp(1.5rem, 3vw, 3rem); padding-block: 3.25rem; }
.hc-footer__brand img { width: 11.5rem; margin-bottom: 1rem; filter: invert(1); }
.hc-footer__brand p { color: rgba(255,255,255,.62); font-size: .9rem; }
.hc-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: .48rem; }
.hc-footer nav strong { margin-bottom: .6rem; color: var(--hc-cyan); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.hc-footer nav a { color: rgba(255,255,255,.68); text-decoration: none; font-size: .8rem; }
.hc-footer nav a:hover { color: var(--hc-white); }
.hc-footer__company, .hc-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .65rem 1.5rem; padding-block: .9rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .04em; }
.hc-footer__company a, .hc-footer__bottom a { color: inherit; text-decoration: none; }

/* Recruitment / Find People page */
.hc-recruit-page .hc-nav__links a.is-active { color: var(--hc-ink); }
.hc-recruit-page .hc-nav__links a.is-active::after { width: 100%; background: var(--hc-teal); }
.hc-button--light { color: var(--hc-ink); background: var(--hc-white); }
.hc-text-link--light { color: var(--hc-white); }

.hc-recruit-hero { padding-top: 7.4rem; background-color: var(--hc-paper); background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(8,13,16,.07) 1px); background-size: 11vw 100%; overflow: hidden; }
.hc-recruit-hero__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(3rem, 6vw, 6.5rem); min-height: 43rem; align-items: center; padding-block: 3.5rem 3.75rem; }
.hc-recruit-hero__copy { position: relative; z-index: 1; }
.hc-recruit-hero__copy h1 { max-width: 46rem; margin-bottom: 1.45rem; font-family: var(--hc-serif); font-size: clamp(3.9rem, 5.65vw, 6.25rem); font-weight: 400; letter-spacing: -.055em; line-height: .91; }
.hc-recruit-hero__copy h1 em { color: var(--hc-teal); font-weight: 400; }
.hc-recruit-hero__copy > p:not(.hc-kicker) { max-width: 39rem; font-size: clamp(1rem, 1.15vw, 1.12rem); line-height: 1.55; }
.hc-recruit-hero__signals { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2rem; padding-top: .9rem; border-top: 1px solid var(--hc-line); color: #65737a; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hc-recruit-hero__visual { position: relative; height: min(63vh, 35rem); min-height: 29rem; margin: 0; overflow: hidden; background: var(--hc-ink); clip-path: polygon(8% 0,100% 0,100% 92%,88% 100%,0 100%,0 11%); box-shadow: var(--hc-shadow); }
.hc-recruit-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(8,13,16,.08), transparent 52%); pointer-events: none; }
.hc-recruit-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.hc-recruit-hero__visual figcaption { position: absolute; right: 1rem; bottom: 1rem; z-index: 1; width: min(22rem, 70%); padding: .85rem 1rem; color: var(--hc-white); background: rgba(8,13,16,.92); font-size: .74rem; line-height: 1.45; }

.hc-recruit-problem { padding-block: var(--hc-pad); background: var(--hc-stone); }
.hc-recruit-problem__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 7.5rem); align-items: start; }
.hc-recruit-problem h2 { max-width: 38rem; margin-bottom: 1.2rem; font-family: var(--hc-serif); font-size: clamp(2.75rem, 4vw, 4.35rem); font-weight: 400; letter-spacing: -.045em; line-height: .97; }
.hc-recruit-problem__grid > div > p:not(.hc-kicker) { max-width: 37rem; }
.hc-recruit-problem__points { margin: 0; border-top: 1px solid var(--hc-line); }
.hc-recruit-problem__points div { display: grid; grid-template-columns: 9rem 1fr; gap: 1.4rem; padding: 1rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-recruit-problem__points dt { color: var(--hc-teal); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-recruit-problem__points dd { margin: 0; font-size: 1rem; line-height: 1.45; }

.hc-recruit-process { padding-block: clamp(4rem, 5.5vw, 6.25rem); color: var(--hc-white); background: var(--hc-ink); }
.hc-recruit-process__grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(3rem, 7vw, 7.5rem); align-items: start; }
.hc-recruit-process__intro { position: sticky; top: 7.5rem; }
.hc-recruit-process__intro .hc-kicker { color: var(--hc-cyan); }
.hc-recruit-process__intro h2 { max-width: 34rem; margin-bottom: 1.15rem; font-family: var(--hc-serif); font-size: clamp(2.65rem, 3.8vw, 4.1rem); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.hc-recruit-process__intro > p:not(.hc-kicker) { max-width: 35rem; color: rgba(255,255,255,.72); }
.hc-recruit-process__steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(121,217,231,.55); }
.hc-recruit-process__steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1.15rem; padding: 1rem 0; border-bottom: 1px solid var(--hc-line-light); }
.hc-recruit-process__steps li > span { color: var(--hc-cyan); font-size: .68rem; letter-spacing: .14em; }
.hc-recruit-process__steps strong { display: block; margin-bottom: .3rem; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.2; }
.hc-recruit-process__steps p { max-width: 43rem; margin: 0; color: rgba(255,255,255,.66); font-size: .92rem; }

.hc-recruit-capabilities { padding-block: var(--hc-pad); background: var(--hc-paper); }
.hc-recruit-section-head { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(3rem, 7vw, 7.5rem); align-items: end; margin-bottom: 2.5rem; }
.hc-recruit-section-head h2 { max-width: 45rem; margin: 0; font-family: var(--hc-sans); font-size: clamp(2.35rem, 3.4vw, 3.7rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.hc-recruit-section-head > p { max-width: 34rem; margin: 0; }
.hc-recruit-capability-list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hc-line); }
.hc-recruit-capability-list li { display: grid; grid-template-columns: minmax(10rem,.65fr) 1fr; gap: 1.25rem; padding: 1.05rem 1.5rem 1.05rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-recruit-capability-list li:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--hc-line); }
.hc-recruit-capability-list strong { font-size: 1rem; }
.hc-recruit-capability-list span { color: #5f6c72; font-size: .9rem; line-height: 1.45; }

.hc-recruit-sectors .hc-sectors__content h2 { max-width: 39rem; }

.hc-recruit-expect { padding-block: clamp(4rem, 5vw, 5.75rem); color: var(--hc-white); background: var(--hc-ink-soft); }
.hc-recruit-expect__head { display: grid; grid-template-columns: .72fr 1.28fr; gap: 3rem; margin-bottom: 2.5rem; }
.hc-recruit-expect__head .hc-kicker { color: var(--hc-cyan); }
.hc-recruit-expect__head h2 { max-width: 55rem; margin: 0; font-family: var(--hc-serif); font-size: clamp(2.7rem, 4vw, 4.2rem); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.hc-recruit-expect__rows { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--hc-line-light); }
.hc-recruit-expect__rows p { display: grid; grid-template-columns: minmax(11rem,.75fr) 1.25fr; gap: 1.25rem; margin: 0; padding: 1rem 1.5rem 1rem 0; border-bottom: 1px solid var(--hc-line-light); }
.hc-recruit-expect__rows p:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--hc-line-light); }
.hc-recruit-expect__rows strong { color: var(--hc-white); font-size: .95rem; }
.hc-recruit-expect__rows span { color: rgba(255,255,255,.64); font-size: .88rem; line-height: 1.45; }

.hc-recruit-brief { scroll-margin-top: 5rem; padding-block: clamp(4rem, 5.5vw, 6.25rem); color: var(--hc-white); background: var(--hc-navy); }
.hc-recruit-brief__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 7.5rem); align-items: start; }
.hc-recruit-brief__copy .hc-kicker { color: var(--hc-cyan); }
.hc-recruit-brief__copy h2 { max-width: 35rem; margin-bottom: 1.15rem; font-family: var(--hc-serif); font-size: clamp(2.7rem, 3.8vw, 4.1rem); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.hc-recruit-brief__copy > p:not(.hc-kicker) { max-width: 35rem; color: rgba(255,255,255,.72); }
.hc-recruit-contact-route { display: grid; gap: .45rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--hc-line-light); }
.hc-recruit-contact-route strong { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.hc-recruit-contact-route a { color: var(--hc-cyan); font-size: .88rem; text-decoration: none; }
.hc-recruit-form { background: rgba(8,13,16,.34); }

.hc-recruit-proof { background: var(--hc-stone); }
.hc-recruit-proof__grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 27rem; }
.hc-recruit-proof__image { min-height: 0; aspect-ratio: 1672 / 941; align-self: center; margin: 0; overflow: hidden; background: var(--hc-ink); clip-path: polygon(0 0,92% 0,100% 12%,100% 100%,0 100%); }
.hc-recruit-proof__image img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hc-recruit-proof__copy { align-self: center; padding: clamp(3rem, 6vw, 6rem); padding-right: 0; }
.hc-recruit-proof__copy h2 { max-width: 43rem; margin-bottom: 1.15rem; font-family: var(--hc-sans); font-size: clamp(2.25rem, 3.15vw, 3.45rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.hc-recruit-proof__copy > p:not(.hc-kicker) { max-width: 40rem; }
.hc-recruit-proof__copy dl { margin: 1.5rem 0; border-top: 1px solid var(--hc-line); }
.hc-recruit-proof__copy dl div { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-recruit-proof__copy dt { color: var(--hc-teal); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hc-recruit-proof__copy dd { margin: 0; font-size: .9rem; font-weight: 700; }

.hc-recruit-final { padding-block: 3.5rem; color: var(--hc-white); background: #05090b; }
.hc-recruit-final__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 7vw, 7.5rem); align-items: end; }
.hc-recruit-final .hc-kicker { color: var(--hc-cyan); }
.hc-recruit-final h2 { margin: 0; font-family: var(--hc-serif); font-size: clamp(2.75rem, 4vw, 4.25rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.hc-recruit-final__grid > div:last-child > p { max-width: 44rem; color: rgba(255,255,255,.72); }

/* Reveal motion */
.js .hc-home [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.js .hc-home [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hc-header__inner { min-height: 5.15rem; }
  .hc-nav__links { gap: 1.2rem; }
  .hc-nav__cta { padding-inline: 1rem; }
  .hc-hero { padding-top: 7rem; }
  .hc-hero__grid { grid-template-columns: .9fr 1.1fr; min-height: 33rem; gap: 2.75rem; }
  .hc-hero__image-wrap { min-height: 27rem; height: 52vh; }
  .hc-route { grid-template-columns: minmax(13rem, .75fr) 1fr auto; }
  .hc-recruitment__grid, .hc-sectors__grid { gap: 4rem; }
  .hc-service-index summary { grid-template-columns: minmax(13rem, .8fr) 1.2fr auto; }
  .hc-service-index details > div { grid-template-columns: minmax(13rem, .8fr) 1.2fr auto; }
  .hc-service-index details > div a { grid-column: 3; margin-top: .8rem; }
  .hc-footer__top { grid-template-columns: 1.1fr repeat(4, .8fr); gap: 1.5rem; }
  .hc-recruit-hero__grid { gap: 3rem; min-height: 38rem; }
  .hc-recruit-hero__visual { height: 31rem; min-height: 0; }
  .hc-recruit-problem__grid, .hc-recruit-process__grid, .hc-recruit-brief__grid { gap: 4rem; }
  .hc-recruit-capability-list li { grid-template-columns: 1fr; gap: .4rem; }
  .hc-recruit-expect__rows p { grid-template-columns: 1fr; gap: .4rem; }
  .hc-recruit-proof__copy { padding-left: 4rem; }
}

@media (max-width: 860px) {
  .hc-home { --hc-pad: 2.5rem; }
  .hc-nav-toggle { display: block; position: relative; z-index: 12; }
  .hc-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hc-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hc-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hc-home.hc-nav-open .hc-nav-toggle { visibility: hidden; }
  .hc-nav {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
    gap: clamp(.55rem, 1.7vh, 1rem);
    min-height: 100dvh;
    max-height: 100dvh;
    padding: max(.85rem, env(safe-area-inset-top)) max(1rem, 5vw) max(1rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--hc-white);
    background:
      linear-gradient(90deg, rgba(121,217,231,.045) 1px, transparent 1px) 0 0 / 25vw 100%,
      radial-gradient(circle at 88% 8%, rgba(41,189,211,.12), transparent 31%),
      linear-gradient(155deg, #11191d 0%, #080d10 54%, #05090b 100%);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-.5rem);
    transition: visibility .22s, opacity .22s ease, transform .22s ease;
  }
  .hc-nav::before { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(121,217,231,.08); }
  .hc-nav > * { position: relative; z-index: 1; }
  .hc-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .hc-mobile-nav__masthead { display: flex; min-height: 3.2rem; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hc-mobile-nav__brand { width: clamp(9.75rem, 43vw, 11.25rem); flex: none; }
  .hc-mobile-nav__brand img { width: 100%; height: auto; filter: invert(1) grayscale(1) brightness(2.2); }
  .hc-mobile-nav__close { position: relative; display: block; width: 3rem; height: 3rem; flex: none; padding: 0; border: 1px solid rgba(255,255,255,.32); color: var(--hc-white); background: rgba(255,255,255,.035); cursor: pointer; }
  .hc-mobile-nav__close span { position: absolute; left: 50%; top: 50%; width: 1.35rem; height: 1px; background: currentColor; }
  .hc-mobile-nav__close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
  .hc-mobile-nav__close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
  .hc-mobile-nav__close:hover { color: var(--hc-ink); background: var(--hc-cyan); border-color: var(--hc-cyan); }
  .hc-mobile-nav__eyebrow { display: block; margin: 0; color: var(--hc-cyan); font-size: .66rem; font-weight: 700; letter-spacing: .2em; line-height: 1.2; text-transform: uppercase; }
  .hc-nav__links { align-self: center; display: grid; width: 100%; gap: 0; border-top: 1px solid rgba(255,255,255,.2); counter-reset: hc-mobile-route; }
  .hc-nav__links a {
    counter-increment: hc-mobile-route;
    display: grid;
    grid-template-columns: 2.15rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: .85rem;
    width: 100%;
    min-width: 0;
    min-height: 4.3rem;
    padding: .72rem .35rem;
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.92);
    font-family: var(--hc-serif);
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .92;
    text-decoration: none;
    text-transform: none;
    opacity: 0;
    transform: translateY(.45rem);
    transition: color .18s ease, padding .18s ease, opacity .2s ease, transform .2s ease;
  }
  .hc-nav__links a::before { content: counter(hc-mobile-route, decimal-leading-zero); grid-column: 1; grid-row: 1 / 3; padding-top: .2rem; color: rgba(255,255,255,.42); font-family: var(--hc-sans); font-size: .66rem; font-weight: 700; letter-spacing: .12em; line-height: 1; }
  .hc-nav__links a::after { content: attr(data-route); position: static; grid-column: 2; grid-row: 2; width: auto; height: auto; margin-top: .3rem; color: rgba(255,255,255,.48); background: transparent; font-family: var(--hc-sans); font-size: .68rem; font-weight: 400; letter-spacing: .01em; line-height: 1.25; transition: none; }
  .hc-nav.is-open .hc-nav__links a { opacity: 1; transform: none; }
  .hc-nav.is-open .hc-nav__links a:nth-child(1) { transition-delay: .035s; }
  .hc-nav.is-open .hc-nav__links a:nth-child(2) { transition-delay: .065s; }
  .hc-nav.is-open .hc-nav__links a:nth-child(3) { transition-delay: .095s; }
  .hc-nav.is-open .hc-nav__links a:nth-child(4) { transition-delay: .125s; }
  .hc-nav__links a:hover, .hc-nav__links a:focus-visible { color: var(--hc-cyan); padding-left: .7rem; }
  .hc-nav__links a.is-active { color: var(--hc-white); box-shadow: inset 2px 0 0 var(--hc-cyan); }
  .hc-nav__links a.is-active::before { color: var(--hc-cyan); }
  .hc-nav__cta { width: 100%; min-height: 3.35rem; justify-content: space-between; align-self: auto; padding-inline: 1rem; color: var(--hc-ink); background: var(--hc-cyan); opacity: 0; transform: translateY(.35rem); transition: color .18s ease, background .18s ease, opacity .2s ease .14s, transform .2s ease .14s; }
  .hc-nav.is-open .hc-nav__cta { opacity: 1; transform: none; }
  .hc-mobile-nav__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .35rem 1rem; padding-top: .7rem; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.52); font-size: .68rem; line-height: 1.3; }
  .hc-mobile-nav__footer a { color: var(--hc-cyan); text-decoration: none; }
  .hc-mobile-nav__footer p { margin: 0; }
  .hc-home.hc-nav-open { height: 100dvh; overflow: hidden !important; touch-action: none; }
  .hc-hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 1.4rem; }
  .hc-hero__copy { max-width: 46rem; }
  .hc-hero__visual { min-height: 0; }
  .hc-hero__image-wrap { height: 18rem; min-height: 0; }
  .hc-hero__caption { right: 1rem; }
  .hc-section-head { grid-template-columns: 1fr; }
  .hc-route { grid-template-columns: 1fr; gap: 1rem; }
  .hc-route > p, .hc-route__action { grid-column: 1; }
  .hc-recruitment__grid, .hc-sectors__grid, .hc-solutions__head, .hc-method__grid, .hc-proof__grid, .hc-enquiry__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hc-recruitment__lead { position: static; }
  .hc-audience { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .hc-audience__image { min-height: 15rem; }
  .hc-audience__copy { padding-block: 2rem; }
  .hc-audience--candidate .hc-audience__copy { order: 2; }
  .hc-audience--candidate .hc-audience__image { order: 1; }
  .hc-proof__facts { margin-top: 0; }
  .hc-sectors__visual { height: 22rem; width: min(100%, 36rem); }
  .hc-solutions__head { align-items: start; }
  .hc-method__grid { align-items: start; }
  .hc-footer__top { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-block: 2rem; }
  .hc-footer__brand { grid-column: 1 / -1; }
  .hc-recruit-page .hc-nav__links a.is-active { color: var(--hc-white); }
  .hc-recruit-hero { padding-top: 6.4rem; background-size: 22vw 100%; }
  .hc-recruit-hero__grid, .hc-recruit-problem__grid, .hc-recruit-process__grid, .hc-recruit-section-head, .hc-recruit-expect__head, .hc-recruit-brief__grid, .hc-recruit-proof__grid, .hc-recruit-final__grid { grid-template-columns: 1fr; }
  .hc-recruit-hero__grid { gap: 2rem; min-height: 0; padding-block: 2.5rem; }
  .hc-recruit-hero__copy { max-width: 45rem; }
  .hc-recruit-hero__visual { width: min(100%, 42rem); height: 25rem; }
  .hc-recruit-problem__grid, .hc-recruit-process__grid, .hc-recruit-brief__grid { gap: 2.5rem; }
  .hc-recruit-process__intro { position: static; }
  .hc-recruit-section-head { gap: 1.5rem; align-items: start; margin-bottom: 2rem; }
  .hc-recruit-capability-list, .hc-recruit-expect__rows { grid-template-columns: 1fr; }
  .hc-recruit-capability-list li, .hc-recruit-capability-list li:nth-child(even), .hc-recruit-expect__rows p, .hc-recruit-expect__rows p:nth-child(even) { padding: .95rem 0; border-left: 0; }
  .hc-recruit-expect__head { gap: 1.25rem; }
  .hc-recruit-proof__grid { min-height: 0; }
  .hc-recruit-proof__image { min-height: 0; aspect-ratio: 16 / 9; clip-path: polygon(0 0,92% 0,100% 12%,100% 100%,0 100%); }
  .hc-recruit-proof__copy { padding: 2.75rem 0; }
  .hc-recruit-final__grid { gap: 1.5rem; align-items: start; }
}

@media (max-width: 860px) and (max-height: 650px) {
  .hc-nav { gap: .35rem; padding-block: max(.55rem, env(safe-area-inset-top)) max(.65rem, env(safe-area-inset-bottom)); }
  .hc-mobile-nav__masthead { min-height: 2.75rem; padding-bottom: .35rem; }
  .hc-mobile-nav__brand { width: 9.4rem; }
  .hc-mobile-nav__close { width: 2.75rem; height: 2.75rem; }
  .hc-nav__links a { min-height: 3.25rem; padding-block: .38rem; font-size: clamp(1.75rem, 8.7vw, 2.2rem); }
  .hc-nav__links a::after { margin-top: .18rem; font-size: .6rem; }
  .hc-nav__cta { min-height: 2.85rem; }
  .hc-mobile-nav__footer { padding-top: .4rem; font-size: .62rem; }
}

@media (max-width: 600px) {
  .hc-home { --hc-container: min(88vw, 34rem); --hc-pad: 2.5rem; }
  .hc-header__inner { min-height: 4.5rem; }
  .hc-header.is-scrolled .hc-header__inner { min-height: 4.15rem; }
  .hc-brand { width: 10.5rem; }
  .hc-hero { padding-top: 6.1rem; background-size: 25vw 100%; }
  .hc-hero__grid { gap: 1rem; padding-bottom: 1.8rem; }
  .hc-hero h1 { font-size: clamp(3.05rem, 14.3vw, 4.45rem); line-height: .9; }
  .hc-hero__intro { font-size: 1rem; }
  .hc-hero__signals { margin-top: 1.25rem; padding-top: .75rem; }
  .hc-hero__image-wrap { height: 15rem; clip-path: polygon(7% 0,100% 0,100% 93%,88% 100%,0 100%,0 10%); }
  .hc-hero__image-wrap img { object-position: 50% center; }
  .hc-hero__caption { right: .65rem; bottom: .65rem; width: 72%; }
  .hc-hero__monogram { display: none; }
  .hc-hero__rail { grid-template-columns: 1fr; }
  .hc-hero__rail span { padding: .52rem; border-right: 0; border-bottom: 1px solid var(--hc-line-light); }
  .hc-section-head { gap: 1rem; margin-bottom: 1.75rem; }
  .hc-section-head h2 { font-size: clamp(2.5rem, 11.5vw, 3.45rem); }
  .hc-recruitment h2, .hc-sectors__content h2, .hc-proof__statement h2 { font-size: clamp(2.05rem, 9.5vw, 2.8rem); }
  .hc-audience__copy h2 { font-size: clamp(2.35rem, 10.8vw, 3.15rem); }
  .hc-solutions__head h2 { font-size: clamp(2.5rem, 11.5vw, 3.4rem); }
  .hc-method h2 { font-size: clamp(2.05rem, 9.5vw, 2.7rem); }
  .hc-enquiry__copy h2 { font-size: clamp(2.35rem, 10.7vw, 3.2rem); }
  .hc-route { min-height: 0; padding: 1rem 0; }
  .hc-route__title strong { font-size: 2.35rem; }
  .hc-route > p { font-size: .92rem; }
  .hc-recruitment__grid, .hc-sectors__grid, .hc-solutions__head, .hc-proof__grid, .hc-enquiry__grid { gap: 2rem; }
  .hc-recruitment__steps li { grid-template-columns: 2.5rem 1fr; gap: .8rem; padding: .72rem 0; }
  .hc-audience__image { min-height: 15rem; }
  .hc-audience__copy { padding: 2rem 6vw; }
  .hc-sectors__visual { height: 19rem; }
  .hc-sector-tabs button { min-height: 3.25rem; }
  .hc-solutions__head { margin-bottom: 1.75rem; }
  .hc-service-index summary { padding: .82rem 0; }
  .hc-service-index summary { grid-template-columns: 1fr auto; gap: .8rem; align-items: start; }
  .hc-service-index summary em { grid-column: 1 / -1; font-size: .85rem; }
  .hc-service-index summary::after { grid-column: 2; grid-row: 1; }
  .hc-service-index details > div { display: block; padding-left: 0; }
  .hc-service-index details > div a { display: inline-block; margin-top: .8rem; }
  .hc-method ol { grid-template-columns: 1fr; }
  .hc-method li, .hc-method li:nth-child(2), .hc-method li:last-child { grid-template-columns: 2.25rem 1fr; padding: .8rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hc-proof__facts div { grid-template-columns: 1fr; gap: .35rem; }
  .hc-form__row { grid-template-columns: 1fr; }
  .hc-enquiry { padding-block: 2.75rem; }
  .hc-form { padding: 1rem; gap: .6rem; }
  .hc-form textarea { min-height: 4.5rem; }
  .hc-form .hc-button { width: 100%; }
  .hc-footer__top { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-block: 1.75rem; }
  .hc-footer__brand { grid-column: 1 / -1; }
  .hc-footer__company, .hc-footer__bottom { flex-direction: column; }
  .hc-recruit-hero { padding-top: 5.7rem; }
  .hc-recruit-hero__grid { gap: 1.4rem; padding-block: 2rem; }
  .hc-recruit-hero__copy h1 { font-size: clamp(3rem, 13.4vw, 4.15rem); line-height: .91; }
  .hc-recruit-hero__copy > p:not(.hc-kicker) { font-size: .98rem; }
  .hc-recruit-hero__signals { margin-top: 1.35rem; }
  .hc-recruit-hero__visual { height: 18rem; }
  .hc-recruit-hero__visual figcaption { right: .65rem; bottom: .65rem; width: 78%; }
  .hc-recruit-problem h2, .hc-recruit-process__intro h2, .hc-recruit-expect__head h2, .hc-recruit-brief__copy h2 { font-size: clamp(2.35rem, 10.8vw, 3.15rem); }
  .hc-recruit-section-head h2, .hc-recruit-proof__copy h2 { font-size: clamp(2.05rem, 9.5vw, 2.8rem); }
  .hc-recruit-problem__points div { grid-template-columns: 1fr; gap: .35rem; padding: .85rem 0; }
  .hc-recruit-process { padding-block: 3rem; }
  .hc-recruit-process__steps li { grid-template-columns: 2.35rem 1fr; gap: .7rem; padding: .85rem 0; }
  .hc-recruit-expect { padding-block: 3rem; }
  .hc-recruit-expect__head { margin-bottom: 1.75rem; }
  .hc-recruit-brief { padding-block: 3rem; }
  .hc-recruit-proof__image { min-height: 0; }
  .hc-recruit-proof__copy dl div { grid-template-columns: 1fr; gap: .25rem; }
  .hc-recruit-final { padding-block: 2.75rem; }
  .hc-recruit-final h2 { font-size: clamp(2.6rem, 12vw, 3.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hc-home *, .hc-home *::before, .hc-home *::after { scroll-behavior: auto; transition-duration: .01ms; animation-duration: .01ms; animation-iteration-count: 1; }
  .js .hc-home [data-reveal] { opacity: 1; transform: none; }
  .hc-nav.is-open .hc-nav__links a, .hc-nav.is-open .hc-nav__cta { transition-delay: 0s; }
}

/* Find Solutions page */
.hc-solutions-page .hc-nav__links a.is-active { color: var(--hc-ink); }
.hc-solutions-page .hc-nav__links a.is-active::after { width: 100%; background: var(--hc-teal); }
.hc-solutions-page main { background: var(--hc-paper); }
.hc-solutions-page main h2 { font-family: var(--hc-serif); font-size: clamp(2.65rem, 4.8vw, 5rem); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.hc-solutions-page main h3 { margin-bottom: .75rem; font-size: clamp(1.45rem, 2.15vw, 2.25rem); line-height: 1.05; }
.hc-solutions-page main p { max-width: 48rem; }

.hc-sol-hero { position: relative; padding-top: 6.5rem; color: var(--hc-white); background: var(--hc-ink); overflow: hidden; }
.hc-sol-hero::before { content: ""; position: absolute; top: 6.5rem; right: 0; width: 18vw; height: 1px; background: var(--hc-cyan); opacity: .75; }
.hc-sol-hero__frame { display: grid; min-height: 42rem; grid-template-rows: auto 1fr auto; padding-block: clamp(2.25rem, 3.6vw, 4rem); }
.hc-sol-hero__masthead { display: flex; justify-content: space-between; gap: 2rem; align-items: baseline; padding-bottom: 1rem; border-bottom: 1px solid var(--hc-line-light); }
.hc-sol-hero__masthead .hc-kicker { margin: 0; }
.hc-sol-hero__masthead > p:last-child { margin: 0; color: rgba(255,255,255,.48); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hc-sol-hero h1 { align-self: center; max-width: 82rem; margin: clamp(2rem,4vw,4rem) 0; font-family: var(--hc-serif); font-size: clamp(5rem, 9vw, 9.75rem); font-weight: 400; letter-spacing: -.062em; line-height: .77; }
.hc-sol-hero h1 em { color: var(--hc-cyan); font-weight: 400; }
.hc-sol-hero__lower { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); align-items: end; border-top: 1px solid var(--hc-line-light); }
.hc-sol-hero__introduction { padding-top: 1.4rem; }
.hc-sol-hero__introduction > p { margin-bottom: 1.35rem; color: rgba(255,255,255,.72); font-size: .96rem; }
.hc-sol-hero__ledger { display: grid; grid-template-columns: 1fr 1fr; align-self: stretch; border-left: 1px solid var(--hc-line-light); }
.hc-sol-hero__ledger article { display: grid; align-content: end; min-height: 9.5rem; padding: 1.4rem clamp(1.4rem,2.5vw,2.75rem) 0; }
.hc-sol-hero__ledger article + article { border-left: 1px solid var(--hc-line-light); }
.hc-sol-hero__ledger span { margin-bottom: .55rem; color: var(--hc-cyan); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-sol-hero__ledger strong { margin-bottom: .45rem; font-family: var(--hc-serif); font-size: clamp(1.65rem,2.2vw,2.35rem); font-weight: 400; line-height: 1; }
.hc-sol-hero__ledger p { margin: 0; color: rgba(255,255,255,.55); font-size: .8rem; line-height: 1.45; }

.hc-sol-need { padding-block: var(--hc-pad); background: var(--hc-stone); }
.hc-sol-need__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.hc-sol-need h2 { max-width: 44rem; }
.hc-sol-need__copy > p:first-child { margin-bottom: 1.5rem; font-size: 1.08rem; }
.hc-sol-need__copy ul { margin: 0 0 1.6rem; padding: 0; list-style: none; border-top: 1px solid var(--hc-line); }
.hc-sol-need__copy li { padding: .8rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-sol-need__note { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.5rem; margin: 0; padding-top: .4rem; }
.hc-sol-need__note span { color: #56656c; }

.hc-sol-routes { padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-ink); }
.hc-sol-section-head { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(3rem, 7vw, 8rem); align-items: end; margin-bottom: clamp(2.5rem, 4vw, 4.5rem); }
.hc-sol-section-head h2 { max-width: 52rem; margin-bottom: 0; }
.hc-sol-section-head > p { margin: 0; color: #66747a; }
.hc-sol-routes .hc-sol-section-head > p, .hc-sol-process .hc-sol-section-head > p { color: rgba(255,255,255,.66); }
.hc-sol-routes__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--hc-line-light); border-bottom: 1px solid var(--hc-line-light); }
.hc-sol-route { position: relative; min-height: 30rem; padding: clamp(2rem, 4vw, 4rem); overflow: hidden; }
.hc-sol-route + .hc-sol-route { border-left: 1px solid var(--hc-line-light); }
.hc-sol-route::before { content: ""; position: absolute; inset: 0; opacity: 0; background: linear-gradient(135deg, rgba(121,217,231,.12), transparent 58%); transition: opacity .35s ease; }
.hc-sol-route:hover::before, .hc-sol-route:focus-within::before { opacity: 1; }
.hc-sol-route h3 { position: relative; z-index: 1; margin-bottom: 1.25rem; font-family: var(--hc-serif); font-size: clamp(2.8rem, 5vw, 5.25rem); font-weight: 400; letter-spacing: -.045em; }
.hc-sol-route > p:not(.hc-sol-label), .hc-sol-route ul, .hc-sol-route a { position: relative; z-index: 1; }
.hc-sol-route > p:not(.hc-sol-label) { color: rgba(255,255,255,.74); }
.hc-sol-route ul { min-height: 7.5rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; border-top: 1px solid var(--hc-line-light); }
.hc-sol-route li { padding: .6rem 0; border-bottom: 1px solid var(--hc-line-light); color: rgba(255,255,255,.67); font-size: .9rem; }
.hc-sol-label { display: inline-flex; width: max-content; align-items: center; min-height: 1.6rem; margin: 0 0 1.3rem; padding: .2rem .55rem; border: 1px solid currentColor; color: var(--hc-teal); font-size: .61rem; font-weight: 700; letter-spacing: .11em; line-height: 1; text-transform: uppercase; }

.hc-sol-index { scroll-margin-top: 5rem; padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-navy); }
.hc-sol-index .hc-sol-section-head > p { color: rgba(255,255,255,.62); }
.hc-sol-index__list { border-top: 1px solid var(--hc-line-light); }
.hc-sol-index__list details { border-bottom: 1px solid var(--hc-line-light); }
.hc-sol-index__list summary { display: grid; grid-template-columns: minmax(13rem,.8fr) 1.2fr auto 1.25rem; gap: 1.2rem; align-items: center; padding: 1.1rem 0; cursor: pointer; list-style: none; }
.hc-sol-index__list summary::-webkit-details-marker { display: none; }
.hc-sol-index__list summary strong { font-size: clamp(1.08rem, 1.5vw, 1.4rem); line-height: 1.15; }
.hc-sol-index__list summary em { color: rgba(255,255,255,.58); font-style: normal; }
.hc-sol-index__list summary .hc-sol-label { margin: 0; white-space: nowrap; }
.hc-sol-index__list summary::after { content: "+"; color: var(--hc-cyan); font-size: 1.3rem; font-weight: 300; }
.hc-sol-index__list details[open] summary::after { content: "−"; }
.hc-sol-index__list details[open] summary strong { color: var(--hc-cyan); }
.hc-sol-index__list details > div { display: grid; grid-template-columns: minmax(13rem,.8fr) 1.2fr auto; gap: 1.2rem; padding: 0 2.45rem 1.25rem 0; color: rgba(255,255,255,.72); font-size: .92rem; }
.hc-sol-index__list details > div p { grid-column: 2; margin: 0; }
.hc-sol-index__list details > div a { grid-column: 3; align-self: start; color: var(--hc-cyan); text-decoration: none; font-size: .76rem; font-weight: 700; white-space: nowrap; }

.hc-sol-presence { padding-block: var(--hc-pad); background: var(--hc-stone); }
.hc-sol-presence__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3.5rem, 8vw, 9rem); align-items: center; }
.hc-sol-presence__copy h2 { max-width: 47rem; }
.hc-sol-presence__copy > p:not(.hc-kicker) { color: #45545b; }
.hc-sol-presence__audit { margin: 0; border-top: 1px solid var(--hc-line); }
.hc-sol-presence__audit div { display: grid; grid-template-columns: 7rem 1fr; gap: 1.2rem; padding: 1.05rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-sol-presence__audit dt { color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-sol-presence__audit dd { margin: 0; font-weight: 700; }

.hc-sol-process { padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-ink); }
.hc-sol-process__visual { margin: .5rem 0 1.4rem; }
.hc-sol-process__visual svg { display: block; width: 100%; height: auto; overflow: visible; }
.hc-sol-process__visual path { fill: none; stroke-width: 2; }
.hc-sol-process__trunk { stroke: rgba(255,255,255,.45); }
.hc-sol-process__direct { stroke: var(--hc-cyan); }
.hc-sol-process__specialist { stroke: #71848d; }
.hc-sol-process__visual circle { fill: var(--hc-cyan); }
.hc-sol-process__visual text { fill: rgba(255,255,255,.58); font-family: var(--hc-sans); font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.hc-sol-process__steps { display: grid; grid-template-columns: repeat(5,1fr); margin: 0; padding: 0; border-top: 1px solid var(--hc-line-light); list-style: none; counter-reset: sol-step; }
.hc-sol-process__steps li { counter-increment: sol-step; min-height: 11rem; padding: 1.15rem; border-right: 1px solid var(--hc-line-light); }
.hc-sol-process__steps li:last-child { border-right: 0; }
.hc-sol-process__steps li::before { content: "0" counter(sol-step); display: block; margin-bottom: 1.9rem; color: var(--hc-cyan); font-size: .68rem; letter-spacing: .08em; }
.hc-sol-process__steps strong, .hc-sol-process__steps span { display: block; }
.hc-sol-process__steps strong { margin-bottom: .55rem; }
.hc-sol-process__steps span { color: rgba(255,255,255,.58); font-size: .82rem; }

.hc-sol-enquiry { scroll-margin-top: 5rem; padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-navy); }
.hc-sol-enquiry__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.hc-sol-enquiry__copy h2 { max-width: 40rem; }
.hc-sol-enquiry__copy > p:not(.hc-kicker) { color: rgba(255,255,255,.72); font-size: 1.02rem; }
.hc-sol-enquiry__contact { display: grid; gap: .35rem; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--hc-line-light); }
.hc-sol-enquiry__contact strong { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.hc-sol-enquiry__contact a { color: var(--hc-cyan); text-decoration: none; }
.hc-sol-form { background: rgba(8,13,16,.34); }

.hc-sol-final { padding-block: clamp(3.5rem, 5vw, 5.5rem); background: var(--hc-stone); }
.hc-sol-final__grid { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.hc-sol-final h2 { margin-bottom: 0; font-size: clamp(2.9rem, 4.8vw, 5.2rem); }
.hc-sol-final .hc-actions { justify-content: flex-end; }

@media (max-width: 1180px) {
  .hc-sol-hero h1 { font-size: clamp(5rem, 9.2vw, 7.25rem); }
  .hc-sol-hero__lower { grid-template-columns: .72fr 1.28fr; gap: 3rem; }
  .hc-sol-index__list summary { grid-template-columns: minmax(12rem,.8fr) 1fr auto 1.25rem; }
  .hc-sol-index__list details > div { grid-template-columns: minmax(12rem,.8fr) 1fr auto; }
  .hc-sol-process__steps { grid-template-columns: repeat(3,1fr); }
  .hc-sol-process__steps li { border-bottom: 1px solid var(--hc-line-light); }
}

@media (max-width: 860px) {
  .hc-solutions-page .hc-nav__links a.is-active { color: var(--hc-white); }
  .hc-sol-hero { padding-top: 6.4rem; }
  .hc-sol-hero__frame { min-height: 0; padding-block: 2.4rem; }
  .hc-sol-hero h1 { margin-block: 3.5rem; font-size: clamp(4.8rem, 13vw, 6.6rem); }
  .hc-sol-hero__lower, .hc-sol-need__grid, .hc-sol-section-head, .hc-sol-presence__grid, .hc-sol-enquiry__grid, .hc-sol-final__grid { grid-template-columns: 1fr; }
  .hc-sol-hero__lower { gap: 2rem; }
  .hc-sol-hero__ledger { border-top: 1px solid var(--hc-line-light); border-left: 0; }
  .hc-sol-need__grid, .hc-sol-presence__grid, .hc-sol-enquiry__grid { gap: 2.5rem; }
  .hc-sol-section-head { gap: 1.5rem; align-items: start; }
  .hc-sol-routes__grid { grid-template-columns: 1fr; }
  .hc-sol-route { min-height: 0; }
  .hc-sol-route + .hc-sol-route { border-top: 1px solid var(--hc-line-light); border-left: 0; }
  .hc-sol-route ul { min-height: 0; }
  .hc-sol-index__list summary { grid-template-columns: 1fr auto; gap: .7rem 1rem; align-items: start; }
  .hc-sol-index__list summary em { grid-column: 1 / -1; grid-row: 2; }
  .hc-sol-index__list summary .hc-sol-label { grid-column: 1; grid-row: 3; }
  .hc-sol-index__list summary::after { grid-column: 2; grid-row: 1; }
  .hc-sol-index__list details > div { display: block; padding-right: 0; }
  .hc-sol-index__list details > div a { display: inline-block; margin-top: .8rem; }
  .hc-sol-process__visual { display: none; }
  .hc-sol-process__steps { grid-template-columns: 1fr; }
  .hc-sol-process__steps li { display: grid; grid-template-columns: 2.5rem 1fr; min-height: 0; padding: 1rem 0; border-right: 0; }
  .hc-sol-process__steps li::before { grid-row: 1 / 3; margin: 0; }
  .hc-sol-final__grid { align-items: start; }
  .hc-sol-final .hc-actions { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .hc-solutions-page { --hc-pad: 3rem; }
  .hc-solutions-page main h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .hc-sol-hero { padding-top: 5.7rem; }
  .hc-sol-hero::before { top: 5.7rem; width: 24vw; }
  .hc-sol-hero__frame { padding-block: 1.75rem; }
  .hc-sol-hero__masthead { display: block; }
  .hc-sol-hero__masthead > p:last-child { margin-top: .55rem; }
  .hc-sol-hero h1 { margin-block: 2.75rem; font-size: clamp(3.75rem, 18vw, 4.7rem); line-height: .82; }
  .hc-sol-hero__lower { gap: 1.5rem; }
  .hc-sol-hero__ledger { grid-template-columns: 1fr; }
  .hc-sol-hero__ledger article { min-height: 0; padding: 1.1rem 0; }
  .hc-sol-hero__ledger article + article { border-top: 1px solid var(--hc-line-light); border-left: 0; }
  .hc-sol-need__note, .hc-sol-presence__audit div { grid-template-columns: 1fr; gap: .35rem; }
  .hc-sol-route { padding: 1.4rem 0; }
  .hc-sol-route h3 { font-size: 2.75rem; }
  .hc-sol-index__list summary { padding: .9rem 0; }
  .hc-sol-index__list summary em { font-size: .84rem; }
  .hc-sol-process__steps li { grid-template-columns: 2.2rem 1fr; }
  .hc-sol-form { padding: 1rem; }
  .hc-sol-final { padding-block: 2.75rem; }
  .hc-sol-final h2 { font-size: clamp(2.55rem, 11.8vw, 3.45rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hc-sol-route::before { transition: none; }
}

/* About page */
.hc-about-page { --hc-pad: clamp(3.25rem, 3.8vw, 4.25rem); }
.hc-about-page .hc-nav__links a.is-active::after { right: 0; }
.hc-about-page main h2 { margin-bottom: 1.1rem; font-family: var(--hc-serif); font-size: clamp(2.7rem, 4.15vw, 4.8rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.hc-about-page main h3 { font-family: var(--hc-serif); font-weight: 400; letter-spacing: -.04em; }

.hc-about-hero { padding-top: 5.6rem; background: var(--hc-paper); }
.hc-about-hero__inner { padding-top: clamp(2rem, 3.2vw, 3.6rem); }
.hc-about-hero__masthead { display: flex; justify-content: space-between; gap: 2rem; align-items: center; padding-bottom: 1.05rem; border-bottom: 1px solid var(--hc-line); }
.hc-about-hero__masthead p { margin: 0; }
.hc-about-hero__masthead > p:last-child { color: #5d6b72; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-about-hero__title { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(19rem, .55fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; padding-block: clamp(2.75rem, 3.7vw, 3.75rem); }
.hc-about-hero h1 { max-width: 68rem; margin: 0; font-family: var(--hc-serif); font-size: clamp(4.4rem, 7.3vw, 8.3rem); font-weight: 400; letter-spacing: -.06em; line-height: .84; }
.hc-about-hero h1 em { color: var(--hc-teal); font-weight: 400; }
.hc-about-hero__title > div > p { max-width: 30rem; margin-bottom: 1.65rem; color: #425159; font-size: clamp(1rem, 1.2vw, 1.12rem); }
.hc-about-hero__panorama { margin: 0; border-top: 1px solid var(--hc-ink); }
.hc-about-hero__panorama img { width: 100%; height: clamp(18rem, 22vw, 20rem); object-fit: cover; object-position: center 52%; filter: saturate(.78) contrast(1.04); }
.hc-about-hero__panorama figcaption { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; padding: .8rem 0 1rem; border-bottom: 1px solid var(--hc-line); color: #5f6d73; font-size: .69rem; letter-spacing: .07em; text-transform: uppercase; }
.hc-about-hero__panorama figcaption span:last-child { text-align: right; }

.hc-about-purpose { padding-block: clamp(2.5rem, 3vw, 3.25rem); color: var(--hc-white); background: var(--hc-ink); }
.hc-about-purpose__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 10rem); align-items: start; }
.hc-about-purpose h2 { max-width: 42rem; }
.hc-about-purpose__copy > p { max-width: 43rem; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.2vw, 1.12rem); }
.hc-about-purpose__copy > p:first-child { color: var(--hc-white); font-size: clamp(1.15rem, 1.6vw, 1.45rem); }
.hc-about-purpose__copy dl { margin: 2.3rem 0 0; border-top: 1px solid var(--hc-line-light); }
.hc-about-purpose__copy dl div { display: grid; grid-template-columns: 5rem 1fr; gap: 1.5rem; padding: .95rem 0; border-bottom: 1px solid var(--hc-line-light); }
.hc-about-purpose__copy dt { color: var(--hc-cyan); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-about-purpose__copy dd { margin: 0; color: rgba(255,255,255,.78); }

.hc-about-people { scroll-margin-top: 5rem; padding-block: clamp(3.75rem, 4.5vw, 5rem); background: var(--hc-white); }
.hc-about-section-head { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); gap: clamp(3rem, 9vw, 9rem); align-items: end; margin-bottom: clamp(3rem, 4vw, 4.75rem); }
.hc-about-section-head h2 { max-width: 55rem; margin-bottom: 0; }
.hc-about-section-head > p { max-width: 33rem; margin: 0; color: #506067; }
.hc-about-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 5.5rem); align-items: start; }
.hc-about-profile { display: block; }
.hc-about-profile figure { aspect-ratio: 4 / 3; margin: 0; background: var(--hc-stone); overflow: hidden; }
.hc-about-profile figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.78) contrast(1.02); transition: filter .35s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.hc-about-profile:hover figure img { filter: saturate(.92) contrast(1.01); transform: scale(1.015); }
.hc-about-profile__copy { max-width: 42rem; padding-top: 2rem; }
.hc-about-profile__index { margin-bottom: .8rem; color: var(--hc-teal); font-size: .69rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-about-profile h3 { margin: 0 0 1.35rem; font-size: clamp(3rem, 4vw, 4.75rem); line-height: .94; }
.hc-about-profile__copy > p:not(.hc-about-profile__index) { color: #46555c; font-size: clamp(1rem, 1.18vw, 1.12rem); }
.hc-about-profile ul { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--hc-line); }
.hc-about-profile li { padding: .9rem 0; border-bottom: 1px solid var(--hc-line); font-size: .9rem; }

.hc-about-model { padding-top: clamp(3.5rem, 4vw, 4.5rem); background: var(--hc-stone); }
.hc-about-model__intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-bottom: clamp(2.5rem, 3vw, 3.5rem); }
.hc-about-model__intro .hc-kicker { grid-column: 1 / -1; margin-bottom: -1rem; }
.hc-about-model__intro h2 { max-width: 48rem; margin-bottom: 0; }
.hc-about-model__intro > p:last-child { max-width: 37rem; margin: 0; color: #4b5a61; }
.hc-about-model__bands { border-top: 1px solid var(--hc-line); }
.hc-about-model__bands article { display: grid; grid-template-columns: minmax(3rem,.14fr) minmax(11rem,.42fr) minmax(20rem,1fr) auto; gap: clamp(1.5rem, 3vw, 3.75rem); align-items: center; min-height: 8rem; padding: clamp(1.5rem, 1.8vw, 2rem) max(4vw, calc((100vw - 1440px) / 2)); border-bottom: 1px solid var(--hc-line); }
.hc-about-model__bands article:nth-child(2) { color: var(--hc-white); background: var(--hc-navy); }
.hc-about-model__bands article:nth-child(3) { color: var(--hc-white); background: var(--hc-ink); }
.hc-about-model__bands article > span { color: var(--hc-teal); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.hc-about-model__bands h3 { margin: 0; font-size: clamp(2.45rem, 3vw, 3.55rem); line-height: .94; }
.hc-about-model__bands p { max-width: 45rem; margin: 0; color: #44535a; }
.hc-about-model__bands article:nth-child(n+2) p { color: rgba(255,255,255,.65); }
.hc-about-model__bands a { display: inline-flex; gap: .55rem; align-items: center; padding-bottom: .35rem; border-bottom: 1px solid currentColor; text-decoration: none; font-size: .8rem; font-weight: 700; white-space: nowrap; }

.hc-about-process { padding-block: clamp(3.5rem, 4vw, 4.5rem); background: var(--hc-white); }
.hc-about-process__sequence { display: grid; grid-template-columns: repeat(5,1fr); margin: 0; padding: 0; border-top: 1px solid var(--hc-line); list-style: none; counter-reset: none; }
.hc-about-process__sequence li { min-height: 11.5rem; padding: 1.35rem 1.25rem 1.35rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-about-process__sequence li + li { padding-left: 1.25rem; border-left: 1px solid var(--hc-line); }
.hc-about-process__sequence span { display: block; margin-bottom: 2.25rem; color: var(--hc-teal); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.hc-about-process__sequence strong { display: block; margin-bottom: .7rem; font-family: var(--hc-sans); font-size: 1.05rem; font-weight: 700; line-height: 1.15; }
.hc-about-process__sequence p { margin: 0; color: #526168; font-size: .85rem; }

.hc-about-delivery { padding-top: clamp(3.5rem, 4vw, 4.5rem); background: var(--hc-paper); }
.hc-about-delivery__heading { padding-bottom: clamp(2.75rem, 3.5vw, 4rem); }
.hc-about-delivery__heading h2 { max-width: 60rem; margin-bottom: 0; }
.hc-about-delivery__split { display: grid; grid-template-columns: 1fr 1fr; }
.hc-about-delivery__split article { min-height: 20rem; padding: clamp(3rem, 3.5vw, 4rem) max(4vw, calc((100vw - 1440px) / 2)); }
.hc-about-delivery__split article:first-child { padding-left: max(4vw, calc((100vw - 1440px) / 2)); background: var(--hc-stone); }
.hc-about-delivery__split article:last-child { padding-right: max(4vw, calc((100vw - 1440px) / 2)); color: var(--hc-white); background: var(--hc-navy); }
.hc-about-delivery__split h3 { max-width: 34rem; margin: 0 0 1.35rem; font-size: clamp(2.75rem, 3.5vw, 4rem); line-height: .94; }
.hc-about-delivery__split article > p:not(.hc-about-profile__index) { max-width: 34rem; color: #45545b; }
.hc-about-delivery__split article:last-child > p:not(.hc-about-profile__index) { color: rgba(255,255,255,.66); }
.hc-about-delivery__split strong { display: block; max-width: 34rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid currentColor; font-size: .83rem; }

.hc-about-expect { padding-block: clamp(3.75rem, 4.5vw, 5rem); background: var(--hc-white); }
.hc-about-expect__columns { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--hc-line); }
.hc-about-expect__columns article { padding: 2rem clamp(2rem, 5vw, 5rem) 2.25rem 0; }
.hc-about-expect__columns article + article { padding-right: 0; padding-left: clamp(2rem, 5vw, 5rem); border-left: 1px solid var(--hc-line); }
.hc-about-expect__columns h3 { margin: 0 0 1.75rem; font-size: clamp(2.5rem, 3vw, 3.4rem); line-height: .95; }
.hc-about-expect__columns ul { margin: 0; padding: 0; list-style: none; }
.hc-about-expect__columns li { padding: .68rem 0; border-bottom: 1px solid var(--hc-line); color: #46555c; }
.hc-about-principles { display: grid; grid-template-columns: 1.15fr repeat(5,1fr); margin-top: 2rem; border-top: 1px solid var(--hc-line); border-bottom: 1px solid var(--hc-line); background: var(--hc-paper); }
.hc-about-principles > * { display: flex; align-items: center; min-height: 4rem; padding: .9rem 1rem; font-size: .78rem; line-height: 1.35; }
.hc-about-principles > * + * { border-left: 1px solid var(--hc-line); }
.hc-about-principles strong { color: var(--hc-teal); letter-spacing: .1em; text-transform: uppercase; }

.hc-about-proof { padding-block: clamp(3.5rem, 4vw, 4.5rem); background: var(--hc-stone); }
.hc-about-proof__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.hc-about-proof__number { margin: 0; font-family: var(--hc-serif); font-size: clamp(7rem, 9vw, 9.5rem); letter-spacing: -.08em; line-height: .67; }
.hc-about-proof__number span { color: var(--hc-teal); font-size: .45em; vertical-align: top; }
.hc-about-proof h2 { max-width: 47rem; margin: 1.6rem 0 0; font-family: var(--hc-serif); font-size: clamp(2.6rem, 3.2vw, 3.65rem); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.hc-about-proof__disciplines { margin: 1.4rem 0 0; color: #4c5c63; font-size: .77rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hc-about-proof__disciplines span { margin-inline: .45rem; color: var(--hc-teal); }
.hc-about-proof dl { margin: 0; border-top: 1px solid var(--hc-line); }
.hc-about-proof dl div { display: grid; grid-template-columns: 9rem 1fr; gap: 1.5rem; padding: .72rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-about-proof dt { color: var(--hc-teal); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hc-about-proof dd { margin: 0; font-weight: 700; }
.hc-about-proof dd a { text-decoration: none; }

.hc-about-final { padding-block: clamp(2.2rem, 2.6vw, 2.75rem); color: var(--hc-white); background: var(--hc-ink); }
.hc-about-final__grid { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.hc-about-final h2 { margin-bottom: .8rem; }
.hc-about-final__grid > div:first-child > p:last-child { max-width: 45rem; margin: 0; color: rgba(255,255,255,.64); }
.hc-about-final .hc-actions { justify-content: flex-end; }
.hc-about-final .hc-text-link--light { color: var(--hc-white); }

@media (min-width: 1600px) {
  .hc-about-page main h2 { font-size: 4.2rem; }
  .hc-about-hero__title { padding-block: 3rem; }
  .hc-about-hero h1 { font-size: 7rem; }
  .hc-about-hero__panorama img { height: 18rem; }
  .hc-about-purpose { padding-block: 3rem; }
  .hc-about-people, .hc-about-process { padding-block: 4rem; }
  .hc-about-section-head { margin-bottom: 3.25rem; }
  .hc-about-profile h3 { font-size: 4.35rem; }
  .hc-about-profile__copy > p:not(.hc-about-profile__index) { font-size: 1rem; }
  .hc-about-model { padding-top: 4rem; }
  .hc-about-model__intro { margin-bottom: 2.75rem; }
  .hc-about-model__bands h3 { font-size: 3.25rem; }
  .hc-about-model__bands article { min-height: 8.5rem; padding-block: 1.6rem; }
  .hc-about-process__sequence li { min-height: 11rem; }
  .hc-about-delivery { padding-top: 4rem; }
  .hc-about-delivery__heading { padding-bottom: 3rem; }
  .hc-about-delivery__split article { min-height: 20rem; padding-block: 3.25rem; }
  .hc-about-delivery__split h3 { font-size: 3.65rem; }
  .hc-about-expect { padding-block: 4rem; }
  .hc-about-proof { padding-block: 4rem; }
  .hc-about-proof__number { font-size: 8.5rem; }
  .hc-about-proof h2 { font-size: 3.15rem; }
  .hc-about-final { padding-block: 2.3rem; }
}

@media (max-width: 1180px) {
  .hc-about-hero__title { grid-template-columns: 1.2fr .8fr; gap: 3rem; }
  .hc-about-hero h1 { font-size: clamp(4.5rem, 8.5vw, 7rem); }
  .hc-about-model__bands article { grid-template-columns: 3rem 10rem 1fr auto; gap: 1.5rem; }
  .hc-about-process__sequence { grid-template-columns: repeat(3,1fr); }
  .hc-about-process__sequence li { min-height: 13rem; border-bottom: 1px solid var(--hc-line); }
  .hc-about-principles { grid-template-columns: repeat(3,1fr); }
  .hc-about-principles > * { border-bottom: 1px solid var(--hc-line); }
  .hc-about-principles > *:nth-child(4) { border-left: 0; }
}

@media (max-width: 860px) {
  .hc-about-page .hc-nav__links a.is-active { color: var(--hc-white); }
  .hc-about-hero { padding-top: 5.6rem; }
  .hc-about-hero__title, .hc-about-purpose__grid, .hc-about-section-head, .hc-about-model__intro, .hc-about-proof__grid, .hc-about-final__grid { grid-template-columns: 1fr; }
  .hc-about-hero__title { gap: 2rem; }
  .hc-about-hero__title > div > p { max-width: 38rem; }
  .hc-about-hero__panorama img { height: clamp(19rem, 55vw, 27rem); }
  .hc-about-purpose__grid, .hc-about-proof__grid { gap: 2.75rem; }
  .hc-about-section-head { gap: 1.5rem; align-items: start; }
  .hc-about-profiles { gap: 2.5rem; }
  .hc-about-profile figure { aspect-ratio: 1 / 1; }
  .hc-about-model__intro .hc-kicker { grid-column: 1; margin-bottom: -.3rem; }
  .hc-about-model__bands article { grid-template-columns: 2.5rem 9rem 1fr; }
  .hc-about-model__bands a { grid-column: 3; width: max-content; }
  .hc-about-delivery__split article { min-height: 0; }
  .hc-about-final .hc-actions { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .hc-about-page { --hc-pad: 3.25rem; }
  .hc-about-page main h2 { font-size: clamp(2.5rem, 12vw, 3.45rem); }
  .hc-about-hero { padding-top: 5.6rem; }
  .hc-about-hero__inner { padding-top: 1.5rem; }
  .hc-about-hero__masthead { display: block; }
  .hc-about-hero__masthead > p:last-child { margin-top: .45rem; }
  .hc-about-hero__title { padding-block: 2.75rem; }
  .hc-about-hero h1 { font-size: clamp(3.75rem, 17vw, 4.75rem); line-height: .86; }
  .hc-about-hero__panorama img { height: auto; aspect-ratio: 4 / 3; }
  .hc-about-hero__panorama figcaption { grid-template-columns: 1fr; gap: .3rem; }
  .hc-about-hero__panorama figcaption span:last-child { text-align: left; }
  .hc-about-purpose__copy dl div { grid-template-columns: 1fr; gap: .25rem; }
  .hc-about-profiles { grid-template-columns: 1fr; gap: 3.5rem; }
  .hc-about-profile h3 { font-size: 3.25rem; }
  .hc-about-profile figure { aspect-ratio: auto; }
  .hc-about-profile figure img { height: auto; aspect-ratio: auto; object-position: center top; }
  .hc-about-model__bands article { grid-template-columns: 2rem 1fr; padding-block: 1.7rem; }
  .hc-about-model__bands h3 { font-size: 2.75rem; }
  .hc-about-model__bands p, .hc-about-model__bands a { grid-column: 2; }
  .hc-about-process__sequence { grid-template-columns: 1fr; }
  .hc-about-process__sequence li, .hc-about-process__sequence li + li { display: grid; grid-template-columns: 2.4rem 1fr; min-height: 0; padding: 1rem 0; border-left: 0; }
  .hc-about-process__sequence span { grid-row: 1 / 3; margin: 0; }
  .hc-about-process__sequence strong { margin-bottom: .35rem; }
  .hc-about-delivery__split, .hc-about-expect__columns { grid-template-columns: 1fr; }
  .hc-about-delivery__split article { padding: 3rem 4vw; }
  .hc-about-delivery__split h3 { font-size: 3rem; }
  .hc-about-expect__columns article, .hc-about-expect__columns article + article { padding: 1.6rem 0; border-left: 0; }
  .hc-about-expect__columns article + article { border-top: 1px solid var(--hc-line); }
  .hc-about-principles { grid-template-columns: 1fr; }
  .hc-about-principles > *, .hc-about-principles > * + * { min-height: 0; padding: .9rem 1rem; border-left: 0; border-bottom: 1px solid var(--hc-line); }
  .hc-about-principles > *:last-child { border-bottom: 0; }
  .hc-about-proof__number { font-size: 8rem; }
  .hc-about-proof dl div { grid-template-columns: 1fr; gap: .3rem; }
  .hc-about-final .hc-actions { display: grid; justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  .hc-about-profile figure img { transition: none; }
  .hc-about-profile:hover figure img { transform: none; }
}

/* Contact page */
.hc-contact-page { --hc-pad: clamp(3.5rem, 4.5vw, 5rem); }
.hc-contact-page .hc-nav__links a.is-active::after { right: 0; }
.hc-contact-page main h2 { margin-bottom: 0; font-family: var(--hc-serif); font-size: clamp(2.8rem, 4.4vw, 5rem); font-weight: 400; letter-spacing: -.05em; line-height: .94; }
.hc-contact-page main h3 { margin-bottom: 1rem; font-family: var(--hc-serif); font-size: clamp(2rem, 2.4vw, 2.8rem); font-weight: 400; letter-spacing: -.04em; line-height: .98; }

.hc-contact-hero { padding-top: 5.6rem; background: var(--hc-paper); }
.hc-contact-hero__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(34rem,1.1fr); gap: clamp(3rem, 6vw, 6.5rem); align-items: center; min-height: clamp(36rem, 42vw, 43rem); padding-block: clamp(2.75rem, 4vw, 4.5rem); }
.hc-contact-hero__content { position: relative; z-index: 2; max-width: 42rem; }
.hc-contact-hero h1 { margin: 0 0 1.8rem; font-family: var(--hc-serif); font-size: clamp(4.5rem, 6.7vw, 7.5rem); font-weight: 400; letter-spacing: -.065em; line-height: .84; }
.hc-contact-hero h1 em { color: var(--hc-teal); font-weight: 400; }
.hc-contact-hero__content > p:not(.hc-kicker) { max-width: 34rem; margin-bottom: 2rem; color: #47575e; font-size: clamp(1rem, 1.15vw, 1.12rem); }
.hc-contact-hero__visual { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: .8rem; min-height: clamp(31rem, 34vw, 36rem); margin: 0; padding: 0 2.5rem 2.5rem 0; }
.hc-contact-hero__visual::before { content: ""; position: absolute; top: 0; right: 0; width: 30%; height: 1px; background: var(--hc-teal); }
.hc-contact-hero__portrait { overflow: hidden; background: var(--hc-stone); }
.hc-contact-hero__portrait--rob { height: clamp(29rem, 32vw, 34rem); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%); }
.hc-contact-hero__portrait--laura { height: clamp(26rem, 29vw, 31rem); margin-top: 3rem; clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%); }
.hc-contact-hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.82) contrast(1.02); }
.hc-contact-hero__visual figcaption { position: absolute; right: 0; bottom: 0; z-index: 2; min-width: min(25rem,72%); padding: 1rem 1.25rem; color: var(--hc-white); background: var(--hc-ink); box-shadow: var(--hc-shadow); }
.hc-contact-hero__visual figcaption span { display: block; margin-bottom: .25rem; color: var(--hc-cyan); font-size: .63rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hc-contact-hero__visual figcaption strong { font-size: .86rem; }

.hc-contact-enquiry { scroll-margin-top: 4.35rem; padding-block: clamp(2.75rem, 3.5vw, 3.75rem); background: var(--hc-paper); }
.hc-contact-section-head { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(20rem,.8fr); gap: clamp(3rem, 7vw, 7rem); align-items: end; margin-bottom: clamp(1.8rem, 2.5vw, 2.6rem); }
.hc-contact-enquiry .hc-contact-section-head h2 { max-width: 52rem; font-size: clamp(2.8rem, 3.8vw, 4.3rem); }
.hc-contact-section-head > p { max-width: 32rem; margin: 0; color: #526168; }
.hc-contact-enquiry__grid { display: grid; grid-template-columns: minmax(29rem,1fr) minmax(29rem,.88fr); gap: clamp(2.5rem, 4vw, 4.5rem); align-items: start; }
.hc-contact-routes { border-top: 1px solid var(--hc-line); }
.hc-contact-routes > a { position: relative; display: grid; grid-template-columns: 2.35rem minmax(10rem,.8fr) minmax(12rem,1fr) 1.25rem; gap: 1rem; align-items: center; min-height: 4.4rem; padding: .5rem 0; border-bottom: 1px solid var(--hc-line); text-decoration: none; transition: color .2s ease, background .2s ease, padding .2s ease; }
.hc-contact-routes > a::before { content: ""; position: absolute; inset: 0 100% 0 0; background: var(--hc-cyan); transition: right .3s cubic-bezier(.2,.7,.2,1); z-index: 0; }
.hc-contact-routes > a > * { position: relative; z-index: 1; }
.hc-contact-routes > a > span { color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.hc-contact-routes > a strong { font-size: 1rem; }
.hc-contact-routes > a small { color: #58666c; font-size: .79rem; line-height: 1.4; }
.hc-contact-routes > a b { font-size: .9rem; font-weight: 400; transition: transform .2s ease; }
.hc-contact-routes > a:hover::before, .hc-contact-routes > a:focus-visible::before, .hc-contact-routes > a.is-active::before { right: 0; }
.hc-contact-routes > a:hover b, .hc-contact-routes > a:focus-visible b, .hc-contact-routes > a.is-active b { transform: translate(3px,3px); }
.hc-contact-routes > a.is-active { padding-inline: .9rem; color: var(--hc-ink); }
.hc-contact-routes > a.is-active small { color: #304047; }
.hc-contact-routes__direct { margin-top: 1.1rem; padding: 1rem 1.2rem; border: 1px solid var(--hc-line); background: var(--hc-white); }
.hc-contact-routes__direct > a { display: inline-flex; gap: .6rem; align-items: center; margin-bottom: .9rem; text-decoration: none; font-weight: 700; }
.hc-contact-routes__direct > p:last-child { max-width: 33rem; margin: 0; color: #647177; font-size: .78rem; }

.hc-contact-form { width: 100%; max-width: 38rem; scroll-margin-top: 6rem; justify-self: end; gap: .45rem; padding: clamp(1.2rem, 1.6vw, 1.65rem); background: var(--hc-navy); box-shadow: 0 18px 42px rgba(4,15,20,.12); }
.hc-contact-form__intro { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; margin-bottom: .25rem; padding-bottom: .85rem; border-bottom: 1px solid var(--hc-line-light); }
.hc-contact-form__intro p { margin: 0; }
.hc-contact-form__intro > p:last-child { color: rgba(255,255,255,.68); font-size: .84rem; }
.hc-contact-form > label, .hc-contact-field label { display: flex; justify-content: space-between; gap: 1rem; align-items: end; }
.hc-contact-form label span:not([aria-hidden]) { color: rgba(255,255,255,.42); font-size: .58rem; letter-spacing: .04em; text-transform: none; }
.hc-contact-field { display: grid; gap: .35rem; }
.hc-contact-form input, .hc-contact-form select { min-height: 2.4rem; padding-block: .4rem; }
.hc-contact-form textarea { min-height: 4.6rem; }
.hc-contact-form .hc-form__row { gap: .6rem; }
.hc-contact-form__help, .hc-contact-form__privacy { color: rgba(255,255,255,.5); font-size: .73rem; line-height: 1.5; }
.hc-contact-form__help { margin: -.15rem 0 .2rem; }
.hc-contact-form__privacy { margin: .2rem 0 0; padding-top: .65rem; border-top: 1px solid var(--hc-line-light); }

.hc-contact-next { padding-block: var(--hc-pad); background: var(--hc-white); }
.hc-contact-next__steps { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid var(--hc-line); list-style: none; }
.hc-contact-next__steps li { min-height: 13rem; padding: 1.35rem 1.5rem 1.5rem 0; border-bottom: 1px solid var(--hc-line); }
.hc-contact-next__steps li + li { padding-left: 1.5rem; border-left: 1px solid var(--hc-line); }
.hc-contact-next__steps span { display: block; margin-bottom: 2.8rem; color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.hc-contact-next__steps strong { display: block; margin-bottom: .65rem; font-size: 1rem; }
.hc-contact-next__steps p { margin: 0; color: #5c696f; font-size: .82rem; }

.hc-contact-context { padding-block: var(--hc-pad); background: var(--hc-stone); }
.hc-contact-context__heading { max-width: 54rem; margin-bottom: clamp(3rem, 4vw, 4.5rem); }
.hc-contact-context__grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--hc-line); border-bottom: 1px solid var(--hc-line); }
.hc-contact-context__grid article { min-height: 24rem; padding: 1.8rem clamp(2rem, 4vw, 4rem) 2rem 0; }
.hc-contact-context__grid article + article { padding-right: clamp(1rem, 2vw, 2rem); padding-left: clamp(2rem, 4vw, 4rem); border-left: 1px solid var(--hc-line); }
.hc-contact-context__index { margin-bottom: 3rem; color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hc-contact-context__grid article > p:not(.hc-contact-context__index) { max-width: 32rem; color: #536168; }
.hc-contact-context__grid .hc-text-link { margin-top: 1rem; font-size: .82rem; }
.hc-contact-context__links { display: grid; grid-template-columns: 1fr 1fr; margin-top: 1.25rem; border-top: 1px solid var(--hc-line); }
.hc-contact-context__links a { padding: .7rem .7rem .7rem 0; border-bottom: 1px solid var(--hc-line); text-decoration: none; font-size: .78rem; font-weight: 700; }
.hc-contact-context__links a:nth-child(even) { padding-left: .8rem; border-left: 1px solid var(--hc-line); }

.hc-contact-final { padding-block: clamp(3.25rem, 4vw, 4.5rem); color: var(--hc-white); background: var(--hc-ink); }
.hc-contact-final__grid { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 3rem; align-items: end; }
.hc-contact-final h2 { max-width: 62rem; font-size: clamp(2.8rem, 4vw, 4.5rem); }
.hc-contact-final .hc-actions { justify-content: flex-end; }
.hc-contact-final .hc-text-link--light { color: var(--hc-white); }

@media (max-width: 1180px) {
  .hc-contact-hero__grid { grid-template-columns: minmax(0,.8fr) minmax(30rem,1.2fr); gap: 3rem; }
  .hc-contact-hero h1 { font-size: clamp(4.35rem, 7.6vw, 6rem); }
  .hc-contact-hero__visual { min-height: 29rem; padding-right: 1.75rem; }
  .hc-contact-hero__portrait--rob { height: 29rem; }
  .hc-contact-hero__portrait--laura { height: 26rem; }
  .hc-contact-enquiry__grid { grid-template-columns: minmax(20rem,.95fr) minmax(26rem,1.05fr); gap: 2.5rem; }
  .hc-contact-routes > a { grid-template-columns: 2.2rem 1fr 1.2rem; }
  .hc-contact-routes > a small { grid-column: 2; }
  .hc-contact-routes > a b { grid-column: 3; grid-row: 1 / 3; }
  .hc-contact-next__steps { grid-template-columns: 1fr 1fr; }
  .hc-contact-next__steps li:nth-child(3) { border-left: 0; }
}

@media (max-width: 860px) {
  .hc-contact-page .hc-nav__links a.is-active { color: var(--hc-white); }
  .hc-contact-hero__grid, .hc-contact-section-head, .hc-contact-enquiry__grid, .hc-contact-final__grid { grid-template-columns: 1fr; }
  .hc-contact-hero__grid { gap: 3rem; min-height: 0; padding-block: 3.5rem; }
  .hc-contact-hero__content { max-width: 40rem; }
  .hc-contact-hero h1 { font-size: clamp(4.7rem, 14vw, 6.5rem); }
  .hc-contact-hero__visual { width: min(100%,44rem); min-height: 30rem; }
  .hc-contact-section-head { gap: 1.5rem; align-items: start; }
  .hc-contact-enquiry__grid { gap: 2.75rem; }
  .hc-contact-form { max-width: none; justify-self: stretch; box-shadow: none; }
  .hc-contact-context__grid { grid-template-columns: 1fr; }
  .hc-contact-context__grid article { min-height: 0; padding: 2rem 0 2.5rem; }
  .hc-contact-context__grid article + article { padding: 2.5rem 0; border-top: 1px solid var(--hc-line); border-left: 0; }
  .hc-contact-context__index { margin-bottom: 1.75rem; }
  .hc-contact-final .hc-actions { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .hc-contact-page { --hc-pad: 3.5rem; }
  .hc-contact-page main h2 { font-size: clamp(2.6rem, 12vw, 3.5rem); }
  .hc-contact-hero { padding-top: 5.6rem; }
  .hc-contact-hero__grid { gap: 2.5rem; padding-block: 2.75rem 3.25rem; }
  .hc-contact-hero h1 { font-size: clamp(4rem, 18vw, 5rem); }
  .hc-contact-hero__content .hc-actions { align-items: flex-start; flex-direction: column; }
  .hc-contact-hero__visual { grid-template-columns: 1.05fr .95fr; gap: .45rem; min-height: 20rem; padding: 0 1.25rem 1.75rem 0; }
  .hc-contact-hero__portrait--rob,
  .hc-contact-hero__portrait--laura { height: 20rem; margin-top: 0; }
  .hc-contact-hero__visual figcaption { min-width: 80%; padding: .8rem 1rem; }
  .hc-contact-enquiry { padding-block: 3rem; }
  .hc-contact-routes > a { grid-template-columns: 2rem 1fr 1.1rem; min-height: 5.35rem; }
  .hc-contact-routes > a small { font-size: .76rem; }
  .hc-contact-routes__direct { padding: 1.25rem; }
  .hc-contact-form { width: calc(100% + 8vw); margin-inline: -4vw; padding: 1.5rem 6vw; border-inline: 0; }
  .hc-contact-form__intro { grid-template-columns: 1fr; gap: .35rem; }
  .hc-contact-form .hc-form__row { grid-template-columns: 1fr; }
  .hc-contact-next__steps { grid-template-columns: 1fr; }
  .hc-contact-next__steps li, .hc-contact-next__steps li + li { display: grid; grid-template-columns: 2.5rem 1fr; min-height: 0; padding: 1.2rem 0; border-left: 0; }
  .hc-contact-next__steps span { grid-row: 1 / 3; margin: 0; }
  .hc-contact-next__steps strong { margin-bottom: .4rem; }
  .hc-contact-context__links { grid-template-columns: 1fr; }
  .hc-contact-context__links a:nth-child(even) { padding-left: 0; border-left: 0; }
  .hc-contact-final .hc-actions { display: grid; justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  .hc-contact-routes > a::before, .hc-contact-routes > a b { transition: none; }
}

/* Business Essentials: image-led editorial review */
.be-page { --be-gutter: max(4vw, calc((100vw - 1440px) / 2)); background: var(--hc-paper); }
.be-page .hc-nav__links a.is-active::after { right: 0; }
.be-page main h2 { font-family: var(--hc-serif); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.be-page main h3 { font-family: var(--hc-serif); font-weight: 400; letter-spacing: -.035em; }

.be-hero { position: relative; min-height: clamp(37rem, 38vw, 38rem); padding-top: 5.6rem; color: var(--hc-white); background: var(--hc-ink); overflow: hidden; }
.be-hero__image { position: absolute; inset: 5.6rem 0 0 26%; margin: 0; }
.be-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,13,16,.82) 0, rgba(8,13,16,.18) 46%, rgba(8,13,16,.02) 72%); }
.be-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.be-hero__frame { position: relative; min-height: clamp(31.4rem, calc(38vw - 5.6rem), 32.4rem); }
.be-hero__copy { position: absolute; left: 0; bottom: clamp(2rem, 3vw, 3rem); z-index: 2; width: min(60rem,68%); padding: clamp(1.5rem, 2vw, 2rem); background: rgba(8,13,16,.94); border-left: 1px solid var(--hc-cyan); }
.be-hero h1 { max-width: 56rem; margin: 0 0 1.15rem; font-family: var(--hc-serif); font-size: clamp(3.7rem, 4.1vw, 4.8rem); font-weight: 400; letter-spacing: -.06em; line-height: .9; text-wrap: balance; }
.be-hero__copy > p:not(.hc-kicker) { max-width: 39rem; margin-bottom: 1.8rem; color: rgba(255,255,255,.73); font-size: clamp(1rem,1.1vw,1.15rem); }
.be-hero__note { position: absolute; right: 0; bottom: 1.5rem; z-index: 2; display: grid; grid-template-columns: auto 1fr; gap: 1rem; width: min(36rem,38%); margin: 0; padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.42); color: rgba(255,255,255,.7); font-size: .78rem; }
.be-hero__note span { color: var(--hc-cyan); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.be-context { position: relative; z-index: 4; color: var(--hc-white); background: var(--hc-navy); border-bottom: 1px solid var(--hc-line-light); overflow: hidden; }
.be-context__rail { display: flex; width: max-content; min-width: 100%; align-items: center; justify-content: space-around; gap: clamp(2rem,4vw,5rem); min-height: 4rem; padding-inline: var(--be-gutter); }
.be-context__rail span { position: relative; white-space: nowrap; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.be-context__rail span + span::before { content: "/"; position: absolute; left: calc(clamp(2rem,4vw,5rem) / -2); color: var(--hc-teal); }

.be-needs { padding-block: clamp(2.5rem,2.8vw,2.75rem); background: var(--hc-white); }
.be-needs__head { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(19rem,.55fr); gap: 1.5rem clamp(4rem,9vw,10rem); align-items: end; margin-bottom: clamp(1.8rem,2.5vw,2.75rem); }
.be-needs__head .hc-kicker { grid-column: 1 / -1; margin-bottom: -1rem; }
.be-needs__head h2 { max-width: 54rem; margin: 0; font-size: clamp(3.3rem,4.4vw,4.8rem); }
.be-needs__head > p:last-child { margin: 0; color: #58666c; }
.be-needs__stage { --be-answer-height: 17rem; position: relative; min-height: 44rem; background: var(--hc-ink); overflow: hidden; }
.be-needs__tabs { position: absolute; z-index: 3; inset: 0 auto 0 0; display: flex; width: min(27rem,31%); flex-direction: column; justify-content: center; padding: 2rem clamp(1.5rem,2.5vw,2.75rem); color: var(--hc-white); background: rgba(8,13,16,.9); border-right: 1px solid var(--hc-line-light); }
.be-needs__tabs button { position: relative; padding: .72rem 2rem .72rem 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.58); background: transparent; text-align: left; font-size: clamp(.76rem,.9vw,.9rem); cursor: pointer; transition: color .2s ease, padding .2s ease; }
.be-needs__tabs button::after { content: "↗"; position: absolute; right: 0; top: .72rem; color: var(--hc-cyan); opacity: 0; transform: translate(-4px,4px); transition: opacity .2s ease, transform .2s ease; }
.be-needs__tabs button:hover, .be-needs__tabs button[aria-selected="true"] { color: var(--hc-white); padding-left: .8rem; }
.be-needs__tabs button[aria-selected="true"]::after { opacity: 1; transform: none; }
.be-needs__visual { position: absolute; inset: 0 0 var(--be-answer-height) 31%; margin: 0; background: #18242a; }
.be-needs__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 78%,rgba(8,13,16,.18)); pointer-events: none; }
.be-needs__visual img { width: 100%; height: 100%; object-fit: cover; object-position: var(--be-focus-position,center); filter: saturate(.86) contrast(1.02); transition: opacity .18s ease, transform .45s cubic-bezier(.2,.7,.2,1); }
.be-needs__stage.is-changing .be-needs__visual img { opacity: .28; transform: scale(1.015); }
.be-needs__visual figcaption { position: absolute; top: 2rem; right: 2rem; z-index: 2; display: grid; gap: .25rem; padding-top: .8rem; border-top: 1px solid var(--hc-cyan); color: var(--hc-white); text-align: right; }
.be-needs__visual figcaption span:first-child { color: var(--hc-cyan); font-family: var(--hc-serif); font-size: 2rem; line-height: 1; }
.be-needs__visual figcaption span:last-child { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.be-needs__answer { position: absolute; right: 0; bottom: 0; z-index: 4; width: 69%; min-height: var(--be-answer-height); padding: clamp(1.4rem,2.2vw,2.2rem); color: var(--hc-ink); background: var(--hc-white); border-top: 1px solid var(--hc-teal); }
.be-needs__route { margin-bottom: .7rem; color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.be-needs__answer h3 { margin: 0 0 .55rem; font-size: clamp(1.9rem,2.7vw,3rem); line-height: .96; }
.be-needs__answer > p:not(.be-needs__route,.be-needs__delivery) { max-width: 36rem; margin-bottom: 1rem; color: #4c5b61; }
.be-needs__delivery { display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; padding-top: .8rem; border-top: 1px solid var(--hc-line); font-size: .78rem; }
.be-needs__delivery span { color: var(--hc-teal); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.be-needs__answer .hc-text-link { font-size: .82rem; }
.js .be-needs__fallback { display: none; }
.be-needs__fallback { margin-top: 2rem; columns: 2; column-gap: 3rem; }

.be-chapters { background: var(--hc-paper); }
.be-chapter { position: relative; }
.be-chapter figure { margin: 0; overflow: hidden; }
.be-chapter figure img { width: 100%; height: 100%; object-fit: cover; }
.be-chapter__copy h2, .be-chapter__band h2 { margin: 0 0 1.1rem; font-size: clamp(2.65rem,3.3vw,3.65rem); }
.be-chapter__copy > p:not(.hc-kicker,.be-chapter__aside), .be-chapter__band p { color: #506067; }

.be-chapter--presence { display: grid; grid-template-columns: minmax(22rem,.7fr) minmax(0,1.1fr); width: min(88vw,1320px); min-height: 30rem; margin: 0 auto; padding-block: clamp(2.25rem,2.8vw,2.75rem); }
.be-chapter--presence figure { width: 78%; height: 27rem; align-self: start; clip-path: polygon(0 0,100% 0,100% 94%,0 100%); }
.be-chapter--presence figure img { object-position: center 32%; }
.be-chapter--presence .be-chapter__copy { max-width: 45rem; align-self: center; padding: clamp(1.5rem,2.5vw,2.75rem) 0 clamp(1.5rem,2.5vw,2.5rem) clamp(1rem,4vw,4rem); border-top: 1px solid var(--hc-line); }
.be-chapter--presence ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; margin: 1.8rem 0; padding: 0; list-style: none; border-top: 1px solid var(--hc-line); }
.be-chapter--presence li { padding: .7rem 0; border-bottom: 1px solid var(--hc-line); font-size: .82rem; }
.be-chapter__index { position: absolute; left: -2.8rem; top: 5rem; color: var(--hc-stone); font-family: var(--hc-serif); font-size: clamp(8rem,13vw,15rem); line-height: 1; }

.be-chapter--suppliers { padding-bottom: clamp(2.25rem,2.8vw,2.75rem); background: var(--hc-white); }
.be-chapter--suppliers figure { height: clamp(22rem,25vw,26rem); }
.be-chapter--suppliers figure img { object-position: center 42%; }
.be-chapter__band { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(22rem,.72fr); gap: clamp(3rem,8vw,9rem); margin-top: -4rem; padding: clamp(2rem,3vw,3.25rem); color: var(--hc-white); background: var(--hc-navy); }
.be-chapter__band p { color: rgba(255,255,255,.68); }
.be-chapter__links { display: flex; flex-wrap: wrap; gap: .65rem 1.5rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--hc-line-light); }
.be-chapter__links a { color: var(--hc-white); text-decoration: none; font-size: .78rem; font-weight: 700; }

.be-chapter--capacity { display: grid; grid-template-columns: minmax(27rem,.85fr) minmax(0,1.15fr); min-height: 29rem; color: var(--hc-ink); background: var(--hc-stone); }
.be-chapter--capacity .be-chapter__copy { align-self: center; padding: clamp(2.5rem,3.5vw,3.5rem) clamp(2.5rem,5vw,6rem) clamp(2.5rem,3.5vw,3.5rem) var(--be-gutter); }
.be-chapter--capacity figure { min-height: 29rem; clip-path: polygon(7% 0,100% 0,100% 100%,0 100%); }
.be-chapter--capacity figure img { object-position: center; }
.be-chapter__aside { margin: 1.6rem 0; padding: 1rem 0 1rem 1.1rem; border-left: 1px solid var(--hc-teal); color: #33434a; font-size: .84rem; }
.be-chapter__marker { position: absolute; right: 1.4rem; bottom: 1rem; color: var(--hc-white); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.be-chapter--vehicles { min-height: clamp(28rem,30vw,31rem); color: var(--hc-white); background: var(--hc-ink); overflow: hidden; }
.be-chapter--vehicles figure { position: absolute; inset: 0 42% 0 0; }
.be-chapter--vehicles figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, var(--hc-ink)); }
.be-chapter--vehicles figure img { object-position: 56% center; }
.be-chapter--vehicles .be-chapter__copy { position: relative; width: min(52%,47rem); margin-left: auto; padding: clamp(3rem,4vw,4rem) var(--be-gutter) clamp(3rem,4vw,4rem) clamp(3rem,6vw,7rem); }
.be-chapter--vehicles .be-chapter__copy > p:not(.hc-kicker) { color: rgba(255,255,255,.68); }

.be-delivery { padding-block: clamp(2.25rem,2.8vw,2.75rem); background: var(--hc-white); }
.be-delivery__head { display: grid; grid-template-columns: 13rem minmax(0,1fr); gap: 3rem; align-items: start; margin-bottom: 1.6rem; }
.be-delivery__head h2 { max-width: 66rem; margin: 0; font-size: clamp(2.7rem,3.5vw,3.9rem); }
.be-delivery__route { display: grid; grid-template-columns: minmax(0,1fr) 15rem minmax(0,1fr); align-items: stretch; }
.be-delivery__direct, .be-delivery__specialist { min-height: 12rem; padding: clamp(1.75rem,2.5vw,2.5rem); }
.be-delivery__direct { padding-left: var(--be-gutter); color: var(--hc-ink); background: var(--hc-stone); }
.be-delivery__specialist { padding-right: var(--be-gutter); color: var(--hc-white); background: var(--hc-ink); }
.be-delivery__route span { display: block; margin-bottom: 2rem; color: var(--hc-teal); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.be-delivery__route strong { display: block; max-width: 38rem; font-family: var(--hc-serif); font-size: clamp(1.6rem,2.3vw,2.5rem); font-weight: 400; line-height: 1.05; }
.be-delivery__branch { width: 15rem; height: 100%; min-height: 12rem; background: linear-gradient(90deg,var(--hc-stone) 0 50%,var(--hc-ink) 50%); }
.be-delivery__branch path { fill: none; stroke: var(--hc-teal); stroke-width: 1.5; stroke-dasharray: 360; stroke-dashoffset: 0; }

.be-pathway { padding-block: clamp(2.25rem,2.8vw,2.75rem); background: var(--hc-paper); overflow: hidden; }
.be-pathway__intro { display: grid; grid-template-columns: minmax(0,1fr) 24rem; gap: 4rem; align-items: end; margin-bottom: 2rem; }
.be-pathway__intro h2 { max-width: 59rem; margin: 0; font-size: clamp(2.7rem,3.4vw,3.8rem); }
.be-pathway__intro > p { margin: 0; color: #5b696f; }
.be-pathway__track { position: relative; display: grid; grid-template-columns: 1.15fr .8fr 1fr .82fr 1.18fr; gap: 1px; width: min(94vw,1580px); margin: 0 auto; padding: 0; color: var(--hc-white); background: var(--hc-teal); list-style: none; }
.be-pathway__track::after { content: ""; position: absolute; left: 2%; right: 2%; top: 2.15rem; height: 1px; background: var(--hc-cyan); pointer-events: none; }
.be-pathway__track li { position: relative; min-height: 12rem; padding: 1.25rem; background: var(--hc-ink); overflow: hidden; }
.be-pathway__track li:nth-child(even) { background: var(--hc-navy); }
.be-pathway__track li::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg,transparent 42%,rgba(39,190,218,.08)); }
.be-pathway__track span, .be-pathway__track strong { position: relative; z-index: 2; display: block; }
.be-pathway__track span { color: var(--hc-cyan); font-family: var(--hc-serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.be-pathway__track strong { position: absolute; z-index: 2; left: 1.6rem; right: 1.6rem; bottom: 1.6rem; font-family: var(--hc-serif); font-size: clamp(1.25rem,1.6vw,1.7rem); font-weight: 400; line-height: 1.04; }

.be-enquiry { display: grid; grid-template-columns: minmax(24rem,.68fr) minmax(38rem,1.32fr); min-height: 36rem; scroll-margin-top: 5.6rem; color: var(--hc-white); background: var(--hc-navy); }
.be-enquiry__image { position: relative; margin: 0; overflow: hidden; background: var(--hc-ink); }
.be-enquiry__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(8,13,16,.72)); }
.be-enquiry__image img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.be-enquiry__content { display: grid; grid-template-columns: minmax(17rem,.62fr) minmax(29rem,1fr); gap: clamp(2.5rem,4vw,5rem); align-content: center; align-items: center; padding: clamp(2.5rem,3.5vw,3.75rem) var(--be-gutter) clamp(2.5rem,3.5vw,3.75rem) clamp(3rem,5vw,6rem); }
.be-enquiry__intro { max-width: 54rem; margin-bottom: 0; }
.be-enquiry__intro h2 { max-width: 49rem; margin: 0 0 .8rem; font-size: clamp(2.8rem,3.8vw,4.25rem); }
.be-enquiry__intro > p:last-child { max-width: 44rem; color: rgba(255,255,255,.65); }
.be-enquiry__form { max-width: 58rem; gap: .45rem; padding: 0; background: transparent; }
.be-enquiry__form input, .be-enquiry__form select { min-height: 2.45rem; padding-block: .4rem; }
.be-enquiry__form textarea { min-height: 4.5rem; }
.be-enquiry__form label { color: rgba(255,255,255,.66); }
.be-enquiry__form input, .be-enquiry__form select, .be-enquiry__form textarea { color: var(--hc-white); background: transparent; border-color: rgba(255,255,255,.28); }
.be-enquiry__form select { color-scheme: dark; }
.be-enquiry__form input:focus, .be-enquiry__form select:focus, .be-enquiry__form textarea:focus { border-color: var(--hc-cyan); }
.be-enquiry__form label > span { float: right; color: rgba(255,255,255,.4); font-size: .7rem; text-transform: none; }
.be-enquiry__form-bottom { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; margin-top: .4rem; }
.be-enquiry__form-bottom p { max-width: 34rem; margin: 0; color: rgba(255,255,255,.48); font-size: .72rem; }

@media (max-width: 1180px) {
  .be-hero__image { left: 19%; }
  .be-hero__copy { width: min(48rem,66%); }
  .be-needs__tabs { width: 34%; }
  .be-needs__visual { left: 34%; }
  .be-needs__answer { width: 66%; }
  .be-chapter--presence { width: 92vw; grid-template-columns: minmax(18rem,.65fr) 1fr; }
  .be-chapter--presence figure { width: 92%; }
  .be-delivery__route { grid-template-columns: 1fr 9rem 1fr; }
  .be-delivery__branch { width: 9rem; }
  .be-enquiry { grid-template-columns: minmax(20rem,.58fr) minmax(34rem,1.42fr); }
  .be-enquiry__content { grid-template-columns: 1fr; gap: 1.5rem; }
  .be-enquiry__intro { margin-bottom: 0; }
}

@media (max-width: 860px) {
  .be-page .hc-nav__links a.is-active { color: var(--hc-white); }
  .be-hero { min-height: 51rem; }
  .be-hero__image { inset: 5.6rem 0 auto; height: 31rem; }
  .be-hero__image::after { background: linear-gradient(180deg,transparent 50%,var(--hc-ink)); }
  .be-hero__frame { min-height: 45.4rem; }
  .be-hero__copy { left: 0; right: 0; bottom: 3rem; width: auto; padding: 2.4rem 0 0; background: var(--hc-ink); border-left: 0; border-top: 1px solid var(--hc-cyan); }
  .be-hero h1 { font-size: clamp(4rem,10vw,5.5rem); }
  .be-hero__note { display: none; }
  .be-context { overflow-x: auto; scrollbar-width: none; }
  .be-context::-webkit-scrollbar { display: none; }
  .be-context__rail { justify-content: flex-start; }
  .be-needs__head { grid-template-columns: 1fr; gap: 1.25rem; }
  .be-needs__head .hc-kicker { grid-column: 1; margin-bottom: 0; }
  .be-needs__stage { display: grid; grid-template-columns: 15rem 1fr; min-height: 48rem; }
  .be-needs__tabs { position: relative; inset: auto; width: auto; padding: 1.3rem; }
  .be-needs__visual { position: relative; inset: auto; height: 29rem; min-height: 29rem; }
  .be-needs__answer { position: relative; grid-column: 1 / -1; width: auto; min-height: 0; }
  .be-chapter--presence { grid-template-columns: 17rem 1fr; width: 94vw; }
  .be-chapter--presence figure { width: 100%; height: 34rem; }
  .be-chapter--presence .be-chapter__copy { padding-left: 2.5rem; }
  .be-chapter__band { grid-template-columns: 1fr; gap: 1.5rem; margin-top: -2.5rem; }
  .be-chapter--capacity { grid-template-columns: 1fr; }
  .be-chapter--capacity .be-chapter__copy { padding: 4rem 4vw; }
  .be-chapter--capacity figure { min-height: 28rem; clip-path: none; }
  .be-chapter--vehicles figure { inset-right: 34%; }
  .be-chapter--vehicles .be-chapter__copy { width: 64%; }
  .be-delivery__head { grid-template-columns: 1fr; gap: 1rem; }
  .be-delivery__route { grid-template-columns: 1fr; }
  .be-delivery__branch { width: 100%; height: 6rem; min-height: 6rem; background: linear-gradient(180deg,var(--hc-stone) 0 50%,var(--hc-ink) 50%); }
  .be-delivery__direct, .be-delivery__specialist { min-height: 17rem; }
  .be-pathway__intro { grid-template-columns: 1fr; gap: 1rem; }
  .be-pathway__track { width: 94vw; overflow-x: auto; grid-template-columns: repeat(5,minmax(13rem,1fr)); scrollbar-width: none; scroll-snap-type: x mandatory; }
  .be-pathway__track::-webkit-scrollbar { display: none; }
  .be-pathway__track li { min-height: 18rem; scroll-snap-align: start; }
  .be-enquiry { grid-template-columns: 1fr; }
  .be-enquiry__image { height: 32rem; }
  .be-enquiry__image img { object-position: center; }
  .be-enquiry__content { padding: 4rem 4vw; }
}

@media (max-width: 600px) {
  .be-hero { min-height: 49rem; }
  .be-hero__image { height: 27rem; }
  .be-hero__image img { object-position: 64% center; }
  .be-hero__copy { bottom: 2.6rem; padding-top: 2rem; }
  .be-hero h1 { font-size: clamp(3.4rem,15vw,4.4rem); }
  .be-hero__copy > p:not(.hc-kicker) { font-size: .93rem; }
  .be-hero__copy .hc-actions { align-items: flex-start; flex-direction: column; }
  .be-context { overflow: visible; }
  .be-context__rail {
    display: grid;
    width: min(88vw,34rem);
    min-width: 0;
    min-height: 0;
    margin-inline: auto;
    padding: 1rem 0;
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: .2rem 1.5rem;
  }
  .be-context__rail span {
    width: 100%;
    min-width: 0;
    padding: .55rem 0;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }
  .be-context__rail span + span::before { left: -.85rem; }
  .be-context__rail span:nth-child(odd)::before { content: none; }
  .be-needs { padding-block: 3.5rem; }
  .be-needs__head h2 { font-size: 3.4rem; }
  .be-needs__stage {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    overflow: visible;
    box-sizing: border-box;
  }
  .be-needs__tabs {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: .35rem 1rem;
    overflow: visible;
    box-sizing: border-box;
  }
  .be-needs__tabs button {
    flex: 0 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 3.45rem;
    padding: .85rem 2.35rem .85rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--hc-line-light);
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
    scroll-snap-align: none;
  }
  .be-needs__tabs button:hover,
  .be-needs__tabs button[aria-selected="true"] {
    padding-left: 1.35rem;
    background: rgba(39,190,218,.08);
    box-shadow: inset 2px 0 0 var(--hc-cyan);
  }
  .be-needs__tabs button::after { right: 1rem; top: 50%; transform: translate(-4px,calc(-50% + 4px)); }
  .be-needs__tabs button[aria-selected="true"]::after { transform: translateY(-50%); }
  .be-needs__visual {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 24rem;
    min-height: 24rem;
    overflow: hidden;
    box-sizing: border-box;
  }
  .be-needs__visual img { display: block; max-width: 100%; }
  .be-needs__visual img { object-position: var(--be-focus-position,center); }
  .be-needs__answer { width: 100%; min-width: 0; max-width: 100%; padding: 1.6rem; box-sizing: border-box; }
  .be-needs__delivery { grid-template-columns: 1fr; gap: .35rem; }
  .be-chapter__copy h2, .be-chapter__band h2 { font-size: 3rem; }
  .be-chapter--presence { display: flex; width: 100%; flex-direction: column; padding-block: 3.5rem; }
  .be-chapter--presence figure { width: 86vw; height: 29rem; margin-left: 0; }
  .be-chapter--presence .be-chapter__copy { width: 92vw; margin: -2rem 0 0 auto; padding: 2rem 4vw 0; background: var(--hc-paper); }
  .be-chapter--presence ul { grid-template-columns: 1fr; }
  .be-chapter__index { top: 2rem; left: auto; right: 0; z-index: 2; font-size: 8rem; }
  .be-chapter--suppliers figure { height: 27rem; }
  .be-chapter--suppliers figure img { object-position: 33% center; }
  .be-chapter__band { width: 92vw; margin-top: -2rem; padding: 1.8rem; }
  .be-chapter--capacity .be-chapter__copy { order: 2; padding: 3rem 4vw 3.5rem; }
  .be-chapter--capacity figure { order: 1; min-height: 23rem; }
  .be-chapter--capacity figure img { object-position: 37% center; }
  .be-chapter--vehicles { display: flex; min-height: 0; flex-direction: column; }
  .be-chapter--vehicles figure { position: relative; inset: auto; height: 25rem; }
  .be-chapter--vehicles figure::after { background: linear-gradient(180deg,transparent 65%,var(--hc-ink)); }
  .be-chapter--vehicles figure img { object-position: 56% center; }
  .be-chapter--vehicles .be-chapter__copy { width: auto; padding: 2.75rem 4vw 3.5rem; }
  .be-delivery { padding-block: 3.5rem; }
  .be-delivery__head h2 { font-size: 3.3rem; }
  .be-delivery__direct, .be-delivery__specialist { min-height: 0; padding: 2.5rem 4vw; }
  .be-delivery__route span { margin-bottom: 2rem; }
  .be-delivery__route strong { font-size: 2rem; }
  .be-delivery__branch { height: 4.5rem; min-height: 4.5rem; }
  .be-pathway { padding-block: 3.5rem; }
  .be-pathway__intro h2 { font-size: 3.2rem; }
  .be-pathway__track { width: 100%; padding-left: 4vw; }
  .be-enquiry__image { height: 17.5rem; }
  .be-enquiry__content { padding: 3.25rem 4vw; }
  .be-enquiry__intro h2 { font-size: 3.3rem; }
  .be-enquiry__form .hc-form__row { grid-template-columns: 1fr; }
  .be-enquiry__form-bottom { grid-template-columns: 1fr; }
  .be-enquiry__form-bottom .hc-button { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .be-needs__visual img, .be-needs__tabs button, .be-needs__tabs button::after { transition: none; }
  .be-delivery__branch path { stroke-dasharray: none; }
}

/* Business Solutions: dedicated partnership network */
.bs-page { --bs-gutter: max(4vw,calc((100vw - 1440px)/2)); color: var(--hc-ink); background: var(--hc-stone); }
.bs-page main h2 { font-size: clamp(3.2rem,5vw,5.8rem); line-height: .94; }
.bs-hero { position: relative; min-height: 47rem; padding-top: 5.6rem; color: var(--hc-white); background: var(--hc-ink); overflow: hidden; }
.bs-page .bs-hero, .bs-page .bs-hero h1, .bs-page .bs-hero strong { color: var(--hc-white); }
.bs-page .bs-hero h1 em { color: var(--hc-cyan); }
.bs-page .bs-hero__copy > p:not(.hc-kicker), .bs-page .bs-hero__statement p { color: rgba(255,255,255,.7); }
.bs-hero::before { content: ""; position: absolute; inset: 5.6rem 0 auto auto; width: 24%; height: 1px; background: var(--hc-cyan); }
.bs-hero::after { content: "&"; position: absolute; right: 2vw; bottom: -8rem; color: rgba(39,190,218,.045); font-family: var(--hc-serif); font-size: 32rem; line-height: 1; pointer-events: none; }
.bs-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(21rem,.65fr); gap: clamp(4rem,8vw,9rem); align-items: end; min-height: 40rem; padding-block: clamp(4rem,7vw,7rem); }
.bs-hero__copy h1 { max-width: 69rem; margin: 0 0 1.8rem; font-size: clamp(4.8rem,7.3vw,8rem); line-height: .83; }
.bs-hero__copy h1 em { color: var(--hc-cyan); font-weight: 400; }
.bs-hero__copy > p:not(.hc-kicker) { max-width: 48rem; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.bs-hero__statement { align-self: center; padding: 2rem 0 2rem 2rem; border-left: 1px solid var(--hc-cyan); }
.bs-hero__statement span { display: block; margin-bottom: 1.2rem; color: var(--hc-cyan); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bs-hero__statement strong { display: block; margin-bottom: 1rem; font-family: var(--hc-serif); font-size: clamp(2rem,3vw,3rem); font-weight: 400; line-height: .98; }
.bs-hero__statement p { margin: 0; color: rgba(255,255,255,.56); }
.bs-hero__rail { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(6,1fr); border-top: 1px solid var(--hc-line-light); }
.bs-hero__rail span { padding: 1rem var(--bs-gutter); border-right: 1px solid var(--hc-line-light); color: rgba(255,255,255,.54); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.bs-intro { padding-block: var(--hc-pad); background: var(--hc-stone); }
.bs-intro__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(4rem,10vw,10rem); align-items: end; }
.bs-intro h2 { max-width: 58rem; margin-bottom: 0; }
.bs-intro__copy { max-width: 38rem; color: #46555c; font-size: 1.04rem; }
.bs-offer { padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-navy); }
.bs-offer__head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem 8rem; align-items: end; margin-bottom: 3rem; }
.bs-offer__head .hc-kicker { grid-column: 1 / -1; margin-bottom: -1rem; }
.bs-offer__head h2 { max-width: 60rem; margin: 0; }
.bs-offer__head > p:last-child { margin: 0; color: rgba(255,255,255,.58); }
.bs-offer__grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--hc-line-light); border-left: 1px solid var(--hc-line-light); }
.bs-offer__grid article { position: relative; min-height: 25rem; padding: clamp(2rem,4vw,4rem); border-right: 1px solid var(--hc-line-light); border-bottom: 1px solid var(--hc-line-light); overflow: hidden; }
.bs-offer__grid article::after { content: ""; position: absolute; right: -5rem; bottom: -5rem; width: 13rem; height: 13rem; border: 1px solid rgba(39,190,218,.12); border-radius: 50%; }
.bs-offer__grid article > span { display: block; margin-bottom: 4rem; color: var(--hc-cyan); font-family: var(--hc-serif); font-size: 2rem; }
.bs-offer__grid h3 { max-width: 28rem; margin-bottom: 1.5rem; font-family: var(--hc-serif); font-size: clamp(2rem,3vw,3.25rem); font-weight: 400; line-height: 1; }
.bs-offer__grid ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; padding: 0; list-style: none; }
.bs-offer__grid li { padding: .7rem .8rem .7rem 0; border-top: 1px solid var(--hc-line-light); color: rgba(255,255,255,.7); }
.bs-clarity { padding-block: var(--hc-pad); background: var(--hc-white); }
.bs-clarity__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem,8vw,8rem); }
.bs-clarity h2 { max-width: 50rem; }
.bs-clarity ol { margin: 0; padding: 0; border-top: 1px solid var(--hc-line); list-style: none; }
.bs-clarity li { display: grid; grid-template-columns: 3rem 1fr 1.1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--hc-line); }
.bs-clarity li span { color: var(--hc-teal); font-size: .7rem; font-weight: 700; }
.bs-clarity li p { margin: 0; color: #58666c; }
.bs-boundary { padding-block: clamp(4rem,6vw,6rem); background: var(--hc-stone); }
.bs-boundary__inner { display: grid; grid-template-columns: .7fr 1.1fr 1fr auto; gap: 2rem; align-items: center; }
.bs-boundary__inner .hc-kicker, .bs-boundary__inner h2, .bs-boundary__inner p { margin: 0; }
.bs-boundary__inner h2 { font-size: clamp(2rem,3vw,3.4rem); }
.bs-boundary__inner > p:not(.hc-kicker) { color: #526168; }
.bs-enquiry { scroll-margin-top: 5.6rem; padding-block: var(--hc-pad); color: var(--hc-white); background: var(--hc-ink); }
.bs-enquiry__grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(4rem,9vw,10rem); align-items: end; }
.bs-enquiry h2 { max-width: 55rem; }
.bs-enquiry p:not(.hc-kicker) { max-width: 49rem; color: rgba(255,255,255,.64); }
.bs-enquiry a:not(.hc-button) { color: var(--hc-cyan); text-decoration: none; }
.bs-enquiry__actions { display: grid; gap: 1rem; justify-items: start; }
.bs-enquiry__actions > span { max-width: 25rem; color: rgba(255,255,255,.46); font-size: .72rem; }

@media (max-width: 980px) {
  .bs-page .hc-nav__links a.is-active { color: var(--hc-white); }
  .bs-hero__grid, .bs-intro__grid, .bs-offer__head, .bs-clarity__grid, .bs-boundary__inner, .bs-enquiry__grid { grid-template-columns: 1fr; }
  .bs-hero__grid { gap: 2.5rem; }
  .bs-hero__statement { max-width: 38rem; }
  .bs-hero__rail { grid-template-columns: repeat(3,1fr); }
  .bs-offer__head { gap: 1.5rem; }
  .bs-offer__head .hc-kicker { grid-column: 1; margin-bottom: 0; }
  .bs-boundary__inner { align-items: start; }
}

@media (max-width: 650px) {
  .bs-page main h2 { font-size: clamp(2.8rem,12vw,3.7rem); }
  .bs-hero { min-height: 0; }
  .bs-hero__grid { min-height: 0; padding-block: 3.5rem; }
  .bs-hero__copy h1 { font-size: clamp(3.8rem,16vw,5rem); }
  .bs-hero__statement { padding-left: 1.25rem; }
  .bs-hero__rail { grid-template-columns: repeat(2,1fr); }
  .bs-hero__rail span { padding: .8rem 4vw; }
  .bs-offer__grid { grid-template-columns: 1fr; }
  .bs-offer__grid article { min-height: 0; padding: 2rem 1.25rem; }
  .bs-offer__grid article > span { margin-bottom: 2.5rem; }
  .bs-offer__grid ul { grid-template-columns: 1fr; }
  .bs-clarity li { grid-template-columns: 2.5rem 1fr; }
  .bs-clarity li p { grid-column: 2; }
}

/* Business Essentials visual-audit chapters */
.be-hero--audit .be-hero__image img { object-position: center 42%; }
.bea-chapters { background: var(--hc-paper); }

.bea-scope { padding-bottom: clamp(3.5rem,5vw,5.5rem); color: var(--hc-white); background: var(--hc-ink); }
.bea-scope > figure { height: clamp(27rem,38vw,39rem); margin: 0; overflow: hidden; }
.bea-scope > figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.bea-scope__content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(20rem,.72fr) minmax(0,1.28fr); gap: clamp(3rem,7vw,8rem); margin-top: -5.5rem; padding: clamp(2.25rem,3.3vw,3.5rem); background: var(--hc-navy); border-top: 1px solid var(--hc-cyan); }
.bea-scope__intro h2 { max-width: 36rem; margin: 0 0 1rem; font-size: clamp(3rem,4vw,4.5rem); }
.bea-scope__intro > p:last-child { color: rgba(255,255,255,.66); }
.bea-scope__lenses { display: grid; grid-template-columns: repeat(3,1fr); align-items: start; }
.bea-scope__lenses section { min-height: 15rem; padding: .4rem clamp(1.25rem,2vw,2rem); border-left: 1px solid var(--hc-line-light); }
.bea-scope__lenses span { color: var(--hc-cyan); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.bea-scope__lenses h3 { margin: 3.8rem 0 .75rem; font-size: clamp(1.8rem,2.3vw,2.6rem); }
.bea-scope__lenses p { margin: 0; color: rgba(255,255,255,.6); font-size: .84rem; }

.bea-findings { padding-block: clamp(4rem,6vw,7rem); background: var(--hc-white); }
.bea-findings__head { display: grid; grid-template-columns: 12rem minmax(0,1fr); gap: clamp(2rem,6vw,7rem); align-items: start; margin-bottom: clamp(2.5rem,4vw,4.5rem); }
.bea-findings__head h2 { max-width: 64rem; margin: 0; font-size: clamp(3rem,4.3vw,4.8rem); }
.bea-findings__sequence { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--hc-line); border-bottom: 1px solid var(--hc-line); }
.bea-findings__sequence section { min-height: 17rem; padding: 1.5rem clamp(1.5rem,3vw,3rem) 2rem 0; }
.bea-findings__sequence section + section { padding-left: clamp(1.5rem,3vw,3rem); border-left: 1px solid var(--hc-line); }
.bea-findings__sequence span { color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bea-findings__sequence h3 { margin: 5rem 0 .8rem; font-size: clamp(2rem,2.6vw,2.8rem); }
.bea-findings__sequence p { max-width: 25rem; margin: 0; color: #58666c; }

.bea-improvement { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(30rem,.88fr); min-height: 37rem; color: var(--hc-white); background: var(--hc-ink); }
.bea-improvement figure { margin: 0; overflow: hidden; }
.bea-improvement figure img { width: 100%; height: 100%; object-fit: cover; object-position: 44% center; }
.bea-improvement__copy { align-self: center; padding: clamp(3rem,5vw,6rem); }
.bea-improvement__copy h2 { max-width: 44rem; margin: 0 0 1rem; font-size: clamp(3rem,4vw,4.4rem); }
.bea-improvement__copy > p:not(.hc-kicker) { color: rgba(255,255,255,.67); }
.bea-improvement__copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; margin: 2rem 0; padding: 0; list-style: none; border-top: 1px solid var(--hc-line-light); }
.bea-improvement__copy li { padding: .72rem 0; border-bottom: 1px solid var(--hc-line-light); color: rgba(255,255,255,.82); font-size: .8rem; }

.bea-boundary { padding-block: clamp(3.5rem,5vw,5.5rem); background: var(--hc-stone); }
.bea-boundary__inner { display: grid; grid-template-columns: 13rem minmax(0,1fr) minmax(18rem,.5fr); gap: clamp(2rem,5vw,6rem); align-items: start; }
.bea-boundary__inner h2 { max-width: 52rem; margin: 0; font-size: clamp(2.6rem,3.4vw,3.8rem); }
.bea-boundary__inner > p:not(.hc-kicker) { margin: 0; color: #536168; }
.bea-boundary__inner .hc-text-link { grid-column: 3; }

@media (max-width: 980px) {
  .bea-scope__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .bea-improvement { grid-template-columns: 1fr; }
  .bea-improvement figure { height: 31rem; }
  .bea-boundary__inner { grid-template-columns: 1fr 1fr; }
  .bea-boundary__inner .hc-kicker { grid-column: 1 / -1; }
  .bea-boundary__inner .hc-text-link { grid-column: 2; }
}

@media (max-width: 600px) {
  .be-hero--audit .be-hero__image img { object-position: 54% center; }
  .bea-scope > figure { height: 28rem; }
  .bea-scope > figure img { object-position: 62% center; }
  .bea-scope__content { width: 92vw; margin-top: -2.5rem; padding: 1.8rem; }
  .bea-scope__lenses { grid-template-columns: 1fr; }
  .bea-scope__lenses section { min-height: 0; padding: 1.25rem 0; border-left: 0; border-top: 1px solid var(--hc-line-light); }
  .bea-scope__lenses h3 { margin: 1.5rem 0 .6rem; }
  .bea-findings { padding-block: 3.5rem; }
  .bea-findings__head { grid-template-columns: 1fr; gap: 1rem; }
  .bea-findings__head h2 { font-size: 3.25rem; }
  .bea-findings__sequence { grid-template-columns: 1fr; }
  .bea-findings__sequence section { min-height: 0; padding: 1.5rem 0 2rem; }
  .bea-findings__sequence section + section { padding-left: 0; border-top: 1px solid var(--hc-line); border-left: 0; }
  .bea-findings__sequence h3 { margin: 2.5rem 0 .7rem; }
  .bea-improvement figure { height: 26rem; }
  .bea-improvement figure img { object-position: 50% center; }
  .bea-improvement__copy { padding: 3rem 4vw 3.5rem; }
  .bea-improvement__copy h2 { font-size: 3.2rem; }
  .bea-improvement__copy ul { grid-template-columns: 1fr; }
  .bea-boundary__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .bea-boundary__inner .hc-kicker, .bea-boundary__inner .hc-text-link { grid-column: 1; }

  .be-pathway__track {
    width: 92vw;
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: .85rem;
    overflow: visible;
    scroll-snap-type: none;
    background: transparent;
  }

  .be-pathway__track::after {
    top: 1.5rem;
    right: auto;
    bottom: 1.5rem;
    left: 2.05rem;
    width: 1px;
    height: auto;
  }

  .be-pathway__track li {
    min-width: 0;
    min-height: 7rem;
    padding: 1.3rem 1.2rem 1.3rem 4.4rem;
    overflow: visible;
    scroll-snap-align: none;
    white-space: normal;
  }

  .be-pathway__track span {
    position: absolute;
    top: 1.15rem;
    left: .75rem;
    width: 2.6rem;
    padding-block: .15rem .35rem;
    background-color: inherit;
    text-align: center;
  }

  .be-pathway__track strong {
    position: relative;
    inset: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

/* Business Solutions: editorial partnership atlas */
.bsp-main { color: var(--hc-ink); background: var(--hc-paper); }
.bsp-main h2, .bsp-main h3 { font-family: var(--hc-serif); font-weight: 400; letter-spacing: -.045em; }

.bsp-hero { position: relative; min-height: clamp(42rem,50vw,52rem); padding-top: 5.6rem; overflow: hidden; color: var(--hc-white); background: var(--hc-ink); }
.bsp-hero__image { position: absolute; inset: 5.6rem 0 0; margin: 0; }
.bsp-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,14,18,.98) 0%,rgba(5,14,18,.82) 33%,rgba(5,14,18,.2) 66%,rgba(5,14,18,.06) 100%); }
.bsp-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.82) contrast(1.03); }
.bsp-hero__frame { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(18rem,.42fr); gap: clamp(3rem,8vw,9rem); align-items: end; min-height: clamp(36.4rem,calc(50vw - 5.6rem),46.4rem); padding-block: clamp(4rem,7vw,7rem) 3.5rem; }
.bsp-hero__copy { max-width: 70rem; }
.bsp-hero h1 { max-width: 70rem; margin: 0 0 1.5rem; color: var(--hc-white); font-family: var(--hc-serif); font-size: clamp(4.8rem,7.2vw,7.8rem); font-weight: 400; letter-spacing: -.065em; line-height: .84; }
.bsp-hero h1 em { color: var(--hc-cyan); font-weight: 400; }
.bsp-hero__copy > p:not(.hc-kicker) { max-width: 42rem; margin-bottom: 1.8rem; color: rgba(255,255,255,.75); font-size: 1.03rem; }
.bsp-hero__note { max-width: 25rem; padding: 1.6rem 0 1.6rem 1.6rem; border-left: 1px solid var(--hc-cyan); background: rgba(5,14,18,.72); }
.bsp-hero__note span { display: block; margin-bottom: .75rem; color: var(--hc-cyan); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bsp-hero__note p { margin: 0; color: rgba(255,255,255,.72); }

.bsp-manifesto { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.bsp-manifesto__grid { display: grid; grid-template-columns: 10rem minmax(0,1.15fr) minmax(22rem,.55fr); gap: clamp(2rem,5vw,6rem); align-items: start; }
.bsp-manifesto__grid h2 { max-width: 58rem; margin: -.25rem 0 0; font-size: clamp(3.2rem,4.6vw,5.25rem); line-height: .94; }
.bsp-manifesto__copy { max-width: 34rem; padding-top: .35rem; color: #4d5c62; }
.bsp-manifesto__copy p:first-child { margin-top: 0; }
.bsp-manifesto__copy p:last-child { margin-bottom: 0; }

.bsp-atlas { padding-top: clamp(4.5rem,6vw,6.5rem); color: var(--hc-white); background: var(--hc-navy); }
.bsp-atlas__header { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(22rem,.55fr); gap: clamp(3rem,8vw,9rem); align-items: end; padding-bottom: clamp(3.5rem,5vw,5.5rem); }
.bsp-atlas__header h2 { max-width: 58rem; margin: 0; color: var(--hc-white); font-size: clamp(3.4rem,5vw,5.7rem); line-height: .92; }
.bsp-atlas__header > p { max-width: 31rem; margin: 0; color: rgba(255,255,255,.62); }
.bsp-chapters { background: var(--hc-paper); }
.bsp-chapter { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(30rem,.88fr); min-height: clamp(34rem,40vw,43rem); color: var(--hc-ink); background: var(--hc-paper); }
.bsp-chapter:nth-child(even) { grid-template-columns: minmax(30rem,.88fr) minmax(0,1.12fr); background: var(--hc-stone); }
.bsp-chapter:nth-child(even) figure { order: 2; }
.bsp-chapter figure { position: relative; min-height: 100%; margin: 0; overflow: hidden; }
.bsp-chapter figure::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); pointer-events: none; }
.bsp-chapter figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(1.02); transition: transform .8s cubic-bezier(.2,.65,.2,1); }
.bsp-chapter:hover figure img { transform: scale(1.018); }
.bsp-chapter__copy { display: flex; max-width: 46rem; flex-direction: column; justify-content: center; padding: clamp(3rem,6vw,7rem); }
.bsp-chapter:nth-child(even) .bsp-chapter__copy { justify-self: end; }
.bsp-chapter__copy h3 { max-width: 38rem; margin: 0 0 1rem; font-size: clamp(2.8rem,4vw,4.7rem); line-height: .92; }
.bsp-chapter__copy > p:not(.hc-kicker) { max-width: 35rem; margin-bottom: 2rem; color: #526168; }
.bsp-chapter__copy ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: auto 0 0; padding: 0; border-top: 1px solid var(--hc-line); list-style: none; }
.bsp-chapter__copy li { padding: .72rem .7rem .72rem 0; border-bottom: 1px solid var(--hc-line); font-size: .82rem; font-weight: 700; }
.bsp-chapter__copy li:nth-child(even) { padding-left: .7rem; border-left: 1px solid var(--hc-line); }

.bsp-process { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.bsp-process__head { display: grid; grid-template-columns: 10rem minmax(0,1fr); gap: clamp(2rem,5vw,6rem); margin-bottom: clamp(3rem,5vw,5rem); }
.bsp-process__head h2 { max-width: 65rem; margin: 0; font-size: clamp(3.2rem,4.8vw,5.4rem); line-height: .93; }
.bsp-process__steps { display: grid; grid-template-columns: repeat(4,1fr); margin: 0 auto; padding-top: 0; padding-bottom: 0; list-style: none; }
.bsp-process__steps li { min-height: 18rem; padding: 1.4rem clamp(1.2rem,2.2vw,2.4rem) 1.8rem; border-top: 1px solid var(--hc-line); border-bottom: 1px solid var(--hc-line); }
.bsp-process__steps li + li { border-left: 1px solid var(--hc-line); }
.bsp-process__steps li:nth-child(2) { transform: translateY(1.5rem); }
.bsp-process__steps li:nth-child(3) { transform: translateY(3rem); }
.bsp-process__steps li:nth-child(4) { transform: translateY(4.5rem); }
.bsp-process__steps span { display: block; margin-bottom: 4.5rem; color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bsp-process__steps strong { display: block; max-width: 14rem; margin-bottom: .75rem; font-family: var(--hc-serif); font-size: clamp(1.55rem,2vw,2.1rem); font-weight: 400; line-height: 1; }
.bsp-process__steps p { max-width: 18rem; margin: 0; color: #59676d; font-size: .82rem; }

.bsp-boundary { padding: clamp(4.5rem,7vw,7.5rem) 0; background: var(--hc-stone); }
.bsp-boundary__grid { display: grid; grid-template-columns: 10rem minmax(0,1fr) auto; gap: clamp(2rem,5vw,6rem); align-items: center; }
.bsp-boundary__grid h2 { max-width: 62rem; margin: 0; font-size: clamp(2.6rem,3.6vw,4rem); line-height: .96; }

.bsp-enquiry { scroll-margin-top: 5.6rem; padding-block: clamp(4.5rem,7vw,7.5rem); color: var(--hc-white); background: var(--hc-ink); }
.bsp-enquiry__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(22rem,.55fr); gap: clamp(4rem,10vw,11rem); align-items: end; }
.bsp-enquiry h2 { max-width: 62rem; margin: 0; color: var(--hc-white); font-size: clamp(3.8rem,5.8vw,6.6rem); line-height: .86; }
.bsp-enquiry h2 em { color: var(--hc-cyan); font-weight: 400; }
.bsp-enquiry__copy { max-width: 34rem; }
.bsp-enquiry__copy p { margin-top: 0; color: rgba(255,255,255,.66); }
.bsp-enquiry__copy .hc-button { margin: 1rem 0 1.4rem; }
.bsp-enquiry__copy > a:not(.hc-button) { display: block; width: max-content; color: var(--hc-cyan); text-decoration: none; }

@media (max-width: 980px) {
  .bs-page .hc-nav__links a.is-active { color: var(--hc-white); }
  .bsp-hero__frame { grid-template-columns: 1fr; gap: 2.5rem; align-content: end; }
  .bsp-hero__copy { max-width: 47rem; }
  .bsp-hero__note { max-width: 36rem; }
  .bsp-manifesto__grid { grid-template-columns: 7rem 1fr; }
  .bsp-manifesto__copy { grid-column: 2; }
  .bsp-atlas__header, .bsp-process__head, .bsp-boundary__grid, .bsp-enquiry__grid { grid-template-columns: 1fr; }
  .bsp-atlas__header { align-items: start; }
  .bsp-chapter, .bsp-chapter:nth-child(even) { grid-template-columns: 1fr; min-height: 0; }
  .bsp-chapter:nth-child(even) figure { order: 0; }
  .bsp-chapter figure { height: clamp(28rem,65vw,42rem); }
  .bsp-chapter__copy, .bsp-chapter:nth-child(even) .bsp-chapter__copy { width: 100%; max-width: none; justify-self: stretch; padding: 4rem 4vw 4.5rem; }
  .bsp-process__steps { grid-template-columns: repeat(2,1fr); }
  .bsp-process__steps li:nth-child(n) { min-height: 15rem; transform: none; }
  .bsp-process__steps li:nth-child(3) { border-left: 0; }
  .bsp-process__steps span { margin-bottom: 3rem; }
  .bsp-boundary__grid { align-items: start; }
}

@media (max-width: 600px) {
  .bsp-hero { min-height: 48rem; }
  .bsp-hero__image { height: 48rem; }
  .bsp-hero__image::after { background: linear-gradient(180deg,rgba(5,14,18,.08) 0%,rgba(5,14,18,.36) 38%,rgba(5,14,18,.96) 70%,var(--hc-ink) 100%); }
  .bsp-hero__image img { object-position: 66% center; }
  .bsp-hero__frame { min-height: 42.4rem; padding-block: 9rem 2.5rem; }
  .bsp-hero h1 { font-size: clamp(3.7rem,16vw,4.8rem); }
  .bsp-hero__copy > p:not(.hc-kicker) { font-size: .92rem; }
  .bsp-hero__copy .hc-actions { align-items: flex-start; flex-direction: column; }
  .bsp-hero__note { display: none; }
  .bsp-manifesto { padding-block: 3.75rem; }
  .bsp-manifesto__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .bsp-manifesto__copy { grid-column: 1; }
  .bsp-manifesto__grid h2 { font-size: 3.2rem; }
  .bsp-atlas { padding-top: 3.75rem; }
  .bsp-atlas__header { padding-bottom: 3rem; }
  .bsp-atlas__header h2 { font-size: 3.3rem; }
  .bsp-chapter figure { height: 24rem; }
  .bsp-chapter__copy, .bsp-chapter:nth-child(even) .bsp-chapter__copy { padding: 2.8rem 4vw 3.2rem; }
  .bsp-chapter__copy h3 { font-size: 3rem; }
  .bsp-chapter__copy ul { grid-template-columns: 1fr; }
  .bsp-chapter__copy li:nth-child(even) { padding-left: 0; border-left: 0; }
  .bsp-process { padding-block: 3.75rem; }
  .bsp-process__head { gap: 1.2rem; }
  .bsp-process__head h2 { font-size: 3.25rem; }
  .bsp-process__steps { grid-template-columns: 1fr; }
  .bsp-process__steps li, .bsp-process__steps li:nth-child(n) { display: grid; grid-template-columns: 5rem 1fr; min-height: 0; padding: 1.4rem 0; border-left: 0; }
  .bsp-process__steps span { grid-row: 1 / 3; margin: 0; }
  .bsp-process__steps p { grid-column: 2; }
  .bsp-boundary { padding-block: 3.75rem; }
  .bsp-boundary__grid { gap: 1.4rem; }
  .bsp-boundary__grid h2 { font-size: 2.8rem; }
  .bsp-enquiry { padding-block: 3.75rem; }
  .bsp-enquiry__grid { gap: 2.2rem; }
  .bsp-enquiry h2 { font-size: 3.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .bsp-chapter figure img { transition: none; }
  .bsp-chapter:hover figure img { transform: none; }
}

/* Launch polish: direct-entry service pages */
.detail-page main h2, .detail-page main h3, .how-page main h2, .how-page main h3,
.team-page main h2, .partner-page main h2, .partner-page main h3 { font-family: var(--hc-serif); font-weight: 400; letter-spacing: -.045em; }
.detail-main, .capacity-main, .vehicle-main, .specialist-main, .how-main, .team-main, .partner-main { color: var(--hc-ink); background: var(--hc-paper); }
.detail-next { padding-block: clamp(4.5rem,7vw,7.5rem); color: var(--hc-white); background: var(--hc-ink); }
.detail-next__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(22rem,.55fr); gap: clamp(4rem,10vw,11rem); align-items: end; }
.detail-next h2 { max-width: 62rem; margin: 0; color: var(--hc-white); font-family: var(--hc-serif); font-size: clamp(3.4rem,5.4vw,6rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.detail-next__grid > div:last-child { max-width: 34rem; }
.detail-next__grid > div:last-child p { margin-top: 0; color: rgba(255,255,255,.68); }
.detail-next .hc-button { margin-top: 1rem; }

/* Utilities: meter-led ledger */
.detail-hero--meter { position: relative; min-height: clamp(42rem,53vw,58rem); padding-top: 5.6rem; overflow: hidden; color: var(--hc-white); background: var(--hc-ink); }
.detail-hero--meter .detail-hero__image { position: absolute; inset: 5.6rem 0 0; margin: 0; }
.detail-hero--meter .detail-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,14,18,.96),rgba(5,14,18,.68) 44%,rgba(5,14,18,.08) 78%); }
.detail-hero--meter .detail-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.82); }
.detail-hero--meter .detail-hero__content { position: relative; z-index: 1; display: flex; min-height: clamp(36.4rem,calc(53vw - 5.6rem),52.4rem); align-items: flex-end; padding-block: 6rem 4rem; }
.detail-hero__copy { max-width: 68rem; }
.detail-hero__copy h1 { max-width: 68rem; margin: 0 0 1.5rem; color: var(--hc-white); font-family: var(--hc-serif); font-size: clamp(4.5rem,6.6vw,7.2rem); font-weight: 400; letter-spacing: -.065em; line-height: .86; }
.detail-hero__copy h1 em { color: var(--hc-cyan); font-weight: 400; }
.detail-hero__copy > p:not(.hc-kicker) { max-width: 43rem; color: rgba(255,255,255,.76); }
.detail-ledger { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.detail-ledger__head { display: grid; grid-template-columns: 9rem minmax(0,1.1fr) minmax(20rem,.55fr); gap: clamp(2rem,5vw,6rem); align-items: start; margin-bottom: 4rem; }
.detail-ledger__head h2 { margin: 0; font-size: clamp(3.1rem,4.4vw,5rem); line-height: .94; }
.detail-ledger__head > p:last-child { max-width: 30rem; margin: .4rem 0 0; color: #59676d; }
.detail-ledger__rows { border-top: 1px solid var(--hc-line); }
.detail-ledger__rows article { display: grid; grid-template-columns: minmax(15rem,.7fr) 1.3fr; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--hc-line); }
.detail-ledger__rows strong { font-family: var(--hc-serif); font-size: 1.55rem; font-weight: 400; }
.detail-ledger__rows span { color: #526168; }
.detail-evidence { padding-block: clamp(4.5rem,7vw,7.5rem); color: var(--hc-white); background: var(--hc-navy); }
.detail-evidence__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(30rem,1.15fr); gap: clamp(4rem,9vw,10rem); }
.detail-evidence h2 { max-width: 44rem; margin: 0; color: var(--hc-white); font-size: clamp(3.2rem,4.5vw,5rem); line-height: .92; }
.detail-evidence ol { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.detail-evidence li { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.detail-evidence li span { color: var(--hc-cyan); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.detail-evidence li p { margin: 0; color: rgba(255,255,255,.7); }

/* Insurance: document-led editorial composition */
.insurance-hero { padding-top: 5.6rem; background: var(--hc-white); }
.insurance-hero__intro { display: grid; grid-template-columns: 10rem minmax(0,1.15fr) minmax(20rem,.45fr); gap: clamp(2rem,5vw,6rem); align-items: end; padding-block: clamp(4rem,6vw,6.5rem); }
.insurance-hero__intro .hc-kicker { align-self: start; }
.insurance-hero h1 { max-width: 62rem; margin: 0; font-family: var(--hc-serif); font-size: clamp(4rem,6vw,6.7rem); font-weight: 400; letter-spacing: -.065em; line-height: .88; }
.insurance-hero__intro > p { max-width: 29rem; color: #526168; }
.insurance-hero__intro .hc-button { grid-column: 3; width: max-content; }
.insurance-hero__image { height: clamp(30rem,47vw,50rem); margin: 0; overflow: hidden; }
.insurance-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.insurance-hero__caption { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.2rem; border-bottom: 1px solid var(--hc-line); }
.insurance-hero__caption span { color: var(--hc-teal); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.insurance-hero__caption p { margin: 0; color: #59676d; }
.insurance-risks { padding-block: clamp(4.5rem,7vw,8rem); }
.insurance-risks__grid { display: grid; grid-template-columns: minmax(18rem,.6fr) minmax(0,1.4fr); gap: clamp(4rem,9vw,10rem); }
.insurance-risks header { position: sticky; top: 8rem; align-self: start; }
.insurance-risks header h2 { margin: 0 0 1rem; font-size: clamp(3.2rem,4.2vw,4.8rem); line-height: .94; }
.insurance-risks header > p:last-child { color: #59676d; }
.insurance-risks__list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--hc-line); }
.insurance-risks__list article { min-height: 15rem; padding: 1.4rem 1.8rem 2rem 0; border-bottom: 1px solid var(--hc-line); }
.insurance-risks__list article:nth-child(even) { padding-left: 1.8rem; border-left: 1px solid var(--hc-line); }
.insurance-risks__list span { color: var(--hc-teal); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.insurance-risks__list h3 { margin: 3rem 0 .7rem; font-size: 2.1rem; line-height: 1; }
.insurance-risks__list p { margin: 0; color: #59676d; }
.insurance-boundary { padding-block: clamp(4rem,6vw,6rem); color: var(--hc-white); background: var(--hc-navy); }
.insurance-boundary__grid { display: grid; grid-template-columns: 9rem minmax(0,1.25fr) minmax(18rem,.4fr); gap: clamp(2rem,5vw,6rem); align-items: center; }
.insurance-boundary h2 { margin: 0; color: var(--hc-white); font-size: clamp(2.7rem,3.7vw,4.2rem); line-height: .95; }
.insurance-boundary__grid > p:last-child { color: rgba(255,255,255,.66); }

/* Flexible support: operational capacity board */
.capacity-hero { padding: clamp(9rem,12vw,12rem) 0 0; background: var(--hc-stone); }
.capacity-hero__grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(28rem,1.12fr); gap: clamp(3rem,7vw,8rem); align-items: center; }
.capacity-hero__copy h1 { margin: 0 0 1.5rem; font-family: var(--hc-serif); font-size: clamp(4rem,5.8vw,6.5rem); font-weight: 400; letter-spacing: -.06em; line-height: .88; }
.capacity-hero__copy > p:not(.hc-kicker) { max-width: 38rem; color: #526168; }
.capacity-hero__image { height: clamp(32rem,46vw,48rem); margin: 0; overflow: hidden; clip-path: polygon(8% 0,100% 0,100% 100%,0 100%,0 8%); }
.capacity-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.capacity-hero__rail { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 3rem; border-top: 1px solid var(--hc-line); }
.capacity-hero__rail span { padding: 1.2rem; color: #59676d; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.capacity-hero__rail span + span { border-left: 1px solid var(--hc-line); }
.capacity-map { padding-block: clamp(4.5rem,7vw,8rem); color: var(--hc-white); background: var(--hc-ink); }
.capacity-map__grid { display: grid; grid-template-columns: minmax(18rem,.58fr) minmax(0,1.42fr); gap: clamp(4rem,9vw,10rem); }
.capacity-map header h2 { margin: 0 0 1rem; color: var(--hc-white); font-size: clamp(3.2rem,4.3vw,4.8rem); line-height: .92; }
.capacity-map header > p:last-child { color: rgba(255,255,255,.62); }
.capacity-map__areas { display: grid; grid-template-columns: repeat(2,1fr); }
.capacity-map__areas article { min-height: 16rem; padding: 1.5rem 2rem 2rem; border-top: 1px solid rgba(255,255,255,.2); }
.capacity-map__areas article:nth-child(even) { border-left: 1px solid rgba(255,255,255,.2); }
.capacity-map__areas h3 { margin: 4rem 0 .8rem; color: var(--hc-white); font-size: 2.15rem; line-height: 1; }
.capacity-map__areas p { color: rgba(255,255,255,.64); }
.capacity-brief { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.capacity-brief__inner { display: grid; grid-template-columns: 9rem minmax(0,1fr); gap: clamp(2rem,5vw,6rem); }
.capacity-brief h2 { max-width: 68rem; margin: 0; font-size: clamp(3.2rem,4.7vw,5.3rem); line-height: .92; }
.capacity-brief dl { grid-column: 2; display: grid; grid-template-columns: repeat(4,1fr); margin: 2rem 0 0; border-top: 1px solid var(--hc-line); }
.capacity-brief dl div { padding: 1.4rem 1.4rem 0 0; }
.capacity-brief dl div + div { padding-left: 1.4rem; border-left: 1px solid var(--hc-line); }
.capacity-brief dt { margin-bottom: 2.5rem; color: var(--hc-teal); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.capacity-brief dd { margin: 0; color: #526168; }

/* Vehicle security: image-led protection track */
.vehicle-hero { position: relative; min-height: clamp(43rem,55vw,60rem); padding-top: 5.6rem; overflow: hidden; color: var(--hc-white); background: var(--hc-ink); }
.vehicle-hero__image { position: absolute; inset: 5.6rem 0 0; margin: 0; }
.vehicle-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,14,18,.92),rgba(5,14,18,.52) 48%,rgba(5,14,18,.06)); }
.vehicle-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.78); }
.vehicle-hero__content { position: relative; z-index: 1; display: flex; min-height: clamp(37.4rem,calc(55vw - 5.6rem),54.4rem); align-items: flex-end; padding-block: 5rem; }
.vehicle-hero__content > div { max-width: 66rem; }
.vehicle-hero h1 { margin: 0 0 1.5rem; color: var(--hc-white); font-family: var(--hc-serif); font-size: clamp(4.5rem,6.7vw,7.4rem); font-weight: 400; letter-spacing: -.065em; line-height: .86; }
.vehicle-hero__content p:not(.hc-kicker) { max-width: 42rem; color: rgba(255,255,255,.74); }
.vehicle-exposure { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.vehicle-exposure__grid { display: grid; grid-template-columns: minmax(18rem,.6fr) minmax(0,1.4fr); gap: clamp(4rem,9vw,10rem); }
.vehicle-exposure header h2 { margin: 0; font-size: clamp(3.2rem,4.4vw,5rem); line-height: .93; }
.vehicle-exposure__track { border-left: 1px solid var(--hc-line); }
.vehicle-exposure__track article { display: grid; grid-template-columns: 5rem minmax(11rem,.45fr) 1fr; gap: 1.5rem; padding: 1.25rem 0 1.25rem 1.8rem; border-top: 1px solid var(--hc-line); }
.vehicle-exposure__track article:last-child { border-bottom: 1px solid var(--hc-line); }
.vehicle-exposure__track span { color: var(--hc-teal); font-size: .7rem; font-weight: 700; }
.vehicle-exposure__track h3 { margin: 0; font-size: 1.75rem; }
.vehicle-exposure__track p { margin: 0; color: #59676d; }
.vehicle-systems { padding-block: clamp(4.5rem,7vw,7.5rem); color: var(--hc-white); background: var(--hc-navy); }
.vehicle-systems__grid { display: grid; grid-template-columns: minmax(18rem,.6fr) minmax(0,1.4fr); gap: clamp(4rem,9vw,10rem); }
.vehicle-systems h2 { margin: 0 0 1rem; color: var(--hc-white); font-size: clamp(3.2rem,4.4vw,5rem); line-height: .92; }
.vehicle-systems__grid > div > p:last-child { color: rgba(255,255,255,.62); }
.vehicle-systems ul { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.vehicle-systems li { display: grid; grid-template-columns: minmax(13rem,.6fr) 1fr; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.vehicle-systems li strong { font-family: var(--hc-serif); font-size: 1.55rem; font-weight: 400; }
.vehicle-systems li span { color: rgba(255,255,255,.66); }

/* Specialist services: systems matrix */
.specialist-hero { padding: clamp(10rem,12vw,13rem) 0 clamp(4rem,6vw,6rem); color: var(--hc-white); background: var(--hc-navy); }
.specialist-hero__frame { display: grid; grid-template-columns: minmax(0,.82fr) minmax(28rem,1.18fr); gap: clamp(3rem,7vw,8rem); align-items: center; }
.specialist-hero h1 { margin: 0 0 1.5rem; color: var(--hc-white); font-family: var(--hc-serif); font-size: clamp(4rem,5.7vw,6.4rem); font-weight: 400; letter-spacing: -.06em; line-height: .88; }
.specialist-hero__copy > p:not(.hc-kicker) { max-width: 39rem; color: rgba(255,255,255,.68); }
.specialist-hero figure { position: relative; height: clamp(32rem,44vw,47rem); margin: 0; overflow: hidden; }
.specialist-hero figure::before { content: ""; position: absolute; z-index: 1; inset: 0; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.specialist-hero figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.82); }
.specialist-matrix { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.specialist-matrix__head { display: grid; grid-template-columns: 9rem minmax(0,1fr); gap: clamp(2rem,5vw,6rem); margin-bottom: 3.5rem; }
.specialist-matrix__head h2 { max-width: 65rem; margin: 0; font-size: clamp(3.3rem,4.8vw,5.4rem); line-height: .92; }
.specialist-matrix__grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--hc-line); border-left: 1px solid var(--hc-line); }
.specialist-matrix__grid article { min-height: 17rem; padding: 1.5rem; border-right: 1px solid var(--hc-line); border-bottom: 1px solid var(--hc-line); }
.specialist-matrix__grid span { color: var(--hc-teal); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.specialist-matrix__grid h3 { margin: 4rem 0 .7rem; font-size: 2.1rem; line-height: 1; }
.specialist-matrix__grid p { color: #59676d; }
.specialist-handover { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-stone); }
.specialist-handover__grid { display: grid; grid-template-columns: minmax(18rem,.65fr) minmax(0,1.35fr); gap: clamp(4rem,9vw,10rem); }
.specialist-handover h2 { margin: 0; font-size: clamp(3.2rem,4.4vw,5rem); line-height: .92; }
.specialist-handover ol { margin: 0; padding: 0; list-style: none; }
.specialist-handover li { display: grid; grid-template-columns: 10rem 1fr; padding: 1.2rem 0; border-top: 1px solid var(--hc-line); }
.specialist-handover li:last-child { border-bottom: 1px solid var(--hc-line); }
.specialist-handover strong { font-family: var(--hc-serif); font-size: 1.6rem; font-weight: 400; }
.specialist-handover p { margin: 0; color: #59676d; }

/* How We Help: process-led route map */
.how-hero { padding: clamp(10rem,13vw,14rem) 0 clamp(5rem,8vw,8rem); color: var(--hc-white); background: var(--hc-ink); }
.how-hero__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(20rem,.45fr); gap: clamp(4rem,10vw,11rem); align-items: end; }
.how-hero h1 { max-width: 72rem; margin: 0; color: var(--hc-white); font-family: var(--hc-serif); font-size: clamp(4.6rem,7vw,7.8rem); font-weight: 400; letter-spacing: -.065em; line-height: .86; }
.how-hero__grid > div:last-child p { color: rgba(255,255,255,.68); }
.how-route-map { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.how-route-map__head { display: grid; grid-template-columns: 9rem 1fr; gap: clamp(2rem,5vw,6rem); margin-bottom: 3.5rem; }
.how-route-map h2 { margin: 0; font-size: clamp(3.5rem,5vw,5.7rem); line-height: .92; }
.how-route-map__lanes { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--hc-line); }
.how-route-map__lanes article { display: flex; min-height: 25rem; flex-direction: column; padding: 1.5rem clamp(1.5rem,3vw,3rem) 2rem 0; }
.how-route-map__lanes article + article { padding-left: clamp(1.5rem,3vw,3rem); border-left: 1px solid var(--hc-line); }
.how-route-map__lanes span { color: var(--hc-teal); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.how-route-map__lanes h3 { margin: 5rem 0 .8rem; font-size: 2.8rem; line-height: .96; }
.how-route-map__lanes p { color: #59676d; }
.how-route-map__lanes a { width: max-content; margin-top: auto; color: var(--hc-ink); font-weight: 700; text-decoration: none; border-bottom: 1px solid; }
.how-sequence { padding-block: clamp(4.5rem,7vw,7.5rem); color: var(--hc-white); background: var(--hc-navy); }
.how-sequence__grid { display: grid; grid-template-columns: minmax(18rem,.55fr) minmax(0,1.45fr); gap: clamp(4rem,9vw,10rem); }
.how-sequence h2 { margin: 0; color: var(--hc-white); font-size: clamp(3.2rem,4.4vw,5rem); line-height: .93; }
.how-sequence ol { margin: 0; padding: 0; list-style: none; }
.how-sequence li { display: grid; grid-template-columns: 7rem minmax(15rem,.55fr) 1fr; gap: 1.5rem; padding: 1.3rem 0; border-top: 1px solid rgba(255,255,255,.2); }
.how-sequence li:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.how-sequence li span { color: var(--hc-cyan); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.how-sequence li strong { font-family: var(--hc-serif); font-size: 1.6rem; font-weight: 400; }
.how-sequence li p { margin: 0; color: rgba(255,255,255,.65); }
.how-principles { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-stone); }
.how-principles__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(24rem,.65fr); gap: clamp(4rem,9vw,10rem); }
.how-principles h2 { margin: 0; font-size: clamp(3.2rem,4.5vw,5.1rem); line-height: .93; }
.how-principles ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hc-line); }
.how-principles li { padding: 1.1rem 0; border-bottom: 1px solid var(--hc-line); }

/* Team: asymmetric leadership profiles */
.team-intro { padding: clamp(10rem,13vw,14rem) 0 clamp(4.5rem,7vw,7rem); background: var(--hc-white); }
.team-intro__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(22rem,.5fr); gap: clamp(4rem,10vw,11rem); align-items: end; }
.team-intro h1 { max-width: 70rem; margin: 0; font-family: var(--hc-serif); font-size: clamp(4.5rem,6.8vw,7.5rem); font-weight: 400; letter-spacing: -.065em; line-height: .86; }
.team-intro__grid > div:last-child { color: #526168; }
.team-profiles { background: var(--hc-stone); }
.team-profile { display: grid; grid-template-columns: minmax(28rem,.9fr) minmax(0,1.1fr); min-height: clamp(42rem,50vw,54rem); }
.team-profile--laura { grid-template-columns: minmax(0,1.1fr) minmax(28rem,.9fr); background: var(--hc-white); }
.team-profile figure { min-height: 100%; margin: 0; overflow: hidden; }
.team-profile figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-profile__copy { display: flex; max-width: 49rem; flex-direction: column; justify-content: center; padding: clamp(3rem,7vw,8rem); }
.team-profile--laura .team-profile__copy { justify-self: end; }
.team-profile h2 { margin: 0 0 1.2rem; font-size: clamp(4rem,5.8vw,6.5rem); line-height: .86; }
.team-profile__copy > p:not(.hc-kicker) { color: #526168; }
.team-profile dl { margin: 2rem 0 0; border-top: 1px solid var(--hc-line); }
.team-profile dl div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--hc-line); }
.team-profile dt { color: var(--hc-teal); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.team-profile dd { margin: 0; color: #526168; }
.team-together { padding-block: clamp(4.5rem,7vw,7.5rem); color: var(--hc-white); background: var(--hc-navy); }
.team-together__grid { display: grid; grid-template-columns: 9rem minmax(0,1fr) minmax(18rem,.4fr); gap: clamp(2rem,5vw,6rem); align-items: center; }
.team-together h2 { margin: 0; color: var(--hc-white); font-size: clamp(3.2rem,4.5vw,5.1rem); line-height: .93; }
.team-together__grid > p:last-child { color: rgba(255,255,255,.64); }

/* Provider partnerships: editorial criteria */
.partner-hero { padding: clamp(10rem,13vw,14rem) 0 clamp(5rem,8vw,8rem); color: var(--hc-white); background: var(--hc-navy); }
.partner-hero__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(22rem,.48fr); gap: clamp(4rem,10vw,11rem); align-items: end; }
.partner-hero h1 { max-width: 72rem; margin: 0; color: var(--hc-white); font-family: var(--hc-serif); font-size: clamp(4.5rem,6.8vw,7.5rem); font-weight: 400; letter-spacing: -.065em; line-height: .86; }
.partner-hero__grid > div:last-child { color: rgba(255,255,255,.68); }
.partner-hero a { color: var(--hc-cyan); }
.partner-criteria { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-white); }
.partner-criteria__grid { display: grid; grid-template-columns: minmax(18rem,.55fr) minmax(0,1.45fr); gap: clamp(4rem,9vw,10rem); }
.partner-criteria h2 { margin: 0; font-size: clamp(3.2rem,4.4vw,5rem); line-height: .93; }
.partner-criteria__grid > div { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--hc-line); }
.partner-criteria article { min-height: 16rem; padding: 1.4rem 1.8rem 2rem 0; border-bottom: 1px solid var(--hc-line); }
.partner-criteria article:nth-child(even) { padding-left: 1.8rem; border-left: 1px solid var(--hc-line); }
.partner-criteria article span { color: var(--hc-teal); font-size: .7rem; font-weight: 700; }
.partner-criteria h3 { margin: 3.5rem 0 .7rem; font-size: 2.1rem; }
.partner-criteria article p { color: #59676d; }
.partner-boundaries { padding-block: clamp(4.5rem,7vw,7.5rem); background: var(--hc-stone); }
.partner-boundaries__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(24rem,.65fr); gap: clamp(4rem,9vw,10rem); }
.partner-boundaries h2 { margin: 0; font-size: clamp(3.2rem,4.5vw,5.1rem); line-height: .93; }
.partner-boundaries ul { margin: 0; padding: 0; border-top: 1px solid var(--hc-line); list-style: none; }
.partner-boundaries li { padding: 1.1rem 0; border-bottom: 1px solid var(--hc-line); }
.partner-enquiry { padding-block: clamp(4.5rem,7vw,7.5rem); color: var(--hc-white); background: var(--hc-ink); }
.partner-enquiry__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(22rem,.55fr); gap: clamp(4rem,10vw,11rem); align-items: end; }
.partner-enquiry h2 { margin: 0; color: var(--hc-white); font-size: clamp(3.4rem,5.2vw,5.9rem); line-height: .9; }
.partner-enquiry__grid > div:last-child p { color: rgba(255,255,255,.66); }

@media (max-width: 980px) {
  .detail-next__grid, .detail-ledger__head, .detail-evidence__grid, .insurance-hero__intro,
  .insurance-risks__grid, .insurance-boundary__grid, .capacity-map__grid, .capacity-brief__inner,
  .vehicle-exposure__grid, .vehicle-systems__grid, .specialist-handover__grid, .how-hero__grid,
  .how-sequence__grid, .how-principles__grid, .team-intro__grid, .team-together__grid,
  .partner-hero__grid, .partner-criteria__grid, .partner-boundaries__grid, .partner-enquiry__grid { grid-template-columns: 1fr; }
  .insurance-hero__intro .hc-button { grid-column: 1; }
  .insurance-risks header { position: static; }
  .capacity-hero__grid, .specialist-hero__frame { grid-template-columns: 1fr; }
  .capacity-hero__image, .specialist-hero figure { height: clamp(28rem,65vw,42rem); }
  .capacity-brief dl { grid-column: 1; }
  .specialist-matrix__grid { grid-template-columns: repeat(2,1fr); }
  .how-route-map__lanes { grid-template-columns: 1fr; }
  .how-route-map__lanes article { min-height: 0; padding: 1.5rem 0 2rem; border-bottom: 1px solid var(--hc-line); }
  .how-route-map__lanes article + article { padding-left: 0; border-left: 0; }
  .how-route-map__lanes h3 { margin-top: 2.5rem; }
  .team-profile, .team-profile--laura { grid-template-columns: 1fr 1fr; min-height: 38rem; }
  .team-profile__copy { padding: 3.5rem 4vw; }
  .team-profile--laura .team-profile__copy { justify-self: stretch; }
}

@media (max-width: 600px) {
  .detail-next { padding-block: 3.75rem; }
  .detail-next__grid { gap: 2rem; }
  .detail-next h2 { font-size: 3.5rem; }
  .detail-hero--meter, .vehicle-hero { min-height: 48rem; }
  .detail-hero--meter .detail-hero__image, .vehicle-hero__image { height: 48rem; }
  .detail-hero--meter .detail-hero__image::after, .vehicle-hero__image::after { background: linear-gradient(180deg,rgba(5,14,18,.08),rgba(5,14,18,.32) 38%,rgba(5,14,18,.96) 72%); }
  .detail-hero--meter .detail-hero__image img { object-position: 58% center; }
  .detail-hero--meter .detail-hero__content, .vehicle-hero__content { min-height: 42.4rem; padding-block: 11rem 2.8rem; }
  .detail-hero__copy h1, .vehicle-hero h1 { font-size: 3.75rem; }
  .detail-hero__copy .hc-actions { align-items: flex-start; flex-direction: column; }
  .detail-ledger, .detail-evidence, .insurance-risks, .capacity-map, .capacity-brief,
  .vehicle-exposure, .vehicle-systems, .specialist-matrix, .specialist-handover,
  .how-route-map, .how-sequence, .how-principles, .team-together, .partner-criteria,
  .partner-boundaries { padding-block: 3.75rem; }
  .detail-ledger__head, .specialist-matrix__head, .how-route-map__head { grid-template-columns: 1fr; gap: 1.2rem; }
  .detail-ledger__head h2, .detail-evidence h2, .insurance-risks header h2, .capacity-map header h2,
  .capacity-brief h2, .vehicle-exposure header h2, .vehicle-systems h2, .specialist-matrix__head h2,
  .specialist-handover h2, .how-route-map h2, .how-sequence h2, .how-principles h2,
  .team-together h2, .partner-criteria h2, .partner-boundaries h2 { font-size: 3.15rem; }
  .detail-ledger__rows article, .detail-evidence li, .vehicle-exposure__track article,
  .vehicle-systems li, .specialist-handover li, .how-sequence li { grid-template-columns: 1fr; gap: .6rem; }
  .insurance-hero { padding-top: 5.6rem; }
  .insurance-hero__intro { gap: 1.5rem; padding-block: 3.5rem; }
  .insurance-hero h1 { font-size: 3.75rem; }
  .insurance-hero__image { height: 25rem; }
  .insurance-hero__caption { align-items: flex-start; flex-direction: column; }
  .insurance-risks__list, .capacity-map__areas, .specialist-matrix__grid, .partner-criteria__grid > div { grid-template-columns: 1fr; }
  .insurance-risks__list article, .insurance-risks__list article:nth-child(even),
  .capacity-map__areas article, .capacity-map__areas article:nth-child(even),
  .partner-criteria article, .partner-criteria article:nth-child(even) { min-height: 0; padding: 1.4rem 0 2rem; border-left: 0; }
  .insurance-risks__list h3, .capacity-map__areas h3, .partner-criteria h3 { margin-top: 2.5rem; }
  .capacity-hero { padding-top: 8.5rem; }
  .capacity-hero__copy h1, .specialist-hero h1 { font-size: 3.75rem; }
  .capacity-hero__image, .specialist-hero figure { height: 25rem; }
  .capacity-hero__rail { grid-template-columns: 1fr; }
  .capacity-hero__rail span + span { border-top: 1px solid var(--hc-line); border-left: 0; }
  .capacity-brief dl { grid-template-columns: 1fr; }
  .capacity-brief dl div, .capacity-brief dl div + div { padding: 1.25rem 0; border-top: 1px solid var(--hc-line); border-left: 0; }
  .capacity-brief dt { margin-bottom: 1rem; }
  .vehicle-hero__image img { object-position: 48% center; }
  .specialist-hero { padding-top: 8.5rem; }
  .specialist-matrix__grid { border-left: 0; }
  .specialist-matrix__grid article { min-height: 0; padding: 1.4rem 0 2rem; border-right: 0; }
  .specialist-matrix__grid h3 { margin-top: 2.5rem; }
  .how-hero, .partner-hero { padding-block: 9rem 4rem; }
  .how-hero h1, .partner-hero h1, .team-intro h1 { font-size: 3.8rem; }
  .how-route-map__lanes article { min-height: 0; }
  .team-intro { padding-block: 9rem 4rem; }
  .team-profile, .team-profile--laura { display: flex; min-height: 0; flex-direction: column; }
  .team-profile--laura .team-profile__copy { order: 2; }
  .team-profile figure { height: 30rem; min-height: 0; }
  .team-profile figure img { object-position: center top; }
  .team-profile__copy { padding: 3rem 4vw 3.5rem; }
  .team-profile h2 { font-size: 3.8rem; }
  .team-profile dl div { grid-template-columns: 1fr; gap: .5rem; }
}

@media (max-width: 600px) {
  .bsp-hero,
  .detail-hero--meter,
  .vehicle-hero {
    min-height: 0;
    padding-top: 5.6rem;
  }

  .bsp-hero__image,
  .detail-hero--meter .detail-hero__image,
  .vehicle-hero__image {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .bsp-hero__image img,
  .detail-hero--meter .detail-hero__image img,
  .vehicle-hero__image img {
    object-fit: cover;
    object-position: center top;
  }

  .bsp-hero__image::after,
  .detail-hero--meter .detail-hero__image::after,
  .vehicle-hero__image::after {
    background: linear-gradient(180deg, rgba(5,14,18,.02), rgba(5,14,18,.18));
  }

  .bsp-hero__frame,
  .detail-hero--meter .detail-hero__content,
  .vehicle-hero__content {
    min-height: 0;
    padding-block: 2.5rem 3rem;
    background: var(--hc-ink);
  }

  .bsp-hero__frame { display: block; }
  .bsp-hero__note { margin-top: 2rem; }
  .bsp-hero h1,
  .detail-hero__copy h1,
  .vehicle-hero h1 { font-size: clamp(3.1rem, 15vw, 4rem); }
}
