:root {
    /* Font stack */
    --font-schib: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    /* LIGHT THEME (DEFAULT) */
    color-scheme: light;

    /* ===== Core theme tokens ===== */
    --bg-color: #F7F7F7;
    --text-color: #121212;
    --muted-text: rgba(18, 18, 18, 0.72);
    --surface: #F0F0F0;

    --accent-color: #0F52BA;
    --accent-color-reverse: #FFA724;

    --border: rgba(18, 18, 18, 0.12);
    --header-bg: rgba(247, 247, 247, 0.95);

    /* Trust bar bg */
    --trustbar-bg: #222222;

    /* Spacer section background mix */
    --spacer-mix: #000;
    /* light mode: darken */

    /* ===== Hero tokens (LIGHT) ===== */
    --hero-top-svg: url("../img/home/img-top-light-sky.svg");
    --hero-bottom-svg: url("../img/home/img-bottom-light-chicago-skyline.svg");
    /* Hero content colors (do NOT affect images) */
    --hero-kicker: var(--accent-color);
    --hero-title: var(--text-color);
    --hero-link: var(--accent-color);
    /* Hero CTA buttons (scoped overrides) */
    --hero-btn-bg: var(--accent-color);
    --hero-btn-text: #F7F7F7;
    --hero-btn-border: transparent;
    /* Ghost variant (inverted surface) */
    --hero-btn-ghost-bg: color-mix(in srgb, var(--surface) 88%, transparent);
    --hero-btn-ghost-text: var(--text-color);
    --hero-btn-ghost-border: var(--border);
    /* Hero pill (scoped surface) */
    --hero-pill-bg: color-mix(in srgb, var(--surface) 86%, transparent);
    --hero-pill-border: color-mix(in srgb, var(--border) 90%, transparent);
    --hero-pill-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    /* Optional hero panel (set to transparent if unused) */
    --hero-panel-bg: transparent;
    --hero-panel-border: transparent;
    --hero-panel-shadow: none;
    /* ===== end Hero tokens (LIGHT) ===== */
}

/* DARK THEME OVERRIDES */
[data-theme="dark"] {
    color-scheme: dark;

    /* ===== Core theme tokens ===== */
    --bg-color: #121212;
    --text-color: #F7F7F7;
    --muted-text: rgba(247, 247, 247, 0.72);
    --surface: #1A1A1A;

    --accent-color: #FFA724;
    --accent-color-reverse: #0F52BA;

    --border: rgba(247, 247, 247, 0.14);
    --header-bg: rgba(18, 18, 18, 0.95);

    /* Trust bar bg */
    --trustbar-bg: #414141;

    /* Spacer section background mix */
    --spacer-mix: #fff;
    /* dark mode: lighten */

    /* ===== Hero tokens (DARK) ===== */
    --hero-top-svg: url("../img/home/img-top-dark-sky.svg");
    --hero-bottom-svg: url("../img/home/img-bottom-dark-chicago-skyline.svg");
    /* Hero content colors (do NOT affect images) */
    --hero-kicker: var(--accent-color);
    --hero-title: var(--text-color);
    --hero-link: var(--accent-color);
    /* Hero CTA buttons (scoped overrides) */
    --hero-btn-bg: var(--accent-color);
    --hero-btn-text: #121212;
    --hero-btn-border: transparent;
    /* Ghost variant (inverted surface) */
    --hero-btn-ghost-bg: color-mix(in srgb, var(--surface) 70%, transparent);
    --hero-btn-ghost-text: var(--text-color);
    --hero-btn-ghost-border: var(--border);
    /* Hero pill (scoped surface) */
    --hero-pill-bg: color-mix(in srgb, var(--surface) 70%, transparent);
    --hero-pill-border: color-mix(in srgb, var(--border) 85%, transparent);
    --hero-pill-shadow: 0 22px 55px rgba(0, 0, 0, .48);
    /* Optional hero panel (set to transparent if unused) */
    --hero-panel-bg: transparent;
    --hero-panel-border: transparent;
    --hero-panel-shadow: none;
    /* ===== end Hero tokens (DARK) ===== */
}

@font-face {
    font-family: "Schibsted Grotesk";
    src: url("../fonts/SchibstedGrotesk-VariableFont_wght.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Schibsted Grotesk";
    src: url("../fonts/SchibstedGrotesk-Italic-VariableFont_wght.woff2") format("woff2");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Body with gap for fixed header */
body {
    padding-top: 72px;
    font-family: var(--font-schib);
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
}

/* Body class hero remove gap */
body.hero-under-header {
    padding-top: 0;
}



/* ===== MAIN (no spacing) ===== */
main {
    display: block;
    margin: 0;
    padding: 0;
}

/* ===== end MAIN ===== */



/* ===== Skip link ===== */
.skip-link {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface);
    color: var(--text-color);
    border: 1px solid var(--border);
    transform: translateY(-160%);
    z-index: 9999;
    text-decoration: none;
}

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

/* ===== end Skip link ===== */



/* =====Global page wrapper ===== */
.page-wrapper {
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== end Global page wrapper ===== */



/* ===== Buttons (global) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px 14px;
    border-radius: 14px;

    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-color);
    text-decoration: none;

    cursor: pointer;
    user-select: none;

    /* subtle depth */
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease, border-color 150ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--text-color) 18%, var(--border));
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 9px 22px rgba(0, 0, 0, .12);
}

.btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Primary */
.btn-primary {
    background: var(--accent-color);
    border-color: transparent;
    color: #F7F7F7 !important;

    /* premium text pop */
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);

    /* a touch more depth */
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.btn-primary:hover {
    filter: brightness(.95);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.btn-primary:active {
    filter: brightness(.90);
    box-shadow: 0 11px 26px rgba(0, 0, 0, .14);
}

/* Keep text white in all link states */
.btn-primary,
.btn-primary:visited,
.btn-primary:hover {
    color: #F7F7F7 !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }

    .btn:hover,
    .btn:active {
        transform: none;
    }
}

/* ===== end Buttons ===== */




/* ===== Breadcrumbs (global) ===== */
.breadcrumbs {
    width: 100%;
    padding: 10px 16px;
    background: color-mix(in srgb, var(--bg-color) 92%, var(--spacer-mix) 8%);
    border-bottom: 1px solid var(--border);
}

.breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs-link {
    color: var(--muted-text);
    text-decoration: none;
    line-height: 1.2;
}

.breadcrumbs-link:hover {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.breadcrumbs-link:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 10px;
}

.breadcrumbs-sep {
    opacity: .55;
    color: var(--muted-text);
    user-select: none;
}

.breadcrumbs-current {
    color: var(--text-color);
    font-weight: 500;
}

/* ===== end Breadcrumbs ===== */



/* =========================================================
   Global FAQ Component
   Reusable on contact, book, service areas, service pages, etc.
   ========================================================= */

.site-faq {
    --faq-radius: 18px;
    --faq-pad-x: clamp(14px, 2vw, 18px);
    --faq-pad-y: clamp(14px, 2vw, 16px);

    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.site-faq__item {
    border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
    border-radius: var(--faq-radius);
    background:
        linear-gradient(180deg,
            color-mix(in srgb, var(--surface) 96%, white 4%),
            color-mix(in srgb, var(--surface) 92%, transparent));
    box-shadow:
        0 10px 28px color-mix(in srgb, #000 8%, transparent),
        inset 0 1px 0 color-mix(in srgb, #fff 14%, transparent);
    overflow: hidden;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.site-faq__item:hover {
    border-color: color-mix(in srgb, var(--accent-color) 28%, var(--border));
    box-shadow:
        0 14px 34px color-mix(in srgb, #000 11%, transparent),
        inset 0 1px 0 color-mix(in srgb, #fff 16%, transparent);
    transform: translateY(-1px);
}

.site-faq__item[open] {
    border-color: color-mix(in srgb, var(--accent-color) 34%, var(--border));
}

.site-faq__question {
    width: 100%;
    cursor: pointer;
    list-style: none;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: var(--faq-pad-y) var(--faq-pad-x);
    color: var(--text-color);
    font-size: clamp(0.98rem, 1.2vw, 1.05rem);
    font-weight: 850;
    line-height: 1.35;
}

.site-faq__question::-webkit-details-marker {
    display: none;
}

.site-faq__icon {
    flex: 0 0 auto;

    width: auto;
    height: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--accent-color);
    background: transparent;
    border: 0;

    font-size: 0.9rem;
    line-height: 1;
    transition:
        transform 180ms ease,
        color 180ms ease;
}

.site-faq__text {
    flex: 1 1 auto;
    min-width: 0;
}

.site-faq__item[open] .site-faq__icon {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.site-faq__answer {
    padding: 0 var(--faq-pad-x) var(--faq-pad-y) calc(var(--faq-pad-x) + 40px);
    color: var(--muted-text);
    line-height: 1.65;
    font-size: 0.98rem;
}

.site-faq__answer p {
    margin: 0;
}

.site-faq__answer p+p {
    margin-top: 10px;
}

.site-faq__question:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-color) 42%, transparent);
    outline-offset: -3px;
}

@media (max-width: 560px) {
    .site-faq {
        gap: 10px;
    }

    .site-faq__question {
        align-items: flex-start;
    }

    .site-faq__icon {
        margin-top: 3px;
    }

    .site-faq__answer {
        padding-left: var(--faq-pad-x);
    }
}

@media (prefers-reduced-motion: reduce) {

    .site-faq__item,
    .site-faq__icon {
        transition: none;
    }

    .site-faq__item:hover {
        transform: none;
    }
}

/* ===== end FAQ Component ===== */



/* ===== Global image hover (reusable) ===== */
.img-hover {
    display: block;
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    object-fit: cover;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.img-hover:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    filter: saturate(1.03);
}

.img-hover:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

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

    .img-hover:hover {
        transform: none;
    }
}

/* ===== end Global image hover (reusable) ===== */



/* ===== Toggle Theme Switcher Styles (compact, fixed thumb visibility) ===== */

.theme-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.theme-switch__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;

    position: relative;
}

/* Track: compact (38x20) */
.theme-switch__track {
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--text-color) 18%, transparent);
    border: 1px solid var(--border);

    display: block;
}

/* Thumb: sits ON TOP of track */
.theme-switch__thumb {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);

    /* Position thumb over the track */
    position: absolute;
    left: 0;
    /* start at track left edge */
    top: 50%;
    transform: translate(2px, -50%);
    /* 2px inner padding + vertical centering */
    z-index: 1;

    transition: transform 150ms ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

/* When checked */
.theme-switch__input:checked+.theme-switch__label .theme-switch__track {
    background: color-mix(in srgb, var(--accent-color) 45%, transparent);
    border-color: color-mix(in srgb, var(--accent-color) 45%, var(--border));
}

/* Checked position: 38 - 16 - 2 = 20px travel */
.theme-switch__input:checked+.theme-switch__label .theme-switch__thumb {
    transform: translate(20px, -50%);
}

/* Text label */
.theme-switch__text {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Keyboard focus */
.theme-switch__input:focus-visible+.theme-switch__label .theme-switch__track {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .theme-switch__thumb {
        transition: none;
    }
}

/* ===== end Toggle Theme Switcher Styles ===== */



/* ===== Quote (global, reusable) ===== */
.quote {
    width: min(900px, 100%);
    margin: 0 0 18px;
    padding: 44px 26px 26px;

    text-align: left;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);

    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 18px;

    font-size: 72px;
    line-height: 1;

    /* keep it “accenty” instead of washed out */
    color: color-mix(in srgb, var(--accent-color) 80%, #000 20%);
    opacity: .22;

    pointer-events: none;
    z-index: 0;
}

.quote>* {
    position: relative;
    z-index: 1;
}

.quote p:first-child {
    margin-top: 6px;
}

.quote p {
    margin: 0 0 12px;
    line-height: 1.6;
}

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

.quote-center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== end Quote ===== */




/* -- ==== Scroll to top button (reusable) ==== -- */
.scroll-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    z-index: 999;

    opacity: 0;
    /* hidden by default */
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.scroll-top-btn i {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.3;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* visible state from JS */
.scroll-top-btn.is-visible {
    opacity: 0.9;
    pointer-events: auto;
    transform: translateY(0);
}

/* hover / keyboard focus */
.scroll-top-btn:hover i,
.scroll-top-btn:focus-visible i {
    opacity: 1;
    transform: translateY(-1px);
}

.scroll-top-btn:focus-visible {
    outline: none;
}

/* end Scroll to top button */





/* ===============================================================

================ HOMEPAGE STYLES ================

=============================================================== */


/* ===== HEADER & NAVIGATION ===== */

/* Header layout (overlay hero) */
/* ===== HEADER (overlay, no layout gap) ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;

    background: var(--header-bg);
    /* your transparency */
    border-bottom: 1px solid var(--border);

    /* optional: comment out if you want ZERO “wash” through header */
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
}

/* ===== end HEADER ===== */


/* == Logo styles == */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

/* Recommended displayed size for stacked logo */
.logo-img {
    height: 46px;
    width: auto;
    max-width: 190px;
    display: block;
}

/* Show light logo by default */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

/* Swap in dark mode */
[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

/* Mobile sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
}

/* == end Logo styles == */



/* ===== Nav base ===== */
.site-nav {
    display: flex;
    align-items: center;
}

/* Hamburger */
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
}

.hamburger {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--text-color);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Mobile menu panel */
.menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    display: none;
}

.menu[data-open="true"] {
    display: block;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.menu-list a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid transparent;
}

.menu-list a:hover {
    border-color: var(--border);
}

.menu-cta .btn {
    width: 100%;
}

/* Desktop */
.cta-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .menu {
        position: static;
        display: block !important;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .menu-list {
        display: flex;
        gap: 6px;
        align-items: center;
        justify-content: center;
    }

    .menu-list a {
        width: auto;
        text-align: left;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .menu-cta {
        display: none;
    }

    .cta-desktop {
        display: inline-flex;
    }
}

/* ===== end HEADER & NAVIGATION ===== */





/* ===== HERO (true top:0 behind header, images untouched; CTA + pill use vars) ===== */
.hero-section {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--bg-color);

    height: 100dvh;
    height: 100svh;
    height: 100vh;
    min-height: 520px;
}

/* top art */
.hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 26vh;
    background: var(--hero-top-svg) top center / cover no-repeat;
    z-index: 0;
}

/* bottom art */
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 26vh;
    background: var(--hero-bottom-svg) bottom center / cover no-repeat;
    z-index: 0;
}

/* content wrapper only */
.hero-center {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    place-items: center;
    padding: clamp(36px, 6vh, 84px) 16px;
}

.hero-content {
    width: min(980px, 100%);
    text-align: center;
    display: grid;
    gap: 14px;
    justify-items: center;
}

/* Brand kicker (now your top line) */
.hero-text-top {
    color: var(--hero-kicker, var(--accent-color));
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.12;
    font-size: clamp(0.95rem, 1.35vw, 1.15rem);
}

/* H1 title (now your middle line) */
.hero-text-middle {
    color: var(--hero-title, var(--text-color));
    font-weight: 860;
    letter-spacing: -0.02em;
    line-height: 1.06;
    font-size: clamp(2.05rem, 4.2vw, 3.6rem);
    text-wrap: balance;
    margin: 0;
}

/* New sub line under H1 */
.hero-text-sub {
    color: var(--hero-sub, var(--muted-text));
    max-width: 56ch;
    line-height: 1.55;
    font-weight: 650;
    font-size: clamp(1.05rem, 1.55vw, 1.25rem);
    margin: 0;
}

/* CTA row */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2px;
}

/* hero-only CTA tuning (solid + clean ghost) */
.hero-cta .btn-primary {
    background: var(--hero-btn-bg, var(--accent-color));
    color: var(--hero-btn-text, #F7F7F7) !important;
    border-color: var(--hero-btn-border, transparent);
}

.hero-cta .btn:not(.btn-primary) {
    background: var(--hero-btn-ghost-bg, color-mix(in srgb, var(--surface) 88%, transparent));
    color: var(--hero-btn-ghost-text, var(--text-color));
    border-color: var(--hero-btn-ghost-border, var(--border));
}

/* bottom callout pill */
.hero-text-bottom {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;

    width: min(560px, 100%);
    margin: 10px auto 0;

    padding: 14px 16px;
    border-radius: 18px;

    background: var(--hero-pill-bg);
    border: 1px solid var(--hero-pill-border, rgba(247, 247, 247, .22));
    backdrop-filter: blur(10px);
    box-shadow: var(--hero-pill-shadow, 0 18px 45px rgba(0, 0, 0, .14));
}

.hero-text-bottom span {
    font-weight: 750;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--hero-pill-kicker, var(--muted-text));
    font-size: 0.92rem;
}

.hero-text-bottom a {
    color: var(--hero-link, var(--accent-color));
    text-decoration: none;
    font-weight: 850;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-text-bottom a:hover {
    text-decoration: underline;
}

.hero-text-bottom a:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section::before {
        height: 22vh;
    }

    .hero-section::after {
        height: 22vh;
    }

    .hero-content {
        gap: 12px;
    }

    .hero-text-middle {
        font-size: clamp(2.1rem, 8.8vw, 3.1rem);
    }

    .hero-text-sub {
        font-size: 1.05rem;
    }

    .hero-text-bottom {
        width: min(460px, 100%);
        padding: 12px 14px;
        border-radius: 16px;
    }
}

/* ===== end HERO ===== */




/* ===== Trust Bar ===== */
.trustbar {
    background: var(--trustbar-bg);
    padding: clamp(56px, 6vw, 96px) 16px;
}

.trustbar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.trustbar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 14px;
    border-radius: 14px;
    /* less button-like than 999px */
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg-color) 88%, var(--surface) 12%);

    font-weight: 600;
    /* calmer than 700 */
    font-size: 0.97rem;
    line-height: 1.35;
    color: var(--text-color);
    text-align: center;
}

.trustbar-item i {
    color: var(--muted-text);
    /* was accent */
    font-size: 0.95rem;
    opacity: 0.9;
    flex: 0 0 auto;
    pointer-events: none;
}

.trustbar-item span {
    color: var(--text-color);
}

/* 2 columns */
@media (min-width: 520px) {
    .trustbar-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 columns */
@media (min-width: 900px) {
    .trustbar-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== end Trust Bar ===== */




/* ===== Section Kicker (global, reusable) ===== */
.section-kicker {
    margin: 0 0 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* ===== end Section Kicker ===== */




/* ===== Spacer section (reusable) ===== */
.section-spacer {
    padding: clamp(56px, 6vw, 96px) 16px;
    text-align: center;
    background: var(--bg-color);
    /* fallback */
    background: color-mix(in srgb, var(--bg-color) 93%, var(--spacer-mix) 7%);
    width: 100%;
}

.section-spacer h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

/* Spacer helpers (minimal, reusable) */
.spacer-subtitle {
    margin: -14px auto 22px;
    max-width: 70ch;
    line-height: 1.6;
    color: var(--muted-text);
}

.spacer-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .spacer-actions .btn {
        width: 100%;
    }
}

/* ===== end Spacer section (reusable) ===== */




/* =========================================================
   HOMEPAGE SERVICES
   - clickable cards
   - premium accent styling
========================================================= */

.home-services {
    padding: clamp(56px, 6vw, 96px) 16px;
    background: var(--bg-color);
}

.home-services__head {
    text-align: center;
    margin: 0 auto 26px;
    max-width: 760px;
}

.home-services__head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-services__subtitle {
    margin: 14px auto 0;
    max-width: 70ch;
    color: var(--muted-text);
    line-height: 1.65;
    font-size: 0.98rem;
}

.home-services__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-services__grid>li {
    display: flex;
    min-width: 0;
}

/* clickable service card */
.home-service {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 10px;

    width: 100%;
    height: 230px;
    padding: 18px;

    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);

    color: var(--text-color);
    text-align: left;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        border-color 150ms ease,
        background 150ms ease;
}

.home-service:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent-color) 38%, var(--border));
    background: color-mix(in srgb, var(--surface) 97%, var(--accent-color) 3%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.home-service:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.home-service__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 85%, var(--accent-color) 15%);
    color: var(--accent-color);

    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.home-service__icon i {
    font-size: 1.08rem;
}

.home-service__title {
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-size: 1.05rem;
}

.home-service__text {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    color: var(--muted-text);
    line-height: 1.5;
    font-size: 0.96rem;
    max-width: 46ch;
}

.home-service__cue {
    align-self: end;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 6px;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--accent-color);
}

.home-service__cue i {
    font-size: 0.85rem;
    transition: transform 150ms ease;
}

.home-service:hover .home-service__cue i {
    transform: translateX(2px);
}

/* responsive */
@media (max-width: 980px) {
    .home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-services__grid {
        grid-template-columns: 1fr;
    }

    .home-service {
        height: auto;
        min-height: 0;
        border-radius: 16px;
    }

    .home-service__text {
        line-clamp: unset;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}

/* end Services */




/* =========================================================
   HOMEPAGE VALUES
   - static cards
   - same visual language as services, but not clickable
========================================================= */

.home-values {
    padding: clamp(56px, 6vw, 96px) 16px;
    background: var(--bg-color);
}

.home-values__head {
    text-align: center;
    margin: 0 auto 26px;
    max-width: 760px;
}

.home-values__head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-values__grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
    position: relative;
    overflow: hidden;

    min-height: 208px;
    padding: 18px;

    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    display: grid;
    gap: 10px;
    text-align: left;
}

.value-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.value-card__num {
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.value-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 85%, var(--accent-color) 15%);
    color: var(--accent-color);

    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.value-card__icon i {
    font-size: 1.08rem;
}

.value-card__title {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.value-card__text {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.6;
    font-size: 0.98rem;
}


/* responsive */
@media (max-width: 980px) {
    .home-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-values__grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 0;
        border-radius: 16px;
    }
}

/* end Values */





/* =========================================================
   SERVICE AREAS SECTION (premium homepage preview)
   - 
   - 
========================================================= */

.areas-band {
    width: 100%;
    padding: clamp(56px, 6vw, 96px) 16px;
    background: var(--bg-color);
}

.areas-band-content {
    position: relative;
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 24px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);

    padding: clamp(24px, 4vw, 40px);
}

.areas-header {
    text-align: center;
    margin: 0 auto 24px;
    max-width: 820px;
}

.areas-header h2 {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.areas-subtitle {
    color: var(--muted-text);
    max-width: 72ch;
    margin: 14px auto 0;
    line-height: 1.65;
}

/* Featured areas grid */
.areas-grid {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

/* Area item */
.area-item {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 54px;
    padding: 13px 14px;

    border-radius: 10px;
    border: 1px solid var(--border);

    background: color-mix(in srgb, var(--bg-color) 78%, var(--surface));
    cursor: default;
}

.area-item:hover {
    transform: none;
    border-color: var(--border);
    background: color-mix(in srgb, var(--bg-color) 78%, var(--surface));
}

.area-item i {
    flex: 0 0 auto;
    width: auto;
    height: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 0;
    background: none;

    color: var(--accent-color);
    font-size: 0.95rem;
}

.area-item span {
    font-weight: 700;
    line-height: 1.25;
}

.area-item--primary {
    border-color: var(--border);
    border-left-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color) 7%, var(--surface));
}

/* CTA row */
.areas-cta {
    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.areas-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.areas-link:hover,
.areas-link:focus-visible {
    text-decoration: underline;
}

.areas-link i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 980px) {
    .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .areas-band-content {
        border-radius: 20px;
        padding: 22px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .area-item {
        min-height: 54px;
        border-radius: 16px;
    }

    .areas-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .areas-cta .btn,
    .areas-link {
        width: 100%;
        justify-content: center;
    }
}

/* ===== end Areas Section ===== */





/* =========================================================
   REVIEWS (Homepage)
   - HTML reviews
   - CSS scroll cards
   ========================================================= */

.reviews-section {
    padding: clamp(56px, 6vw, 96px) 16px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.reviews-section>h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

/* ===== Badge ===== */
.reviews-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.reviews-badge-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
}

.reviews-badge-name {
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.reviews-badge-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stars {
    letter-spacing: 0.12em;
    font-size: 1.05rem;
    color: var(--accent-color);
    line-height: 1;
}

.reviews-badge-meta {
    color: var(--muted-text);
    font-weight: 600;
}

.reviews-badge-powered {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-weight: 600;
    line-height: 1;
}

.reviews-badge-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .reviews-badge {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews-badge-actions {
        justify-content: stretch;
    }

    .reviews-badge-actions .btn {
        width: 100%;
    }
}

/* ===== Track ===== */
.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(285px, 360px);
    gap: 16px;
    overflow-x: auto;
    padding: 6px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--accent-color) 42%, var(--border)) transparent;
}

.reviews-track::-webkit-scrollbar {
    height: 10px;
}

.reviews-track::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--accent-color) 42%, var(--border));
    border-radius: 999px;
}

.reviews-track::-webkit-scrollbar-track {
    background: transparent;
}

/* ===== Cards ===== */
.review-card {
    scroll-snap-align: start;
    text-align: left;
    padding: 16px 16px 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
    border-color: color-mix(in srgb, var(--text-color) 18%, var(--border));
}

.review-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.review-name {
    font-weight: 800;
}

.review-stars {
    color: var(--accent-color);
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.review-text {
    margin: 0 0 12px;
    line-height: 1.65;
    color: var(--muted-text);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--muted-text);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== Long review / read more ===== */
.review-more {
    margin: 0 0 12px;
}

.review-more summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--accent-color);
    font-weight: 700;
    user-select: none;
}

.review-more summary::-webkit-details-marker {
    display: none;
}

.review-more summary::after {
    content: "+";
    font-size: 1rem;
    line-height: 1;
}

.review-more[open] summary::after {
    content: "–";
}

.review-more__content {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.review-more__content p {
    margin: 0 0 10px;
    line-height: 1.65;
    color: var(--muted-text);
}

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

/* ===== Wider screens ===== */
@media (min-width: 768px) {
    .reviews-track {
        grid-auto-columns: minmax(320px, 380px);
    }
}

/* ===== Dragging state ===== */
.reviews-track {
    cursor: grab;
}

.reviews-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.reviews-track.is-dragging,
.reviews-track.is-dragging * {
    user-select: none;
}

/* ===== end REVIEWS ===== */



/* =========================================================
Minimal shared styles for legal pages 
Privacy / Terms / Accessibility 
========================================================= */

.legal-main {
    padding: 22px 0 44px;
}

.legal-header {
    display: grid;
    gap: 10px;
    padding: 18px 0 6px;
}

.legal-header h1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.legal-meta {
    opacity: 0.85;
    font-size: 0.95rem;
}

.legal-nav {
    margin: 14px 0 18px;
    padding: 14px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.legal-nav ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.legal-section {
    margin: 18px 0;
    padding: 16px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.legal-section h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.legal-section h3 {
    margin: 14px 0 8px;
}

/* Bullets list legal section */
.legal-section ul {
    margin: 10px 0 0;
    padding-left: 1.15rem;
    /* creates space from the border */
    list-style-position: outside;
    /* default, keeps dots in the gutter */
}

.legal-section ul>li {
    padding-left: 0.15rem;
    /* small breathing room after bullet */
    margin: 6px 0;
}

/* Nested lists inside capacity, etc. */
.legal-section ul ul {
    margin-top: 6px;
    padding-left: 1.15rem;
}

/* softer bullets premium */
.legal-section li::marker {
    opacity: 0.75;
}

/* end Bullets list */

.legal-note {
    margin-top: 12px;
    padding: 12px 12px;
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--bg-color) 70%, transparent);
}

.legal-footer {
    margin-top: 22px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    opacity: 0.9;
}

/*===== end Legal page styles ===== */





/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;

    display: block;
    background: #121212;
    color: #f7f7f7;
    border-top: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 -18px 45px rgba(0, 0, 0, .28);
}

/* Hidden state */
.cookie-banner[hidden] {
    display: none !important;
}

/* Visible state added by JS */
.cookie-banner.is-visible {
    display: block;
}

/* Important: prevents main/settings views from getting stuck */
.cookie-banner__view[hidden] {
    display: none !important;
}

.cookie-banner__inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
}

.cookie-banner__view {
    display: grid;
    gap: 18px;
}

.cookie-banner__view--main {
    grid-template-columns: 1fr;
    align-items: center;
}

.cookie-banner__view--settings {
    max-width: 920px;
}

.cookie-banner__content {
    max-width: 780px;
}

.cookie-banner__eyebrow {
    margin: 0 0 6px;
    font-size: .78rem;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(247, 247, 247, .72);
    font-weight: 700;
}

.cookie-banner__title {
    margin: 0 0 8px;
    font-size: clamp(1.08rem, 1.6vw, 1.35rem);
    line-height: 1.2;
    color: #fff;
}

.cookie-banner__text {
    margin: 0;
    color: rgba(247, 247, 247, .82);
    font-size: .95rem;
    line-height: 1.55;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-banner__actions--settings {
    margin-top: 4px;
}

.cookie-banner__link {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__link:hover {
    color: var(--accent-color);
}

.cookie-banner__link:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

.cookie-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    font-weight: 700;
    font-size: .92rem;
    line-height: 1;
    cursor: pointer;

    transition:
        transform 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        color 150ms ease,
        opacity 150ms ease;
}

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

.cookie-btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.cookie-btn--primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #111;
}

.cookie-btn--primary:hover {
    opacity: .92;
}

.cookie-btn--secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, .13);
}

.cookie-btn--ghost {
    background: transparent;
    color: rgba(247, 247, 247, .82);
}

.cookie-btn--ghost:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* Cookie options */

.cookie-options {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .12);
}

.cookie-option__title {
    margin: 0 0 4px;
    font-size: .98rem;
    line-height: 1.25;
    color: #fff;
}

.cookie-option__text {
    margin: 0;
    color: rgba(247, 247, 247, .72);
    font-size: .88rem;
    line-height: 1.45;
}

.cookie-option__status {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(247, 247, 247, .8);
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Cookie toggle switch */

.cookie-switch {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

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

.cookie-switch__label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.cookie-switch__track {
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
    display: block;
}

.cookie-switch__thumb {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .28);

    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(2px, -50%);
    z-index: 1;

    transition: transform 150ms ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
}

.cookie-switch__input:checked+.cookie-switch__label .cookie-switch__track {
    background: color-mix(in srgb, var(--accent-color) 70%, transparent);
    border-color: color-mix(in srgb, var(--accent-color) 80%, rgba(255, 255, 255, .22));
}

.cookie-switch__input:checked+.cookie-switch__label .cookie-switch__thumb {
    transform: translate(20px, -50%);
}

.cookie-switch__input:focus-visible+.cookie-switch__label .cookie-switch__track {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Screen-reader utility */

.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;
}

/* Footer cookie settings button 
----- remove comment to edit link styles 

.cookie-settings-link {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.cookie-settings-link:hover {
    color: var(--accent-color);
}

.cookie-settings-link:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
    border-radius: 4px;
}

------ */


/* Desktop layout */

@media (min-width: 760px) {
    .cookie-banner__view--main {
        grid-template-columns: 1fr auto;
    }

    .cookie-banner__actions {
        justify-content: flex-end;
    }
}

/* Mobile layout */

@media (max-width: 520px) {
    .cookie-banner {
        max-height: 90vh;
        overflow-y: auto;
    }

    .cookie-banner__inner {
        width: min(100% - 24px, 1200px);
        padding: 16px 0;
    }

    .cookie-option {
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-banner__actions,
    .cookie-btn {
        width: 100%;
    }

    .cookie-btn {
        justify-content: center;
        text-align: center;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .cookie-btn,
    .cookie-switch__thumb {
        transition: none;
    }

    .cookie-btn:hover {
        transform: none;
    }
}

/* ===== end Cookie Banner ===== */






/* =========================================================
   GLOBAL SHARE BUTTON
========================================================= */
.share-widget {
    position: relative;
    display: inline-grid;
}

/* Important: prevents CSS display:grid from overriding hidden */
.share-menu[hidden],
.share-copy-tip[hidden] {
    display: none !important;
}

.share-toggle,
.share-menu :is(a, button) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--surface);
    color: var(--text-color);
    font: inherit;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;

    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.share-toggle:hover,
.share-menu :is(a, button):hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--text-color) 20%, var(--border));
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
    text-decoration: none !important;
}

.share-toggle i {
    color: var(--accent-color);
    transition: transform .16s ease;
}

.share-widget.is-open .share-toggle i {
    transform: rotate(90deg);
}

.share-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    z-index: 30;

    display: grid;
    gap: 8px;
    width: 220px;
    padding: 10px;

    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .16);
}

.share-menu :is(a, button) {
    width: 100%;
    justify-content: flex-start;
    background: color-mix(in srgb, var(--bg-color) 70%, var(--surface));
    box-shadow: none;
}

.share-menu i {
    width: 18px;
    color: var(--accent-color);
}

.share-copy-btn {
    position: relative;
}

.share-copy-tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);

    z-index: 40;
    padding: 6px 10px;
    border-radius: 999px;

    background: var(--accent-color);
    color: #fff;

    font-size: .8rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;

    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.share-copy-tip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);

    border: 7px solid transparent;
    border-top-color: var(--accent-color);
}

@media (max-width: 760px) {
    .share-widget {
        justify-self: center;
    }

    .share-menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .share-menu :is(a, button) {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .share-toggle,
    .share-toggle i,
    .share-menu :is(a, button) {
        transition: none;
    }

    .share-toggle:hover,
    .share-menu :is(a, button):hover {
        transform: none;
    }
}

/* ===== end Global Share Button ===== */








/* =========================================================
   SITE FOOTER
========================================================= */
.site-footer {
    background: transparent;
    color: var(--text-color);
}

.footer-wrap {
    padding-top: 44px;
    padding-bottom: 26px;
}

.footer-panel {
    display: grid;
    grid-template-columns: minmax(250px, .95fr) minmax(360px, 1.55fr) minmax(250px, .95fr);
    gap: 28px;
    align-items: start;
}


/* Brand */
.footer-brand {
    min-width: 0;
}

.footer-brand-row {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;

    width: fit-content;
    max-width: 100%;
    margin: 0 0 12px;

    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.footer-logo-img {
    display: block;
    flex: 0 0 auto;

    height: 42px;
    width: auto;
    max-width: none;
}

[data-theme="dark"] .footer-logo-img {
    content: url("/assets/img/brand/logo-vm-wh.svg");
}

.footer-brand-name {
    display: block;
    flex: 0 0 auto;

    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* Text */
.site-footer h3,
.site-footer p {
    margin-top: 0;
}

.site-footer h3 {
    margin-bottom: 10px;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted-text);
}

.site-footer p {
    color: var(--muted-text);
    line-height: 1.55;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:focus-visible,
.site-footer button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-color) 70%, transparent);
    outline-offset: 3px;
}


/* Buttons */
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--surface);
    color: var(--text-color);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;

    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.footer-btn:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--text-color) 20%, var(--border));
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
    text-decoration: none;
}

.footer-btn-primary {
    border-color: color-mix(in srgb, var(--accent-color) 50%, var(--border));
    background: color-mix(in srgb, var(--accent-color) 18%, var(--surface));
}


/* Link columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.footer-links ul,
.footer-badges {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul {
    display: grid;
    gap: 9px;
}

.footer-links a,
.footer-links button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;

    color: inherit;
    font: inherit;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-contact a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-links i {
    width: 16px;
    color: var(--accent-color);
    font-size: .95rem;
}

.footer-links button,
.cookie-settings-link {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}


/* Contact */
.footer-contact p:last-of-type {
    margin-bottom: 14px;
}

.footer-share-slot {
    margin: 14px 0 16px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badges li {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-text);
    font-size: .86rem;
    line-height: 1;
}


/* Bottom */
.footer-bottom {
    padding: 14px 0 18px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: var(--muted-text);
}


/* Responsive */
@media (max-width: 1060px) {
    .footer-panel {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

@media (max-width: 760px) {
    .footer-wrap {
        padding-top: 34px;
        padding-bottom: 18px;
    }

    .footer-panel {
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        display: grid;
        justify-items: center;
    }

    .footer-brand-row {
        justify-content: center;
        gap: 6px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-actions,
    .footer-badges {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
        margin: 10px 0 14px;
        padding: 10px 0;
        text-align: center;
    }

    .footer-links section,
    .footer-links ul {
        display: grid;
        justify-items: center;
    }

    .footer-links a,
    .footer-links button {
        justify-content: center;
        text-align: center;
        font-size: .95rem;
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .footer-links {
        gap: 18px 10px;
    }

    .footer-links a,
    .footer-links button {
        font-size: .9rem;
    }

    .footer-brand-row {
        gap: 5px;
    }

    .footer-logo-img {
        height: 38px;
    }

    .footer-brand-name {
        font-size: 1rem;
        line-height: 1.05;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-btn {
        transition: none;
    }

    .footer-btn:hover {
        transform: none;
    }
}

/* ===== end Site Footer ===== */