/* ==========================================================================
   Beckon — Pure Water Brilliance
   Single page site. Brand system derived from the Beckon corporate brochure.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* brand — sampled from the Beckon logo */
    --navy: #132c46;
    --navy-deep: #0a1a2c;
    --navy-soft: #1e4066;
    --gold-dark: #ba8a34;
    --gold: #d9b44a;
    --gold-light: #fff3a8;
    --steel: #8fa9c6;

    /* surface */
    --paper: #ececeb;
    --paper-2: #f5f5f3;
    --white: #ffffff;

    /* ink */
    --ink: #0f1c28;
    --muted: #5d6b79;
    --faint: #94a1ad;
    --line: rgba(19, 44, 70, 0.14);
    --line-soft: rgba(19, 44, 70, 0.08);

    /* type */
    --ff-display: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
    --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

    /* metrics */
    --shell: clamp(20px, 4.6vw, 76px);
    --maxw: 1600px;
    --header-h: 84px;
    --gap: clamp(20px, 2.4vw, 40px);
    --sect-y: clamp(88px, 11vw, 176px);

    /* motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
    --dur: 0.9s;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--shell);
}

.band {
    padding-block: var(--sect-y);
}

.band--white {
    background: var(--white);
}

.band--paper {
    background: var(--paper);
}

.band--paper2 {
    background: var(--paper-2);
}

.band--navy {
    background: var(--navy-deep);
    color: #fff;
}

.section {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.grid {
    display: grid;
    gap: var(--gap);
}

.hr {
    height: 1px;
    background: var(--line);
    border: 0;
    margin: 0;
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.d-hero {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(3.6rem, 11.6vw, 12.4rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    color: var(--navy);
}

.d-1 {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(2.5rem, 6.4vw, 6.2rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: var(--navy);
}

.d-2 {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(2rem, 4.1vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--navy);
}

.d-3 {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(1.35rem, 1.85vw, 1.8rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--navy);
}

/* big editorial statement paragraph — the signature move of the reference UI */
.statement {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(1.55rem, 3.35vw, 3.15rem);
    line-height: 1.16;
    letter-spacing: -0.032em;
    color: var(--navy);
}

.lede {
    font-size: clamp(1rem, 1.15vw, 1.16rem);
    line-height: 1.7;
    color: var(--muted);
}

.body-sm {
    font-size: 0.875rem;
    line-height: 1.72;
    color: var(--muted);
}

.label {
    font-family: var(--ff-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--faint);
    line-height: 1.4;
}

.label--gold {
    color: var(--gold-dark);
}

.label--steel {
    color: var(--steel);
}

.rule {
    width: 56px;
    height: 4px;
    background: var(--steel);
    border-radius: 2px;
    margin-top: 22px;
}

.rule--gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.on-dark .d-1,
.on-dark .d-2,
.on-dark .d-3,
.on-dark .statement,
.band--navy .d-1,
.band--navy .d-2,
.band--navy .d-3,
.band--navy .statement {
    color: #fff;
}

.band--navy .lede,
.band--navy .body-sm {
    color: rgba(255, 255, 255, 0.66);
}

.gold-text {
    background: linear-gradient(96deg, var(--gold-dark) 0%, var(--gold-light) 48%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --------------------------------------------------------------------------
   5. Section heads
   -------------------------------------------------------------------------- */
.sect-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    margin-bottom: clamp(44px, 5.5vw, 84px);
}

@media (min-width: 900px) {
    .sect-head--split {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: var(--gap);
        align-items: end;
    }
}

.sect-head__index {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.sect-head__index::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
    max-width: 220px;
}

.band--navy .sect-head__index::after {
    background: rgba(255, 255, 255, 0.18);
}

/* --------------------------------------------------------------------------
   6. Buttons / links
   -------------------------------------------------------------------------- */
.btn {
    --btn-bg: var(--navy);
    --btn-fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.45s var(--ease), transform 0.45s var(--ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg, var(--gold-dark), var(--gold-light) 55%, var(--gold-dark));
    transform: translateY(101%);
    transition: transform 0.55s var(--ease);
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: translateY(0);
}

.btn:hover,
.btn:focus-visible {
    color: var(--navy-deep);
}

.btn__ico {
    width: 15px;
    height: 15px;
    flex: none;
    transition: transform 0.45s var(--ease);
}

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

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--navy);
    box-shadow: inset 0 0 0 1px var(--line);
}

.btn--light {
    --btn-bg: #fff;
    --btn-fg: var(--navy);
}

/* underline-on-hover text link */
.tlink {
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tlink::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.tlink:hover::after,
.tlink:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --------------------------------------------------------------------------
   7. Preloader
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: var(--paper);
    transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.preloader__inner {
    display: grid;
    justify-items: center;
    gap: 26px;
}

.preloader__mark {
    width: 62px;
    height: 62px;
    animation: pl-float 2.2s var(--ease-io) infinite;
}

.preloader__bar {
    width: 168px;
    height: 2px;
    background: var(--line);
    overflow: hidden;
    border-radius: 2px;
}

.preloader__bar i {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: width 0.35s linear;
}

.preloader__word {
    font-family: var(--ff-body);
    font-size: 0.625rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--faint);
}

@keyframes pl-float {
    0%,
    100% {
        transform: translateY(-5px) scale(1);
    }
    50% {
        transform: translateY(5px) scale(0.96);
    }
}

body.is-loaded .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   8. Scroll progress + cursor
   -------------------------------------------------------------------------- */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    border: 1px solid rgba(19, 44, 70, 0.42);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, width 0.35s var(--ease), height 0.35s var(--ease),
        margin 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease);
    will-change: transform;
}

.cursor.is-on {
    opacity: 1;
}

.cursor.is-hot {
    width: 62px;
    height: 62px;
    margin: -31px 0 0 -31px;
    background: rgba(217, 180, 74, 0.16);
    border-color: rgba(186, 138, 52, 0.5);
}

.cursor.is-dark {
    border-color: rgba(255, 255, 255, 0.5);
}

@media (hover: none), (pointer: coarse) {
    .cursor {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   9. Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: transform 0.55s var(--ease), background-color 0.4s var(--ease),
        box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}

.header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 1px 0 var(--line-soft);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.header.is-stuck::after {
    opacity: 1;
}

/* the header sits above the overlay, so its light bar must not band across it */
body.menu-open .header::after {
    opacity: 0;
}

.header.is-stuck {
    height: 70px;
}

.header.is-hidden {
    transform: translateY(-100%);
}

.header__in {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--shell);
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.brand {
    position: relative;
    display: flex;
    align-items: center;
    flex: none;
}

.brand img {
    height: 34px;
    width: auto;
    transition: height 0.4s var(--ease), opacity 0.4s var(--ease);
}

.header.is-stuck .brand img {
    height: 29px;
}

/* the navy wordmark disappears against the dark menu, so swap in the light one */
.brand__light {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
}

body.menu-open .brand__dark {
    opacity: 0;
}

body.menu-open .brand__light {
    opacity: 1;
}

body.menu-open .burger span {
    background: #fff;
}

body.menu-open .burger {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

.nav__list {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.1vw, 16px);
}

.nav__link {
    position: relative;
    display: block;
    padding: 9px 12px;
    font-size: 0.8125rem;
    font-weight: 450;
    letter-spacing: 0.01em;
    color: var(--navy);
    border-radius: 999px;
    transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 1px;
    background: var(--gold-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease);
}

.nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__link.is-active {
    background: var(--navy);
    color: #fff;
}

.nav__link.is-active::after {
    display: none;
}

.header__cta {
    display: none;
    align-items: center;
    gap: 18px;
    flex: none;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--navy);
    white-space: nowrap;
}

.header__phone svg {
    width: 14px;
    height: 14px;
    color: var(--gold-dark);
}

.header .btn {
    padding: 12px 22px;
    font-size: 0.6875rem;
}

@media (min-width: 1080px) {
    .nav,
    .header__cta {
        display: flex;
    }
}

/* burger */
.burger {
    margin-left: auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px var(--line);
    flex: none;
}

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), width 0.45s var(--ease);
}

.burger span:nth-child(2) {
    width: 12px;
    margin-left: auto;
}

body.menu-open .burger span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
}

body.menu-open .burger span:nth-child(2) {
    width: 18px;
    transform: translateY(-3.75px) rotate(-45deg);
}

@media (min-width: 1080px) {
    .burger {
        display: none;
    }
}

/* --- header over the dark hero ------------------------------------------
   Until it sticks, the bar floats over the full-bleed hero slider, so every
   piece of it has to invert. Past 24px the white blurred bar takes over and
   the default navy ink is correct again. */
.header:not(.is-stuck) .brand__dark {
    opacity: 0;
}

.header:not(.is-stuck) .brand__light {
    opacity: 1;
}

.header:not(.is-stuck) .nav__link,
.header:not(.is-stuck) .header__phone {
    color: #fff;
}

.header:not(.is-stuck) .header__phone svg {
    color: var(--gold);
}

.header:not(.is-stuck) .nav__link::after {
    background: var(--gold);
}

.header:not(.is-stuck) .nav__link.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.header:not(.is-stuck) .btn {
    --btn-bg: #fff;
    --btn-fg: var(--navy);
}

.header:not(.is-stuck) .burger {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.header:not(.is-stuck) .burger span {
    background: #fff;
}

/* --------------------------------------------------------------------------
   10. Mobile menu overlay
   -------------------------------------------------------------------------- */
.menu {
    position: fixed;
    inset: 0;
    z-index: 79;
    background: var(--navy-deep);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + 24px) var(--shell) 40px;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s var(--ease);
    overflow-y: auto;
}

body.menu-open .menu {
    clip-path: inset(0 0 0 0);
}

.menu__list {
    display: grid;
    gap: 2px;
    max-width: 640px;
}

.menu__item {
    overflow: hidden;
}

.menu__link {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    font-family: var(--ff-display);
    font-size: clamp(2rem, 8vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.06;
    color: #fff;
    transform: translateY(110%);
    transition: transform 0.8s var(--ease), color 0.3s;
}

body.menu-open .menu__link {
    transform: translateY(0);
    transition-delay: calc(0.06s * var(--i, 0) + 0.12s);
}

.menu__link:hover {
    color: var(--gold);
}

.menu__num {
    font-family: var(--ff-body);
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    flex: none;
}

.menu__foot {
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.6s var(--ease) 0.5s;
}

body.menu-open .menu__foot {
    opacity: 1;
}

.menu__foot a:hover {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   11. Reveal animations
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    transition-delay: calc(var(--d, 0) * 1ms);
}

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

[data-reveal="fade"] {
    transform: none;
}

[data-reveal="right"] {
    transform: translateX(-34px);
}

[data-reveal="left"] {
    transform: translateX(34px);
}

[data-reveal="scale"] {
    transform: scale(0.94);
}

/* line-by-line headline reveal */
.lines {
    display: block;
}

/* the clip box has to clear the descenders that a sub-1 line-height pushes
   past the line box, or tails like the "y" in Purity get sliced off */
.lines .ln {
    display: block;
    overflow: hidden;
    padding-bottom: 0.26em;
    margin-bottom: -0.26em;
}

.lines .ln > span {
    display: block;
    transform: translateY(112%);
    transition: transform 1.05s var(--ease);
    transition-delay: calc(var(--d, 0) * 1ms);
}

.lines.is-in .ln > span {
    transform: translateY(0);
}

/* image clip reveal */
.img-clip {
    position: relative;
    overflow: hidden;
    background: var(--paper-2);
}

.img-clip > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.16);
    transition: transform 1.5s var(--ease), opacity 1.2s var(--ease);
}

.img-clip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--paper);
    transform-origin: bottom;
    transition: transform 1.15s var(--ease);
}

.img-clip.is-in > img {
    transform: scale(1);
}

.img-clip.is-in::after {
    transform: scaleY(0);
}

/* --------------------------------------------------------------------------
   12. Hero — full-bleed image slider
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    /* svh keeps mobile browser chrome from pushing the controls out of view */
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: calc(var(--header-h) + clamp(18px, 4vw, 56px));
    padding-bottom: clamp(20px, 2.6vw, 36px);
    background: var(--navy-deep);
    overflow: hidden;
    isolation: isolate;
}

/* --- backdrop ---------------------------------------------------------- */
.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hmedia {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease), visibility 1.2s;
}

.hmedia.is-active {
    opacity: 1;
    visibility: visible;
}

.hmedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
}

/* slow push-in on the live frame only — it starts fresh on every swap, so the
   motion reads as one continuous drift across the whole slider */
.hmedia.is-active img {
    animation: heroZoom 9s var(--ease-io) forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.16);
    }
}

/* scrim — navy wash plus a bottom-left gradient so the copy always has ink
   under it whatever the photograph is doing */
.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(102deg, rgba(10, 26, 44, 0.9) 0%, rgba(10, 26, 44, 0.66) 42%, rgba(10, 26, 44, 0.3) 78%),
        linear-gradient(0deg, rgba(10, 26, 44, 0.78) 0%, rgba(10, 26, 44, 0.12) 46%);
}

/* --- copy stack -------------------------------------------------------- */
.hero__inner {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(20px, 3vw, 40px);
}

.hero__slides {
    position: relative;
    width: 100%;
}

.hslide {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 46rem;
    visibility: hidden;
}

.hslide.is-active,
.hslide.is-out {
    visibility: visible;
}

/* the first slide holds the stack open so swapping never reflows the page */
.hslide.is-active {
    position: relative;
}

.hslide__eyebrow {
    display: block;
    margin-bottom: clamp(12px, 1.4vw, 20px);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s var(--ease), transform 0.7s var(--ease);
}

.hslide.is-active .hslide__eyebrow {
    opacity: 1;
    transform: none;
    transition-delay: 0.12s;
}

/* the headline answers to viewport height as well as width, so the controls
   below it stay on screen on a short laptop window */
.hero .d-hero {
    font-size: clamp(2.6rem, min(7.4vw, 11.4vh), 7.4rem);
    line-height: 0.94;
    color: #fff;
    max-width: 14ch;
    text-shadow: 0 2px 40px rgba(10, 26, 44, 0.35);
}

/* the shared .lines machinery drives the per-line reveal; the slider adds
   the matching exit so outgoing copy leaves the way the next one arrives */
.hslide .ln > span {
    transform: translateY(112%);
}

.hslide.is-active .ln > span {
    transform: translateY(0);
    transition-delay: calc(var(--d, 0) * 1ms + 60ms);
}

.hslide.is-out .ln > span {
    transform: translateY(-112%);
    transition: transform 0.72s var(--ease);
    transition-delay: calc(var(--d, 0) * 0.55ms);
}

.hslide__copy,
.hslide .hero__meta,
.hslide__cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.8s var(--ease);
}

.hslide.is-active .hslide__copy {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.hslide.is-active .hero__meta {
    opacity: 1;
    transform: none;
    transition-delay: 0.38s;
}

.hslide.is-active .hslide__cta {
    opacity: 1;
    transform: none;
    transition-delay: 0.46s;
}

.hslide__copy {
    margin-top: clamp(14px, 1.8vw, 24px);
    max-width: 42ch;
    font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.hslide__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 26px;
    margin-top: clamp(18px, 2.2vw, 30px);
}

.hslide__cta .tlink {
    color: #fff;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: clamp(14px, 1.6vw, 22px);
}

.hero__meta span {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__meta span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
}

/* --- slider controls --------------------------------------------------- */
.hero__ctrl {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding-top: clamp(18px, 2vw, 26px);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
}

.hero__arrow svg {
    width: 16px;
    height: 16px;
}

.hero__arrow:hover {
    background: #fff;
    color: var(--navy);
    box-shadow: inset 0 0 0 1px #fff;
}

.hero__count {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-left: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
}

.hero__count b {
    font-weight: 500;
    color: #fff;
}

.hero__count i {
    font-style: normal;
    opacity: 0.5;
}

.hero__dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px;
}

.hdot {
    position: relative;
    padding: 8px 4px 12px;
    margin-right: 18px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.4s var(--ease);
}

.hdot:last-child {
    margin-right: 0;
}

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

.hdot i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.hdot i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
}

/* the active dot's rule doubles as the autoplay progress bar */
.hdot.is-active i::after {
    transform: scaleX(1);
    transition: transform linear;
    transition-duration: var(--hero-dur, 6s);
}

.hero.is-paused .hdot.is-active i::after {
    transition: none;
}

@media (max-width: 700px) {
    .hdot span {
        display: none;
    }

    .hdot {
        width: 26px;
        margin-right: 10px;
        padding-top: 14px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: calc(var(--header-h) + 24px);
    }

    /* portrait phones have height to spare — centre the slide so the copy
       isn't stranded at the bottom under a wall of empty sky */
    .hero__inner {
        align-items: center;
    }

    .hero .d-hero {
        font-size: clamp(2.6rem, 12.5vw, 4.4rem);
    }

    .hslide__copy {
        font-size: 0.9375rem;
    }

    .hslide__cta .btn {
        padding: 14px 24px;
    }
}

/* short, wide windows (laptops in landscape) — keep the whole slide on screen */
@media (min-width: 980px) and (max-height: 760px) {
    .hero .d-hero {
        font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    }

    .hslide__copy {
        margin-top: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hmedia.is-active img {
        animation: none;
        transform: scale(1.02);
    }
}

/* --------------------------------------------------------------------------
   13. Stat strip
   -------------------------------------------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

@media (min-width: 780px) {
    .stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.stat {
    padding: clamp(26px, 3.2vw, 44px) clamp(16px, 2vw, 30px) clamp(26px, 3.2vw, 44px) 0;
    border-bottom: 1px solid var(--line);
}

@media (min-width: 780px) {
    .stat {
        border-bottom: 0;
        border-right: 1px solid var(--line);
    }

    .stat:last-child {
        border-right: 0;
        padding-right: 0;
    }
}

.stat__n {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
    color: var(--navy);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat__n sup {
    font-size: 0.36em;
    letter-spacing: 0;
    top: -1.2em;
    color: var(--gold-dark);
}

.stat__t {
    margin-top: 12px;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--muted);
    max-width: 22ch;
}

/* --------------------------------------------------------------------------
   13b. Process — pinned intro, scrolling steps
   -------------------------------------------------------------------------- */
.proc {
    display: grid;
    gap: clamp(38px, 5vw, 90px);
}

@media (min-width: 980px) {
    .proc {
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
        align-items: start;
    }

    .proc__aside {
        position: sticky;
        top: calc(var(--header-h) + clamp(28px, 5vh, 74px));
    }
}

.proc__list {
    display: grid;
    gap: 0;
    counter-reset: step;
    border-top: 1px solid var(--line);
}

.proc__step {
    position: relative;
    display: grid;
    grid-template-columns: clamp(56px, 8vw, 116px) minmax(0, 1fr);
    gap: clamp(14px, 2.4vw, 34px);
    padding: clamp(28px, 3.6vw, 52px) 0;
    border-bottom: 1px solid var(--line);
}

.proc__step::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s var(--ease) 0.15s;
}

.proc__step.is-in::after {
    transform: scaleX(1);
}

.proc__n {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px var(--steel);
    transition: color 0.6s var(--ease), -webkit-text-stroke-color 0.6s var(--ease);
}

.proc__step:hover .proc__n {
    color: var(--navy);
    -webkit-text-stroke-color: var(--navy);
}

.proc__body {
    display: grid;
    gap: 12px;
    align-content: start;
}

.proc__t {
    font-family: var(--ff-display);
    font-size: clamp(1.25rem, 2.1vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.16;
    color: var(--navy);
}

.proc__d {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 54ch;
}

/* --------------------------------------------------------------------------
   13c. Capabilities index — rows with a cursor-tracked preview
   -------------------------------------------------------------------------- */
.idx {
    position: relative;
    border-top: 1px solid var(--line);
}

.idx__row {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 10px 18px;
    padding: clamp(20px, 2.6vw, 34px) 0;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

@media (min-width: 900px) {
    .idx__row {
        grid-template-columns: 62px minmax(0, 1fr) minmax(0, 0.62fr) 52px;
        padding-inline: clamp(6px, 1vw, 18px);
    }
}

/* the sweep that fills the row on hover */
.idx__row::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--navy);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.55s var(--ease);
}

.idx__row:hover::before,
.idx__row:focus-visible::before {
    transform: scaleY(1);
    transform-origin: top;
}

.idx__n {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    color: var(--faint);
    transition: color 0.45s var(--ease);
}

.idx__t {
    font-family: var(--ff-display);
    font-size: clamp(1.35rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--navy);
    transition: color 0.45s var(--ease), transform 0.6s var(--ease);
}

.idx__m {
    grid-column: 2;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    color: var(--muted);
    transition: color 0.45s var(--ease);
}

@media (min-width: 900px) {
    .idx__m {
        grid-column: auto;
        text-align: right;
    }

    .idx__row:hover .idx__t {
        transform: translateX(14px);
    }
}

.idx__go {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--navy);
    box-shadow: inset 0 0 0 1px var(--line);
    justify-self: end;
    transition: color 0.45s var(--ease), box-shadow 0.45s var(--ease),
        transform 0.5s var(--ease);
}

.idx__go svg {
    width: 14px;
    height: 14px;
}

.idx__row:hover .idx__n,
.idx__row:hover .idx__t,
.idx__row:hover .idx__m,
.idx__row:hover .idx__go {
    color: #fff;
}

.idx__row:hover .idx__m {
    color: rgba(255, 255, 255, 0.66);
}

.idx__row:hover .idx__n {
    color: var(--gold);
}

.idx__row:hover .idx__go {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

/* floating preview — desktop pointers only */
.idx__float {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 260px;
    height: 320px;
    margin: -160px 0 0 -130px;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 30px 60px -30px rgba(10, 26, 44, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
    pointer-events: none;
    will-change: transform;
}

.idx__float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.idx__float.is-on {
    opacity: 1;
}

@media (hover: none), (pointer: coarse), (max-width: 899px) {
    .idx__float {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   13d. Quote band
   -------------------------------------------------------------------------- */
.quote {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
    padding-block: clamp(80px, 11vw, 170px);
}

.quote__bg {
    position: absolute;
    inset: 0;
}

.quote__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.quote__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 50%, transparent 0%, rgba(10, 26, 44, 0.72) 100%);
}

.quote__in {
    position: relative;
    margin: 0;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: clamp(26px, 3.4vw, 46px);
}

.quote__mark {
    width: clamp(46px, 5vw, 68px);
    height: auto;
}

.quote__text {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 3.1vw, 3rem);
    line-height: 1.24;
    letter-spacing: -0.032em;
    color: #fff;
    max-width: 24ch;
}

@media (min-width: 900px) {
    .quote__text {
        max-width: none;
    }
}

.quote__cite {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   14. Split feature (image + copy)
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    gap: clamp(30px, 4vw, 74px);
    align-items: center;
}

@media (min-width: 940px) {
    .split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .split--wide-l {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    }

    .split--wide-r {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

    .split--flip > *:first-child {
        order: 2;
    }
}

.split__copy {
    display: grid;
    gap: 24px;
    align-content: start;
}

.split__copy p {
    max-width: 56ch;
}

/* framed image with a corner pill tag — from the reference UI */
.frame {
    position: relative;
}

.frame .img-clip {
    aspect-ratio: var(--ar, 4 / 5);
}

.frame__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    box-shadow: 0 4px 18px rgba(10, 26, 44, 0.09);
}

.frame__tag--r {
    left: auto;
    right: 16px;
}

.frame__cap {
    margin-top: 18px;
    font-size: 0.8125rem;
    line-height: 1.66;
    color: var(--muted);
    max-width: 46ch;
}

/* --------------------------------------------------------------------------
   15. Feature list (ticks)
   -------------------------------------------------------------------------- */
.ticks {
    display: grid;
    gap: 2px;
}

.ticks li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ink);
}

.band--navy .ticks li {
    color: rgba(255, 255, 255, 0.86);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.ticks li::before {
    content: "";
    flex: none;
    width: 7px;
    height: 7px;
    margin-top: 0.55em;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
}

.ticks--plain li::before {
    border-radius: 1px;
    background: var(--steel);
}

/* --------------------------------------------------------------------------
   16. BECKON acronym
   -------------------------------------------------------------------------- */
.acr {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.acr__row {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: clamp(16px, 3vw, 48px);
    align-items: start;
    padding: clamp(24px, 3vw, 38px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: padding-left 0.6s var(--ease);
}

@media (min-width: 860px) {
    .acr__row {
        grid-template-columns: 110px minmax(0, 0.72fr) minmax(0, 1fr);
        align-items: center;
    }

    .acr__row:hover {
        padding-left: 16px;
    }
}

.acr__letter {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    font-weight: 500;
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.6s var(--ease);
}

.acr__row:hover .acr__letter {
    background: linear-gradient(140deg, var(--gold-dark), var(--gold-light) 60%, var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.acr__title {
    font-family: var(--ff-display);
    font-size: clamp(1.25rem, 2.1vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.028em;
    line-height: 1.15;
    color: #fff;
}

.acr__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 52ch;
}

@media (max-width: 859px) {
    .acr__desc {
        grid-column: 2;
        margin-top: 8px;
    }
}

/* --------------------------------------------------------------------------
   17. Marquee watermark band
   -------------------------------------------------------------------------- */
.marq {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
}

.marq__bg {
    position: absolute;
    inset: 0;
}

.marq__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.marq__in {
    position: relative;
    padding-block: clamp(70px, 9vw, 140px);
}

.marq__track {
    display: flex;
    width: max-content;
    animation: marq 34s linear infinite;
}

.marq__track span {
    font-family: var(--ff-display);
    font-size: clamp(4rem, 13vw, 12rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.13);
    padding-right: 0.24em;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes marq {
    to {
        transform: translateX(-50%);
    }
}

.marq__copy {
    position: relative;
    margin-top: clamp(24px, 4vw, 54px);
}

/* --------------------------------------------------------------------------
   18. Solutions
   -------------------------------------------------------------------------- */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tab {
    padding: 11px 22px;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px var(--line);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
}

.tab:hover {
    color: var(--navy);
    box-shadow: inset 0 0 0 1px var(--navy);
}

.tab.is-active {
    background: var(--navy);
    color: #fff;
    box-shadow: inset 0 0 0 1px var(--navy);
}

.sol {
    display: grid;
    gap: clamp(30px, 4.4vw, 78px);
}

.sol__group {
    display: grid;
    gap: clamp(26px, 3.4vw, 58px);
}

.sol__group[hidden] {
    display: none;
}

.sol__head {
    display: grid;
    gap: 16px;
    max-width: 62ch;
}

/* card grid */
.cards {
    display: grid;
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

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

@media (min-width: 1120px) {
    .cards--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card {
    position: relative;
    background: var(--white);
    padding: clamp(26px, 2.6vw, 42px);
    display: grid;
    gap: 14px;
    align-content: start;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.5s var(--ease);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--navy);
    transform: translateY(100%);
    transition: transform 0.7s var(--ease);
}

.card:hover::before {
    transform: translateY(0);
}

.card:hover,
.card:hover .card__d,
.card:hover .card__t,
.card:hover .card__i {
    color: #fff;
}

.card:hover .ticks li {
    color: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.card__i {
    font-family: var(--ff-body);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    transition: color 0.5s var(--ease);
}

.card__t {
    font-family: var(--ff-display);
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.028em;
    line-height: 1.2;
    color: var(--navy);
    transition: color 0.5s var(--ease);
}

.card__d {
    font-size: 0.9375rem;
    line-height: 1.68;
    color: var(--muted);
    transition: color 0.5s var(--ease);
}

.card__media {
    margin: 4px 0 6px;
    /* 5:4 rather than 16:11 — these are portrait product shots, and the wider
       frame left them height-starved at about half the available width. */
    aspect-ratio: 5 / 4;
    padding: 14px;
    background: var(--paper-2);
    border-radius: 3px;
    overflow: hidden;
    transition: background-color 0.5s var(--ease);
}

.card:hover .card__media {
    background: rgba(255, 255, 255, 0.07);
}

/* Percentage max-height does not resolve against the aspect-ratio box, so the
   product shots used to overflow and get clipped. Size to the padding box and
   let object-fit letterbox instead — keeps every product whole, and the 2x art
   stays downscaled rather than blurred up on high-DPI screens. */
.card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
    transition: transform 0.7s var(--ease);
}

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

/* highlight note bar (from the brochure) */
.note {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 4px;
    background: linear-gradient(100deg, var(--navy), var(--navy-soft));
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.62;
}

.note svg {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--gold);
}

/* accordion */
.acc {
    border-top: 1px solid var(--line);
}

.acc__item {
    border-bottom: 1px solid var(--line);
}

.acc__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: clamp(20px, 2.2vw, 28px) 0;
    text-align: left;
}

.acc__n {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    color: var(--gold-dark);
    flex: none;
    width: 30px;
}

.acc__t {
    flex: 1;
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 1.75vw, 1.5rem);
    font-weight: 500;
    letter-spacing: -0.026em;
    line-height: 1.24;
    color: var(--navy);
    transition: color 0.35s var(--ease);
}

.acc__btn:hover .acc__t {
    color: var(--gold-dark);
}

.acc__ico {
    flex: none;
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px var(--line);
    transition: background-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.acc__ico::before,
.acc__ico::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1.5px;
    background: var(--navy);
    transform: translate(-50%, -50%);
    transition: transform 0.45s var(--ease), background-color 0.45s var(--ease);
}

.acc__ico::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.acc__item.is-open .acc__ico {
    background: var(--navy);
    box-shadow: inset 0 0 0 1px var(--navy);
}

.acc__item.is-open .acc__ico::before,
.acc__item.is-open .acc__ico::after {
    background: #fff;
}

.acc__item.is-open .acc__ico::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.acc__panel {
    height: 0;
    overflow: hidden;
    transition: height 0.6s var(--ease);
}

.acc__panelIn {
    padding: 0 0 26px 50px;
    max-width: 62ch;
    font-size: 0.9375rem;
    line-height: 1.72;
    color: var(--muted);
}

@media (max-width: 600px) {
    .acc__panelIn {
        padding-left: 0;
    }
}

/* pool band */
.pool {
    display: grid;
    gap: clamp(26px, 3.4vw, 60px);
    align-items: center;
}

@media (min-width: 940px) {
    .pool {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }
}

.segs {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 520px) {
    .segs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.seg {
    background: var(--white);
    padding: 22px 20px;
    display: grid;
    gap: 8px;
    text-align: center;
    transition: background-color 0.45s var(--ease);
}

.seg:hover {
    background: var(--paper-2);
}

.seg svg {
    width: 22px;
    height: 22px;
    margin-inline: auto;
    color: var(--gold-dark);
}

.seg b {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   19. AMC
   -------------------------------------------------------------------------- */
.amc {
    display: grid;
    gap: clamp(28px, 3.6vw, 64px);
}

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

.amc__box {
    display: grid;
    gap: 22px;
    align-content: start;
    padding: clamp(26px, 3vw, 46px);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   20. Leadership
   -------------------------------------------------------------------------- */
.people {
    display: grid;
    gap: clamp(26px, 3vw, 52px);
}

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

.person__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--paper-2);
}

.person__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transform: scale(1.02);
    transition: transform 1.1s var(--ease), filter 0.8s var(--ease);
    filter: grayscale(1) contrast(1.02);
}

.person:hover .person__media img {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1);
}

.person__badge {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 20px;
    background: linear-gradient(100deg, var(--gold-dark), var(--gold-light) 70%);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.person__body {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.person__role {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
}

/* --------------------------------------------------------------------------
   21. Contact
   -------------------------------------------------------------------------- */
.contact {
    display: grid;
    gap: clamp(34px, 4vw, 70px);
}

@media (min-width: 940px) {
    .contact {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    }
}

.info {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.info__row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    align-items: baseline;
}

.info__k {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.info__v {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.info__v a:hover {
    color: var(--gold);
}

.info__v--big {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #fff;
}

/* form */
.form {
    display: grid;
    gap: 18px;
    align-content: start;
}

@media (min-width: 620px) {
    .form__2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

.field {
    position: relative;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 16px 2px 12px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    border-radius: 0;
    transition: border-color 0.4s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.field textarea {
    resize: vertical;
    min-height: 92px;
}

.field select option {
    color: var(--navy);
    background: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.field label {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.field__sel {
    position: relative;
}

.field__sel::after {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 20px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    pointer-events: none;
}

.form__note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.form__msg {
    font-size: 0.8125rem;
    color: var(--gold);
    min-height: 1.2em;
}

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--paper);
    padding-top: clamp(56px, 7vw, 100px);
    overflow: hidden;
}

.footer__top {
    display: grid;
    gap: clamp(28px, 3vw, 48px);
    padding-bottom: clamp(40px, 5vw, 72px);
}

@media (min-width: 860px) {
    .footer__top {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
    }
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px clamp(24px, 4vw, 72px);
}

@media (min-width: 620px) {
    .footer__cols {
        grid-template-columns: repeat(3, auto);
    }
}

.footer__col h4 {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 16px;
}

.footer__col li + li {
    margin-top: 9px;
}

.footer__col a,
.footer__col span {
    font-size: 0.875rem;
    color: var(--muted);
    transition: color 0.3s var(--ease);
}

.footer__col a:hover {
    color: var(--navy);
}

.footer__word {
    display: block;
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(3.6rem, 19.4vw, 19rem);
    line-height: 0.78;
    letter-spacing: -0.045em;
    color: var(--navy);
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    margin-top: 10px;
}

.footer__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0 30px;
    margin-top: clamp(18px, 2.4vw, 34px);
    border-top: 1px solid var(--line);
    font-size: 0.75rem;
    color: var(--faint);
}

.footer__bar a:hover {
    color: var(--navy);
}

.credit a {
    position: relative;
    color: var(--navy);
    font-weight: 500;
}

.credit a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.credit a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.totop {
    position: fixed;
    right: clamp(16px, 2.2vw, 34px);
    bottom: clamp(16px, 2.2vw, 34px);
    z-index: 70;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s,
        background-color 0.4s var(--ease);
}

.totop.is-on {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.totop:hover {
    background: var(--gold-dark);
}

.totop svg {
    width: 15px;
    height: 15px;
}

/* --------------------------------------------------------------------------
   23. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 300;
    padding: 12px 20px;
    background: var(--navy);
    color: #fff;
    font-size: 0.8125rem;
}

.skip:focus {
    left: 12px;
    top: 12px;
}

.mt-l {
    margin-top: clamp(28px, 3.4vw, 56px);
}

.mt-m {
    margin-top: clamp(18px, 2.2vw, 32px);
}

.mt-s {
    margin-top: 14px;
}

/* --------------------------------------------------------------------------
   24. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal],
    .lines .ln > span {
        opacity: 1 !important;
        transform: none !important;
    }

    .img-clip::after {
        display: none;
    }

    .img-clip > img {
        transform: none;
    }

    .cursor {
        display: none;
    }
}
