@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600&display=swap");

/* =========================================================
   SPORTHEAL — LIQUIDMORPHISM UI
   public/assets/css/app.css

   STRUCTURE
   ---------------------------------------------------------
   01. Tokens
   02. Reset & Global
   03. Site Header
   04. Buttons
   05. Global Sections
   06. Common Cards
   07. Hero
   08. Services / Gallery / Testimonials
   09. Booking
   10. Auth
   11. Modal
   12. Footer
   13. Error Pages
   14. About V2
   15. Services V2
   16. Dashboard
   17. Dashboard Quick Actions
   18. Parallax Helpers
   19. Responsive
   20. Reduced Motion
   21. Keyframes
========================================================= */


/* =========================================================
   01. TOKENS
========================================================= */

:root {
    /* background */
    --bg-0: #07110f;
    --bg-1: #0b1715;
    --bg-2: #111b19;

    /* glass */
    --surface: rgba(255, 255, 255, 0.075);
    --surface-strong: rgba(255, 255, 255, 0.11);
    --surface-soft: rgba(255, 255, 255, 0.045);

    --surface-border: rgba(255, 255, 255, 0.14);
    --surface-border-strong: rgba(255, 255, 255, 0.22);

    /* text */
    --text-0: #f5fbf8;
    --text-1: #d5e1dd;
    --text-2: #91a39d;
    --text-muted: #6f827b;

    /* accent */
    --accent: #8cf3cf;
    --accent-2: #58e0d0;
    --accent-3: #7ed7ff;
    --accent-warm: #ffd476;

    --danger: #ff8f9f;
    --success: #8bf6b7;

    /* shadows */
    --shadow-lg:
        0 28px 80px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    --shadow-md:
        0 18px 50px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    --shadow-sm:
        0 10px 30px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    /* blur */
    --blur: 18px;
    --blur-heavy: 28px;

    /* radius */
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-xs: 10px;

    /* layout */
    --container: 1240px;

    /* motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   02. RESET & GLOBAL
========================================================= */

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

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;

    color: var(--text-0);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(80, 238, 191, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 94% 8%,
            rgba(105, 205, 255, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 154, 99, 0.05),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--bg-0),
            var(--bg-1) 45%,
            var(--bg-2)
        );

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    content: "";

    position: fixed;

    pointer-events: none;
    z-index: -1;

    filter: blur(30px);
    opacity: 0.7;

    will-change: transform;
    transform: translate3d(0, 0, 0);
}

body::before {
    width: 240px;
    height: 240px;

    top: 12%;
    left: -70px;

    background: rgba(88, 224, 208, 0.08);

    border-radius:
        58% 42% 54% 46% /
        40% 54% 46% 60%;
}

body::after {
    width: 280px;
    height: 280px;

    right: -80px;
    bottom: 8%;

    background: rgba(126, 215, 255, 0.06);

    border-radius:
        46% 54% 40% 60% /
        58% 40% 60% 42%;
}

::selection {
    color: #06100e;
    background: var(--accent);
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    -webkit-tap-highlight-color: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

main {
    position: relative;
    z-index: 1;
}

section {
    position: relative;
}


/* =========================================================
   03. SITE HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    width: 100%;

    background:
        rgba(7, 17, 15, 0.88);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter:
        blur(20px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(125%);
}

.site-header::after {
    content: "";

    position: absolute;
    inset: auto 0 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(140, 243, 207, 0.16),
            transparent
        );

    pointer-events: none;
}

.site-header-inner {
    width:
        min(
            calc(100% - 48px),
            1440px
        );

    min-height: 82px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 36px;
}


/* ---------- Brand ---------- */

.site-brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    min-width: max-content;

    color: var(--text-0);
}

.site-brand-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(140, 243, 207, 0.20);

    border-radius: 11px;

    color: #07110f;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #b7ffe8
        );

    font-size: 0.78rem;
    font-weight: 950;

    letter-spacing: -0.04em;

    box-shadow:
        0 10px 30px
        rgba(92, 229, 189, 0.10);
}

.site-brand-text {
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}


/* ---------- Desktop nav ---------- */

.site-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;
}

.site-nav a {
    position: relative;

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

    min-height: 42px;

    padding: 8px 15px;

    color: var(--text-2);

    border:
        1px solid transparent;

    border-radius: 10px;

    font-size: 0.91rem;
    font-weight: 650;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s var(--ease-out);
}

.site-nav a:hover {
    color: var(--text-0);

    background:
        rgba(255, 255, 255, 0.045);

    transform:
        translateY(-1px);
}

.site-nav a.is-active {
    color: var(--text-0);

    background:
        rgba(140, 243, 207, 0.07);

    border-color:
        rgba(140, 243, 207, 0.11);
}

.site-nav a.is-active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 17px;
    height: 2px;

    border-radius: 999px;

    background: var(--accent);

    transform:
        translateX(-50%);
}


/* ---------- Header actions ---------- */

.site-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 9px;

    min-width: max-content;
}

.site-account-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 10px 20px;

    border:
        1px solid
        rgba(140, 243, 207, 0.18);

    border-radius: 12px;

    color: #07110f;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #b7ffe8
        );

    font-size: 0.9rem;
    font-weight: 850;

    box-shadow:
        0 10px 30px
        rgba(92, 229, 189, 0.11);

    transition:
        transform 0.22s var(--ease-out),
        filter 0.22s ease,
        box-shadow 0.22s ease;
}

.site-account-button:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.03);

    box-shadow:
        0 14px 34px
        rgba(92, 229, 189, 0.16);
}

.site-action-link {
    display: inline-flex;
    align-items: center;

    min-height: 42px;

    padding: 8px 12px;

    color: var(--text-2);

    border:
        1px solid transparent;

    border-radius: 10px;

    font-size: 0.85rem;
    font-weight: 700;
}

.site-action-link:hover,
.site-action-link.is-active {
    color: var(--text-0);

    background:
        rgba(255, 255, 255, 0.05);

    border-color:
        rgba(255, 255, 255, 0.07);
}

.site-logout-form {
    margin: 0;
}


/* ---------- Mobile menu ---------- */

.site-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 11px;

    color: var(--text-0);

    background:
        rgba(255, 255, 255, 0.035);
}

.site-menu-button span {
    width: 21px;
    height: 2px;

    border-radius: 999px;

    background:
        var(--text-1);

    transition:
        transform 0.24s var(--ease-out),
        opacity 0.2s ease;
}


/* ---------- Mobile drawer ---------- */

.mobile-drawer {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1001;

    width:
        min(
            360px,
            88vw
        );

    height: 100dvh;

    transform:
        translate3d(-105%, 0, 0);

    visibility: hidden;

    background:
        linear-gradient(
            180deg,
            #101c19 0%,
            #09120f 100%
        );

    border-right:
        1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        28px 0 80px
        rgba(0, 0, 0, 0.35);

    overflow: hidden;

    will-change:
        transform;

    transition:
        transform 0.34s var(--ease-out),
        visibility 0s linear 0.34s;
}

.mobile-drawer.is-open {
    transform:
        translate3d(0, 0, 0);

    visibility:
        visible;

    transition:
        transform 0.34s var(--ease-out);
}

.mobile-drawer-inner {
    min-height: 100%;

    display: flex;
    flex-direction: column;

    padding:
        24px;
}

.mobile-drawer-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding-bottom:
        22px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.mobile-drawer-brand {
    display:
        inline-flex;

    align-items: center;

    gap:
        10px;

    color:
        var(--text-0);

    font-weight:
        900;
}

.mobile-drawer-close {
    width: 40px;
    height: 40px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius:
        10px;

    color:
        var(--text-1);

    background:
        rgba(255,255,255,0.04);

    font-size:
        1.45rem;

    line-height:
        1;
}

.mobile-drawer-nav {
    display:
        flex;

    flex-direction:
        column;

    padding:
        24px 0;

    overflow-y:
        auto;
}

.mobile-drawer-nav a {
    display:
        grid;

    grid-template-columns:
        34px 1fr;

    align-items:
        center;

    gap:
        10px;

    min-height:
        60px;

    padding:
        8px 0;

    color:
        var(--text-2);

    border-bottom:
        1px solid
        rgba(255,255,255,0.055);

    transition:
        color 0.2s ease,
        padding-left 0.2s var(--ease-out);
}

.mobile-drawer-nav a span {
    color:
        #65766f;

    font-size:
        0.7rem;

    font-weight:
        800;
}

.mobile-drawer-nav a strong {
    font-size:
        1.03rem;

    font-weight:
        750;
}

.mobile-drawer-nav a:hover,
.mobile-drawer-nav a.is-active {
    color:
        var(--text-0);

    padding-left:
        6px;
}

.mobile-drawer-nav a.is-active span,
.mobile-drawer-nav a.is-active strong {
    color:
        var(--accent);
}

.mobile-drawer-footer {
    margin-top:
        auto;

    padding-top:
        22px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}

.mobile-drawer-footer form {
    margin: 0;
}

.mobile-drawer-account {
    width: 100%;

    min-height: 48px;

    padding: 11px 16px;

    border:
        1px solid
        rgba(140,243,207,0.16);

    border-radius:
        11px;

    color:
        #07110f;

    background:
        var(--accent);

    font-weight:
        850;
}

.mobile-drawer-footer p {
    margin:
        14px 0 0;

    color:
        var(--text-muted);

    font-size:
        0.73rem;

    line-height:
        1.6;
}

.mobile-drawer-overlay {
    position:
        fixed;

    inset:
        0;

    z-index:
        1000;

    background:
        rgba(1,6,5,0.64);

    backdrop-filter:
        blur(5px);

    -webkit-backdrop-filter:
        blur(5px);

    opacity:
        0;

    visibility:
        hidden;

    transition:
        opacity 0.24s ease,
        visibility 0.24s ease;
}

.mobile-drawer-overlay.is-visible {
    opacity:
        1;

    visibility:
        visible;
}

body.drawer-open {
    overflow:
        hidden;
}


/* =========================================================
   04. BUTTONS
========================================================= */

.btn {
    position: relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        44px;

    padding:
        11px 18px;

    border:
        1px solid transparent;

    border-radius:
        999px;

    font-weight:
        800;

    transition:
        transform 0.25s var(--ease-out),
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

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

.btn:active {
    transform:
        translateY(0);
}

.btn-primary {
    color:
        #07110f;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #b4ffea
        );

    box-shadow:
        0 14px 30px
        rgba(92,229,189,0.16);
}

.btn-secondary {
    color:
        var(--text-0);

    background:
        rgba(255,255,255,0.06);

    border-color:
        var(--surface-border);

    box-shadow:
        var(--shadow-sm);
}

.btn-outline {
    color:
        var(--text-0);

    background:
        rgba(255,255,255,0.02);

    border-color:
        var(--surface-border);
}

.btn-whatsapp {
    color:
        #072014;

    background:
        linear-gradient(
            135deg,
            #94f7bd,
            #5ce2b0
        );
}


/* =========================================================
   05. GLOBAL SECTIONS
========================================================= */

.home-page,
.contact-page,
.booking-page,
.booking-history-page {
    width:
        min(
            calc(100% - 28px),
            var(--container)
        );

    margin:
        0 auto;
}

.about-section,
.services-section,
.benefits-section,
.gallery-section,
.testimonials-section,
.cta-section,
.contact-cta-section,
.contact-page,
.booking-page,
.booking-history-page {
    padding:
        42px 0;
}

.section-content {
    display:
        grid;

    grid-template-columns:
        1.1fr 1fr;

    gap:
        36px;

    align-items:
        center;
}

.section-heading h2,
.section-header h2,
.contact-cta-content h2 {
    margin:
        10px 0 0;

    font-size:
        clamp(
            2rem,
            4vw,
            3.4rem
        );

    line-height:
        1.05;

    letter-spacing:
        -0.04em;
}

.section-subtitle,
.hero-subtitle,
.error-label {
    color:
        var(--accent);

    font-size:
        0.76rem;

    font-weight:
        800;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}

.section-text,
.section-header > p:not(.section-subtitle) {
    color:
        var(--text-2);

    line-height:
        1.8;
}

.section-header {
    max-width:
        760px;

    margin:
        0 auto 28px;

    text-align:
        center;
}


/* =========================================================
   06. COMMON CARDS
========================================================= */

.service-card,
.benefit-card,
.gallery-card,
.testimonial-card,
.booking-card,
.contact-item {
    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid var(--surface-border);

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        var(--shadow-md);

    backdrop-filter:
        blur(var(--blur));

    -webkit-backdrop-filter:
        blur(var(--blur));

    transition:
        transform 0.32s var(--ease-out),
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover,
.benefit-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.booking-card:hover,
.contact-item:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--surface-border-strong);
}

.service-image,
.gallery-card {
    overflow:
        hidden;
}

.service-image img,
.gallery-card img {
    width:
        100%;

    display:
        block;

    aspect-ratio:
        16 / 10;

    object-fit:
        cover;

    transition:
        transform 0.6s var(--ease-out);
}

.service-card:hover .service-image img,
.gallery-card:hover img {
    transform:
        scale(1.035);
}

.service-content,
.benefit-card,
.testimonial-card,
.booking-card,
.contact-item {
    padding:
        22px;
}

.service-content h3,
.benefit-card h3,
.testimonial-card h3,
.booking-card h2,
.contact-item h2 {
    margin-bottom:
        8px;

    font-size:
        1.1rem;
}

.service-content p,
.benefit-card p,
.testimonial-message,
.booking-card p,
.contact-item p {
    color:
        var(--text-2);

    line-height:
        1.7;
}

.service-meta {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    margin-top:
        18px;
}

.service-meta strong {
    color:
        var(--accent);
}

.service-link {
    display:
        inline-flex;

    margin-top:
        16px;

    color:
        var(--text-0);

    font-weight:
        800;
}

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


/* =========================================================
   07. HERO
========================================================= */

.hero-section {
    min-height:
        min(82vh, 780px);

    display:
        grid;

    place-items:
        center;

    padding:
        82px 0 76px;
}

.hero-content {
    position:
        relative;

    width:
        min(920px, 100%);

    padding:
        clamp(
            42px,
            7vw,
            84px
        );

    text-align:
        center;

    overflow:
        hidden;

    border:
        1px solid var(--surface-border);

    border-radius:
        36px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(var(--blur-heavy));

    -webkit-backdrop-filter:
        blur(var(--blur-heavy));
}

.hero-content h1 {
    max-width:
        800px;

    margin:
        0 auto 18px;

    font-size:
        clamp(
            2.7rem,
            7vw,
            5.6rem
        );

    line-height:
        0.98;

    letter-spacing:
        -0.055em;
}

.hero-description {
    width:
        min(640px, 100%);

    margin:
        0 auto;

    color:
        var(--text-2);

    font-size:
        clamp(
            1rem,
            1.8vw,
            1.12rem
        );

    line-height:
        1.8;
}

.hero-actions {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        30px;
}


/* =========================================================
   08. SERVICES / GALLERY / TESTIMONIALS
========================================================= */

.services-grid,
.benefits-grid,
.gallery-grid,
.testimonials-list {
    display:
        grid;

    gap:
        16px;
}

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

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

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

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

.benefit-card {
    min-height:
        180px;
}

.gallery-caption {
    position:
        absolute;

    right:
        12px;

    bottom:
        12px;

    left:
        12px;

    padding:
        10px 12px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius:
        14px;

    background:
        rgba(7,17,15,0.48);

    backdrop-filter:
        blur(16px);
}

.gallery-caption h3 {
    margin:
        0;

    font-size:
        0.92rem;
}

.testimonial-rating {
    margin-bottom:
        12px;

    color:
        var(--accent-warm);
}

.testimonial-message {
    min-height:
        90px;
}

.testimonial-author {
    margin-top:
        18px;

    color:
        var(--text-0);
}


/* =========================================================
   CTA / CONTACT
========================================================= */

.cta-section,
.contact-cta-section {
    display:
        grid;

    place-items:
        center;
}

.cta-content,
.contact-cta-content {
    width:
        100%;

    padding:
        clamp(
            34px,
            5vw,
            54px
        );

    text-align:
        center;

    border:
        1px solid var(--surface-border);

    border-radius:
        var(--radius-xl);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(var(--blur-heavy));
}

.cta-content p:not(.section-subtitle),
.contact-cta-content p:not(.section-subtitle) {
    max-width:
        640px;

    margin:
        14px auto 0;

    color:
        var(--text-2);

    line-height:
        1.8;
}

.cta-content .btn,
.contact-cta-content .btn {
    margin-top:
        24px;
}

.contact-content {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        16px;

    margin-top:
        30px;
}


/* =========================================================
   09. BOOKING / FORMS
========================================================= */

.booking-page > form {
    max-width:
        840px;

    margin:
        28px auto 0;

    padding:
        26px;

    border:
        1px solid var(--surface-border);

    border-radius:
        var(--radius-lg);

    background:
        rgba(255,255,255,0.05);

    box-shadow:
        var(--shadow-md);

    backdrop-filter:
        blur(var(--blur));
}

.booking-page > form > div,
.auth-container form > div,
.form-group {
    margin-bottom:
        16px;
}

label {
    display:
        inline-block;

    margin-bottom:
        8px;

    color:
        var(--text-1);

    font-size:
        0.92rem;

    font-weight:
        700;
}

input,
textarea,
select {
    width:
        100%;

    min-height:
        46px;

    padding:
        12px 14px;

    border:
        1px solid var(--surface-border);

    border-radius:
        14px;

    outline:
        none;

    color:
        var(--text-0);

    background:
        rgba(255,255,255,0.055);

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

textarea {
    min-height:
        120px;

    resize:
        vertical;
}

input::placeholder,
textarea::placeholder {
    color:
        #6f827b;
}

input:focus,
textarea:focus,
select:focus {
    border-color:
        rgba(140,243,207,0.50);

    background:
        rgba(255,255,255,0.075);

    box-shadow:
        0 0 0 4px
        rgba(140,243,207,0.08);
}

.booking-page > form button[type="submit"] {
    width:
        100%;

    min-height:
        46px;

    padding:
        12px 16px;

    border-radius:
        14px;

    color:
        #07110f;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #b7ffe8
        );

    font-weight:
        800;
}

.booking-history-list {
    max-width:
        900px;

    margin:
        28px auto 0;

    display:
        grid;

    gap:
        14px;
}

.booking-card {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        18px;
}

.booking-card a {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        10px 14px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        999px;

    color:
        var(--text-0);

    background:
        rgba(255,255,255,0.05);
}


/* =========================================================
   10. AUTH
========================================================= */

.auth-page {
    width:
        min(
            calc(100% - 28px),
            1240px
        );

    min-height:
        calc(100vh - 110px);

    margin:
        0 auto;

    display:
        grid;

    place-items:
        center;

    padding:
        54px 0 80px;
}

.auth-container {
    width:
        min(
            100%,
            520px
        );

    padding:
        34px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.095),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(var(--blur-heavy));
}

.auth-header {
    margin-bottom:
        26px;
}

.auth-logo {
    width:
        52px;

    height:
        52px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        18px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        15px;

    background:
        rgba(255,255,255,0.055);
}

.auth-logo img {
    width:
        34px;

    height:
        34px;

    object-fit:
        contain;
}

.auth-eyebrow {
    margin-bottom:
        8px;

    color:
        var(--accent);

    font-size:
        0.72rem;

    font-weight:
        900;

    letter-spacing:
        0.14em;
}

.auth-header h1 {
    margin:
        0;

    font-size:
        clamp(
            2.2rem,
            5vw,
            3rem
        );

    line-height:
        1;
}

.auth-description {
    margin:
        12px 0 0;

    color:
        var(--text-2);

    line-height:
        1.7;
}

.auth-form {
    display:
        flex;

    flex-direction:
        column;

    gap:
        18px;
}

.auth-field {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;
}

.auth-field label {
    margin:
        0;
}

.auth-field input {
    min-height:
        52px;
}

.auth-options {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;
}

.auth-options a {
    color:
        var(--accent);

    font-size:
        0.84rem;

    font-weight:
        800;
}

.auth-submit {
    width:
        100%;

    min-height:
        52px;

    padding:
        12px 18px;

    border-radius:
        15px;

    color:
        #07110f;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #c1ffec
        );

    font-weight:
        900;

    box-shadow:
        0 14px 30px
        rgba(92,229,189,0.13);
}

.auth-divider {
    display:
        grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items:
        center;

    gap:
        12px;

    margin:
        24px 0;
}

.auth-divider span {
    height:
        1px;

    background:
        rgba(255,255,255,0.08);
}

.auth-divider small {
    color:
        var(--text-muted);

    font-size:
        0.68rem;

    font-weight:
        800;
}

.auth-register-text {
    margin:
        0;

    text-align:
        center;

    color:
        var(--text-2);
}

.auth-register-text a {
    color:
        var(--accent);

    font-weight:
        900;
}

.auth-back {
    display:
        block;

    margin-top:
        18px;

    text-align:
        center;

    color:
        var(--text-muted);

    font-size:
        0.82rem;
}

.auth-errors,
.auth-success,
.alert {
    padding:
        14px 16px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        14px;
}

.auth-errors,
.alert-error {
    color:
        #ffd7dd;

    background:
        rgba(255,143,159,0.08);
}

.auth-success,
.alert-success {
    color:
        #d4ffe4;

    background:
        rgba(139,246,183,0.08);
}


/* =========================================================
   11. MODAL
========================================================= */

.modal {
    position:
        fixed;

    inset:
        0;

    z-index:
        1000;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    padding:
        20px;

    background:
        rgba(2,7,6,0.62);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}

.modal.is-open,
.modal[aria-hidden="false"] {
    display:
        flex;

    animation:
        fadeIn 0.2s ease both;
}

.modal-content {
    position:
        relative;

    width:
        min(520px,100%);

    padding:
        28px;

    color:
        var(--text-0);

    border:
        1px solid
        var(--surface-border-strong);

    border-radius:
        22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.42);

    backdrop-filter:
        blur(24px);
}

.modal-content > button:first-child {
    position:
        absolute;

    top:
        12px;

    right:
        12px;

    width:
        36px;

    height:
        36px;

    border-radius:
        50%;

    color:
        var(--text-1);

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid
        var(--surface-border);
}

.modal-content h2 {
    margin-bottom:
        8px;

    font-size:
        1.7rem;
}

.modal-content p {
    color:
        var(--text-2);

    line-height:
        1.7;
}

.modal-open {
    overflow:
        hidden;
}

.account-modal-actions {
    display:
        grid;

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

    gap:
        10px;

    margin-top:
        24px;
}

.account-modal-actions .btn {
    width:
        100%;
}


/* =========================================================
   12. FOOTER
========================================================= */

footer {
    margin-top:
        40px;

    padding:
        42px 24px 32px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);

    background:
        rgba(255,255,255,0.025);

    color:
        var(--text-2);
}

.footer-container {
    width:
        min(
            100%,
            var(--container)
        );

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    gap:
        24px;
}

.footer-column h3,
.footer-column h4 {
    color:
        var(--text-0);

    margin-bottom:
        10px;
}

.footer-column p {
    line-height:
        1.75;
}


/* =========================================================
   13. ERROR PAGES
========================================================= */

.error-page {
    min-height:
        100vh;

    display:
        grid;

    place-items:
        center;

    padding:
        24px;
}

.error-page-card {
    width:
        min(
            620px,
            100%
        );

    padding:
        clamp(
            34px,
            6vw,
            56px
        );

    text-align:
        center;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        var(--radius-xl);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(var(--blur-heavy));
}

.error-code {
    margin-bottom:
        4px;

    font-size:
        clamp(
            4.6rem,
            14vw,
            7rem
        );

    line-height:
        0.95;

    font-weight:
        900;

    letter-spacing:
        -0.06em;
}

.error-label {
    margin-bottom:
        12px;
}

.error-page-card h1 {
    margin-bottom:
        10px;

    font-size:
        clamp(
            1.9rem,
            5vw,
            2.6rem
        );
}

.error-description {
    max-width:
        500px;

    margin:
        0 auto;

    color:
        var(--text-2);

    line-height:
        1.8;
}

.error-page-actions {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        28px;
}


/* =========================================================
   14. ABOUT V2
========================================================= */

.about-v2 {
    width:
        min(
            calc(100% - 28px),
            1240px
        );

    margin:
        0 auto;

    padding-bottom:
        60px;
}

.about-v2-hero {
    padding:
        66px 0 34px;
}

.about-v2-hero-grid {
    display:
        grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items:
        center;

    gap:
        40px;

    min-height:
        620px;
}

.about-v2-kicker,
.about-v2-section-label {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    color:
        var(--accent);

    font-size:
        0.72rem;

    font-weight:
        900;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}

.about-v2-kicker::before,
.about-v2-section-label::before {
    content:
        "";

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--accent);

    box-shadow:
        0 0 0 5px
        rgba(140,243,207,0.07);
}

.about-v2-hero-copy h1 {
    max-width:
        720px;

    margin:
        18px 0 0;

    font-size:
        clamp(
            3.5rem,
            7vw,
            6rem
        );

    line-height:
        0.93;

    letter-spacing:
        -0.065em;
}

.about-v2-hero-copy h1 span {
    display:
        block;

    color:
        var(--accent);
}

.about-v2-hero-text {
    max-width:
        620px;

    margin:
        24px 0 0;

    color:
        var(--text-2);

    font-size:
        1.02rem;

    line-height:
        1.85;
}

.about-v2-actions {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

    margin-top:
        30px;
}

.about-v2-visual {
    min-height:
        500px;

    display:
        grid;

    place-items:
        center;
}

.about-v2-glass-card {
    width:
        min(
            440px,
            100%
        );

    aspect-ratio:
        0.86;

    padding:
        24px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius:
        34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.11),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        0 35px 100px
        rgba(0,0,0,0.33);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    will-change:
        transform;
}

.about-v2-glass-top,
.about-v2-glass-bottom {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        14px;
}

.about-v2-mini-label {
    color:
        var(--text-1);

    font-size:
        0.74rem;

    font-weight:
        900;
}

.about-v2-mini-status {
    padding:
        7px 10px;

    border:
        1px solid
        rgba(140,243,207,0.15);

    border-radius:
        999px;

    color:
        var(--accent);

    background:
        rgba(140,243,207,0.06);

    font-size:
        0.64rem;

    font-weight:
        900;
}

.about-v2-orbit {
    position:
        relative;

    width:
        270px;

    aspect-ratio:
        1;

    margin:
        auto;

    display:
        grid;

    place-items:
        center;
}

.about-v2-orbit-ring {
    position:
        absolute;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius:
        50%;
}

.about-v2-orbit-ring-one {
    inset:
        0;

    transform:
        rotate(18deg)
        scaleY(0.62);
}

.about-v2-orbit-ring-two {
    inset:
        20px;

    transform:
        rotate(-22deg)
        scaleY(0.72);
}

.about-v2-orbit-core {
    width:
        140px;

    height:
        140px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(255,255,255,0.18);

    border-radius:
        50%;

    background:
        linear-gradient(
            145deg,
            rgba(140,243,207,0.18),
            rgba(126,215,255,0.08)
        );

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.22);
}

.about-v2-orbit-core img {
    width:
        68px;

    height:
        68px;

    object-fit:
        contain;
}

.about-v2-glass-bottom {
    padding-top:
        18px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}

.about-v2-glass-bottom div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;
}

.about-v2-glass-bottom strong {
    font-size:
        0.82rem;
}

.about-v2-glass-bottom span {
    color:
        var(--text-muted);

    font-size:
        0.72rem;
}

.about-v2-story {
    padding:
        70px 0 55px;
}

.about-v2-story-grid {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        50px;

    margin-top:
        18px;
}

.about-v2-story-title h2 {
    max-width:
        560px;

    margin:
        0;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.6rem
        );

    line-height:
        0.98;
}

.about-v2-story-title h2 span {
    color:
        var(--accent);
}

.about-v2-story-copy p {
    margin:
        0;

    color:
        var(--text-2);

    font-size:
        1.02rem;

    line-height:
        1.9;
}

.about-v2-story-copy p + p {
    margin-top:
        16px;
}

.about-v2-values {
    padding:
        55px 0;
}

.about-v2-values-header {
    display:
        grid;

    grid-template-columns:
        1fr 0.8fr;

    gap:
        30px;

    align-items:
        end;

    margin-bottom:
        24px;
}

.about-v2-values-header h2 {
    margin:
        12px 0 0;

    font-size:
        clamp(
            2.4rem,
            5vw,
            4rem
        );

    line-height:
        0.98;
}

.about-v2-values-header > p {
    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.8;
}

.about-v2-values-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:
        14px;
}

.about-v2-value-card {
    min-height:
        270px;

    padding:
        24px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-md);

    transition:
        transform 0.28s var(--ease-out),
        border-color 0.25s ease;
}

.about-v2-value-card:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--surface-border-strong);
}

.about-v2-value-number {
    color:
        var(--accent);

    font-size:
        0.72rem;

    font-weight:
        900;
}

.about-v2-value-icon {
    width:
        44px;

    height:
        44px;

    margin-top:
        38px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        13px;

    color:
        var(--accent);

    background:
        rgba(140,243,207,0.07);
}

.about-v2-value-card h3 {
    margin:
        20px 0 8px;

    font-size:
        1.35rem;
}

.about-v2-value-card p {
    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.75;
}

.about-v2-vision {
    padding:
        55px 0;
}

.about-v2-vision-card {
    display:
        grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap:
        30px;

    align-items:
        center;

    padding:
        36px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-lg);
}

.about-v2-vision-content h2 {
    margin:
        14px 0 16px;

    font-size:
        clamp(
            2.4rem,
            5vw,
            4rem
        );

    line-height:
        0.98;
}

.about-v2-vision-content p {
    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.8;
}

.about-v2-vision-metrics {
    display:
        grid;

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

    gap:
        10px;
}

.about-v2-metric {
    min-height:
        145px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        16px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius:
        18px;

    background:
        rgba(255,255,255,0.035);
}

.about-v2-metric strong {
    color:
        var(--accent);

    font-size:
        1.3rem;
}

.about-v2-metric span {
    color:
        var(--text-2);

    font-size:
        0.85rem;
}

.about-v2-cta {
    padding:
        55px 0 20px;
}

.about-v2-cta-card {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    padding:
        34px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-lg);
}

.about-v2-cta-card h2 {
    margin:
        12px 0 10px;

    font-size:
        clamp(
            2.2rem,
            4.5vw,
            3.6rem
        );

    line-height:
        1;
}

.about-v2-cta-card p {
    max-width:
        620px;

    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.8;
}


/* =========================================================
   15. SERVICES V2
========================================================= */

.services-page-v2 {
    width:
        min(
            calc(100% - 28px),
            1240px
        );

    margin:
        0 auto;

    padding-bottom:
        70px;
}

.services-v2-hero {
    min-height:
        520px;

    display:
        grid;

    grid-template-columns:
        1.15fr 0.85fr;

    align-items:
        center;

    gap:
        40px;

    padding:
        70px 0 50px;
}

.services-v2-hero-copy {
    max-width:
        760px;
}

.services-v2-eyebrow {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--accent);

    font-size:
        0.72rem;

    font-weight:
        900;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;
}

.services-v2-eyebrow span {
    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--accent);
}

.services-v2-hero h1 {
    margin:
        16px 0 20px;

    font-size:
        clamp(
            3.2rem,
            7vw,
            5.8rem
        );

    line-height:
        0.94;

    letter-spacing:
        -0.065em;
}

.services-v2-hero h1 span {
    display:
        block;

    color:
        var(--accent);
}

.services-v2-hero-copy > p {
    max-width:
        650px;

    margin:
        0;

    color:
        var(--text-2);

    font-size:
        1.05rem;

    line-height:
        1.85;
}

.services-v2-hero-actions {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

    margin-top:
        30px;
}

.services-v2-hero-side {
    min-height:
        430px;

    display:
        grid;

    place-items:
        center;
}

.services-v2-floating-card {
    width:
        min(
            390px,
            100%
        );

    min-height:
        390px;

    padding:
        28px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255,255,255,0.14);

    border-radius:
        34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 35px 90px
        rgba(0,0,0,0.30);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    will-change:
        transform;
}

.services-v2-floating-label {
    color:
        var(--text-muted);

    font-size:
        0.72rem;

    font-weight:
        900;
}

.services-v2-floating-title {
    margin-top:
        4px;

    color:
        var(--text-0);

    font-size:
        clamp(
            2.6rem,
            6vw,
            4rem
        );

    font-weight:
        900;

    line-height:
        0.95;
}

.services-v2-floating-title.is-accent {
    color:
        var(--accent);
}

.services-v2-floating-footer {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-top:
        34px;
}

.services-v2-floating-footer span {
    padding:
        8px 11px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius:
        999px;

    color:
        var(--text-2);

    background:
        rgba(255,255,255,0.04);

    font-size:
        0.74rem;
}

.services-v2-list {
    padding:
        38px 0 55px;
}

.services-v2-section-header {
    display:
        grid;

    grid-template-columns:
        1fr 0.75fr;

    gap:
        30px;

    align-items:
        end;

    margin-bottom:
        28px;
}

.services-v2-section-header.centered {
    grid-template-columns:
        1fr;

    max-width:
        760px;

    margin:
        0 auto 28px;

    text-align:
        center;
}

.services-v2-section-header h2 {
    margin:
        12px 0 0;

    font-size:
        clamp(
            2.4rem,
            5vw,
            4rem
        );

    line-height:
        0.98;
}

.services-v2-section-header > p {
    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.8;
}

.services-v2-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:
        16px;
}

.services-v2-card {
    overflow:
        hidden;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-md);

    transition:
        transform 0.32s var(--ease-out),
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.services-v2-card:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--surface-border-strong);

    box-shadow:
        0 28px 70px
        rgba(0,0,0,0.25);
}

.services-v2-card-image {
    position:
        relative;

    height:
        230px;

    overflow:
        hidden;

    background:
        rgba(255,255,255,0.03);
}

.services-v2-card-image img {
    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform 0.7s var(--ease-out);
}

.services-v2-card:hover
.services-v2-card-image img {
    transform:
        scale(1.045);
}

.services-v2-duration {
    position:
        absolute;

    top:
        14px;

    right:
        14px;

    padding:
        8px 10px;

    border:
        1px solid
        rgba(255,255,255,0.13);

    border-radius:
        999px;

    color:
        var(--text-0);

    background:
        rgba(7,17,15,0.50);

    font-size:
        0.72rem;

    font-weight:
        800;

    backdrop-filter:
        blur(10px);
}

.services-v2-placeholder {
    height:
        100%;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        flex-end;

    padding:
        22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );
}

.services-v2-placeholder span {
    font-size:
        1.25rem;

    font-weight:
        800;
}

.services-v2-placeholder small {
    margin-top:
        5px;

    color:
        var(--text-muted);
}

.services-v2-card-content {
    padding:
        22px;
}

.services-v2-card-number {
    margin-bottom:
        10px;

    color:
        var(--accent);

    font-size:
        0.68rem;

    font-weight:
        900;
}

.services-v2-card h3 {
    margin:
        0 0 10px;

    font-size:
        1.35rem;
}

.services-v2-card-content > p {
    min-height:
        78px;

    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.7;
}

.services-v2-card-bottom {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        12px;

    margin-top:
        22px;

    padding-top:
        17px;

    border-top:
        1px solid
        rgba(255,255,255,0.07);
}

.services-v2-price {
    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;
}

.services-v2-price span {
    color:
        var(--text-muted);

    font-size:
        0.7rem;
}

.services-v2-price strong {
    font-size:
        1.15rem;
}

.services-v2-book {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    padding:
        10px 13px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        999px;

    color:
        var(--text-0);

    background:
        rgba(255,255,255,0.04);

    font-size:
        0.82rem;

    font-weight:
        800;
}

.services-v2-book span {
    color:
        var(--accent);
}

.services-v2-empty {
    display:
        grid;

    justify-items:
        center;

    padding:
        70px 24px;

    text-align:
        center;

    border:
        1px dashed
        rgba(255,255,255,0.12);

    border-radius:
        22px;

    background:
        rgba(255,255,255,0.025);
}

.services-v2-empty-icon {
    width:
        56px;

    height:
        56px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        16px;

    color:
        var(--accent);

    background:
        rgba(140,243,207,0.06);
}

.services-v2-empty h3 {
    margin:
        18px 0 8px;
}

.services-v2-empty p {
    max-width:
        520px;

    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.8;
}

.services-v2-benefits {
    padding:
        50px 0;
}

.services-v2-benefit-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:
        15px;
}

.services-v2-benefit-card {
    min-height:
        255px;

    padding:
        24px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-md);

    transition:
        transform 0.3s var(--ease-out);
}

.services-v2-benefit-card:hover {
    transform:
        translateY(-4px);
}

.services-v2-benefit-number {
    color:
        var(--accent);

    font-size:
        0.7rem;

    font-weight:
        900;
}

.services-v2-benefit-icon {
    width:
        44px;

    height:
        44px;

    margin-top:
        34px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        13px;

    color:
        var(--accent);

    background:
        rgba(140,243,207,0.06);
}

.services-v2-benefit-card h3 {
    margin:
        18px 0 8px;

    font-size:
        1.3rem;
}

.services-v2-benefit-card p {
    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.75;
}

.services-v2-cta {
    padding:
        50px 0 20px;
}

.services-v2-cta-card {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        24px;

    padding:
        34px;

    border:
        1px solid
        var(--surface-border);

    border-radius:
        26px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        var(--shadow-lg);
}

.services-v2-cta-card h2 {
    margin:
        12px 0 8px;

    font-size:
        clamp(
            2.2rem,
            4.5vw,
            3.6rem
        );
}

.services-v2-cta-card p {
    margin:
        0;

    color:
        var(--text-2);

    line-height:
        1.8;
}


/* =========================================================
   16. DASHBOARD
========================================================= */

.dashboard-body {
    min-height:
        100vh;

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(140,243,207,0.08),
            transparent 24%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(126,215,255,0.06),
            transparent 26%
        ),
        #08110f;
}

.dashboard-shell {
    min-height:
        100vh;

    display:
        flex;
}

.dashboard-sidebar {
    position:
        fixed;

    top:
        0;

    left:
        0;

    z-index:
        100;

    width:
        272px;

    height:
        100vh;

    padding:
        18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    border-right:
        1px solid
        rgba(255,255,255,0.08);

    backdrop-filter:
        blur(24px);
}

.dashboard-sidebar-inner {
    height:
        100%;

    display:
        flex;

    flex-direction:
        column;

    padding:
        8px;
}

.dashboard-brand-link {
    display:
        flex;

    align-items:
        center;

    gap:
        12px;
}

.dashboard-brand {
    padding:
        8px 6px 24px;
}

.dashboard-brand-mark {
    width:
        42px;

    height:
        42px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        13px;

    background:
        rgba(255,255,255,0.08);
}

.dashboard-brand-mark img {
    width:
        28px;

    height:
        28px;

    object-fit:
        contain;
}

.dashboard-brand-name {
    font-size:
        1.12rem;

    font-weight:
        900;
}

.dashboard-nav {
    flex:
        1;

    overflow-y:
        auto;
}

.dashboard-nav-label {
    margin:
        18px 10px 8px;

    color:
        #647770;

    font-size:
        0.68rem;

    font-weight:
        900;

    letter-spacing:
        0.14em;
}

.dashboard-nav-item {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    min-height:
        46px;

    margin-bottom:
        4px;

    padding:
        10px 12px;

    border:
        1px solid transparent;

    border-radius:
        13px;

    color:
        var(--text-2);

    font-size:
        0.9rem;

    font-weight:
        700;
}

.dashboard-nav-item:hover,
.dashboard-nav-item.is-active {
    color:
        var(--text-0);

    background:
        rgba(255,255,255,0.05);
}

.dashboard-nav-item.is-active {
    border-color:
        rgba(140,243,207,0.14);
}

.dashboard-nav-item.is-active::before {
    content:
        "";

    position:
        absolute;

    left:
        -9px;

    width:
        3px;

    height:
        20px;

    border-radius:
        999px;

    background:
        var(--accent);
}

.dashboard-nav-icon {
    width:
        26px;

    height:
        26px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        8px;

    background:
        rgba(255,255,255,0.05);
}

.dashboard-nav-item.is-active .dashboard-nav-icon {
    color:
        #07110f;

    background:
        var(--accent);
}

.dashboard-sidebar-footer {
    margin-top:
        18px;

    padding:
        14px 8px 6px;

    border-top:
        1px solid
        rgba(255,255,255,0.07);
}

.dashboard-sidebar-status {
    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        10px;

    border-radius:
        12px;

    background:
        rgba(255,255,255,0.035);
}

.dashboard-status-dot {
    width:
        8px;

    height:
        8px;

    border-radius:
        50%;

    background:
        var(--success);
}

.dashboard-sidebar-status div {
    display:
        flex;

    flex-direction:
        column;

    gap:
        2px;
}

.dashboard-sidebar-status strong {
    color:
        var(--text-1);

    font-size:
        0.78rem;
}

.dashboard-sidebar-status span {
    color:
        var(--text-muted);

    font-size:
        0.72rem;
}

.dashboard-main-area {
    width:
        calc(100% - 272px);

    min-height:
        100vh;

    margin-left:
        272px;
}

.dashboard-topbar {
    position:
        sticky;

    top:
        0;

    z-index:
        80;

    min-height:
        84px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        16px 30px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.07);

    background:
        rgba(8,17,15,0.76);

    backdrop-filter:
        blur(20px);
}

.dashboard-topbar-left,
.dashboard-topbar-right {
    display:
        flex;

    align-items:
        center;

    gap:
        14px;
}

.dashboard-page-title {
    margin:
        0;

    font-size:
        1.18rem;

    font-weight:
        800;
}

.dashboard-eyebrow {
    margin-bottom:
        3px;

    color:
        var(--accent);

    font-size:
        0.65rem;

    font-weight:
        900;

    letter-spacing:
        0.13em;
}

.dashboard-admin-info {
    display:
        flex;

    align-items:
        center;

    gap:
        10px;
}

.dashboard-admin-avatar {
    width:
        38px;

    height:
        38px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        12px;

    color:
        #07110f;

    background:
        var(--accent);

    font-weight:
        900;
}

.dashboard-admin-copy {
    display:
        flex;

    flex-direction:
        column;

    gap:
        2px;
}

.dashboard-admin-copy strong {
    font-size:
        0.82rem;
}

.dashboard-admin-copy span {
    color:
        var(--text-muted);

    font-size:
        0.7rem;
}

.dashboard-logout {
    min-height:
        38px;

    padding:
        9px 14px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius:
        999px;

    color:
        var(--text-1);

    background:
        rgba(255,255,255,0.04);

    font-size:
        0.8rem;

    font-weight:
        800;
}

.dashboard-content {
    width:
        min(
            100%,
            1440px
        );

    margin:
        0 auto;

    padding:
        30px;
}

.dashboard-menu-toggle {
    display:
        none;

    width:
        42px;

    height:
        42px;

    padding:
        10px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius:
        12px;

    background:
        rgba(255,255,255,0.04);
}

.dashboard-menu-toggle span {
    display:
        block;

    width:
        100%;

    height:
        2px;

    margin:
        4px 0;

    background:
        var(--text-1);
}

.dashboard-overlay {
    display:
        none;
}

.dashboard-stat-grid {
    display:
        grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap:
        16px;

    margin-bottom:
        20px;
}

.dashboard-stat-card {
    min-height:
        148px;

    padding:
        20px;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius:
        19px;

    background:
        rgba(255,255,255,0.05);

    box-shadow:
        var(--shadow-md);
}

.dashboard-stat-label {
    margin-bottom:
        10px;

    color:
        var(--text-muted);

    font-size:
        0.74rem;

    font-weight:
        800;

    text-transform:
        uppercase;
}

.dashboard-stat-value {
    margin:
        0;

    font-size:
        2rem;
}

.dashboard-stat-meta {
    margin-top:
        14px;

    color:
        var(--text-2);

    font-size:
        0.78rem;
}

.dashboard-panel-grid {
    display:
        grid;

    grid-template-columns:
        1.35fr 0.65fr;

    gap:
        18px;
}

.dashboard-panel {
    padding:
        20px;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius:
        20px;

    background:
        rgba(255,255,255,0.045);

    box-shadow:
        var(--shadow-md);
}

.dashboard-panel-header {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        14px;

    margin-bottom:
        16px;
}

.dashboard-panel-title {
    margin:
        0;

    font-size:
        1rem;
}

.dashboard-panel-subtitle {
    margin:
        4px 0 0;

    color:
        var(--text-muted);

    font-size:
        0.76rem;
}

.dashboard-table-wrap {
    overflow-x:
        auto;

    border:
        1px solid
        rgba(255,255,255,0.06);

    border-radius:
        14px;
}

.dashboard-table-wrap table {
    width:
        100%;

    min-width:
        620px;

    border-collapse:
        collapse;
}

.dashboard-table-wrap th,
.dashboard-table-wrap td {
    padding:
        12px 14px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

    text-align:
        left;
}

.dashboard-table-wrap th {
    color:
        var(--text-muted);

    font-size:
        0.68rem;

    text-transform:
        uppercase;
}

.dashboard-table-wrap td {
    color:
        var(--text-2);

    font-size:
        0.82rem;
}

.dashboard-badge {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        26px;

    padding:
        5px 9px;

    border-radius:
        999px;

    background:
        rgba(255,255,255,0.06);

    font-size:
        0.7rem;

    font-weight:
        800;
}

.dashboard-badge-success {
    color:
        #d4ffe4;

    background:
        rgba(139,246,183,0.08);
}

.dashboard-badge-warning {
    color:
        #fff0ca;

    background:
        rgba(255,212,118,0.08);
}

.dashboard-badge-danger {
    color:
        #ffd7de;

    background:
        rgba(255,143,159,0.08);
}


/* =========================================================
   17. DASHBOARD QUICK ACTIONS
========================================================= */

.dashboard-quick-actions {
    display:
        grid;

    gap:
        10px;
}

.dashboard-quick-action {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;

    padding:
        14px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    border-radius:
        14px;

    background:
        rgba(255,255,255,0.035);

    transition:
        transform 0.22s var(--ease-out),
        background-color 0.22s ease;
}

.dashboard-quick-action:hover {
    transform:
        translateY(-2px);

    background:
        rgba(255,255,255,0.06);
}

.dashboard-quick-action strong {
    font-size:
        0.86rem;
}

.dashboard-quick-action span {
    color:
        var(--text-muted);

    font-size:
        0.72rem;
}


/* =========================================================
   18. PARALLAX HELPERS
========================================================= */

/*
    Add to selected elements:

    data-parallax="0.08"

    or:

    data-parallax="0.15"
*/

[data-parallax] {
    will-change:
        transform;

    transform:
        translate3d(0,0,0);
}


/* subtle depth */

.parallax-slow {
    transform:
        translate3d(0,0,0);
}

.parallax-medium {
    transform:
        translate3d(0,0,0);
}

.parallax-fast {
    transform:
        translate3d(0,0,0);
}


/* =========================================================
   19. RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .services-grid,
    .testimonials-list {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

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

    .section-content {
        grid-template-columns:
            1fr;
    }

    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }

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

@media (max-width: 1000px) {

    .services-v2-hero,
    .about-v2-hero-grid {
        grid-template-columns:
            1fr;
    }

    .services-v2-hero,
    .about-v2-hero-grid {
        min-height:
            auto;
    }

    .services-v2-section-header,
    .about-v2-values-header,
    .about-v2-vision-card {
        grid-template-columns:
            1fr;
    }

    .about-v2-values-grid {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

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

    .dashboard-panel-grid {
        grid-template-columns:
            1fr;
    }
}

@media (max-width: 900px) {

    .site-header-inner {
        width:
            calc(100% - 32px);

        min-height:
            72px;

        grid-template-columns:
            1fr auto;

        gap:
            12px;
    }

    .site-nav {
        display:
            none;
    }

    .site-action-link,
    .site-logout-form {
        display:
            none;
    }

    .site-menu-button {
        display:
            flex;
    }

    .dashboard-sidebar {
        transform:
            translate3d(-105%,0,0);

        transition:
            transform 0.32s var(--ease-out);
    }

    .dashboard-sidebar.is-open {
        transform:
            translate3d(0,0,0);
    }

    .dashboard-main-area {
        width:
            100%;

        margin-left:
            0;
    }

    .dashboard-menu-toggle {
        display:
            block;
    }

    .dashboard-admin-copy {
        display:
            none;
    }
}

@media (max-width: 680px) {

    .site-header-inner {
        width:
            calc(100% - 20px);

        min-height:
            68px;
    }

    .site-brand-mark {
        width:
            35px;

        height:
            35px;

        font-size:
            0.72rem;
    }

    .site-brand-text {
        font-size:
            1rem;
    }

    .site-account-button {
        min-height:
            42px;

        padding:
            9px 15px;

        font-size:
            0.82rem;
    }

    .site-menu-button {
        width:
            42px;

        height:
            42px;
    }

    .home-page,
    .contact-page,
    .booking-page,
    .booking-history-page,
    .about-v2,
    .services-page-v2 {
        width:
            calc(100% - 14px);
    }

    .hero-section {
        min-height:
            auto;

        padding:
            38px 0 24px;
    }

    .hero-content {
        padding:
            34px 18px;

        border-radius:
            22px;
    }

    .hero-content h1 {
        font-size:
            clamp(
                2.4rem,
                13vw,
                4rem
            );
    }

    .hero-actions,
    .about-v2-actions,
    .services-v2-hero-actions {
        width:
            100%;

        flex-direction:
            column;
    }

    .hero-actions .btn,
    .about-v2-actions .btn,
    .services-v2-hero-actions .btn {
        width:
            100%;
    }

    .services-grid,
    .benefits-grid,
    .gallery-grid,
    .testimonials-list,
    .contact-content {
        grid-template-columns:
            1fr;
    }

    .about-v2-hero {
        padding:
            30px 0 18px;
    }

    .about-v2-hero-copy h1 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4.2rem
            );
    }

    .about-v2-visual {
        min-height:
            330px;
    }

    .about-v2-glass-card {
        width:
            min(
                340px,
                100%
            );

        border-radius:
            26px;
    }

    .about-v2-orbit {
        width:
            205px;
    }

    .about-v2-orbit-core {
        width:
            105px;

        height:
            105px;
    }

    .about-v2-story-grid,
    .about-v2-values-header,
    .about-v2-vision-card {
        grid-template-columns:
            1fr;
    }

    .about-v2-values-grid {
        grid-template-columns:
            1fr;
    }

    .about-v2-story {
        padding:
            38px 0;
    }

    .about-v2-values,
    .about-v2-vision {
        padding:
            36px 0;
    }

    .about-v2-vision-metrics {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

    .about-v2-metric {
        min-height:
            88px;

        padding:
            12px;
    }

    .about-v2-cta-card,
    .services-v2-cta-card {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            22px;
    }

    .services-v2-hero {
        min-height:
            auto;

        gap:
            24px;

        padding:
            32px 0 20px;
    }

    .services-v2-hero h1 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4.2rem
            );
    }

    .services-v2-floating-card {
        width:
            min(
                330px,
                100%
            );

        min-height:
            315px;

        padding:
            22px;

        border-radius:
            26px;

        transform:
            none;
    }

    .services-v2-section-header h2 {
        font-size:
            clamp(
                2.1rem,
                10vw,
                3.2rem
            );
    }

    .services-v2-grid {
        grid-template-columns:
            1fr;

        gap:
            14px;
    }

    .services-v2-card-image {
        height:
            220px;
    }

    .services-v2-card-content {
        padding:
            19px;
    }

    .services-v2-card-content > p {
        min-height:
            auto;
    }

    .services-v2-card-bottom {
        align-items:
            stretch;

        flex-direction:
            column;
    }

    .services-v2-book {
        width:
            100%;

        justify-content:
            center;
    }

    .auth-page {
        width:
            calc(100% - 14px);

        min-height:
            calc(100vh - 94px);

        padding:
            28px 0 40px;
    }

    .auth-container {
        width:
            100%;

        padding:
            22px 18px;

        border-radius:
            20px;
    }

    .auth-options {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .booking-page > form {
        margin-top:
            18px;

        padding:
            18px;

        border-radius:
            20px;
    }

    .booking-card {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            18px;
    }

    .booking-card a {
        width:
            100%;
    }

    .dashboard-content {
        padding:
            18px 12px 28px;
    }

    .dashboard-topbar {
        min-height:
            68px;

        padding:
            10px 12px;
    }

    .dashboard-stat-grid {
        grid-template-columns:
            1fr;
    }

    .dashboard-panel-header {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .dashboard-panel-header .btn {
        width:
            100%;
    }

    .dashboard-table-wrap table {
        min-width:
            680px;
    }

    .footer-container {
        grid-template-columns:
            1fr;
    }

    .error-page {
        min-height:
            100svh;

        padding:
            16px;
    }

    .error-page-card {
        padding:
            30px 18px;

        border-radius:
            20px;
    }

    .error-page-actions {
        flex-direction:
            column;
    }

    .error-page-actions .btn,
    .error-page-actions form,
    .error-page-actions button {
        width:
            100%;
    }

    .account-modal-actions {
        grid-template-columns:
            1fr;
    }
}

@media (max-width: 390px) {

    .site-header-inner {
        width:
            calc(100% - 10px);
    }

    .about-v2-vision-metrics {
        grid-template-columns:
            1fr;
    }

    .about-v2-metric {
        min-height:
            74px;
    }

    .services-v2-card-image {
        height:
            200px;
    }
}


/* =========================================================
   20. REDUCED MOTION
========================================================= */

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

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

    [data-parallax] {
        transform:
            none !important;
    }
}


/* =========================================================
   21. KEYFRAMES
========================================================= */

@keyframes fadeIn {

    from {
        opacity:
            0;
    }

    to {
        opacity:
            1;
    }
}

@keyframes modalUp {

    from {
        opacity:
            0;

        transform:
            translate3d(0,14px,0)
            scale(0.985);
    }

    to {
        opacity:
            1;

        transform:
            translate3d(0,0,0)
            scale(1);
    }
}


/* =========================================================
   SPORTHEAL — POLISHED BLUE / CYAN SYSTEM
   ---------------------------------------------------------
   Visual direction:
   - Deep blue-black base
   - Cyan accent
   - Pantra for display typography
   - Inter/system for body/UI
   - Consistent form rhythm
========================================================= */

:root {
    --bg-0: #061116;
    --bg-1: #091820;
    --bg-2: #0d2029;

    --text-0: #f4fbff;
    --text-1: #d7e8ee;
    --text-2: #8fa8b3;
    --text-muted: #657d87;

    --accent: #8fe8ff;
    --accent-2: #52c9e9;
    --accent-3: #829dff;
    --accent-warm: #f4d27c;

    --success: #7de3c1;
    --danger: #ff8fa5;

    --font-body:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --font-display:
        "Pantra",
        "Pantra Regular",
        "Pantra Medium",
        "Avenir Next",
        "Montserrat",
        ui-sans-serif,
        sans-serif;
}

html {
    background: var(--bg-0);
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(
            circle at 8% 0%,
            rgba(82, 201, 233, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 94% 7%,
            rgba(130, 157, 255, 0.11),
            transparent 29%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(82, 201, 233, 0.045),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            var(--bg-0),
            var(--bg-1) 48%,
            var(--bg-2)
        );
}

body::before {
    background: rgba(82, 201, 233, 0.075);
}

body::after {
    background: rgba(130, 157, 255, 0.065);
}

/* Display typography: use Pantra as a hierarchy, not everywhere. */
h1,
h2,
h3,
h4,
h5,
h6,
.site-brand-text,
.dashboard-page-title,
.dashboard-brand-name,
.services-v2-card-content h3,
.services-v2-section-header h2,
.services-v2-hero h1,
.about-v2-hero-copy h1 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.035em;
}

h1,
.services-v2-hero h1,
.about-v2-hero-copy h1 {
    line-height: 0.98;
}

h2 {
    line-height: 1.04;
}

h3,
h4 {
    line-height: 1.12;
}

.site-brand-text {
    font-weight: 400;
    letter-spacing: -0.025em;
}

.site-nav a {
    font-family: var(--font-body);
    font-weight: 550;
}

.site-account-button {
    color: #061116;
    background:
        linear-gradient(
            135deg,
            var(--accent),
            #d2f7ff
        );
    box-shadow:
        0 12px 34px
        rgba(82, 201, 233, 0.16);
}

.site-account-button:hover {
    box-shadow:
        0 16px 38px
        rgba(82, 201, 233, 0.23);
}

.site-header {
    background: rgba(6, 17, 22, 0.90);
}

.site-header::after {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(143, 232, 255, 0.22),
            transparent
        );
}

.site-brand-mark {
    color: #061116;
    background:
        linear-gradient(
            135deg,
            var(--accent),
            #d2f7ff
        );
}

/* Never lock page scrolling for the normal Login action. */
body.modal-open {
    overflow: hidden;
}

/* ---------- Auth / OTP ---------- */

.auth-wrapper {
    min-height: 100svh;
    width: 100%;
    display: grid;
    place-items: center;
    padding: 32px 20px 48px;
    color: var(--text-0);
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(82, 201, 233, 0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(130, 157, 255, 0.09),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            var(--bg-0),
            var(--bg-1) 55%,
            var(--bg-2)
        );
}

.auth-wrapper .auth-container {
    width: min(100%, 560px);
    max-height: none;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(143, 232, 255, 0.16);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.085),
            rgba(255,255,255,0.035)
        );
    box-shadow:
        0 30px 90px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(24px);
}

.auth-wrapper .auth-container h1,
.auth-wrapper .auth-container h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.auth-wrapper .auth-container h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 12px;
}

.auth-wrapper .auth-container > p {
    color: var(--text-2);
    line-height: 1.7;
}

.auth-wrapper .auth-container form > div {
    margin-bottom: 18px;
}

.auth-wrapper .auth-container label {
    font-family: var(--font-body);
    font-weight: 600;
}

.auth-wrapper .auth-container button[type="submit"] {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    color: #061116;
    background:
        linear-gradient(
            135deg,
            var(--accent),
            #d2f7ff
        );
    font-weight: 700;
    box-shadow:
        0 12px 30px rgba(82, 201, 233, 0.14);
}

.auth-wrapper .auth-container button[type="submit"]:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.auth-wrapper .auth-container form + div {
    margin-top: 12px;
}

.auth-wrapper .auth-container form + div button {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(143, 232, 255, 0.14);
    border-radius: 12px;
    color: var(--text-1);
    background: rgba(255,255,255,0.045);
    font-size: 0.88rem;
}

.auth-wrapper .auth-container a {
    color: var(--accent);
}

.auth-wrapper .auth-success {
    margin: 16px 0;
    padding: 13px 15px;
    border: 1px solid rgba(125, 227, 193, 0.18);
    border-radius: 14px;
    color: #c8f6e8;
    background: rgba(125, 227, 193, 0.07);
}

.auth-wrapper .auth-errors {
    margin: 16px 0;
    padding: 13px 15px;
    border: 1px solid rgba(255, 143, 165, 0.18);
    border-radius: 14px;
    color: #ffd8df;
    background: rgba(255, 143, 165, 0.07);
}

/* ---------- Dashboard ---------- */

.dashboard-body {
    color: var(--text-0);
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(82,201,233,0.075),
            transparent 25%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(130,157,255,0.055),
            transparent 27%
        ),
        #061116;
}

.dashboard-sidebar {
    background:
        linear-gradient(
            180deg,
            rgba(10, 28, 36, 0.88),
            rgba(7, 20, 27, 0.80)
        );
    border-right-color: rgba(143, 232, 255, 0.09);
}

.dashboard-nav-item.is-active {
    border-color: rgba(143,232,255,0.14);
}

.dashboard-nav-item.is-active::before {
    background: var(--accent);
}

.dashboard-nav-item.is-active .dashboard-nav-icon {
    color: #061116;
    background: var(--accent);
}

.dashboard-topbar {
    background: rgba(6,17,22,0.78);
}

.dashboard-page-title {
    font-weight: 400;
}

.dashboard-eyebrow {
    color: var(--accent);
}

.dashboard-admin-avatar {
    color: #061116;
    background: var(--accent);
}

.dashboard-page {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.dashboard-page > .page-header {
    margin-bottom: 24px;
}

.dashboard-page > .page-header h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1;
}

/* CRUD form system */
.dashboard-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(143,232,255,0.11);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.025)
        );
    box-shadow:
        0 22px 60px rgba(0,0,0,0.18);
}

.dashboard-form > div {
    min-width: 0;
}

.dashboard-form > div:nth-child(2) {
    grid-column: 1 / -1;
}

.dashboard-form > div:nth-last-child(1) {
    grid-column: 1 / -1;
}

.dashboard-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-1);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.dashboard-form input:not([type="checkbox"]):not([type="radio"]),
.dashboard-form textarea,
.dashboard-form select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(143,232,255,0.12);
    border-radius: 13px;
    color: var(--text-0);
    background: rgba(255,255,255,0.045);
}

.dashboard-form textarea {
    min-height: 130px;
}

.dashboard-form input[type="file"] {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 9px;
    border: 1px dashed rgba(143,232,255,0.22);
    border-radius: 13px;
    color: var(--text-2);
    background: rgba(255,255,255,0.035);
}

.dashboard-form input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 13px;
    border: 0;
    border-radius: 10px;
    color: #061116;
    background: var(--accent);
    font-weight: 650;
    cursor: pointer;
}

.dashboard-form input[type="checkbox"],
.dashboard-form input[type="radio"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 0;
    padding: 0;
    accent-color: var(--accent);
}

.dashboard-form .form-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0;
    padding: 10px 13px;
    border: 1px solid rgba(143,232,255,0.10);
    border-radius: 12px;
    background: rgba(255,255,255,0.035);
    cursor: pointer;
}

.dashboard-form small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    line-height: 1.5;
}

.dashboard-form > div:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 4px;
}

.dashboard-form button[type="submit"] {
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 12px;
    color: #061116;
    background: linear-gradient(135deg, var(--accent), #d2f7ff);
    font-weight: 700;
}

.dashboard-form > div:last-child > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid rgba(143,232,255,0.12);
    border-radius: 12px;
    color: var(--text-1);
    background: rgba(255,255,255,0.04);
}

/* Prevent generic input rules from turning checkboxes into giant boxes. */
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: auto;
    padding: 0;
}

/* Better focus language */
input:focus,
textarea:focus,
select:focus {
    border-color: rgba(143,232,255,0.52);
    box-shadow: 0 0 0 4px rgba(143,232,255,0.08);
}

/* Typography rhythm for professional UI */
.dashboard-nav-item,
.dashboard-logout,
.dashboard-stat-label,
.dashboard-panel-title,
.btn,
button {
    font-family: var(--font-body);
}

@media (max-width: 760px) {
    .dashboard-form {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 20px;
    }

    .dashboard-form > div:nth-child(2),
    .dashboard-form > div:nth-last-child(1) {
        grid-column: auto;
    }

    .dashboard-form > div:last-child {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-form button[type="submit"],
    .dashboard-form > div:last-child > a {
        width: 100%;
    }

    .auth-wrapper {
        padding: 18px 12px 32px;
    }

    .auth-wrapper .auth-container {
        padding: 24px 18px;
        border-radius: 22px;
    }
}


/* =========================================================
   SPORTHEAL — PREMIUM SCROLL PARALLAX
   ---------------------------------------------------------
   Layered movement is intentionally subtle. The effect
   should support hierarchy, not distract from content.
========================================================= */

.hero-parallax {
    isolation: isolate;
    overflow: clip;
    min-height: min(88vh, 860px);
}

.hero-parallax::before {
    content: "";
    position: absolute;
    inset: 8% 4% 4%;
    z-index: -5;
    border-radius: 44px;
    background:
        radial-gradient(circle at 50% 42%, rgba(126, 215, 255, 0.09), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.018), transparent 70%);
    pointer-events: none;
}

.hero-parallax-orb,
.hero-parallax-grid,
.hero-parallax-glow {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-parallax-orb {
    border-radius: 50%;
    filter: blur(1px);
    opacity: .72;
}

.hero-parallax-orb--back {
    width: clamp(280px, 42vw, 620px);
    height: clamp(280px, 42vw, 620px);
    top: 7%;
    right: -11%;
    z-index: -4;
    background: radial-gradient(circle at 35% 35%, rgba(75, 199, 255, .18), rgba(75, 199, 255, .02) 56%, transparent 72%);
}

.hero-parallax-orb--mid {
    width: clamp(180px, 26vw, 360px);
    height: clamp(180px, 26vw, 360px);
    left: -7%;
    bottom: 7%;
    z-index: -3;
    background: radial-gradient(circle at 55% 45%, rgba(83, 229, 211, .15), rgba(83, 229, 211, .015) 58%, transparent 74%);
}

.hero-parallax-grid {
    inset: -8% -5% -4%;
    z-index: -6;
    opacity: .18;
    background-image:
        linear-gradient(rgba(151, 222, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(151, 222, 255, .08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
}

.hero-parallax-glow {
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    left: 50%;
    top: 45%;
    z-index: -2;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 215, 255, .085), transparent 68%);
    filter: blur(26px);
    transform: translate3d(-50%, -50%, 0);
}

.hero-content--parallax {
    transform: translate3d(0, 0, 0);
    transition: border-color .45s ease, box-shadow .45s ease;
}

.hero-content--parallax:hover {
    border-color: rgba(126, 215, 255, .22);
    box-shadow: 0 34px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
}

[data-reveal="up"] {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity .75s var(--ease-out),
        transform .85s var(--ease-out);
}

[data-reveal="up"].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.service-card--motion {
    transition:
        transform .55s var(--ease-out),
        border-color .3s ease,
        box-shadow .55s var(--ease-out);
}

.service-card--motion:hover {
    transform: translate3d(0, -8px, 0) scale(1.008);
}

.service-card--motion:nth-child(2) { transition-delay: .06s; }
.service-card--motion:nth-child(3) { transition-delay: .12s; }
.service-card--motion:nth-child(4) { transition-delay: .18s; }

/* Scroll progress indicator */
.sportheal-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 2px;
    pointer-events: none;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--accent-3), var(--accent));
    box-shadow: 0 0 18px rgba(126, 215, 255, .35);
    will-change: transform;
}

@media (max-width: 680px) {
    .hero-parallax {
        min-height: 78vh;
    }

    .hero-parallax-grid {
        background-size: 48px 48px;
        opacity: .10;
    }

    .hero-parallax-orb--back {
        right: -34%;
    }

    .hero-parallax-orb--mid {
        left: -28%;
    }

    .service-card--motion:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-parallax-orb,
    .hero-parallax-grid,
    .hero-parallax-glow,
    [data-reveal="up"],
    .sportheal-scroll-progress {
        transform: none !important;
        transition: none !important;
    }

    [data-reveal="up"] {
        opacity: 1;
    }
}

/* =========================================================
   SPORTHEAL — EDITORIAL BLUE / RECOVERY IDENTITY v4
   ---------------------------------------------------------
   Final visual layer: navy / ice-blue, restrained type,
   editorial hero, logo-led navigation and scroll depth.
========================================================= */

:root {
    --bg-0: #061018;
    --bg-1: #081722;
    --bg-2: #0b1d29;
    --surface: rgba(232, 246, 255, 0.055);
    --surface-strong: rgba(232, 246, 255, 0.085);
    --surface-soft: rgba(232, 246, 255, 0.035);
    --surface-border: rgba(183, 222, 242, 0.13);
    --surface-border-strong: rgba(183, 222, 242, 0.22);
    --text-0: #f4f8fb;
    --text-1: #c7d6df;
    --text-2: #8ea4b1;
    --text-muted: #657c89;
    --accent: #8ce7ff;
    --accent-2: #4fc8ec;
    --accent-3: #9fbfff;
    --accent-warm: #e8c47a;
    --container: 1280px;
    --font-display: "Pantra", "Pantra Regular", "Avenir Next", "Montserrat", "Space Grotesk", sans-serif;
    --font-body: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 78% 8%, rgba(79, 200, 236, .12), transparent 28%),
        radial-gradient(circle at 10% 55%, rgba(112, 151, 255, .07), transparent 28%),
        linear-gradient(145deg, var(--bg-0), var(--bg-1) 48%, var(--bg-2));
}

body::before { background: rgba(79, 200, 236, .045); }
body::after { background: rgba(159, 191, 255, .045); }

h1, h2, h3, h4, h5, h6,
.hero-kicker,
.section-subtitle,
.site-brand-text,
.hero-services-heading,
.hero-service-name {
    font-family: var(--font-display);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: -0.045em;
}

.site-header {
    background: rgba(5, 15, 23, .82);
    border-bottom-color: rgba(168, 215, 236, .09);
    backdrop-filter: blur(22px) saturate(125%);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.site-header::after {
    background: linear-gradient(90deg, transparent, rgba(140, 231, 255, .22), transparent);
}

.site-header-inner {
    min-height: 76px;
    width: min(calc(100% - 56px), 1280px);
    grid-template-columns: 190px 1fr auto;
    gap: 26px;
}

.site-brand {
    gap: 10px;
}

.site-brand-logo {
    width: 124px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.site-brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 8px 22px rgba(79, 200, 236, .12));
}

.site-brand-text {
    display: none;
}

.site-nav {
    gap: 2px;
}

.site-nav a {
    min-height: 38px;
    padding: 7px 13px;
    color: #9bb0bc;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 9px;
}

.site-nav a:hover {
    color: #fff;
    background: rgba(140, 231, 255, .045);
}

.site-nav a.is-active {
    color: #f7fbff;
    background: rgba(140, 231, 255, .055);
    border-color: rgba(140, 231, 255, .10);
}

.site-nav a.is-active::after {
    width: 14px;
    height: 1px;
    bottom: 2px;
    background: var(--accent);
}

.site-account-button {
    min-height: 42px;
    padding: 9px 19px;
    border-radius: 7px;
    border-color: rgba(140, 231, 255, .2);
    color: #041017;
    background: linear-gradient(135deg, #a9ecff, #66d4f3);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 12px 34px rgba(79, 200, 236, .12);
}

.site-account-button:hover {
    box-shadow: 0 16px 40px rgba(79, 200, 236, .20);
}

/* ---------------- Editorial hero ---------------- */
.hero-editorial {
    min-height: min(88vh, 850px);
    display: flex;
    align-items: center;
    overflow: clip;
    background:
        radial-gradient(circle at 66% 46%, rgba(79, 200, 236, .10), transparent 23%),
        linear-gradient(180deg, rgba(3, 12, 19, .30), rgba(3, 12, 19, .04));
}

.hero-editorial::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -7;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(4, 14, 22, .94) 0%, rgba(4, 14, 22, .72) 31%, rgba(4, 14, 22, .10) 62%, rgba(4, 14, 22, .70) 100%);
}

.hero-editorial-inner {
    width: min(calc(100% - 56px), 1280px);
    min-height: 730px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(310px, .86fr) minmax(420px, 1.08fr) minmax(190px, .42fr);
    align-items: center;
    gap: 28px;
    position: relative;
}

.hero-editorial-copy {
    position: relative;
    z-index: 5;
    padding: 56px 0 50px;
    max-width: 520px;
}

.hero-kicker {
    margin: 0 0 20px;
    color: #91b7c7;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin: 0 10px 3px 0;
    background: var(--accent);
}

.hero-editorial-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(3.6rem, 6.2vw, 6.5rem);
    line-height: .93;
    max-width: 650px;
}

.hero-editorial-copy h1 span {
    color: #8fe2f8;
}

.hero-description--editorial {
    max-width: 450px;
    margin-bottom: 30px;
    color: #a5b7c1;
    font-size: .96rem;
    line-height: 1.8;
}

.hero-actions--editorial {
    display: flex;
    align-items: center;
    gap: 22px;
}

.hero-actions--editorial .btn-primary {
    min-height: 46px;
    padding-inline: 22px;
    border-radius: 7px;
    font-size: .76rem;
}

.hero-text-link {
    color: #dbe8ef;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.hero-text-link span {
    display: inline-block;
    margin-left: 5px;
    color: var(--accent);
    transition: transform .25s var(--ease-out);
}

.hero-text-link:hover span { transform: translate(3px, -3px); }

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 54px;
    color: #637c89;
    font-family: var(--font-body);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .15em;
}

.hero-trust-row i {
    width: 28px;
    height: 1px;
    background: rgba(140, 231, 255, .42);
}

.hero-editorial-visual {
    position: relative;
    height: min(72vh, 680px);
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    will-change: transform;
}

.hero-photo-frame {
    position: relative;
    width: min(100%, 590px);
    height: 94%;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 88%, 73% 100%, 0 100%, 0 13%);
    background: #d7e5e9;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .36);
}

.hero-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 63% center;
    filter: saturate(.88) contrast(1.04) brightness(.88);
    transform: scale(1.035);
    will-change: transform;
}

.hero-photo-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 16, 24, .16), transparent 32%, rgba(3, 13, 20, .30)),
        linear-gradient(90deg, rgba(3, 14, 21, .28), transparent 45%);
    pointer-events: none;
}

.hero-photo-glow {
    position: absolute;
    width: 52%;
    aspect-ratio: 1;
    right: -15%;
    top: 8%;
    border-radius: 50%;
    background: rgba(91, 210, 244, .17);
    filter: blur(55px);
    z-index: -1;
}

.hero-floating-note {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #dfeef5;
    background: rgba(5, 17, 25, .68);
    border: 1px solid rgba(176, 222, 240, .15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0,0,0,.20);
    font-size: .66rem;
    line-height: 1.45;
    letter-spacing: .03em;
}

.hero-floating-note--top { top: 16%; left: -7%; }
.hero-floating-note--bottom { right: -4%; bottom: 12%; }

.hero-floating-number {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.hero-floating-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8ce7ff;
    box-shadow: 0 0 0 5px rgba(140,231,255,.10), 0 0 18px rgba(140,231,255,.30);
}

.hero-services-rail {
    position: relative;
    z-index: 5;
    padding: 10px 0 10px 4px;
}

.hero-services-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #f4f8fb;
    font-size: .88rem;
}

.hero-services-rule {
    width: 34px;
    height: 1px;
    background: rgba(140,231,255,.48);
}

.hero-service-item {
    display: grid;
    grid-template-columns: 26px 1fr 18px;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 10px 9px;
    margin-bottom: 7px;
    color: #a7bac5;
    border-bottom: 1px solid rgba(160, 205, 223, .09);
    transition: color .25s ease, background .25s ease, transform .25s var(--ease-out);
}

.hero-service-item:hover {
    color: #f7fbff;
    background: rgba(140,231,255,.035);
    transform: translateX(-4px);
}

.hero-service-index {
    color: #587281;
    font-family: var(--font-body);
    font-size: .57rem;
    font-weight: 700;
}

.hero-service-name {
    font-size: .82rem;
    line-height: 1.2;
}

.hero-service-arrow {
    color: #7293a2;
    font-size: .8rem;
}

.hero-rating {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3px 9px;
    align-items: center;
    margin-top: 22px;
    padding: 12px 10px;
    border-top: 1px solid rgba(160,205,223,.09);
}

.hero-rating-stars { color: #e9c66f; font-size: .67rem; letter-spacing: .09em; }
.hero-rating strong { font-size: .86rem; font-weight: 700; }
.hero-rating > span:last-child { grid-column: 1 / -1; color: #607886; font-size: .57rem; }

.hero-editorial-line {
    position: absolute;
    z-index: -3;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140,231,255,.28), transparent);
    transform-origin: left center;
    pointer-events: none;
}

.hero-editorial-line--one { width: 42vw; right: -8vw; top: 25%; transform: rotate(-19deg); }
.hero-editorial-line--two { width: 35vw; left: 44%; bottom: 11%; transform: rotate(12deg); opacity: .55; }

.hero-scroll-cue {
    position: absolute;
    left: max(28px, calc((100% - 1280px) / 2));
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #627b89;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .19em;
    writing-mode: horizontal-tb;
}

.hero-scroll-cue i {
    width: 34px;
    height: 1px;
    background: rgba(140,231,255,.42);
}

/* Editorial section rhythm */
.section-subtitle {
    font-family: var(--font-body);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .22em;
    color: #7ca7b8;
}

.section-header h2,
.section-heading h2,
.cta-content h2,
.contact-cta-content h2 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: .98;
    font-weight: 400;
}

.service-card h3,
.benefit-card h3,
.testimonial-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
}

/* Use the actual gallery photos when a gallery has not yet been populated. */
.home-page .gallery-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1080px) {
    .site-header-inner { grid-template-columns: auto 1fr auto; }
    .hero-editorial-inner {
        grid-template-columns: minmax(280px, .85fr) minmax(360px, 1fr);
    }
    .hero-services-rail {
        position: absolute;
        right: 0;
        bottom: 34px;
        width: 250px;
        padding: 10px;
        background: rgba(5,17,25,.46);
        border: 1px solid rgba(176,222,240,.09);
        backdrop-filter: blur(14px);
    }
}

@media (max-width: 820px) {
    .site-header-inner { width: min(calc(100% - 32px), 1280px); }
    .site-nav { display: none; }
    .site-header-inner { grid-template-columns: 1fr auto; }
    .site-brand-logo { width: 122px; }

    .hero-editorial {
        min-height: auto;
        padding: 72px 0 96px;
    }
    .hero-editorial-inner {
        width: min(calc(100% - 32px), 640px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .hero-editorial-copy { padding: 18px 0 0; max-width: none; }
    .hero-editorial-copy h1 { font-size: clamp(3.4rem, 14vw, 5.6rem); }
    .hero-editorial-visual { height: 560px; min-height: 0; order: 2; }
    .hero-services-rail { position: relative; right: auto; bottom: auto; width: 100%; order: 3; }
    .hero-scroll-cue { display: none; }
    .hero-floating-note--top { left: 2%; }
    .hero-floating-note--bottom { right: 2%; }
}

@media (max-width: 560px) {
    .site-header-inner { min-height: 68px; }
    .site-account-button { min-height: 38px; padding: 8px 14px; }
    .hero-editorial { padding-top: 46px; }
    .hero-editorial-copy h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
    .hero-description--editorial { font-size: .88rem; }
    .hero-actions--editorial { flex-wrap: wrap; gap: 16px; }
    .hero-trust-row { flex-wrap: wrap; margin-top: 36px; }
    .hero-editorial-visual { height: 450px; }
    .hero-photo-frame { clip-path: polygon(8% 0, 100% 0, 100% 92%, 76% 100%, 0 100%, 0 10%); }
    .hero-floating-note { padding: 9px 11px; font-size: .58rem; }
    .hero-floating-note--top { top: 10%; left: -1%; }
    .hero-floating-note--bottom { right: -1%; bottom: 7%; }
    .hero-services-rail { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo,
    .hero-floating-note,
    .hero-editorial-line,
    .hero-editorial-visual {
        transform: none !important;
        transition: none !important;
    }
}
