/* ==========================================================================
   iSocial24 — style.css
   Tokens and components. Colours sampled directly from the company profile.
   Layout concept: "the gallery" — the profile's classical statues treated as
   exhibits, placed against generous white space with arches and plinths.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand — sampled from the company profile PDF */
    --navy: #04214B;
    --sky: #54BCFF;
    --yellow: #FFE420;
    --white: #FFFFFF;

    /* Supporting neutrals derived from the brand */
    --paper: #F3F8FC;
    /* cool plaster tint for alternating sections */
    --marble: #DCE7F2;
    /* hairlines and card borders */
    --sky-soft: #E4F3FF;
    /* sky at 12% — arch fills, hovers */
    --navy-60: #4A5F80;
    /* body text on white */
    --navy-40: #61728C;
    /* captions — darkened to clear 4.5:1 on white */

    /* Type */
    --display: "Poppins", "Segoe UI", system-ui, sans-serif;
    --body: "DM Sans", "Segoe UI", system-ui, sans-serif;

    /* Scale (fluid) */
    --fs-h1: clamp(2.75rem, 6.2vw, 5.25rem);
    --fs-h2: clamp(2rem, 4.2vw, 3.5rem);
    --fs-h3: clamp(1.05rem, 1.5vw, 1.2rem);
    --fs-lede: clamp(1.05rem, 1.5vw, 1.25rem);
    --fs-body: 1rem;
    --fs-small: 0.8125rem;

    /* Space */
    --shell: 1200px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --section-y: clamp(4.5rem, 9vw, 8rem);

    /* Form */
    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 28px;
    --arch: 999px 999px 0 0;

    --shadow-card: 0 1px 2px rgba(4, 33, 75, .04), 0 12px 32px -12px rgba(4, 33, 75, .14);
    --shadow-lift: 0 2px 4px rgba(4, 33, 75, .06), 0 28px 56px -18px rgba(4, 33, 75, .26);

    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--navy);
    font-family: var(--body);
    font-size: var(--fs-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* The hidden attribute must win over any display rule set later (.steps is
   display:flex, which would otherwise keep it on screen while "hidden"). */
[hidden] {
    display: none !important;
}

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.04;
    margin: 0;
    letter-spacing: -0.03em;
}

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

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

:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
    z-index: 200;
    background: var(--navy);
    color: var(--white);
    padding: .75rem 1.25rem;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    transition: top .2s var(--ease);
}

.skip-link:focus {
    top: 0;
}

.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

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

/* --------------------------------------------------------------------------
   3. Typography components
   -------------------------------------------------------------------------- */

/* Eyebrow sits inside a small arch — the museum wall-label device that recurs
   across the page. */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 1.1rem;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 9px;
    border-radius: var(--arch);
    background: var(--sky);
    flex: none;
}

.eyebrow--light {
    color: var(--white);
}

.eyebrow--light::before {
    background: var(--yellow);
}

.h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: 1rem;
}

.h2--light {
    color: var(--white);
}

.lede {
    font-size: var(--fs-lede);
    color: var(--navy-60);
    max-width: 56ch;
}

.lede--light {
    color: rgba(255, 255, 255, .78);
}

.section p:not(.eyebrow):not(.lede) {
    color: var(--navy-60);
    max-width: 62ch;
}

.section__head {
    max-width: 640px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* SIGNATURE — the profile knocks one glyph out of every headline in yellow and
   tilts it off the baseline. Systematised here as .tick.
   Yellow on white is 1.28:1, so on light grounds the navy outline (the profile's
   own device on "OUR SERVICES") carries the letterform and the fill stays brand. */
.tick {
    position: relative;
    display: inline-block;
    color: var(--yellow);
    -webkit-text-stroke: 2.5px var(--navy);
    paint-order: stroke fill;
    transform: rotate(-4deg);
    transform-origin: 50% 80%;
}

/* On navy the yellow already clears 12:1 — no outline needed. */
.h2--light .tick {
    color: var(--yellow);
    -webkit-text-stroke: 0;
}

/* On yellow the word inverts to navy instead. */
.tick--navy {
    color: var(--navy);
    -webkit-text-stroke: 0;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .95rem 1.75rem;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease),
        background-color .25s var(--ease), color .25s var(--ease);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
}

.btn--navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 26px -12px rgba(4, 33, 75, .7);
}

.btn--navy:hover {
    background: #062f68;
    box-shadow: 0 18px 36px -14px rgba(4, 33, 75, .75);
}

.btn--yellow {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 10px 24px -12px rgba(255, 228, 32, .9);
}

.btn--yellow:hover {
    background: #FFEC5C;
}

.btn--ghost {
    background: transparent;
    color: var(--navy);
    box-shadow: inset 0 0 0 2px var(--marble);
}

.btn--ghost:hover {
    box-shadow: inset 0 0 0 2px var(--navy);
}

/* Ghost on the yellow CTA ground — marble is invisible there */
.btn--on-yellow {
    box-shadow: inset 0 0 0 2px rgba(4, 33, 75, .35);
}

.btn--on-yellow:hover {
    background: var(--navy);
    color: var(--yellow);
    box-shadow: inset 0 0 0 2px var(--navy);
}

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}

.nav.is-stuck {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 1px 0 var(--marble), 0 12px 30px -22px rgba(4, 33, 75, .5);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 88px;
    transition: height .3s var(--ease);
}

.nav.is-stuck .nav__inner {
    height: 70px;
}

.nav__brand img {
    width: 168px;
    transition: width .3s var(--ease);
}

.nav.is-stuck .nav__brand img {
    width: 142px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.9rem);
}

.nav__links>a:not(.btn) {
    position: relative;
    font-weight: 500;
    font-size: .95rem;
    padding-block: .35rem;
    color: var(--navy);
}

.nav__links>a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--sky);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}

.nav__links>a:not(.btn):hover::after,
.nav__links>a.is-current::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__links>a.is-current {
    font-weight: 700;
}

.nav__cta {
    padding: .7rem 1.35rem;
}

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
}

.nav__toggle span {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.nav__toggle span:nth-child(1) {
    top: 15px;
}

.nav__toggle span:nth-child(2) {
    top: 21px;
}

.nav__toggle span:nth-child(3) {
    top: 27px;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Scroll progress hairline */
.nav__progress {
    height: 2px;
    background: linear-gradient(90deg, var(--sky), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding-top: 148px;
    overflow: hidden;
}

/* The niche. The profile stages every statue against a sky-blue arc; here the
   arc becomes an actual wall recess and the bust stands in it. */
.hero__arch {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    top: 0;
    bottom: 0;
    width: min(460px, 100%);
    background: var(--sky);
    border-radius: var(--arch);
    z-index: 0;
}

.hero__arch::after {
    content: "";
    position: absolute;
    left: -16%;
    bottom: 6%;
    width: 44%;
    aspect-ratio: 1;
    background: var(--yellow);
    border-radius: 50%;
    z-index: -1;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.hero__title {
    font-size: var(--fs-h1);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero__title .tick {
    transform: rotate(-5deg) translateY(-2px);
}

.hero__lede {
    font-size: var(--fs-lede);
    color: var(--navy-60);
    max-width: 48ch;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

/* Plinth — the statue is staged, not decorated */
.hero__stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 500px;
}

.plinth {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    padding-top: 2.5rem;
}

.plinth__figure {
    width: clamp(210px, 24vw, 320px);
    filter: drop-shadow(0 34px 40px rgba(4, 33, 75, .3));
    animation: bob 7s ease-in-out infinite;
}

/* Cast shadow on the gallery floor, under the bust's own marble base */
.plinth__base {
    width: clamp(150px, 18vw, 240px);
    height: 14px;
    margin-top: -4px;
    background: radial-gradient(ellipse at center, rgba(4, 33, 75, .4), rgba(4, 33, 75, 0) 70%);
    border-radius: 50%;
}

.float {
    position: absolute;
    z-index: 2;
}

.float--leaf {
    width: clamp(90px, 11vw, 150px);
    left: -4%;
    bottom: 6%;
    transform: rotate(-14deg);
    animation: sway 9s ease-in-out infinite;
}

.float--hand {
    width: clamp(80px, 9vw, 130px);
    right: -2%;
    top: 8%;
    transform: rotate(8deg);
    animation: bob 8s ease-in-out infinite .8s;
}

@keyframes bob {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}

@keyframes sway {

    0%,
    100% {
        rotate: -14deg;
    }

    50% {
        rotate: -8deg;
    }
}

/* Marquee wall-label */
.marquee {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding-block: .9rem;
    position: relative;
    z-index: 2;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: slide 38s linear infinite;
}

.marquee__track span {
    font-family: var(--display);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding-right: 2rem;
    white-space: nowrap;
}

.marquee__track i {
    color: var(--yellow);
    font-style: normal;
    padding-inline: .5rem;
}

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

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.about__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.about__figure {
    position: relative;
    position: sticky;
    top: 120px;
}

/* Niche — a wall recess holding the exhibit */
.niche {
    background: var(--sky-soft);
    border-radius: var(--arch);
    padding: clamp(2.5rem, 5vw, 4rem) 1.25rem 0;
    display: grid;
    place-items: end center;
    overflow: hidden;
    aspect-ratio: 1 / 1.06;
}

.niche img {
    width: 108%;
    max-width: none;
    filter: drop-shadow(0 22px 26px rgba(4, 33, 75, .2));
    transition: transform .6s var(--ease);
}

.niche:hover img {
    transform: translateY(-8px) scale(1.02);
}

.about__cactus {
    position: absolute;
    left: -22px;
    bottom: 6%;
    width: clamp(60px, 8vw, 108px);
    transform: rotate(-6deg);
    filter: drop-shadow(0 10px 14px rgba(4, 33, 75, .2));
}

.about__copy .lede {
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--navy);
}

/* Stacked, not side-by-side: the mission and vision statements are long enough
   that two columns squeeze them into ribbons. */
.pillars {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.pillar {
    background: var(--white);
    border: 1px solid var(--marble);
    border-radius: var(--r-md);
    padding: 1.6rem 1.75rem;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.5rem;
    align-items: start;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.pillar:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lift);
}

.pillar h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--yellow);
}

.pillar p {
    font-size: .95rem;
    margin: 0;
    max-width: none;
}

/* --------------------------------------------------------------------------
   8. Strategy band
   -------------------------------------------------------------------------- */
.band {
    background: var(--sky);
    padding-block: clamp(3.5rem, 7vw, 6rem);
    overflow: hidden;
}

.band__inner {
    position: relative;
    text-align: center;
}

.band__title {
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.band__title .tick {
    color: var(--white);
    -webkit-text-stroke: 2.5px var(--navy);
}

.band__text {
    max-width: 62ch;
    margin-inline: auto;
    color: rgba(4, 33, 75, .82);
    font-size: var(--fs-lede);
}

.band__leaf {
    position: absolute;
    top: 50%;
    width: clamp(70px, 9vw, 130px);
    opacity: .9;
}

.band__leaf--l {
    left: -2%;
    transform: translateY(-50%) rotate(-18deg);
}

.band__leaf--r {
    right: -2%;
    transform: translateY(-50%) rotate(150deg);
}

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */
.services {
    background: var(--paper);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--marble);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

/* Arch of colour rises behind the icon on hover */
.card::before {
    content: "";
    position: absolute;
    left: 1.75rem;
    top: 1.75rem;
    width: 56px;
    height: 56px;
    background: var(--sky-soft);
    border-radius: var(--arch);
    transition: background-color .4s var(--ease), height .4s var(--ease);
}

.card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lift);
}

.card:hover::before {
    background: var(--yellow);
}

.card__icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.35rem;
    color: var(--navy);
}

.card__icon svg {
    width: 26px;
    height: 26px;
}

.card h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: .55rem;
}

.card p {
    font-size: .93rem;
    margin: 0;
    color: var(--navy-60);
}

/* --------------------------------------------------------------------------
   10. Departments
   -------------------------------------------------------------------------- */
.departments {
    background: var(--navy);
    overflow: hidden;
}

.departments__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.departments__copy {
    position: relative;
}

.departments__chess {
    width: clamp(110px, 14vw, 190px);
    margin-top: 2.5rem;
    filter: drop-shadow(0 22px 26px rgba(0, 0, 0, .45));
    animation: bob 9s ease-in-out infinite;
}

.depts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dept {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    padding: 1.15rem 1.4rem;
    border-radius: var(--r-sm);
    background: rgba(84, 188, 255, .14);
    color: var(--white);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    margin-bottom: .6rem;
    position: relative;
    overflow: hidden;
    transition: background-color .35s var(--ease), transform .35s var(--ease), padding-left .35s var(--ease);
}

.dept::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--yellow);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .35s var(--ease);
}

.dept:hover {
    background: var(--sky);
    color: var(--navy);
    transform: translateX(8px);
}

.dept:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* 01–07 is a real inventory, not a sequence — the numbers index the list, and
   the tabular figures keep the rag straight. */
.dept__no {
    font-family: var(--body);
    font-variant-numeric: tabular-nums;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--yellow);
    transition: color .35s var(--ease);
}

.dept:hover .dept__no {
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   11. Work
   -------------------------------------------------------------------------- */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2.25rem;
}

.filter {
    padding: .6rem 1.2rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--navy-60);
    box-shadow: inset 0 0 0 1px var(--marble);
    transition: all .3s var(--ease);
}

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

.filter.is-active {
    background: var(--navy);
    color: var(--white);
    box-shadow: inset 0 0 0 1px var(--navy);
    font-weight: 700;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.tile {
    margin: 0;
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--paper);
    aspect-ratio: 1;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), opacity .35s var(--ease);
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

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

.tile figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.5rem .9rem .8rem;
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(to top, rgba(4, 33, 75, .9), rgba(4, 33, 75, 0));
    transform: translateY(100%);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .4s var(--ease);
}

.tile:hover figcaption,
.tile:focus-within figcaption {
    transform: none;
    opacity: 1;
}

/* Photography sits in the profile's gold baroque frames */
.tile--framed {
    background: var(--navy);
    padding: 12px;
}

.tile--framed::after {
    content: "";
    position: absolute;
    inset: 12px;
    box-shadow: inset 0 0 0 6px var(--yellow), inset 0 0 0 8px var(--navy);
    border-radius: 4px;
    pointer-events: none;
}

.tile--framed img {
    border-radius: 4px;
    height: 100%;
}

/* Product cutouts need air and a light ground, not a crop */
.tile--product {
    background: var(--sky-soft);
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.tile--product img {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 14px 18px rgba(4, 33, 75, .16));
}

.tile.is-hidden {
    display: none;
}

.clients {
    margin-top: 2rem;
    font-size: .95rem;
    color: var(--navy-40);
}

.clients strong {
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   12. Why choose us
   -------------------------------------------------------------------------- */
.why__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.why__figure {
    position: relative;
    display: grid;
    place-items: center;
}

.disc {
    position: absolute;
    width: min(400px, 80%);
    aspect-ratio: 1;
    background: var(--yellow);
    border-radius: 50%;
    z-index: 0;
}

.why__figure img {
    position: relative;
    z-index: 1;
    width: clamp(220px, 28vw, 380px);
    filter: drop-shadow(0 30px 34px rgba(4, 33, 75, .25));
    animation: bob 8s ease-in-out infinite;
}

.values {
    margin: 2.25rem 0 0;
}

.value {
    padding: 1.15rem 0;
    border-top: 1px solid var(--marble);
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 1.5rem;
    align-items: baseline;
}

.value:last-child {
    border-bottom: 1px solid var(--marble);
}

.value dt {
    font-family: var(--display);
    font-weight: 700;
    font-size: var(--fs-h3);
}

.value dd {
    margin: 0;
    color: var(--navy-60);
    font-size: .95rem;
}

.why__pull {
    margin-top: 2rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.3;
    color: var(--navy) !important;
    border-left: 4px solid var(--sky);
    padding-left: 1.25rem;
}

/* --------------------------------------------------------------------------
   13. CTA
   -------------------------------------------------------------------------- */
.cta {
    background: var(--yellow);
    padding-block: clamp(4rem, 8vw, 7rem);
    overflow: hidden;
    position: relative;
}

.cta__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
}

.cta__copy {
    text-align: center;
}

.cta__title {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta__title .tick--navy {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--sky);
    text-underline-offset: 10px;
    text-decoration-thickness: 6px;
}

.cta__copy p {
    color: rgba(4, 33, 75, .8);
    max-width: 52ch;
    margin-inline: auto;
}

.cta__actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

.cta .eyebrow::before {
    background: var(--navy);
}

.cta__column {
    width: clamp(70px, 10vw, 130px);
    opacity: .9;
    filter: drop-shadow(0 18px 22px rgba(4, 33, 75, .18));
}

.cta__column--r {
    transform: scaleX(-1);
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .72);
    padding-top: clamp(3.5rem, 6vw, 5rem);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: 3rem;
}

.footer__brand img {
    width: 190px;
    margin-bottom: 1.25rem;
}

.footer__brand p {
    font-size: .95rem;
    margin: 0;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer__nav h3 {
    font-size: var(--fs-small);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__nav a {
    display: block;
    font-size: .93rem;
    padding-block: .3rem;
    transition: color .25s var(--ease), padding-left .25s var(--ease);
}

.footer__nav a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer__base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    padding-block: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: var(--fs-small);
}

.footer__base p {
    margin: 0;
}

/* --------------------------------------------------------------------------
   15. Back to top
   -------------------------------------------------------------------------- */
.totop {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 90;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-lift);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .35s var(--ease);
}

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

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

.totop:hover {
    background: var(--sky);
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   16. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal[data-delay="1"] {
    transition-delay: .09s;
}

.reveal[data-delay="2"] {
    transition-delay: .18s;
}

.reveal[data-delay="3"] {
    transition-delay: .27s;
}

.reveal[data-delay="4"] {
    transition-delay: .36s;
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}