: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 ===== */





/* ===== 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 == */



/* ===== Buttons ===== */
.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 ===== */




/* ===== 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 ===== */





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

/* ===== end Global page padding ===== */





/* ===== 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 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;

    /* ✅ Anchor for absolute thumb */
    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);

    /* ✅ Just a box in flow */
    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 ===== */





/* ===== 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;
    /* mobile */
}

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

    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-color);

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

.trustbar-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

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

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

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





/* ===== 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) ===== */





/* ===== Services (minimal, premium, no images) ===== */
.services {
    padding: clamp(56px, 6vw, 96px) 16px;
    text-align: center;
    background: var(--bg-color);
    /* page background */
}

.services h2 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
}

.services-subtitle {
    margin: 0 auto 26px;
    max-width: 70ch;
    opacity: .85;
    font-size: .98rem;
}

/* 4 desktop, 2 tablet, 1 mobile */
.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));
}

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

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

/* Card link */
.service {
    display: grid;
    grid-template-rows: auto auto 1fr;
    /* icon, title, text */
    gap: 10px;

    text-align: left;
    padding: 18px;
    /* slightly larger */
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    text-decoration: none;
    color: var(--text-color);

    min-height: 190px;
    /* uniform feel */
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.service:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--text-color) 16%, var(--border));
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

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

/* Icon pill */
.service-ico {
    width: 40px;
    height: 40px;
    border-radius: 14px;

    display: grid;
    place-items: center;

    background: color-mix(in srgb, var(--surface) 70%, var(--text-color) 6%);
    border: 1px solid color-mix(in srgb, var(--border) 70%, var(--text-color) 10%);
}

.service-title {
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

/* Let text show fully (no clamp) */
.service-text {
    opacity: .82;
    line-height: 1.45;
    font-size: .96rem;
    max-width: 46ch;
}

/* If you want PERFECT equal heights on wide screens,
   force a height — but allow it to grow if needed */
@media (min-width: 981px) {
    .service {
        height: 200px;
        /* pick your look */
        min-height: 200px;
    }
}

/* On small screens, never trap text */
@media (max-width: 768px) {
    .service {
        height: auto;
        min-height: 0;
    }
}

/* ===== end Services ===== */





/* ===== Core Values (4-up desktop, stacked mobile) ===== */
.core-values {
    padding: clamp(56px, 6vw, 96px) 16px;
    background: var(--bg-color);
}

.core-values__head {
    text-align: center;
    margin-bottom: 26px;
}

.core-values__kicker {
    margin: 0 0 8px;
    opacity: .78;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: .86rem;
}

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

/* Layout */
.core-values__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* Card */
.core-value {
    flex: 1 1 0;
    min-width: 0;

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

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

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

.core-value__num {
    font-weight: 800;
    letter-spacing: .08em;
    opacity: .55;
    font-size: .9rem;
}

.core-value__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%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.core-value__icon i {
    font-size: 18px;
    color: var(--text-color);
}

.core-value__title {
    margin: 0;
    font-size: 1.08rem;
    letter-spacing: -0.01em;
}

.core-value__text {
    margin: 0;
    line-height: 1.6;
    opacity: .9;
    font-size: .98rem;
}

/* Tablet: 2 per row */
@media (max-width: 980px) {
    .core-values__grid {
        flex-wrap: wrap;
    }

    .core-value {
        flex: 1 1 calc(50% - 8px);
    }
}

/* Mobile: stacked */
@media (max-width: 768px) {
    .core-value {
        flex: 1 1 100%;
    }
}

/* ===== end Core Values ===== */






/* ===== Areas Section (content-only, elegant panel) ===== */
.areas-band {
    width: 100%;
    background: var(--bg-color);
    padding: clamp(56px, 6vw, 96px) 16px;
    /* OUTSIDE the panel */
}

/* Panel surface (simple, premium) */
.areas-band-content {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);

    padding: clamp(22px, 3vw, 30px);
    /* INSIDE the panel */
}

/* Header */
.areas-header {
    text-align: center;
    margin-bottom: 18px;
}

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

.areas-subtitle {
    color: var(--muted-text);
    max-width: 70ch;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid list */
.areas-grid {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

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

@media (min-width: 900px) {
    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Items (slightly lighter than panel, easy to scan) */
.area-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);

    background: color-mix(in srgb, var(--surface) 96%, transparent);
}

.area-item i {
    font-size: 1rem;
    color: var(--accent-color);
}

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

/* CTA */
.areas-cta {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

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






/* ===== Share Spacer (uses .section-spacer base) ===== */
.share-spacer {
    display: grid;
    gap: 14px;
    place-items: center;
}

.share-sub {
    margin: -10px 0 6px;
    max-width: 820px;
    opacity: .88;
    line-height: 1.6;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Button-style share chips */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: .95rem;
    line-height: 1;
    font-weight: 700;

    min-height: 44px;
    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;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, filter 150ms ease;
}

.share-btn i {
    font-size: 16px;
    line-height: 1;
}

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

.share-btn:active {
    transform: translateY(0);
    box-shadow: 0 11px 26px rgba(0, 0, 0, .12);
}

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

/* Hidden extras (enable later if you want) */
.share-extra {
    display: none;
}

.share-note {
    opacity: .72;
}

/* Mobile stacking if needed */
@media (max-width: 768px) {
    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .share-actions {
        width: 100%;
    }
}

/* ===== end Share Spacer ===== */

/* ===== Share: tooltip bubble on Copy button ===== */
.share-copy {
    position: relative;
}

.share-tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    z-index: 2;

    padding: 6px 10px;
    border-radius: 12px;

    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    line-height: 1;
    white-space: nowrap;

    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    opacity: 0;
    pointer-events: none;

    transition: opacity 160ms ease, transform 160ms ease;
}

/* comic arrow */
.share-tip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--accent-color);
}

/* visible state */
.share-tip.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== end tooltip ===== */







/* =========================================================
   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 ===== */













/* ===== Site Footer - GLOBAL ===== */
.site-footer {
    border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
    background: color-mix(in srgb, var(--surface) 70%, transparent);
    color: var(--text-color);
}

/* TOP: 3-column row using your .page-wrapper */
.site-footer__top {
    padding-top: 44px;
    padding-bottom: 22px;

    display: grid;
    grid-template-columns: 1.25fr .85fr 1fr;
    /* balances center column */
    gap: 28px;
    align-items: start;
    /* consistent top alignment */
}

/* blocks */
.site-footer__block {
    min-width: 0;
}

/* prevents overflow */
.site-footer__block--links {
    justify-self: center;
}

/* center the middle column */
.site-footer__block--contact {
    justify-self: end;
}

/* keep contact to the right on desktop */

/* BRAND row */
.site-footer__brandhead {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
}

.site-footer__brandmark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

.site-footer__logo--dark {
    display: none;
}

[data-theme="dark"] .site-footer__logo--light {
    display: none;
}

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

.site-footer__brandname {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.01em;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.1;
}

.site-footer__tagline {
    margin: 0 0 14px;
    color: var(--muted-text);
    line-height: 1.55;
    max-width: 50ch;
}

/* FOOTER ACTIONS / BUTTONS (scoped) */
.site-footer__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    font-weight: 800;
    text-decoration: none;
    color: var(--text-color);
}

.site-footer__btn--solid {
    border-color: color-mix(in srgb, var(--accent-color) 45%, var(--border));
    background: color-mix(in srgb, var(--accent-color) 16%, var(--surface));
}

/* Footer button hover/active */
.site-footer__btn {
    transition: transform .18s ease, background .18s ease, border-color .18s ease, filter .18s ease, box-shadow .18s ease;
}

.site-footer__btn:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    border-color: color-mix(in srgb, var(--border) 80%, var(--text-color));
}

.site-footer__btn:active {
    transform: translateY(0);
    filter: brightness(.98);
}

/* Solid variant gets a slightly richer hover */
.site-footer__btn--solid:hover {
    filter: brightness(.97);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.site-footer__btn--solid:active {
    filter: brightness(.94);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
}

/* Keyboard focus */
.site-footer__btn:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent-color) 65%, transparent);
    outline-offset: 3px;
}

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

    .site-footer__btn:hover,
    .site-footer__btn:active {
        transform: none;
    }
}

/* end FOOTER ACTIONS / BUTTONS */

/* LINKS (2-column groups) */
.site-footer__linkcols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.site-footer__linktitle {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-footer__links a,
.site-footer__legal a,
.site-footer__card a {
    color: inherit;
    text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__legal a:hover,
.site-footer__card a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* CONTACT CARD (unchanged) */
.site-footer__card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.site-footer__card p {
    margin: 0 0 10px;
    line-height: 1.45;
}

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

.site-footer__muted {
    color: var(--muted-text);
}

.site-footer__strong {
    font-weight: 900;
}

/* end LINKS */

/* MID ROW */
.site-footer__mid {
    border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
    padding: 16px 0;
}

.site-footer__midwrap {
    display: grid;
    gap: 12px;
    place-items: center;
    text-align: center;
}

.site-footer__follow {
    margin: 0;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: .9rem;
    color: var(--muted-text);
}

.site-footer__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg-color) 88%, var(--surface));
    color: var(--muted-text);
    text-decoration: none;
    line-height: 1;
}

.site-footer__icon:hover {
    color: var(--text-color);
    background: color-mix(in srgb, var(--bg-color) 82%, var(--surface));
}

.site-footer__icon i {
    font-size: 1.05rem;
}

.site-footer__pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer__pill {
    border: 1px solid var(--border);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: .9rem;
    color: var(--muted-text);
}

/* BOTTOM ROW */
.site-footer__bottom {
    border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
    padding: 14px 0;
}

.site-footer__bottomwrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.site-footer__copy {
    margin: 0;
    color: var(--muted-text);
}

.site-footer__legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
        justify-items: center;
    }

    .site-footer__top .site-footer__linkcols {
        text-align: left;
    }

    .site-footer__linkcols {
        padding: 12px 0;
        /* top + bottom breathing room */
    }

    .site-footer__linktitle {
        margin-bottom: 8px;
        font-size: 0.92rem;
    }

    .site-footer__links {
        gap: 8px;
    }

    /* center everything on mobile */
    .site-footer__block--contact {
        width: 100%;
        max-width: 420px;
        text-align: center;
        /* prevents super wide contact card on mobile */
        justify-self: center;
    }

    .site-footer__brandhead {
        justify-content: center;
    }

    .site-footer__actions {
        justify-content: center;
    }

    /* Bottom row centered on mobile */
    .site-footer__bottomwrap {
        justify-content: center;
        text-align: center;
    }

    .site-footer__legal {
        justify-content: center;
    }
}

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