:root {
    --navy: #223260;
    --navy-dark: #172740;
    --navy-deep: #101c2e;
    --amber: #ffba00;
    --amber-dark: #f6a409;
    --ink: #161922;
    --body: #5b6274;
    --muted: #929292;
    --line: #e6e9f0;
    --bg-soft: #f5f7fb;
    --white: #ffffff;

    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 4px 16px rgba(34, 50, 96, .06);
    --shadow: 0 14px 40px rgba(34, 50, 96, .10);
    --shadow-lg: 0 26px 70px rgba(34, 50, 96, .18);

    --ease: cubic-bezier(.22, 1, .36, 1);
    --container: 1260px;
    --header-h: 112px;

    /* Montserrat for headings, Poppins for body copy */
    --ff: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
    --ff-heading: "Montserrat", "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
    margin: 0;
    font-family: var(--ff);
    font-size: 16px;
    line-height: 1.75;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;

    /* `clip` — not `hidden`. overflow-x:hidden forces overflow-y to compute to
       auto, which turns <body> into a scroll container and stops the sticky
       header from pinning to the viewport. `clip` trims the same overflow
       without creating a scroll container. */
    overflow-x: clip;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ff-heading);
    color: var(--navy);
    margin: 0 0 .6em;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* The clamp minimums only bind on narrow screens, so lowering them shrinks
   headings on phones without touching the desktop scale. */
h1 {
    font-size: clamp(1.72rem, 1.05rem + 3.1vw, 3.55rem);
    font-weight: 800;
}

h2,
.as-h2 {
    font-size: clamp(1.38rem, .95rem + 1.85vw, 2.5rem);
}

h3,
h4,
.as-h3 {
    font-size: clamp(1.02rem, .92rem + .55vw, 1.45rem);
}

/* The page carries a single H1 and a single H2 for SEO; every other heading is
   demoted to H3/H4 and re-sized with these classes so the visual scale is kept. */
.as-h2 {
    font-weight: 700;
}

p {
    margin: 0 0 1.1rem;
}

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

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

.section {
    padding: clamp(60px, 7vw, 110px) 0;
    position: relative;

    /* Reveal animations park elements 52px to the side until they scroll into
       view, which extends the scrollable area past the viewport. Clip that on
       the X axis only — `clip`, not `hidden`, so no scroll container is made
       and overflow-y stays visible. */
    overflow-x: clip;
}

.stats {
    overflow-x: clip;
}

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

.section--navy {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .78);
}

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

.sec-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 4vw, 62px);
    text-align: center;
}

.sec-head p {
    font-size: 1.03rem;
    margin-bottom: 0;
}

.sec-head--left {
    margin-inline: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 14px;
}

/* Flooring-tile marker in place of the old dash. Masked so it picks up the
   eyebrow's own colour — amber-dark on light sections, amber on navy ones. */
.eyebrow::before {
    content: "";
    flex: none;
    width: 15px;
    height: 15px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Crect x='3' y='3' width='8' height='8' rx='2'/%3E%3Crect x='13' y='3' width='8' height='8' rx='2'/%3E%3Crect x='3' y='13' width='8' height='8' rx='2'/%3E%3Crect x='13' y='13' width='8' height='8' rx='2'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Crect x='3' y='3' width='8' height='8' rx='2'/%3E%3Crect x='13' y='3' width='8' height='8' rx='2'/%3E%3Crect x='3' y='13' width='8' height='8' rx='2'/%3E%3Crect x='13' y='13' width='8' height='8' rx='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section--navy .eyebrow {
    color: var(--amber);
}

.grid {
    display: grid;
    gap: 26px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

/* A `1fr` track is minmax(auto, 1fr), so its floor is the item's min-content.
   A <select> reports the width of its widest option as min-content, which can
   shove a track past the viewport and produce a horizontal scrollbar. */
.grid>*,
.hero__inner>*,
.sport>*,
.steps>*,
.field-row>*,
.cta-band>*,
.stats__inner>*,
.footer__grid>* {
    min-width: 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s ease, background .3s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--navy);
    transform: translateY(102%);
    transition: transform .45s var(--ease);
}

.btn:hover::after {
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: #fff;
}

.btn-primary {
    background: var(--amber);
    color: var(--navy-dark);
    box-shadow: 0 10px 26px rgba(255, 186, 0, .34);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff;
    padding: 13px 28px;
}

.btn-outline::after {
    background: #fff;
}

.btn-outline:hover {
    color: var(--navy);
    border-color: #fff;
}

.btn-ghost {
    border: 2px solid var(--line);
    color: var(--navy);
    padding: 13px 28px;
}

.btn-ghost::after {
    background: var(--amber);
}

.btn-ghost:hover {
    color: var(--navy-dark);
    border-color: var(--amber);
}

.btn-sm {
    padding: 11px 22px;
    font-size: .86rem;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- Scroll reveal ---------- */
[data-anim] {
    opacity: 0;
    transition: opacity .85s var(--ease), transform .85s var(--ease);
    will-change: opacity, transform;
}

[data-anim="up"] {
    transform: translateY(46px);
}

[data-anim="down"] {
    transform: translateY(-38px);
}

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

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

[data-anim="zoom"] {
    transform: scale(.9);
}

[data-anim="flip"] {
    transform: perspective(900px) rotateX(-14deg) translateY(38px);
}

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

/* On narrow screens a 52px sideways offset is most of the gutter, so the
   horizontal reveals become vertical ones. Removes the overflow at source
   rather than relying on the clip above. */
@media (max-width: 900px) {

    [data-anim="left"],
    [data-anim="right"] {
        transform: translateY(38px);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-anim] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }

    .marquee__track,
    .hero__blob,
    .float-y {
        animation: none !important;
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 186, 0, .55);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 186, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 186, 0, 0);
    }
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(28px, -30px) scale(1.09);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.float-y {
    animation: floatY 6s ease-in-out infinite;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .72);
    font-size: .84rem;
    padding: 9px 0;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar__list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .3s ease;
}

/* Static info row — same alignment as the links, but not clickable */
.topbar__hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar a:hover {
    color: var(--amber);
}

.topbar svg {
    width: 15px;
    height: 15px;
    color: var(--amber);
    flex: none;
}

.topbar__socials {
    display: flex;
    gap: 10px;
}

.topbar__socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    justify-content: center;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.topbar__socials a:hover {
    background: var(--amber);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.site-header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .35s var(--ease), background .35s var(--ease);
}

/* Compacts once the page starts scrolling so a 112px header does not sit on
   the content for the whole visit. */
.site-header.is-stuck {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 34px rgba(34, 50, 96, .12);
}

.site-header.is-stuck .header__inner {
    min-height: calc(var(--header-h) - 24px);
}

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

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--header-h);
    flex-wrap: nowrap;
    transition: min-height .35s var(--ease);
}

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

/* Logo art is ~4:3, so the SUNDEK wordmark sits in a small band —
   it needs real height before it becomes legible. */
.brand img {
    width: auto;
    height: 100px;
    transition: transform .4s var(--ease), height .35s var(--ease);
}

.brand:hover img {
    transform: scale(1.05);
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 0 1 auto;
    min-width: 0;
}

.nav__item {
    position: relative;
    flex: none;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 13px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    position: relative;
    transition: color .3s ease;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 4px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.nav__item:hover>.nav__link::after,
.nav__link.is-active::after {
    transform: scaleX(1);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--navy-dark);
}

.nav__link .caret {
    width: 11px;
    height: 11px;
    transition: transform .3s ease;
}

.nav__item:hover>.nav__link .caret {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 268px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}

.submenu--wide {
    min-width: 610px;
    columns: 2;
    column-gap: 6px;
}

.nav__item:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* A 610px panel anchored to left:0 hangs past the container on narrower
   laptops. Centring it under the trigger halves the overhang. Hidden
   submenus still occupy layout, so this matters even when closed. */
.submenu--wide {
    left: 50%;
    transform: translateX(-50%) translateY(14px);
}

.nav__item:hover>.submenu--wide {
    transform: translateX(-50%) translateY(0);
}

.submenu a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 9px;
    font-size: .88rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--body);
    break-inside: avoid;
    transition: background .28s ease, color .28s ease, padding-left .28s var(--ease);
}

/* Shared marker icon on every dropdown item */
.submenu a::before {
    content: "";
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 6px;
    background: rgba(255, 186, 0, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6a409' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center / 10px no-repeat;
    transition: background-color .28s var(--ease), transform .28s var(--ease);
}

.submenu a:hover {
    background: var(--bg-soft);
    color: var(--navy);
    padding-left: 20px;
}

.submenu a:hover::before {
    background-color: var(--amber);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23172740' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
    transform: translateX(2px);
}

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

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    place-items: center;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    transition: background .3s;
}

.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .35s var(--ease);
}

.burger span::before {
    top: -6px;
}

.burger span::after {
    top: 6px;
}

.burger.is-open span {
    background: transparent;
}

.burger.is-open span::before {
    transform: translateY(6px) rotate(45deg);
}

.burger.is-open span::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    z-index: 1000;
    background: #fff;
    padding: 18px 18px calc(28px + env(safe-area-inset-bottom));
    /* overflow-y:auto alone makes overflow-x compute to auto, which puts a
       horizontal scrollbar inside the drawer. Pin both axes explicitly. */
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    transition: transform .45s var(--ease);
    box-shadow: -18px 0 60px rgba(16, 28, 46, .2);
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav__head img {
    height: 78px;
    width: auto;
    flex: none;
}

.mobile-nav__close {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    line-height: 1;
    background: var(--bg-soft);
    color: var(--navy);
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.mobile-nav__close:hover,
.mobile-nav__close:focus-visible {
    background: var(--amber);
    color: var(--navy-dark);
    transform: rotate(90deg);
}

/* Top-level rows — links and submenu toggles share one look */
.mobile-nav>a,
.m-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 11px 2px;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    transition: color .3s ease, padding-left .3s var(--ease);
}

.mobile-nav>a:hover,
.m-toggle:hover {
    color: var(--amber-dark);
    padding-left: 6px;
}

/* Caret sits in its own chip so the tap target is obvious */
.m-toggle svg {
    flex: none;
    width: 26px;
    height: 26px;
    padding: 7px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--navy);
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.m-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
    background: var(--amber);
    color: var(--navy-dark);
}

.m-sub {
    display: none;
    padding: 6px 0 10px;
}

.m-sub.is-open {
    display: block;
    animation: fadeDown .35s var(--ease);
}

.mobile-nav .m-sub a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 2px 9px 6px;
    font-weight: 500;
    font-size: .88rem;
    line-height: 1.45;
    color: var(--body);
    border-bottom: 0;
    transition: color .3s ease, transform .3s var(--ease);
}

.mobile-nav .m-sub a:hover {
    color: var(--navy);
    transform: translateX(3px);
}

/* Same marker icon as the desktop dropdown */
.mobile-nav .m-sub a::before {
    content: "";
    flex: none;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    border-radius: 6px;
    background: rgba(255, 186, 0, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6a409' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 28, 46, .55);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s;
}

.overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 55%, #2c4079 100%);
    color: rgba(255, 255, 255, .82);
    padding: clamp(64px, 8vw, 118px) 0 clamp(90px, 9vw, 140px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://www.sundek.in/wp-content/webp-express/webp-images/uploads/2024/06/badminton-court-main.jpg.webp");
    background-size: cover;
    background-position: center;
    opacity: .17;
    mix-blend-mode: luminosity;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: blobMove 13s ease-in-out infinite;
}

.hero__blob--a {
    width: 420px;
    height: 420px;
    background: rgba(255, 186, 0, .30);
    top: -110px;
    right: -80px;
}

.hero__blob--b {
    width: 340px;
    height: 340px;
    background: rgba(0, 137, 247, .26);
    bottom: -120px;
    left: -90px;
    animation-delay: -6s;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: clamp(32px, 4vw, 62px);
    align-items: center;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 41px;
    line-height: 52px;
}

.hero h1 .hl {
    color: var(--amber);
}

.hero__lead {
    font-size: 1.07rem;
    max-width: 62ch;
    margin-bottom: 28px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    transition: background .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}

.chip svg {
    width: 15px;
    height: 15px;
    color: var(--amber);
}

.chip:hover {
    background: rgba(255, 186, 0, .18);
    border-color: rgba(255, 186, 0, .5);
    transform: translateY(-3px);
}

/* Shared enquiry form card — used in the hero and in the CTA band */
.quote-card {
    background: rgba(255, 255, 255, .97);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 2.6vw, 36px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, .6);
    transition: transform .5s var(--ease);
}

.quote-card:hover {
    transform: translateY(-6px);
}

/* Brief amber ring when a CTA scrolls the visitor to this form, so it is
   obvious where the click landed them. */
.quote-card:target {
    animation: cardPing 1.8s var(--ease) .25s;
}

@keyframes cardPing {

    0%,
    100% {
        box-shadow: var(--shadow-lg);
    }

    25%,
    55% {
        box-shadow: 0 0 0 5px rgba(255, 186, 0, .5), var(--shadow-lg);
    }
}

.quote-card h4 {
    margin-bottom: 6px;
}

.quote-card .note {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.quote-card .btn {
    width: 100%;
}

.field {
    margin-bottom: 15px;
}

.field label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
    letter-spacing: .02em;
}

.field .req {
    color: var(--amber-dark);
}

/* Wrapper carries the leading icon so the control keeps its own box model */
.field__wrap {
    position: relative;
    display: block;
}

.field__ic {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: var(--muted);
    pointer-events: none;
    transition: color .3s ease;
}

.field__wrap--area .field__ic {
    top: 16px;
    transform: none;
}

.field__wrap:focus-within .field__ic {
    color: var(--amber-dark);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    font-family: inherit;
    font-size: .92rem;
    color: var(--ink);
    background: #fafbfd;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    outline: none;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a7adbb;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #cfd6e4;
}

/* Native select chrome varies wildly, so draw our own chevron */
.field select {
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6a409' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 13px;
}

.field textarea {
    resize: vertical;
    min-height: 104px;
    line-height: 1.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--amber);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 186, 0, .16);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-note {
    font-size: .76rem;
    color: var(--muted);
    text-align: center;
    margin: 12px 0 0;
}

/* Honeypot — kept out of sight and out of the tab order, never display:none
   (some bots skip hidden fields, which would defeat the trap) */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Thank-you page confirmation tick */
.ty-tick {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 186, 0, .16);
    border: 2px solid rgba(255, 186, 0, .45);
    color: var(--amber-dark);
    animation: pulseRing 2.6s infinite;
}

.ty-tick svg {
    width: 44px;
    height: 44px;
}

/* Thank-you page — the confirmation card is the whole page, so it is centred
   in the viewport rather than sitting at the top of a long scroll. */
.ty {
    padding-top: 74px;
    padding-bottom: 84px;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 90px);
}

.ty__inner {
    max-width: 880px;
    text-align: center;
    width: 100%;
}

/* Raised confirmation panel */
.ty-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 56px 44px 50px;
    position: relative;
    overflow: hidden;
}

.ty-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}

/* Oversized wordmark with an offset drop shadow */
.ty-hero {
    margin: 0 0 22px;
    line-height: 1;
}

.ty-hero__big {
    display: block;
    font-family: var(--ff-heading);
    font-weight: 800;
    /* min kept at 2.4rem so "Thank You" still fits on one line inside the card
       at 320px (240px of usable width once container + card padding is removed) */
    font-size: clamp(2.4rem, 1rem + 8.4vw, 6.4rem);
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--navy);
    text-shadow: 5px 6px 0 rgba(34, 50, 96, .13);
}

.ty-hero__sub {
    display: block;
    margin-top: 16px;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: clamp(1.08rem, .88rem + 1.05vw, 1.72rem);
    line-height: 1.28;
    color: var(--navy);
}

.ty-hero__sub::after {
    content: "";
    display: block;
    width: 68px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}

.ty__lead {
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.ty__note {
    font-size: .92rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.ty__back {
    margin: 30px 0 0;
    font-size: .95rem;
}

.ty__back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: color .3s var(--ease), gap .3s var(--ease);
}

.ty__back a:hover {
    color: var(--amber-dark);
    gap: 12px;
}

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

.btn-row--center {
    justify-content: center;
}

@media (max-width:900px) {

    /* Drop the viewport centring on phones and tablets — mobile browsers report
       100vh including the collapsing address bar, which leaves a dead gap. */
    .ty {
        display: block;
        min-height: 0;
        padding-bottom: 64px;
    }

    .ty-card {
        padding: 46px 28px 40px;
    }
}

@media (max-width:640px) {
    .ty {
        padding-top: 52px;
    }

    .ty-card {
        padding: 40px 20px 36px;
    }

    .ty-tick {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .ty-tick svg {
        width: 34px;
        height: 34px;
    }

    /* a 5px offset is too heavy once the wordmark shrinks */
    .ty-hero__big {
        text-shadow: 3px 4px 0 rgba(34, 50, 96, .13);
    }

    .ty__lead {
        font-size: 1rem;
    }

    .ty__note {
        font-size: .88rem;
        margin-bottom: 26px;
    }

    /* full-width stacked actions read better than three wrapped pills */
    .ty__inner .btn-row .btn {
        width: 100%;
        justify-content: center;
    }

    .ty__back {
        margin-top: 24px;
    }
}

/* ---------- Stats strip ---------- */
.stats {
    position: relative;
    z-index: 5;
    margin-top: -70px;
}

.stats__inner {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.stat {
    position: relative;
    isolation: isolate;
    padding: 38px 22px 34px;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: border-color .45s var(--ease);
}

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

/* Soft wash that fades up from the bottom on hover */
.stat::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(255, 186, 0, .14), rgba(255, 186, 0, 0) 72%);
    opacity: 0;
    transition: opacity .45s var(--ease);
}

/* Amber underline that wipes in from the centre */
.stat::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-dark));
    transform: scaleX(0);
    transition: transform .5s var(--ease);
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover::after {
    transform: scaleX(1);
}

.stat__ic {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(34, 50, 96, .07);
    color: var(--navy);
    transition: background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}

.stat__ic svg {
    width: 24px;
    height: 24px;
}

.stat:hover .stat__ic {
    background: var(--amber);
    color: var(--navy-dark);
    transform: translateY(-4px) rotate(-8deg) scale(1.08);
}

/* Scoped to the direct child so the counter <span> inside <b> is not caught */
.stat__num {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(1.5rem, 1.05rem + 1.7vw, 2.7rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.02em;
    transition: transform .45s var(--ease), color .45s var(--ease);
}

.stat:hover .stat__num {
    color: var(--amber-dark);
    transform: scale(1.06);
}

.stat__label {
    display: block;
    margin-top: 6px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .45s var(--ease);
}

.stat:hover .stat__label {
    color: var(--navy);
}

/* ==========================================================================
   CARDS / CONTENT
   ========================================================================== */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}

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

.card:hover::before {
    transform: scaleX(1);
}

.card h4 {
    margin-bottom: 10px;
}

.card p:last-child {
    margin-bottom: 0;
}

.card__ic {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(34, 50, 96, .07);
    color: var(--navy);
    margin-bottom: 18px;
    transition: background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}

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

.card:hover .card__ic {
    background: var(--amber);
    color: var(--navy-dark);
    transform: rotate(-8deg) scale(1.06);
}

.card__num {
    font-family: var(--ff-heading);
    position: absolute;
    right: 18px;
    top: 10px;
    font-size: 3.6rem;
    font-weight: 800;
    color: rgba(34, 50, 96, .05);
    line-height: 1;
    pointer-events: none;
    transition: color .45s var(--ease), transform .45s var(--ease);
}

.card:hover .card__num {
    color: rgba(255, 186, 0, .22);
    transform: translateY(-4px);
}

/* ---------- Sport rows (alternating) ---------- */
.sport {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 66px);
    align-items: center;
    padding: clamp(34px, 4vw, 54px) 0;
    border-bottom: 1px solid var(--line);
}

.sport:last-child {
    border-bottom: 0;
}

.sport:nth-child(even) .sport__media {
    order: 2;
}

.sport__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sport__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.sport__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(23, 39, 64, .55), transparent 55%);
    opacity: .75;
    transition: opacity .6s var(--ease);
}

.sport__media:hover img {
    transform: scale(1.08);
}

.sport__media:hover::after {
    opacity: .45;
}

.sport__tag {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    background: var(--amber);
    color: var(--navy-dark);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 50px;
}

.sport__title {
    font-size: clamp(1.18rem, .98rem + 1.05vw, 1.95rem);
}

.sport__list {
    margin: 0 0 22px;
    display: grid;
    gap: 9px;
}

.sport__list li {
    display: flex;
    gap: 11px;
    font-size: .93rem;
}

.sport__list li::before {
    content: "";
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    border-radius: 50%;
    background: rgba(255, 186, 0, .22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6a409' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Product cards ---------- */
.pcard {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.pcard__media {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
}

.pcard__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .75s var(--ease);
}

/* Amber wash that sweeps in over the photo on hover */
.pcard__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 50, 96, .55), transparent 60%);
    opacity: 0;
    transition: opacity .45s var(--ease);
}

.pcard__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid var(--line);
    transition: border-color .45s var(--ease);
}

.pcard__name {
    font-family: var(--ff-heading);
    font-size: .93rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--navy);
}

.pcard__go {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(255, 186, 0, .16);
    color: var(--amber-dark);
    transition: background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}

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

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

.pcard:hover .pcard__media img {
    transform: scale(1.09);
}

.pcard:hover .pcard__media::after {
    opacity: 1;
}

.pcard:hover .pcard__body {
    border-color: transparent;
}

.pcard:hover .pcard__go {
    background: var(--amber);
    color: var(--navy-dark);
    transform: translateX(3px);
}

/* ---------- Process steps (zig-zag timeline, no card boxes) ---------- */
.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 18px;
}

/* Dashed rail running through the middle of the row */
.steps::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .26) 0 9px, transparent 9px 19px);
}

/* Three rows: content above | node on the rail | content below.
   Odd steps sit above the rail, even steps below. */
.step {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 0 6px;
}

.step__body {
    grid-row: 1;
    align-self: end;
    position: relative;
    padding-bottom: 30px;
}

.step:nth-child(even) .step__body {
    grid-row: 3;
    align-self: start;
    padding: 30px 0 0;
}

/* Short stem joining the copy to its node */
.step__body::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 2px;
    height: 22px;
    margin-left: -1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 186, 0, .55));
    transition: background .45s var(--ease);
}

.step:nth-child(even) .step__body::after {
    bottom: auto;
    top: 0;
    background: linear-gradient(to top, transparent, rgba(255, 186, 0, .55));
}

.step__tag {
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--ff-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    opacity: .75;
    transition: opacity .45s var(--ease);
}

.step h4 {
    font-size: 1.06rem;
    margin-bottom: 9px;
    transition: color .45s var(--ease);
}

.step p {
    font-size: .88rem;
    margin: 0;
}

/* Node — the amber gets stronger with each step, so the four read as a
   progression rather than four identical markers. */
.step__node {
    grid-row: 2;
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy-dark);
    border: 2px solid rgba(255, 186, 0, .3);
    box-shadow: 0 0 0 9px var(--navy-dark);
    transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease);
}

.step__node svg {
    width: 27px;
    height: 27px;
}

.step:nth-child(2) .step__node {
    background: linear-gradient(rgba(255, 186, 0, .12), rgba(255, 186, 0, .12)), var(--navy-dark);
    border-color: rgba(255, 186, 0, .5);
}

.step:nth-child(3) .step__node {
    background: linear-gradient(rgba(255, 186, 0, .24), rgba(255, 186, 0, .24)), var(--navy-dark);
    border-color: rgba(255, 186, 0, .75);
}

.step:nth-child(4) .step__node {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy-dark);
}

.step:hover .step__node {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy-dark);
    transform: scale(1.1) rotate(-8deg);
}

.step:hover .step__tag {
    opacity: 1;
}

.step:hover h4 {
    color: var(--amber);
}

.step:hover .step__body::after {
    background: linear-gradient(to bottom, transparent, var(--amber));
}

.step:nth-child(even):hover .step__body::after {
    background: linear-gradient(to top, transparent, var(--amber));
}

/* ---------- Marquee (certifications) ---------- */
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.marquee .chip {
    background: #fff;
    border-color: var(--line);
    color: var(--navy);
}

.marquee .chip:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy-dark);
}

/* ---------- Areas served ---------- */
.areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area {
    padding: 9px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--body);
    transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}

.area:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- FAQ accordion ---------- */
.faq {
    display: grid;
    gap: 14px;
}

.faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.faq__item.is-open {
    box-shadow: var(--shadow);
    border-color: transparent;
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    transition: color .3s ease;
}

.faq__q:hover {
    color: var(--amber-dark);
}

.faq__ic {
    flex: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    color: var(--navy);
    position: relative;
    transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}

.faq__ic::before,
.faq__ic::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform .4s var(--ease), opacity .4s var(--ease);
}

.faq__ic::before {
    width: 13px;
    height: 2px;
}

.faq__ic::after {
    width: 2px;
    height: 13px;
}

.faq__item.is-open .faq__ic {
    background: var(--amber);
    color: var(--navy-dark);
    transform: rotate(180deg);
}

.faq__item.is-open .faq__ic::after {
    transform: scaleY(0);
    opacity: 0;
}

.faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s var(--ease);
}

.faq__item.is-open .faq__a {
    grid-template-rows: 1fr;
}

.faq__a>div {
    overflow: hidden;
}

.faq__a p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: .93rem;
}

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(115deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: rgba(255, 255, 255, .8);
    padding: clamp(32px, 4vw, 54px);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 3.5vw, 52px);
    align-items: center;
}

.cta-band::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 186, 0, .18);
    filter: blur(60px);
    top: -140px;
    right: -60px;
    animation: blobMove 12s ease-in-out infinite;
}

.cta-band h3 {
    color: #fff;
    margin-bottom: 10px;
}

.cta-band p {
    margin-bottom: 22px;
}

.cta-band>* {
    position: relative;
    z-index: 2;
}

/* Form sits on the left, copy on the right */
.cta-band .quote-card {
    order: 1;
}

.cta-band__body {
    order: 2;
}

.cta-band__list {
    display: grid;
    gap: 11px;
    margin: 0 0 26px;
}

.cta-band__list li {
    display: flex;
    gap: 11px;
    font-size: .93rem;
}

.cta-band__list li::before {
    content: "";
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    border-radius: 50%;
    background: rgba(255, 186, 0, .22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffba00' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 88% 0%, rgba(34, 50, 96, .85), transparent 70%),
        linear-gradient(180deg, #142138 0%, var(--navy-deep) 45%, #0b1421 100%);
    color: rgba(255, 255, 255, .88);
    font-size: .93rem;
    padding-top: clamp(54px, 6vw, 84px);
    border-top: 3px solid var(--amber);
}

/* Faint court-grid texture across the whole footer */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 84px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 84px);
    -webkit-mask-image: radial-gradient(700px 420px at 22% 14%, #000, transparent 72%);
    mask-image: radial-gradient(700px 420px at 22% 14%, #000, transparent 72%);
    pointer-events: none;
}

/* Amber glow behind the court graphic */
.site-footer::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 520px;
    height: 520px;
    right: -190px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(255, 186, 0, .14);
    filter: blur(85px);
    pointer-events: none;
}

/* Badminton court line-art, bottom-right */
.footer__court {
    position: absolute;
    z-index: -1;
    right: -78px;
    bottom: -110px;
    width: 380px;
    height: auto;
    color: #fff;
    opacity: .1;
    transform: rotate(13deg);
    pointer-events: none;
}

.footer__court .court-lines {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: courtDraw 3.2s var(--ease) .25s forwards;
}

.footer__court .court-net {
    stroke-dasharray: 6 7;
}

.footer__court .court-mark {
    fill: var(--amber);
    opacity: .8;
}

@keyframes courtDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer__court .court-lines {
        stroke-dashoffset: 0;
        animation: none;
    }
}

.footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1.05fr 1.15fr 1.3fr;
    gap: 34px 40px;
    padding-bottom: 52px;
}

.site-footer h4 {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.site-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.footer__logo {
    width: auto;
    height: 166px;
    margin-bottom: 22px;
}

.footer__links li {
    margin-bottom: 11px;
}

.footer__links a {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.6;
    transition: color .3s ease, transform .3s var(--ease);
}

/* Chevron stays on the first line for wrapping link labels */
.footer__links a::before {
    content: "\203A";
    flex: none;
    color: var(--amber);
    font-size: 1.1rem;
    line-height: 1.45;
    transition: transform .3s var(--ease);
}

.footer__links a:hover::before {
    transform: translateX(2px);
}

.footer__links a:hover {
    color: var(--amber);
    transform: translateX(5px);
}

.footer__contact li {
    display: flex;
    gap: 13px;
    margin-bottom: 16px;
}

.footer__contact svg {
    width: 17px;
    height: 17px;
    flex: none;
}

/* Icon chip so each contact row reads as a distinct block */
.footer__contact .ic {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    color: var(--amber);
    transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.footer__contact li:hover .ic {
    background: rgba(255, 186, 0, .16);
    border-color: rgba(255, 186, 0, .38);
    transform: translateY(-2px);
}

.footer__contact a:hover {
    color: var(--amber);
}

.footer__socials {
    display: flex;
    gap: 11px;
    margin-top: 20px;
}

.footer__socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}

.footer__socials svg {
    width: 17px;
    height: 17px;
}

.footer__socials a:hover {
    background: var(--amber);
    color: var(--navy-dark);
    transform: translateY(-4px);
}

/* ---------- Locations we serve ---------- */
.footer__locations {
    position: relative;
    padding: 26px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer__locations h4 {
    margin-bottom: 18px;
    text-align: center;
}

/* The shared footer h4 underline is pinned left:0 — re-centre it to match */
.footer__locations h4::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Block + inline-block items, not flex — justify works on the whitespace
   between inline boxes and has no effect inside a flex container. */
.footer__locations-list {
    display: block;
    text-align: justify;
    text-align-last: left;
    /* keeps the final short line from being stretched apart */
    font-size: .82rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .72);
}

/* Border separators instead of literal "|" characters — the last item on each
   row keeps one, but no stray pipe is left dangling in the markup. */
.footer__locations-list a {
    display: inline-block;
    padding: 2px 9px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    transition: color .3s ease;
}

.footer__locations-list a:first-child {
    padding-left: 0;
}

.footer__locations-list a:last-child {
    border-right: 0;
}

.footer__locations-list a:hover {
    color: var(--amber);
}

.footer__bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 22px 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, .82);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 26px;
    flex-wrap: wrap;
}

.footer__bottom p {
    margin: 0;
}

.footer__bottom a {
    color: #fff;
    transition: color .3s ease;
}

.footer__bottom a:hover {
    color: var(--amber);
}

/* Agency credit — underlined so it reads as a link on the dark bar */
.footer__credit {
    color: var(--amber);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.footer__credit:hover {
    color: #fff;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__legal .dot {
    opacity: .4;
}

/* Trust badges under the intro column */
.footer__stamps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.footer__stamps span {
    padding: 6px 13px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.footer__stamps span:hover {
    background: rgba(255, 186, 0, .14);
    border-color: rgba(255, 186, 0, .42);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Floating actions ---------- */
/* Quick Connect renders at z-index 9998, above the mobile drawer (1000),
   so both floating layers step aside while the menu is open. */
body.nav-open .cn-cb-fab-stack,
body.nav-open .floaters {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Bottom-right, opposite the Quick Connect stack which sits bottom-left
   (under 480px that widget becomes a full-width bar, so clear it vertically). */
.floaters {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 850;
    display: grid;
    gap: 12px;
}

.to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--amber);
    color: var(--navy-dark);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s var(--ease), filter .35s var(--ease), opacity .35s ease, visibility .35s;
}

.to-top:hover {
    transform: translateY(-5px) scale(1.06);
    filter: brightness(1.08);
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.to-top svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .topbar__hours {
        display: none;
    }
}

@media (max-width: 1200px) {
    .nav__link {
        padding: 11px 10px;
        font-size: .88rem;
    }

    .nav__link::after {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 1100px) {

    .nav {
        display: none;
    }

    .burger {
        display: grid;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 900px) {

    /* Two text columns are unreadable at tablet width. Scoped to .container so
       the 4-card grid nested inside the intro section stays two-up. */
    .container.grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* The header keeps a burger from 1100px down, so the tall desktop
       logo/header only wastes vertical space from here. */
    :root {
        --header-h: 106px;
    }

    .brand img {
        height: 86px;
    }

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

    /* Supporting copy steps down a notch — headings already scale via clamp() */
    .sec-head p {
        font-size: .97rem;
    }

    .hero__lead {
        font-size: 1rem;
    }

    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2n) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    /* The zig-zag only reads as one sequence in a single row — below this the
       steps stack node-then-copy and the rail is dropped. */
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 22px;
    }

    .steps::before {
        display: none;
    }

    .step {
        grid-template-rows: auto auto;
    }

    .step__node {
        grid-row: 1;
        box-shadow: none;
    }

    .step__body,
    .step:nth-child(even) .step__body {
        grid-row: 2;
        align-self: start;
        padding: 26px 0 0;
    }

    .step__body::after,
    .step:nth-child(even) .step__body::after {
        top: 0;
        bottom: auto;
        background: linear-gradient(to top, transparent, rgba(255, 186, 0, .55));
    }

    .step:hover .step__body::after,
    .step:nth-child(even):hover .step__body::after {
        background: linear-gradient(to top, transparent, var(--amber));
    }

    .sport {
        grid-template-columns: 1fr;
    }

    .sport:nth-child(even) .sport__media {
        order: 0;
    }

    /* Stacked: pitch first, form underneath. The card keeps its own
       left-aligned labels, so centring is scoped to the copy only. */
    .cta-band {
        grid-template-columns: 1fr;
    }

    .cta-band__body {
        order: 1;
        text-align: center;
    }

    .cta-band .quote-card {
        order: 2;
    }

    .cta-band__list {
        text-align: left;
        max-width: 460px;
        margin-inline: auto;
    }

    .cta-band .btn-row {
        justify-content: center;
    }

    .topbar__email {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 100px;
    }

    /* ---- Phone type scale ---- */
    body {
        font-size: 15px;
        line-height: 1.68;
    }

    .sec-head p {
        font-size: .92rem;
    }

    .hero__lead {
        font-size: .95rem;
    }

    .eyebrow {
        font-size: .71rem;
        letter-spacing: .13em;
    }

    .eyebrow::before {
        width: 13px;
        height: 13px;
    }

    .chip {
        font-size: .74rem;
        padding: 7px 13px;
    }

    .btn {
        font-size: 12px;
        padding: 13px 11px;
    }

    .btn-sm {
        font-size: .83rem;
        padding: 10px 20px;
    }

    .sport__list li,
    .cta-band__list li {
        font-size: .87rem;
    }

    .step p {
        font-size: .84rem;
    }

    .step__tag {
        font-size: .68rem;
    }

    .area {
        font-size: .8rem;
        padding: 8px 15px;
    }

    .faq__q {
        font-size: .92rem;
        padding: 16px 18px;
    }

    .faq__a p {
        font-size: .87rem;
        padding: 0 18px 18px;
    }

    .topbar {
        font-size: .78rem;
        display: none;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 46px;
    }

    .site-footer {
        font-size: .88rem;
    }

    .footer__bottom {
        font-size: .8rem;
        text-align: center;
    }

    .site-footer h4 {
        font-size: .95rem;
    }

    .quote-card .note {
        font-size: .8rem;
    }

    /* Inputs must stay at 16px — iOS auto-zooms the page on focus below that.
       Left padding still has to clear the leading icon. */
    .field input,
    .field select,
    .field textarea {
        font-size: 16px;
        padding: 12px 14px 12px 42px;
    }

    .field select {
        padding-right: 38px;
    }

    .field label {
        font-size: .74rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Image cards still read fine two-up on a phone */
    .grid.products {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .pcard__body {
        padding: 13px 14px;
    }

    .pcard__name {
        font-size: .82rem;
    }

    .pcard__go {
        display: none;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    /* Band padding + card padding + container padding stack up on a phone —
       trim the outer two so the inputs keep a usable width. */
    .cta-band {
        padding: 22px;
    }

    .quote-card {
        padding: 20px 18px;
    }

    .stats {
        margin-top: -46px;
    }

    .stats__inner {
        grid-template-columns: 1fr 1fr;
    }

    /* At ~335px of usable width the desktop padding leaves too little room
       for "5,000+" beside its label. */
    .stat {
        padding: 26px 12px 24px;
    }

    .stat__ic {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
        border-radius: 13px;
    }

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

    .stat__label {
        font-size: .72rem;
        letter-spacing: .06em;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__court {
        width: 230px;
        right: -90px;
        bottom: -80px;
        opacity: .07;
    }

    .brand img {
        height: 80px;
    }

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

    .footer__locations-list {
        font-size: .76rem;
        line-height: 1.85;
    }

    .footer__locations-list a {
        padding: 2px 7px;
    }

    .footer__logo {
        height: 84px;
    }

    /* Burger + sticky mobile bar already cover this CTA on phones. */
    .header__cta>.btn {
        display: none;
    }

    /* Phones live in the sticky bottom bar on mobile — keep the topbar to one line. */
    .topbar__list--meta {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .btn {
        width: 100%;
    }

    .btn-row {
        flex-direction: column;
    }

    /* Clear the full-width Quick Connect bar that sits along the bottom edge */
    .floaters {
        bottom: 72px;
        right: 14px;
    }
}