/* ==========================================================================
   Sky Green Capital — site stylesheet
   Static CSS, no build step.

   1. Fonts            7. Header & navigation   13. Leadership
   2. Tokens           8. Hero                  14. Contact
   3. Base             9. About                 15. Footer
   4. Layout          10. Businesses            16. Motion
   5. Typography      11. Vision & mission      17. Utilities
   6. Components      12. Core values
   ========================================================================== */


/* 1. Fonts
   ========================================================================== */

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/manrope/manrope-latin-wght-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/manrope/manrope-latin-ext-wght-normal.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}


/* 2. Tokens
   ========================================================================== */

:root {
    /* Brand — taken from the Sky Green Capital logo */
    --color-blue: #1f63b5;
    --color-blue-hover: #18529a;
    --color-blue-deep: #0c2a50;
    --color-blue-tint: #eaf1fa;
    --color-green: #1daa24;
    --color-green-text: #147a1a;
    --color-green-tint: #eaf6eb;

    /* Neutrals */
    --color-ink: #111827;
    --color-body: #2d3748;
    --color-muted: #566173;
    --color-line: #e2e7ee;
    --color-line-strong: #cbd4df;
    --color-bg: #ffffff;
    --color-bg-soft: #f7f9fb;
    --color-footer: #0a1321;

    /* Feedback */
    --color-error: #b42318;
    --color-error-tint: #fdf1f0;
    --color-success: #0f6315;

    /* Type */
    --font-sans: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --fs-display: clamp(2.125rem, 1.25rem + 3.6vw, 4.125rem);
    --fs-h2: clamp(2rem, 1.5rem + 1.9vw, 3.125rem);
    --fs-h3: clamp(1.1875rem, 1.12rem + .3vw, 1.375rem);
    --fs-statement: clamp(1.4375rem, 1.1rem + 1.2vw, 2.125rem);
    --fs-lead: clamp(1.125rem, 1.06rem + .3vw, 1.3125rem);
    --fs-body: 1.0625rem;
    --fs-small: .875rem;
    --fs-xs: .8125rem;

    /* Layout */
    --container: 1280px;
    --gutter: clamp(20px, 4.5vw, 48px);
    --section-y: clamp(84px, 4.5rem + 5vw, 152px);
    --header-h: 96px;
    --header-h-compact: 72px;
    --radius: 2px;

    /* Elevation */
    --shadow-md: 0 1px 2px rgb(17 24 39 / .04), 0 16px 32px -14px rgb(17 24 39 / .16);
    --shadow-lg: 0 2px 6px rgb(17 24 39 / .05), 0 28px 56px -20px rgb(17 24 39 / .26);

    /* Motion */
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* Large displays: a wider measure and proportionally larger type, so the
   layout keeps its presence instead of floating in empty space. */
@media (min-width: 1800px) {
    :root {
        --container: 1440px;
        --fs-display: 4.5rem;
        --fs-h2: 3.5rem;
        --fs-statement: 2.375rem;
        --fs-lead: 1.375rem;
        --fs-body: 1.125rem;
        --section-y: 168px;
    }
}

@media (min-width: 2300px) {
    :root {
        --container: 1600px;
        --fs-display: 4.75rem;
        --fs-h2: 3.75rem;
        --fs-statement: 2.5rem;
        --fs-lead: 1.4375rem;
        --section-y: 184px;
    }
}


/* 3. Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h-compact) + 12px);
}

@media (prefers-reduced-motion: no-preference) {
    html.is-smooth {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-body);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
    overflow-x: clip;
}

body.has-open-menu {
    overflow: hidden;
}

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

img {
    height: auto;
}

h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
}

h1, h2, h3, h4 {
    color: var(--color-ink);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.022em;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

/* Zero specificity so component classes can still set margin and padding */
:where(ul[role='list'], ol[role='list']) {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

address {
    font-style: normal;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

::selection {
    background: var(--color-blue);
    color: #fff;
}


/* 4. Layout
   ========================================================================== */

.container {
    width: min(100% - 2 * var(--gutter), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-y);
}

.section--soft {
    background: var(--color-bg-soft);
}


/* 5. Typography
   ========================================================================== */

/* Blue + green rule — the accent used throughout the corporate profile */
.brand-rule {
    display: inline-flex;
    flex: none;
    gap: 5px;
}

.brand-rule::before,
.brand-rule::after {
    content: '';
    height: 3px;
    transform-origin: left;
}

.brand-rule::before {
    width: 16px;
    background: var(--color-blue);
}

.brand-rule::after {
    width: 40px;
    background: var(--color-green);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    font-size: var(--fs-small);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .015em;
    color: var(--color-blue);
}

.eyebrow--light {
    color: #fff;
}

.section-heading {
    margin-bottom: clamp(44px, 5vw, 76px);
}

.section-heading__title {
    max-width: 20ch;
    font-size: var(--fs-h2);
}

.section-heading__intro {
    max-width: 48ch;
    margin-top: 22px;
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: var(--color-muted);
}

@media (min-width: 1024px) {
    .section-heading--split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: end;
        gap: 64px;
    }

    .section-heading--split .section-heading__intro {
        justify-self: end;
        margin-top: 0;
    }
}


/* 6. Components
   ========================================================================== */

/* Buttons */
.btn {
    --btn-bg: var(--color-blue);
    --btn-fg: #fff;
    --btn-border: var(--btn-bg);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid var(--btn-border);
    border-radius: var(--radius);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .005em;
    text-align: center;
    transition: background-color .3s, color .3s, border-color .3s;
}

.btn__icon {
    width: 18px;
    height: 18px;
    transition: transform .4s var(--ease-out);
}

.btn:hover .btn__icon {
    transform: translateX(4px);
}

.btn--primary:hover {
    --btn-bg: var(--color-blue-hover);
}

.btn--outline-light {
    --btn-bg: transparent;
    --btn-fg: #fff;
    --btn-border: rgb(255 255 255 / .5);
}

.btn--outline-light:hover {
    --btn-bg: #fff;
    --btn-fg: var(--color-ink);
    --btn-border: #fff;
}

.btn--sm {
    min-height: 44px;
    padding: 0 20px;
    font-size: .875rem;
}

.btn--block {
    width: 100%;
}

.btn[disabled] {
    cursor: progress;
    opacity: .75;
}

/* Text link with arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--color-blue);
}

.link-arrow > span {
    background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
    transition: background-size .4s var(--ease-out);
}

.link-arrow .icon {
    width: 18px;
    height: 18px;
    transition: transform .4s var(--ease-out);
}

.link-arrow:hover > span {
    background-size: 100% 1px;
}

.link-arrow:hover .icon {
    transform: translateX(4px);
}

.link-arrow--down:hover .icon {
    transform: translateY(3px);
}

/* Photography */
.picture {
    display: block;
    height: 100%;
}

.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--focus, 50% 50%);
}

@media (max-width: 767px) {
    .picture img {
        object-position: var(--focus-m, var(--focus, 50% 50%));
    }
}

@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
    .picture img {
        object-position: var(--focus-t, var(--focus, 50% 50%));
    }
}

.picture--placeholder {
    width: 100%;
    background: #dde5ee;
}

/* Brand swoosh: the green / white / blue bands from the corporate profile cover */
.brand-swoosh {
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
}

/* Deep navy band for contrast mid-page */
.section--dark {
    background: var(--color-blue-deep);
    color: rgb(255 255 255 / .75);
}

.section--dark h2,
.section--dark h3 {
    color: #fff;
}

.section--dark :focus-visible {
    outline-color: #fff;
}

/* Clipped image box whose photo drifts slightly on scroll (see app.js) */
.parallax-media {
    overflow: hidden;
}

.parallax-media > .picture {
    position: absolute;
    inset: -7% 0;
    height: auto;
}


/* 7. Header & navigation
   ========================================================================== */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: #fff;
    transition: color .4s;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / .9);
    -webkit-backdrop-filter: saturate(1.5) blur(16px);
    backdrop-filter: saturate(1.5) blur(16px);
    box-shadow: 0 1px 0 rgb(17 24 39 / .06), 0 10px 30px -18px rgb(17 24 39 / .25);
    opacity: 0;
    transition: opacity .4s;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    color: var(--color-ink);
}

.site-header.is-scrolled::before,
.site-header.is-menu-open::before {
    opacity: 1;
}

.site-header:not(.is-scrolled):not(.is-menu-open) :focus-visible {
    outline-color: #fff;
}

/* Reading progress along the bottom of the compact header */
.site-header__progress {
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: var(--color-green);
    opacity: 0;
    transform: scaleX(var(--progress, 0));
    transform-origin: left;
    transition: opacity .3s;
    pointer-events: none;
}

.is-scrolled .site-header__progress {
    opacity: 1;
}

.is-menu-open .site-header__progress {
    opacity: 0;
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-h);
    transition: height .45s var(--ease-out);
}

.is-scrolled .site-header__inner {
    height: var(--header-h-compact);
}

.site-header__brand {
    position: relative;
    flex: none;
    height: 48px;
    transition: height .45s var(--ease-out);
}

.is-scrolled .site-header__brand {
    height: 40px;
}

.site-header__logo {
    width: auto;
    height: 100%;
    transition: opacity .4s;
}

.site-header__logo--default {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
}

.is-scrolled .site-header__logo--default,
.is-menu-open .site-header__logo--default {
    opacity: 1;
}

.is-scrolled .site-header__logo--reversed,
.is-menu-open .site-header__logo--reversed {
    opacity: 0;
}

.site-nav {
    display: none;
    margin-left: auto;
}

.site-nav__list {
    display: flex;
    gap: clamp(18px, 1.9vw, 30px);
}

.site-nav__link {
    position: relative;
    display: block;
    padding-block: 10px;
    font-size: .90625rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color .3s;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    background: var(--color-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease-out);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current='true']::after {
    transform: scaleX(1);
}

.is-scrolled .site-nav__link:hover,
.is-scrolled .site-nav__link[aria-current='true'] {
    color: var(--color-blue);
}

.site-header__cta {
    display: none;
    flex: none;
}

.nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: -12px;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform .4s var(--ease-out), background-color .2s;
}

.nav-toggle__bars {
    position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle__bars::before {
    top: -7px;
}

.nav-toggle__bars::after {
    top: 7px;
}

.is-menu-open .nav-toggle__bars {
    background-color: transparent;
}

.is-menu-open .nav-toggle__bars::before {
    transform: translateY(7px) rotate(45deg);
}

.is-menu-open .nav-toggle__bars::after {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-h) + 16px) var(--gutter) 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    color: var(--color-ink);
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity .35s var(--ease-out), transform .5s var(--ease-out);
}

.mobile-menu[hidden] {
    display: none;
}

.is-menu-open .mobile-menu {
    opacity: 1;
    transform: none;
}

.mobile-menu__list {
    border-top: 1px solid var(--color-line);
}

.mobile-menu__link {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: clamp(1.25rem, 1.05rem + 1.2vw, 1.625rem);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.3;
}

.mobile-menu__link[aria-current='true'] {
    color: var(--color-blue);
}

.mobile-menu__index {
    min-width: 2ch;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--color-green-text);
}

.mobile-menu__footer {
    display: grid;
    gap: 20px;
    margin-top: auto;
    padding-top: 36px;
}

.mobile-menu__tagline {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-muted);
}

@media (min-width: 1080px) {
    .site-nav {
        display: block;
    }

    .nav-toggle,
    .mobile-menu {
        display: none !important;
    }
}

@media (min-width: 1180px) {
    .site-header__cta {
        display: inline-flex;
        margin-left: 8px;
    }
}

.no-js .nav-toggle {
    display: none;
}

@media (max-width: 767px) {
    :root {
        --header-h: 76px;
        --header-h-compact: 64px;
    }

    .site-header__brand {
        height: 40px;
    }

    .is-scrolled .site-header__brand {
        height: 34px;
    }
}


/* 8. Hero
   ========================================================================== */

.hero {
    position: relative;
    display: grid;
    min-height: clamp(640px, 100vh, 1000px);
    min-height: clamp(640px, 100svh, 1000px);
    overflow: hidden;
    isolation: isolate;
    background: var(--color-blue-deep);
    color: #fff;
}

/* Slides share one grid cell, so the hero grows to fit its tallest slide
   (short screens, zoomed or spaced text) instead of clipping it. */
.hero__slides {
    display: grid;
}

.hero__slide {
    position: relative;
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease-in-out), visibility 0s linear 1.2s;
}

.hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s var(--ease-in-out), visibility 0s;
}

.hero__media {
    position: absolute;
    inset: -7% 0;
    will-change: transform;
}

/* Inactive slides only fetch their photos once the page has loaded. */
.js .hero:not(.is-warm) .hero__slide:not(.is-active) .hero__media {
    display: none;
}

/* Slow zoom; restarted for each incoming slide and stopped whenever the
   slideshow pauses. The outgoing photo keeps moving through the crossfade. */
.hero.is-autoplay .hero__media img {
    animation: hero-zoom 9s linear both;
}

.hero.is-paused .hero__media img {
    animation-play-state: paused;
}

@keyframes hero-zoom {
    from { transform: scale(1.07); }
    to { transform: none; }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgb(6 18 36 / .74) 0%, rgb(6 18 36 / .64) 30%, rgb(6 18 36 / .44) 46%, rgb(6 18 36 / .12) 64%, rgb(6 18 36 / 0) 80%),
        linear-gradient(180deg, rgb(6 18 36 / .5) 0%, rgb(6 18 36 / .2) 10%, rgb(6 18 36 / 0) 20%, rgb(6 18 36 / 0) 72%, rgb(6 18 36 / .42) 100%);
}

/* Content sits on a common baseline above the controls, so the headline and
   buttons do not jump between slides. */
.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    align-items: flex-end;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: clamp(132px, 18vh, 180px);
}

.hero__content {
    max-width: min(780px, 68vw);
}

.hero__kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: .02em;
    color: rgb(255 255 255 / .92);
}

.hero__title {
    font-size: var(--fs-display);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.03em;
    color: #fff;
    text-wrap: initial;
}

.hero__line {
    display: block;
    overflow: hidden;
    /* Mask room for descenders and the final glyph; the negative margins keep layout unchanged */
    padding: 0 .08em .18em 0;
    margin: 0 -.08em -.18em 0;
}

.hero__line > span {
    display: block;
}

.hero__text {
    max-width: 48ch;
    margin-top: 28px;
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: rgb(255 255 255 / .88);
}

/* Every item has a divider on its left; the list is shifted left and clipped
   so no line, including a wrapped one, starts with a divider. */
.hero__sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 0;
    margin-top: 26px;
    margin-left: -19px;
    clip-path: inset(-8px -8px -8px 19px);
}

.hero__sectors li {
    padding: 0 18px;
    border-left: 1px solid rgb(255 255 255 / .35);
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

/* Controls */
.hero__controls {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
}

.hero__controls-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: clamp(24px, 3.5vw, 44px);
}

.hero__pager {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(4, minmax(0, 200px));
    gap: 24px;
}

.hero__tab {
    position: relative;
    padding-top: 16px;
    text-align: left;
    color: rgb(255 255 255 / .8);
    transition: color .3s;
}

.hero__tab:hover,
.hero__tab.is-active {
    color: #fff;
}

.hero__tab-progress {
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    overflow: hidden;
    background: rgb(255 255 255 / .3);
}

.hero__tab-progress > span {
    display: block;
    height: 100%;
    background: var(--color-green);
    transform: scaleX(0);
    transform-origin: left;
}

.hero__tab.is-active .hero__tab-progress > span {
    transform: scaleX(1);
}

.hero.is-autoplay .hero__tab.is-active .hero__tab-progress > span {
    animation: hero-progress var(--hero-interval, 7000ms) linear forwards;
}

.hero.is-autoplay.is-paused .hero__tab.is-active .hero__tab-progress > span {
    animation-play-state: paused;
}

@keyframes hero-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero__tab-number {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .04em;
    font-variant-numeric: tabular-nums;
}

.hero__tab-label {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    font-size: var(--fs-small);
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero__buttons {
    display: flex;
    flex: none;
    gap: 8px;
}

.hero__button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgb(255 255 255 / .45);
    border-radius: var(--radius);
    color: #fff;
    transition: background-color .3s, border-color .3s, color .3s;
}

.hero__button:hover {
    border-color: #fff;
    background: #fff;
    color: var(--color-ink);
}

.hero__button .icon {
    width: 18px;
    height: 18px;
}

.hero__icon-play,
.hero.is-user-paused .hero__icon-pause {
    display: none;
}

.hero.is-user-paused .hero__icon-play {
    display: block;
}

.no-js .hero__controls {
    display: none;
}

.hero :focus-visible {
    outline-color: #fff;
}

/* Tablets and small laptops: the copy spans most of the width, so the scrim
   darkens top to bottom rather than left to right. */
@media (max-width: 1199px) {
    .hero__scrim {
        background: linear-gradient(180deg, rgb(6 18 36 / .46) 0%, rgb(6 18 36 / .16) 16%, rgb(6 18 36 / .2) 34%, rgb(6 18 36 / .58) 56%, rgb(6 18 36 / .84) 100%);
    }
}

@media (max-width: 1023px) {
    .hero__pager {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        max-width: 420px;
    }

    .hero__tab-label {
        display: none;
    }
}

@media (max-width: 899px) {
    .hero__sectors {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        max-width: 520px;
        margin-top: 20px;
        margin-left: 0;
        clip-path: none;
    }

    .hero__sectors li {
        padding: 0 0 0 12px;
        border-left: 2px solid var(--color-green);
        font-size: .875rem;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: max(600px, 100vh);
        min-height: max(600px, 100svh);
    }

    .hero__inner {
        padding-top: calc(var(--header-h) + 24px);
        padding-bottom: 108px;
    }

    .hero__content {
        max-width: none;
    }

    .hero__kicker {
        margin-bottom: 18px;
    }

    .hero__text {
        margin-top: 18px;
        font-size: 1.0625rem;
    }

    .hero__actions {
        margin-top: 28px;
        gap: 10px;
    }

    .hero__actions .btn {
        min-height: 48px;
        padding: 0 20px;
    }

    .hero__pager {
        gap: 8px;
        max-width: 200px;
    }

    .hero__tab {
        padding-top: 12px;
    }

    .hero__button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 479px) {
    .hero__title {
        font-size: clamp(1.5rem, 9.2vw - 4px, 2.125rem);
    }
}

@media (min-width: 1800px) {
    .hero {
        min-height: clamp(640px, 100vh, 1200px);
        min-height: clamp(640px, 100svh, 1200px);
    }

    .hero__content {
        max-width: min(1100px, 62vw);
    }
}

@media (min-width: 2300px) {
    .hero__content {
        max-width: 1140px;
    }
}

@media (max-width: 400px) {
    .hero__actions .btn--outline-light {
        display: none;
    }
}

/* Very narrow phones: swipe and the numbered buttons navigate; keep pause. */
@media (max-width: 374px) {
    .hero__button--step {
        display: none;
    }
}

/* Short laptop screens: tighten the stack so the buttons stay above the fold. */
@media (min-width: 768px) and (max-height: 760px) {
    .hero__inner {
        padding-top: calc(var(--header-h) + 16px);
        padding-bottom: 116px;
    }

    .hero__kicker {
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: clamp(2.125rem, 1rem + 6.4svh, 4.125rem);
    }

    .hero__text {
        margin-top: 18px;
        font-size: 1.0625rem;
    }

    .hero__sectors {
        margin-top: 18px;
    }

    .hero__actions {
        margin-top: 26px;
    }
}

/* Landscape phones: a compact header and a headline-only hero. */
@media (max-height: 500px) and (orientation: landscape) {
    :root {
        --header-h: 64px;
        --header-h-compact: 56px;
    }

    .site-header__brand,
    .is-scrolled .site-header__brand {
        height: 32px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero__inner {
        padding-top: calc(var(--header-h) + 16px);
        padding-bottom: 72px;
    }

    .hero__kicker {
        margin-bottom: 10px;
    }

    .hero__title {
        font-size: clamp(1.625rem, 8.4svh, 2.25rem);
    }

    .hero__text,
    .hero__sectors {
        display: none;
    }

    .hero__actions {
        margin-top: 18px;
    }

    .hero__actions .btn {
        min-height: 44px;
    }

    .hero__controls-inner {
        padding-bottom: 12px;
    }

    .hero__pager {
        max-width: 200px;
    }

    .hero__tab {
        padding-top: 10px;
    }

    .hero__tab-label {
        display: none;
    }

    .hero__button {
        width: 40px;
        height: 40px;
    }
}


/* 9. About
   ========================================================================== */

.about__grid {
    display: grid;
    gap: clamp(56px, 7vw, 112px);
}

.about__media {
    position: relative;
}

.about__image {
    position: relative;
    aspect-ratio: 4 / 5;
}

/* Factual figure cut into the photo's corner */
.about__fact {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 10px;
    width: min(260px, 70%);
    padding: 26px 28px 28px;
    background: #fff;
}

.about__fact::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue) 0 28%, var(--color-green) 28% 100%);
}

.about__fact-value {
    font-size: clamp(2.75rem, 2.2rem + 1.8vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
    color: var(--color-blue);
}

.about__fact-label {
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-ink);
}

.about__title {
    font-size: var(--fs-h2);
}

.about__lead {
    margin-top: 28px;
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: var(--color-ink);
}

.about__sectors {
    margin-top: 32px;
}

.about__sectors-intro {
    font-size: .9375rem;
    color: var(--color-muted);
}

.about__sector-list {
    display: grid;
    gap: 0 32px;
    margin-top: 14px;
    border-top: 1px solid var(--color-line-strong);
}

.about__sector-list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-ink);
}

.about__sector-index {
    font-size: var(--fs-xs);
    font-variant-numeric: tabular-nums;
    color: var(--color-green-text);
}

.about__approach {
    margin-top: 28px;
}

.philosophy {
    position: relative;
    display: grid;
    gap: 36px;
    margin-top: clamp(72px, 8vw, 120px);
    padding: clamp(32px, 5vw, 64px);
    background: var(--color-bg-soft);
}

.philosophy::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue) 0 28%, var(--color-green) 28% 100%);
}

.philosophy__title {
    font-size: clamp(1.5rem, 1.25rem + .9vw, 2rem);
}

.philosophy__intro p {
    margin-top: 12px;
    color: var(--color-muted);
}

.philosophy__list {
    display: grid;
    gap: 0 40px;
    border-top: 1px solid var(--color-line);
}

.philosophy__item {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-ink);
}

.philosophy__index {
    font-size: var(--fs-xs);
    font-variant-numeric: tabular-nums;
    color: var(--color-blue);
}

@media (min-width: 600px) {
    .about__sector-list,
    .philosophy__list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 600px) and (max-width: 1023px) {
    .about__media {
        max-width: 560px;
    }

    .about__image {
        aspect-ratio: 1;
    }
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
        align-items: center;
    }

    .philosophy {
        grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
        gap: 64px;
    }

    .philosophy__list {
        border-top: 0;
    }

    .philosophy__item:nth-child(-n + 2) {
        padding-top: 0;
    }
}


/* 10. Businesses
   ========================================================================== */

.group-structure {
    display: none;
}

.businesses__grid {
    --grid-gap: 24px;

    position: relative;
    display: grid;
    gap: var(--grid-gap);
}

.business-card {
    position: relative;
}

.business-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    border: 1px solid var(--color-line);
    background: #fff;
    transition: box-shadow .5s var(--ease-out), border-color .5s;
}

.business-card:hover .business-card__inner {
    border-color: var(--color-line-strong);
    box-shadow: var(--shadow-md);
}

.business-card__inner {
    --card-pad: 28px;
}

.business-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dde5ee;
}

.business-card__media img {
    transition: transform 1.4s var(--ease-out);
}

.business-card:hover .business-card__media img {
    transform: scale(1.06);
}

.business-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 28px var(--card-pad) 30px;
}

.business-card__index {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-xs);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--color-blue);
}

.business-card__index::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--color-green);
    transition: width .6s var(--ease-out);
}

.business-card:hover .business-card__index::after {
    width: 56px;
}

.business-card__name {
    margin-top: 18px;
    font-size: 1.25rem;
    line-height: 1.28;
    letter-spacing: -.015em;
}

.business-card__sector {
    margin-top: 10px;
    font-size: var(--fs-small);
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-green-text);
}

.business-card__text {
    margin-top: 14px;
    font-size: .96875rem;
    line-height: 1.65;
    color: var(--color-muted);
}

.business-card__link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 24px;
}

/* Line up image, number, name, sector, text and link across each row of cards */
@media (min-width: 700px) {
    .businesses__grid {
        row-gap: var(--grid-gap);
    }

    .business-card,
    .business-card__inner {
        display: grid;
        grid-row: span 6;
        grid-template-rows: subgrid;
        row-gap: 0;
    }

    .business-card__body {
        display: grid;
        grid-row: span 5;
        grid-template-rows: subgrid;
        row-gap: 0;
    }

    /* The link keeps to the last row; a card without a sector line moves its
       text up beneath the name. */
    .business-card__link {
        grid-row: 5;
        align-self: end;
    }
}

/* Two per row; a lone card on the last row is centred */
@media (min-width: 700px) and (max-width: 1023px) {
    .businesses__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .business-card {
        grid-column: span 2;
    }

    .business-card:nth-child(2n + 1):last-child {
        grid-column: 2 / span 2;
    }
}

/* Three per row; the cards on a shorter last row are centred */
@media (min-width: 1024px) and (max-width: 1439px) {
    .businesses__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .business-card {
        grid-column: span 2;
    }

    .business-card:nth-child(3n + 1):nth-last-child(2) {
        grid-column: 2 / span 2;
    }

    .business-card:nth-child(3n + 1):last-child {
        grid-column: 3 / span 2;
    }
}

/* Wide screens: every company on one row, connected to the holding company.
   --count (set on the grid) is the number of companies. */
@media (min-width: 1440px) {
    .businesses__grid {
        grid-template-columns: repeat(var(--count, 4), minmax(0, 1fr));
        padding-top: 36px;
    }

    .businesses__grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: calc((100% - (var(--count, 4) - 1) * var(--grid-gap)) / (2 * var(--count, 4)));
        right: calc((100% - (var(--count, 4) - 1) * var(--grid-gap)) / (2 * var(--count, 4)));
        height: 1px;
        background: var(--color-line-strong);
    }

    .business-card::before {
        content: '';
        position: absolute;
        top: -36px;
        left: 50%;
        width: 1px;
        height: 36px;
        background: var(--color-line-strong);
    }

    .group-structure {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .group-structure::after {
        content: '';
        width: 1px;
        height: 36px;
        background: var(--color-line-strong);
    }

    .group-structure__node {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 15px 26px;
        background: var(--color-blue-deep);
        font-size: .9375rem;
        font-weight: 700;
        color: #fff;
    }

    .group-structure__node img {
        width: 18px;
        height: auto;
    }

    .business-card__inner {
        --card-pad: 24px;
    }

    .business-card__name {
        font-size: 1.125rem;
    }

    .business-card__text {
        font-size: .9375rem;
    }
}

@media (min-width: 1800px) {
    .business-card__inner {
        --card-pad: 28px;
    }

    .business-card__name {
        font-size: 1.25rem;
    }
}

/* Phones: a compact card — square photo beside the number and name, details
   below at full width — so the companies take far less scrolling. */
@media (max-width: 699px) {
    .businesses__grid {
        --grid-gap: 16px;
    }

    .business-card__inner {
        display: grid;
        grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        column-gap: 18px;
        padding: 18px 18px 20px;
    }

    .business-card__media {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        aspect-ratio: 1;
    }

    .business-card__body {
        display: contents;
    }

    .business-card__index,
    .business-card__name {
        grid-column: 2;
    }

    .business-card__name {
        margin-top: 10px;
        font-size: 1.0625rem;
    }

    .business-card__sector,
    .business-card__text,
    .business-card__link {
        grid-column: 1 / -1;
    }

    .business-card__sector {
        margin-top: 16px;
    }

    .business-card__link {
        padding-top: 18px;
    }
}


/* 11. Vision & mission
   ========================================================================== */

.vm {
    overflow: hidden;
}

.vm__watermark {
    position: absolute;
    top: 50%;
    right: -6%;
    width: min(46vw, 620px);
    height: auto;
    opacity: .035;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.vm__head {
    margin-bottom: clamp(44px, 5vw, 72px);
}

.vm__title {
    font-size: var(--fs-h2);
}

.vm__grid {
    position: relative;
    display: grid;
    border: 1px solid var(--color-line);
    background: #fff;
}

.vm__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(32px, 5vw, 72px);
}

.vm__panel::before {
    content: '';
    position: absolute;
    inset: -1px -1px auto;
    height: 4px;
    background: var(--color-blue);
}

.vm__panel--mission::before {
    background: var(--color-green);
}

.vm__label {
    margin-bottom: clamp(24px, 3.5vw, 40px);
    font-size: 1.125rem;
    letter-spacing: 0;
    color: var(--color-blue);
}

.vm__panel--mission .vm__label {
    color: var(--color-green-text);
}

.vm__statement {
    font-size: var(--fs-statement);
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: -.018em;
    color: var(--color-ink);
    text-wrap: balance;
}

@media (min-width: 1200px) {
    .vm__grid {
        grid-template-columns: 1fr 1fr;
    }

    .vm__panel + .vm__panel {
        border-left: 1px solid var(--color-line);
    }
}

@media (max-width: 1199px) {
    .vm__panel + .vm__panel {
        border-top: 1px solid var(--color-line);
    }
}

@media (max-width: 479px) {
    .vm__panel {
        padding: 32px 24px;
    }
}


/* 12. Core values
   ========================================================================== */

.values {
    overflow: hidden;
}

.values > .container {
    position: relative;
    z-index: 1;
}

.values__swoosh {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(240px, 36vw, 500px);
    transform: scaleX(-1);
}

.values__grid {
    display: grid;
    gap: 20px;
}

.value-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 32px 30px 34px;
    border: 1px solid var(--color-line);
    background: #fff;
    transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
}

/* Brand rule along the top edge; the green segment extends on hover */
.value-card::before,
.value-card::after {
    content: '';
    position: absolute;
    top: -1px;
    height: 3px;
}

.value-card::before {
    left: -1px;
    width: 16px;
    background: var(--color-blue);
}

.value-card::after {
    left: 20px;
    width: 40px;
    background: var(--color-green);
    transition: width .7s var(--ease-out);
}

.value-card:hover {
    border-color: var(--color-line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-card:hover::after {
    width: calc(100% - 19px);
}

.value-card__index {
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
    color: var(--color-blue);
}

.value-card__title {
    margin-top: 48px;
    font-size: var(--fs-h3);
}

.value-card__text {
    margin-top: 12px;
    font-size: .96875rem;
    line-height: 1.65;
    color: var(--color-muted);
}

.section--dark .value-card {
    border-color: rgb(255 255 255 / .14);
    background: rgb(255 255 255 / .03);
}

.section--dark .value-card:hover {
    border-color: rgb(255 255 255 / .34);
    background: rgb(255 255 255 / .06);
    box-shadow: none;
}

.section--dark .value-card__index {
    color: #8dbbf2;
}

.section--dark .value-card__text {
    color: rgb(255 255 255 / .74);
}

@media (min-width: 600px) {
    .values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1240px) {
    .values__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
}

/* Phones: a plain numbered list, like the other lists on the page */
@media (max-width: 599px) {
    .values__grid {
        gap: 0;
        border-top: 1px solid rgb(255 255 255 / .16);
    }

    .value-card,
    .section--dark .value-card,
    .section--dark .value-card:hover {
        display: grid;
        grid-template-columns: 28px minmax(0, 1fr);
        align-items: baseline;
        column-gap: 12px;
        min-height: 0;
        padding: 20px 0 22px;
        border: 0;
        border-bottom: 1px solid rgb(255 255 255 / .16);
        background: none;
        transform: none;
    }

    .value-card::before,
    .value-card::after {
        display: none;
    }

    .value-card__index {
        grid-row: span 2;
        font-size: var(--fs-xs);
        font-weight: 700;
        letter-spacing: 0;
    }

    .value-card__title {
        margin-top: 0;
    }

    .value-card__text {
        margin-top: 6px;
    }
}


/* 13. Leadership — Our Team: a section per leader
   ========================================================================== */

/* Each leader: the portrait beside their message, alternating sides on desktop */
.leader {
    display: grid;
    row-gap: 32px;
}

.leader + .leader {
    margin-top: clamp(72px, 8vw, 120px);
    padding-top: clamp(56px, 6vw, 96px);
    border-top: 1px solid var(--color-line);
}

/* Portrait with name, role and qualifications: a compact row below 1024px */
.leader__figure {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    align-items: center;
    column-gap: 22px;
    max-width: 560px;
}

.leader__photo {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-blue-tint);
}

/* Blue + green brand rule along the photo's lower edge */
.leader__photo::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue) 0 28%, var(--color-green) 28% 100%);
}

.leader__photo .picture {
    width: 100%;
}

.leader__initials {
    font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    font-weight: 700;
    color: var(--color-blue);
}

.leader__name {
    font-size: var(--fs-h3);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.015em;
    color: var(--color-ink);
}

.leader__role {
    margin-top: 8px;
    font-size: var(--fs-small);
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-blue);
}

.leader__credentials {
    margin-top: 6px;
    font-size: var(--fs-small);
    line-height: 1.5;
    color: var(--color-muted);
}

/* The message */
.leader__title {
    font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
    line-height: 1.15;
}

.letter__body {
    display: grid;
    gap: 1.15em;
    max-width: 60ch;
}

.leader__title + .letter__body {
    margin-top: 28px;
}

.letter__opening::before,
.letter__lead:first-child::before {
    content: '\201C';
    display: block;
    height: .42em;
    margin-bottom: 14px;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: .9;
    color: var(--color-green);
}

.letter__opening {
    font-size: var(--fs-lead);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -.01em;
    color: var(--color-blue);
}

.letter__lead {
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: var(--color-ink);
}

.letter__more {
    margin-top: 1.15em;
}

/* Focused when the letter is opened; the text itself needs no ring */
.letter__more p:focus {
    outline: none;
}

/* Phones only, while the rest of the letter is folded away */
.letter__toggle {
    display: none;
}

.signature {
    display: grid;
    justify-items: start;
    gap: 6px;
    max-width: 60ch;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-line);
}

.signature .brand-rule {
    margin-bottom: 14px;
}

.signature__name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.3;
    color: var(--color-ink);
}

.signature__role {
    font-size: .9375rem;
    line-height: 1.55;
    color: var(--color-muted);
}

@media (max-width: 767px) {
    .js .leader:not(.is-expanded) .letter__more {
        display: none;
    }

    .js .leader:not(.is-expanded) .letter__toggle {
        display: inline-flex;
        margin-top: 10px;
        padding-block: 12px;
    }
}

@media (max-width: 399px) {
    .leader__figure {
        grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
        column-gap: 16px;
    }

    .leader__name {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .leader {
        grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
        column-gap: clamp(48px, 6vw, 96px);
        align-items: start;
    }

    .leader--reverse {
        grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    }

    .leader--reverse .leader__figure {
        order: 2;
    }

    /* The portrait stays in view while the letter is read */
    .leader__figure {
        position: sticky;
        top: calc(var(--header-h-compact) + 40px);
        grid-template-columns: minmax(0, 1fr);
        row-gap: 24px;
        max-width: none;
    }

    /* Profile only (message not supplied yet): portrait beside large details,
       on the same columns as a message */
    .leader--profile {
        grid-template-columns: minmax(0, 1fr);
    }

    .leader--profile .leader__figure {
        position: static;
        grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
        column-gap: clamp(48px, 6vw, 96px);
        align-items: center;
    }

    .leader--profile.leader--reverse .leader__figure {
        order: 0;
        grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    }

    .leader--profile.leader--reverse .leader__photo {
        order: 2;
    }

    .leader--profile .leader__name {
        font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
        line-height: 1.15;
    }

    .leader--profile .leader__role {
        margin-top: 16px;
        font-size: 1rem;
    }

    .leader--profile .leader__credentials {
        margin-top: 8px;
        font-size: 1rem;
    }
}


/* 14. Contact
   ========================================================================== */

.contact {
    position: relative;
    padding-bottom: var(--section-y);
}

.contact__banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(460px, 44vw, 640px);
    overflow: hidden;
    isolation: isolate;
    background: var(--color-blue-deep);
    color: #fff;
}

.contact__banner-media {
    position: absolute;
    inset: -10% 0;
    z-index: -2;
}

.contact__banner-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgb(6 18 36 / .8) 0%, rgb(6 18 36 / .7) 40%, rgb(6 18 36 / .4) 60%, rgb(6 18 36 / 0) 84%),
        linear-gradient(180deg, rgb(6 18 36 / 0) 50%, rgb(6 18 36 / .3) 100%);
}

.contact__swoosh {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: clamp(160px, 30vw, 420px);
    transform: scaleX(-1);
}

.contact__banner-inner {
    padding-block: clamp(120px, 12vw, 176px) clamp(56px, 7vw, 104px);
}

.contact__banner-content {
    max-width: 780px;
}

.contact__title {
    font-size: clamp(1.5rem, 1.15rem + 2vw, 3rem);
    color: #fff;
}

.contact__text {
    margin-top: 24px;
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: rgb(255 255 255 / .86);
}

.contact__banner :focus-visible {
    outline-color: #fff;
}

.contact__grid {
    display: grid;
    gap: clamp(48px, 6vw, 80px);
    padding-top: clamp(56px, 7vw, 96px);
}

.contact__grid > * {
    min-width: 0;
}

.contact__subtitle {
    font-size: var(--fs-h3);
}

.contact__audiences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    margin-top: 20px;
    border-top: 1px solid var(--color-line-strong);
}

.contact__audiences li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: .96875rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-ink);
}

.contact__audiences li::before {
    content: '';
    flex: none;
    width: 6px;
    height: 6px;
    background: var(--color-green);
}

.contact__details {
    display: grid;
    gap: 22px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-line-strong);
}

.contact__detail {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-ink);
}

.contact__detail a:hover {
    color: var(--color-blue);
}

.contact__directions {
    display: flex;
    width: fit-content;
    margin-top: 6px;
    font-size: var(--fs-small);
}

.contact__directions .icon {
    width: 16px;
    height: 16px;
}

.link-arrow.contact__directions:hover .icon {
    transform: translate(2px, -2px);
}

.contact__detail-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-line);
    color: var(--color-blue);
}

.contact__detail-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--color-muted);
}

/* Enquiry form */
.enquiry-form {
    position: relative;
    padding: clamp(28px, 4.5vw, 56px);
    border: 1px solid var(--color-line);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.enquiry-form::before {
    content: '';
    position: absolute;
    inset: -1px -1px auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue) 0 28%, var(--color-green) 28% 100%);
}

.enquiry-form__title {
    font-size: clamp(1.375rem, 1.25rem + .5vw, 1.625rem);
}

.enquiry-form__note {
    margin-top: 8px;
    font-size: var(--fs-small);
    color: var(--color-muted);
}

.enquiry-form__grid {
    display: grid;
    gap: 22px 24px;
    margin-top: 32px;
}

.enquiry-form__footer {
    margin-top: 32px;
}

.enquiry-form.is-submitting [data-submit] .btn__icon {
    animation: nudge 1s var(--ease-in-out) infinite;
}

@keyframes nudge {
    50% { transform: translateX(5px); }
}

/* Honeypot — hidden from people, visible to naive bots */
.enquiry-form__trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field {
    display: grid;
    align-content: start;
    gap: 8px;
}

.form-field__label {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-ink);
}

.form-field__required {
    margin-left: 2px;
    color: var(--color-blue);
}

.form-field__optional {
    margin-left: 4px;
    font-weight: 500;
    color: var(--color-muted);
}

.form-field__control {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border: 1px solid #848fa0;
    border-radius: var(--radius);
    background: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-ink);
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

textarea.form-field__control {
    min-height: 168px;
    resize: vertical;
}

.form-field__control:hover {
    border-color: #5f6b7d;
}

.form-field__control:focus {
    outline: 2px solid var(--color-blue);
    outline-offset: 0;
    border-color: var(--color-blue);
}

.form-field.has-error .form-field__control {
    border-color: var(--color-error);
}

.form-field.has-error .form-field__control:focus {
    outline-color: var(--color-error);
}

.form-field__error {
    font-size: var(--fs-small);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-error);
}

.form-status {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 18px;
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1.5;
}

.form-status[hidden] {
    display: none;
}

.form-status:focus {
    outline: none;
}

.form-status .icon {
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.form-status--success {
    background: var(--color-green-tint);
    color: var(--color-success);
}

.form-status--error {
    background: var(--color-error-tint);
    color: var(--color-error);
}

@media (min-width: 640px) {
    .enquiry-form__grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-field--full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .contact__grid {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
        align-items: start;
    }
}

@media (min-width: 1280px) {
    /* The form rises into the banner, beside the paragraph and below the headline */
    .contact__form {
        position: relative;
        z-index: 2;
        margin-top: calc(-1 * clamp(120px, 12vw, 180px));
    }

    .contact__text {
        max-width: calc((min(100vw - 2 * var(--gutter), var(--container)) - clamp(48px, 6vw, 80px)) * 5 / 12);
    }
}

@media (min-width: 1024px) and (max-width: 1099px) {
    .contact__audiences {
        grid-template-columns: 1fr;
    }
}

/* Below 1280px the copy spans most of the width, so the scrim darkens top
   to bottom rather than left to right. */
@media (max-width: 1279px) {
    .contact__banner-scrim {
        background: linear-gradient(180deg, rgb(6 18 36 / .3) 0%, rgb(6 18 36 / .58) 38%, rgb(6 18 36 / .82) 100%);
    }
}

@media (max-width: 479px) {
    .contact__audiences {
        grid-template-columns: 1fr;
    }

    .enquiry-form__footer .btn {
        width: 100%;
    }
}


/* 15. Footer
   ========================================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: clamp(72px, 8vw, 112px);
    background: var(--color-footer);
    color: rgb(255 255 255 / .7);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue) 0 28%, var(--color-green) 28% 100%);
}

.site-footer__watermark {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 400px;
    height: auto;
    opacity: .05;
    filter: brightness(0) invert(1);
    pointer-events: none;
    user-select: none;
}

.site-footer__top {
    position: relative;
    display: grid;
    gap: 48px;
    padding-bottom: clamp(56px, 6vw, 88px);
}

.site-footer__logo-link {
    display: inline-block;
}

.site-footer__logo {
    width: auto;
    height: 44px;
}

.site-footer__tagline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
}

.site-footer__descriptor {
    max-width: 30ch;
    margin-top: 10px;
    font-size: .9375rem;
    line-height: 1.6;
}

.site-footer__heading {
    margin-bottom: 20px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
}

.site-footer__list {
    display: grid;
    gap: 12px;
    font-size: .9375rem;
    line-height: 1.45;
}

.site-footer__list a,
.site-footer__contact a,
.site-footer__top-link {
    transition: color .25s;
}

.site-footer__list a:hover,
.site-footer__contact a:hover,
.site-footer__top-link:hover {
    color: #fff;
}

.site-footer__contact {
    display: grid;
    gap: 14px;
    font-size: .9375rem;
    line-height: 1.5;
}

.site-footer__contact-item {
    display: flex;
    gap: 12px;
}

.site-footer__contact-item .icon {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--color-green);
}

.site-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.site-footer__social a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgb(255 255 255 / .18);
    color: #fff;
    transition: border-color .25s, background-color .25s;
}

.site-footer__social a:hover {
    border-color: #fff;
    background: rgb(255 255 255 / .08);
}

.site-footer__social .icon {
    width: 18px;
    height: 18px;
}

.site-footer__bottom {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 32px;
    padding-block: 28px;
    border-top: 1px solid rgb(255 255 255 / .1);
    font-size: var(--fs-small);
}

.site-footer__top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.site-footer__top-link .icon {
    width: 16px;
    height: 16px;
}

.site-footer :focus-visible {
    outline-color: #fff;
}

@media (min-width: 768px) {
    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__top--compact .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1100px) {
    .site-footer__top {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, 1.4fr) minmax(0, .9fr);
    }

    .site-footer__top--compact {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, 1.2fr);
    }

    .site-footer__top--compact .site-footer__brand {
        grid-column: auto;
    }
}


/* Error pages */
.error-page {
    display: grid;
    align-items: center;
    min-height: 70vh;
    padding-top: calc(var(--header-h) + var(--section-y) / 2);
}

.error-page__title {
    max-width: 18ch;
    font-size: var(--fs-h2);
}

.error-page__text {
    max-width: 48ch;
    margin: 20px 0 36px;
    font-size: var(--fs-lead);
    color: var(--color-muted);
}


/* 16. Motion
   ========================================================================== */

/* Hero text reveal (runs once the carousel script is ready) */
.js .hero__line > span {
    transform: translate3d(0, 130%, 0);
    transition: transform 1s var(--ease-out) 1.2s;
}

.js .hero__kicker,
.js .hero__text,
.js .hero__sectors,
.js .hero__actions {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity .8s var(--ease-out) 1.2s, transform .9s var(--ease-out) 1.2s;
}

.js .hero.is-ready .is-active .hero__line > span,
.js .hero.is-ready .is-active :is(.hero__kicker, .hero__text, .hero__sectors, .hero__actions) {
    opacity: 1;
    transform: none;
}

/* The first slide's paragraph is the LCP element: paint it immediately and
   only slide it into place, so it does not wait for app.js and a fade. */
.js .hero__slide:first-child .hero__text {
    opacity: 1;
}

.js .hero.is-ready .is-active .hero__kicker { transition-delay: .15s; }
.js .hero.is-ready .is-active .hero__line:nth-child(1) > span { transition-delay: .25s; }
.js .hero.is-ready .is-active .hero__line:nth-child(2) > span { transition-delay: .35s; }
.js .hero.is-ready .is-active .hero__line:nth-child(3) > span { transition-delay: .45s; }
.js .hero.is-ready .is-active .hero__text { transition-delay: .6s; }
.js .hero.is-ready .is-active .hero__sectors { transition-delay: .7s; }
.js .hero.is-ready .is-active .hero__actions { transition-delay: .8s; }

/* Scroll reveals */
.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity .9s var(--ease-out), transform 1.1s var(--ease-out);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.js [data-reveal-delay='1'] { transition-delay: .08s; }
.js [data-reveal-delay='2'] { transition-delay: .16s; }
.js [data-reveal-delay='3'] { transition-delay: .24s; }
.js [data-reveal-delay='4'] { transition-delay: .32s; }

/* Brand rules draw in with their eyebrow */
.js .eyebrow[data-reveal] .brand-rule::before,
.js .eyebrow[data-reveal] .brand-rule::after {
    transform: scaleX(0);
    transition: transform .8s var(--ease-out) .2s;
}

.js .eyebrow[data-reveal] .brand-rule::after {
    transition-delay: .32s;
}

.js .eyebrow[data-reveal].is-visible .brand-rule::before,
.js .eyebrow[data-reveal].is-visible .brand-rule::after {
    transform: none;
}

/* Heading text reveal: words rise from a mask (split by app.js) */
.split-word {
    display: inline-block;
    overflow: hidden;
    /* Mask room for descenders and the final glyph; the negative margins keep spacing unchanged */
    padding: 0 .08em .2em 0;
    margin: 0 -.08em -.2em 0;
    vertical-align: top;
}

.split-word > span {
    display: inline-block;
    transform: translate3d(0, 130%, 0);
    transition: transform 1s var(--ease-out);
    transition-delay: calc(var(--word, 0) * 45ms);
}

.is-visible .split-word > span,
.is-visible.split-word > span {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        transition-delay: 0s !important;
    }

    .js [data-reveal],
    .js .hero__kicker,
    .js .hero__text,
    .js .hero__sectors,
    .js .hero__actions,
    .js .hero__line > span,
    .split-word > span {
        opacity: 1;
        transform: none;
    }

    .hero__media,
    .hero__media img,
    .parallax-media > .picture {
        transform: none !important;
        animation: none !important;
    }
}


/* 17. Utilities
   ========================================================================== */

.icon {
    flex: none;
    width: 20px;
    height: 20px;
}

.nowrap {
    white-space: nowrap;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 12px 20px;
    background: var(--color-blue);
    color: #fff;
    font-weight: 700;
    transform: translateY(-200%);
    transition: transform .2s;
}

.skip-link:focus {
    transform: none;
}

@media print {
    .site-header,
    .hero__controls,
    .enquiry-form,
    .site-footer__watermark,
    .vm__watermark {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 0;
        color: var(--color-ink);
    }

    .js [data-reveal],
    .split-word > span {
        opacity: 1 !important;
        transform: none !important;
    }
}
