/* =============================================================== */
/* =============================================================== */
/* =================== DEFAULT PAGE SETTING ====================== */
/* =============================================================== */
/* =============================================================== */
@view-transition {
    navigation: auto;
}

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

:root {
    /* COLORS */
    --brand: 353 82% 54%;
    --brand-hover: hsl(var(--brand) / 0.8);
    --brand-light: hsl(var(--brand) / 0.6);
    --brand-border: hsl(var(--brand) / 0.1);

    --color-900: #fff;
    --color-800: #f5f5f5;
    --color-700: #cfcfcf;
    --color-500: #9a9a9a;
    --color-300: #707070;

    --color-border: rgba(255, 255, 255, 0.05);
    --color-brand: hsl(var(--brand));
    --color-bg: rgb(12, 14, 18);
    --card-bg: rgb(18, 21, 27);

    /* TYPOGRAPHY */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;

    --fw-regular: 400;
    --fw-semi: 500;
    --fw-highlight: 600;
    --fw-subtitle: 700;
    --fw-title: 900;

    --ls-normal: 0;
    --ls-tight: 0.02rem;
    --ls-wide: 0.1rem;
    --ls-wider: 0.2rem;

    /* SPACING */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    --space-xxxl: 8rem;

    /* LINE HEIGHTS */
    --lh-default: 1.2;
    --lh-text: 1.625;

    /* UI */
    --radius: 0px;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.dark {
    /* COLORS */
    --color-900: #fff;
    --color-800: #f5f5f5;
    --color-700: #cfcfcf;
    --color-500: #9a9a9a;
    --color-300: #707070;

    --color-border: rgba(255, 255, 255, 0.05);
    --color-bg: rgb(12, 14, 18);
    --card-bg: rgb(18, 21, 27);
}

.light {
    /* COLORS */
    --color-900: #000;
    --color-800: #111;
    --color-700: #444;
    --color-500: #777;
    --color-300: #999;

    --color-border: rgba(0, 0, 0, 0.05);
    --color-bg: #f5f5f5;
    --card-bg: #ffffff;
}

.brand {
    --color-900: #fff;
    --color-800: #f5f5f5;

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    font-size: var(--text-md);
    line-height: var(--lh-default);
    font-weight: var(--fw-regular);
    color: var(--color-900);
    background-color: var(--color-bg);
}

/* =============================================================== */
/* =============================================================== */
/* ======================== TYPOGRAPHY =========================== */
/* =============================================================== */
/* =============================================================== */
p,
a {
    color: var(--color-900);
}

h1,
h1 *,
h2,
h2 *,
h3,
h3 *,
h4,
h4 *,
h5,
h5 *,
h6,
h6 * {
    color: var(--color-900);
    font-family: "Poppins", sans-serif;
    font-weight: var(--fw-title);
    letter-spacing: var(--ls-tight);
}

h3,
h3 *,
h4,
h4 *,
h5,
h5 *,
h6,
h6 * {
    font-weight: var(--fw-subtitle);
}

h1,
h1 * {
    font-size: 3rem;
}
h2,
h2 * {
    font-size: 2.25rem;
}
h3,
h3 * {
    font-size: 1.875rem;
}
h4,
h4 * {
    font-size: 1.5rem;
}
h5,
h5 * {
    font-size: 1.25rem;
}
h6,
h6 * {
    font-size: 1rem;
}

.text {
    line-height: var(--lh-text);
    color: var(--color-700);
    letter-spacing: var(--ls-tight);
}

.text-italic {
    font-style: italic !important;
}

.text-highlight {
    color: var(--color-brand);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--ls-tight);
    font-weight: var(--fw-highlight);
}

.text-center {
    text-align: center;
}

.description,
.description * {
    line-height: var(--lh-text);
    color: var(--color-500);
    text-align: justify;
}

.description.sm,
.description.sm * {
    line-height: var(--lh-text);
    font-size: var(--text-sm);
}

.link {
    color: var(--color-500);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: var(--color-brand);
    transition: width var(--transition);
}

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

.link:hover::after {
    width: 100%;
}

/* =============================================================== */
/* =============================================================== */
/* ========================== CLIPS ============================== */
/* =============================================================== */
/* =============================================================== */
.clip {
    --clip-height: 2rem;

    clip-path: polygon(
        0% 0%,
        calc(30% - var(--clip-height)) 0%,
        30% var(--clip-height),
        70% var(--clip-height),
        calc(70% + var(--clip-height)) 0%,
        100% 0%,
        100% calc(100% - var(--clip-height)),
        calc(70% + var(--clip-height)) calc(100% - var(--clip-height)),
        70% 100%,
        30% 100%,
        calc(30% - var(--clip-height)) calc(100% - var(--clip-height)),
        0% calc(100% - var(--clip-height))
    );
}
.clip.clip-sm {
    --clip-height: 1rem;
}
@media (max-width: 992px) {
    .clip.clip-custom {
        --clip-height: 1rem;
    }
}
.clip.clip-top {
    clip-path: polygon(
        0% 0%,
        calc(30% - var(--clip-height)) 0%,
        30% var(--clip-height),
        70% var(--clip-height),
        calc(70% + var(--clip-height)) 0%,
        100% 0%,
        100% 100%,
        0% 100%
    );
}
.clip.clip-bottom {
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% calc(100% - var(--clip-height)),
        calc(70% + var(--clip-height)) calc(100% - var(--clip-height)),
        70% 100%,
        30% 100%,
        calc(30% - var(--clip-height)) calc(100% - var(--clip-height)),
        0% calc(100% - var(--clip-height))
    );
}
.clip.clip-bottom-inverted {
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 100%,
        calc(70% + var(--clip-height)) 100%,
        70% calc(100% - var(--clip-height)),
        30% calc(100% - var(--clip-height)),
        calc(30% - var(--clip-height)) 100%,
        0% 100%
    );
}
.clip.clip-left {
    clip-path: polygon(
        100% 0%,
        100% 100%,
        0% 100%,
        0% calc(70% + var(--clip-height)),
        var(--clip-height) 70%,
        var(--clip-height) 30%,
        0% calc(30% - var(--clip-height)),
        0% 0%
    );
}

/* =============================================================== */
/* =============================================================== */
/* ======================== CONTAINER ============================ */
/* =============================================================== */
/* =============================================================== */
.container {
    position: relative;
    width: 100%;
    width: min(100% - 4rem, 1200px);
    margin-inline: auto;
}

.grid-421 {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

@media (min-width: 576px) {
    .grid-421 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .grid-421 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-321 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    width: 100%;
}

@media (min-width: 768px) {
    .grid-321 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-321 > *:first-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .grid-321 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-321 > *:first-child {
        grid-column: auto;
    }
}

.grid-211 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    width: 100%;
}

@media (min-width: 992px) {
    .grid-211 {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================================== */
/* =============================================================== */
/* ========================= SECTIONS ============================ */
/* =============================================================== */
/* =============================================================== */
section {
    position: relative;
    overflow-x: clip;
    width: 100%;
}

.section {
    background-color: var(--color-bg);
    padding: var(--space-xxxl) 0;
    margin-top: calc(var(--space-md) * -1);
}

.section-noisy-bg {
    background-color: var(--color-brand) !important;
    background: linear-gradient(hsl(var(--brand) / 0.9), hsl(var(--brand) / 0.9)), url("/assets/custom/noise.png"), var(--color-brand);
    background-position: center;
    z-index: 2;
}

.section.sticky {
    position: sticky;
    top: 0;
}

.section.sm {
    padding: var(--space-xxxl) 0 var(--space-xxl) 0;
}

.section-header {
    position: relative;
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.section-title,
.section-title * {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--color-900);
    line-height: 1;
}

.section-title > span {
    color: var(--color-brand);
}

.section-subtitle {
    position: relative;
    width: fit-content;
    color: var(--color-300);
    text-transform: uppercase;
    font-size: var(--text-xs);
    letter-spacing: var(--ls-sm);
    margin-bottom: var(--space-sm);

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
}

.section-subtitle > span {
    display: block;
    width: var(--space-md);
    height: 1px;
    background-color: var(--color-brand);
}

.section-description {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.section-body {
    position: relative;
}

@media (min-width: 992px) {
    .section-header {
        grid-template-columns: 1fr 28rem;
        align-items: end;
    }
    .section-description {
        max-width: 48rem;
    }

    .section-sliding {
        display: grid;
        grid-template-columns: 1fr 3fr;
        gap: var(--space-xl);
        align-items: start;
    }

    .section-sliding .section-header {
        position: sticky;
        top: var(--space-xxxl);
        margin-bottom: 0;
        justify-items: center;
        text-align: left;
        grid-template-columns: 1fr;
    }
}

.section-header.center {
    justify-items: center;
    text-align: center;
    grid-template-columns: 1fr;
}

.section-header.center .section-subtitle {
    margin-inline: auto;
}

/* =============================================================== */
/* =============================================================== */
/* ====================== CUSTOM STYLES ========================== */
/* =============================================================== */
/* =============================================================== */
/* HEIGHT AND WIDTH */
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}

.mt-sm {
    margin-top: var(--space-sm);
}
.mt-md {
    margin-top: var(--space-md);
}

/* PADDINGS */
.p-sm {
    padding: var(--space-sm);
}
.p-md {
    padding: var(--space-md);
}
.pi-sm {
    padding-inline: var(--space-sm);
}
.pi-md {
    padding-inline: var(--space-md);
}

.pb-sm {
    padding-bottom: var(--space-sm);
}
.pb-md {
    padding-bottom: var(--space-md);
}
.pt-sm {
    padding-top: var(--space-sm);
}
.pt-md {
    padding-top: var(--space-md);
}

/* BORDERS */
.border-top {
    border-top: 1px solid var(--color-border);
}

.border-bottom {
    border-bottom: 1px solid var(--color-border);
}

.border-bottom-brand {
    border-bottom: 1px solid var(--color-brand);
}

/* BRAND COLOR */
.brand-color {
    color: var(--color-brand);
}

/* BODY */
body.block-scroll {
    overflow: hidden;
}

/* FLEXBOX */
.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}
.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}
.gap-0 {
    gap: 0;
}
.gap-xs {
    gap: var(--space-xs);
}
.gap-sm {
    gap: var(--space-sm);
}
.gap-md {
    gap: var(--space-md);
}
.gap-xxxl {
    gap: var(--space-xxxl);
}
.flex-row.space,
.flex-column.space {
    justify-content: space-between;
}
.flex-row.start {
    justify-content: start;
}
.flex-column.start {
    justify-content: start;
    align-items: start;
}
.flex-column.end {
    align-items: end;
}
.flex-wrap {
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .flex-row-md {
        flex-direction: row;
    }

    .flex-row.reverse,
    .flex-column.reverse {
        flex-direction: row-reverse;
    }
}

@media (min-width: 992px) {
    .flex-row-lg {
        flex-direction: row;
    }
}

/* BUTTONS */
.button {
    font-size: var(--text-md);
    border: 0;
    border-radius: var(--radius);
    padding: 0.75rem 1.125rem;
    background-color: var(--color-brand);
    color: var(--color-900);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-tight);
    cursor: pointer;
    white-space: nowrap;
    transition:
        background-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}
.button.sm {
    font-size: var(--text-sm);
    padding: 0.5rem 0.725rem;
}
.button.inverted {
    background-color: var(--color-900);
    color: var(--color-brand);
}
.button:hover {
    background-color: var(--brand-hover);
}
.button.inverted:hover {
    background-color: #eaeaea;
}
.button.cta {
    --pulse-color: 245, 90, 111;
    animation: pulse 1.5s infinite;
}
.button.cta.inverted {
    --pulse-color: 255, 255, 255;
}
.button.cta:hover {
    animation: none;
}
@media (min-width: 768px) {
    .button.xl {
        letter-spacing: calc(var(--ls-tight) * -1);
        font-size: var(--text-lg);
        padding: 1.25rem 1.725rem;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--pulse-color), 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--pulse-color), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--pulse-color), 0);
    }
}

/* ===== CARDS ===== */
.card {
    position: relative;
    background-color: var(--card-bg);
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        border-color var(--transition);
    overflow: hidden;
}

.card-hoverable::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--color-brand);
    transition: width var(--transition);
}
.card-hoverable:hover::before {
    width: 100%;
}

.card-watermark {
    position: absolute;
    bottom: -2.5rem;
    right: -1rem;
    font-family: "Poppins", sans-serif;
    font-size: 12rem;
    font-weight: var(--fw-title);
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    pointer-events: none;
    transition: transform var(--transition);
}
.card-watermark.dark {
    color: rgba(0, 0, 0, 0.1);
}

.card:hover .card-watermark {
    transform: translate(-0.5rem, -0.5rem);
}
.card:hover .icon-wrapper {
    transform: translateY(-4px);
}

/* ===== IMAGE WRAPPER ==== */
.image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card-bg);
    aspect-ratio: 16/10;
}
.image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.25);
    transition: background-color var(--transition);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: transform var(--transition);
    will-change: transform;
}
.image-wrapper:hover {
    cursor: pointer;
    opacity: 1 !important;
}
.image-wrapper:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
}
.image-wrapper:hover img {
    transform: scale(1.08);
}

/* effect even after card hover */
.card:hover .image-wrapper img {
    transform: scale(1.08);
}
.card:hover .image-wrapper::after {
    background-color: rgba(0, 0, 0, 0.25);
}

/* ===== ICON WRAPPER ===== */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    width: 3rem;
    min-height: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background-color: hsl(var(--brand) / 0.1);
    border: 1px solid hsl(var(--brand) / 0.4);
    transition: transform var(--transition);
}
.icon-wrapper.white {
    background-color: rgba(255, 255, 255, 0.1);
}
.icon-wrapper * {
    font-size: 1.25rem;
    color: var(--color-brand) !important;
}
.icon-wrapper.white * {
    color: var(--color-900) !important;
}
.icon-wrapper.sm {
    font-size: 1.25rem;
    min-width: 2rem;
    width: 2rem;
    min-height: 2rem;
    height: 2rem;
}

.icon-wrapper.sm * {
    font-size: 1rem !important;
}

.tag,
.dark-tag,
.light-tag {
    background: var(--color-brand);
    border-radius: var(--radius);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    font-weight: var(--fw-highlight);
    display: inline-block;
}

.dark-tag {
    background: rgba(0, 0, 0, 0.85);
    color: white;
}

.light-tag {
    background: rgba(255, 255, 255, 0.85);
    color: black;
}

.floating-tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 3;
}

/* ===== BACKDROP ===== */
#backdrop {
    position: fixed;
    z-index: 499;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}
#backdrop.menu-visible {
    opacity: 1;
    pointer-events: all;
}

#backdrop.drawer-visible {
    opacity: 1;
    pointer-events: all;
    z-index: 999;
    cursor: pointer;
}

/* =============================================================== */
/* =============================================================== */
/* ======================= PAGE HEADER =========================== */
/* =============================================================== */
/* =============================================================== */
header {
    --header-height: 4.5rem;

    position: fixed;

    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid var(--color-border);
    z-index: 500;
    transition:
        background-color var(--transition),
        backdrop-filter var(--transition);
}
header:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(8px) !important;
}
.header {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    height: 2rem;
}
.header-hamburger {
    font-size: 2rem;
    color: white;
}
.header-hamburger:hover {
    color: var(--brand-color);
}
@media (min-width: 992px) {
    .header-hamburger {
        display: none;
    }
}

/* =============================================================== */
/* =============================================================== */
/* ======================= NAVIGATION ============================ */
/* =============================================================== */
/* =============================================================== */
nav {
    display: none !important;
}
@media (min-width: 992px) {
    nav {
        display: flex !important;
    }
}
.nav-cta {
    width: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.nav-item {
    text-decoration: none;
    position: relative;
    height: 100%;
    cursor: pointer;

    display: flex;
    align-items: center;
    padding: 0 var(--space-sm);
}
.nav-item span {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: var(--space-xs);

    color: var(--color-700);
    text-transform: uppercase;
    font-weight: var(--fw-semi);
    letter-spacing: var(--ls-tight);
    font-size: var(--text-sm);
}
.nav-item:hover span {
    color: var(--color-brand);
}
#nav-mega-menu-item i {
    transition: all var(--transition);
}
#nav-mega-menu-item:hover span i {
    transform: rotate(180deg);
}

#mega-menu {
    position: fixed;
    left: 0;
    top: var(--header-height);

    cursor: auto;
    z-index: 500;
    width: 100%;
    background-color: var(--card-bg);
    transition: all var(--transition);

    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
}
#mega-menu.visible {
    opacity: 1;
    transform: translateY(-1px);
    pointer-events: all;
}
.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    padding: var(--space-md) 0;
    margin-bottom: var(--space-md);
}
.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.mega-menu-column.hidden {
    width: 0;
    height: 0;
    overflow: clip;
    order: 100;
}
.mega-menu-column h6 {
    font-weight: var(--fw-highlight);
    color: var(--color-700);
    margin-bottom: var(--space-xs);
}
.mega-menu-column a {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-500);
    font-size: var(--text-sm);

    transition: all var(--transition);
}
.mega-menu-column a span {
    height: 1px;
    width: 0.5rem;
    background-color: var(--color-border);
    transition: all var(--transition);
}
.mega-menu-column a:hover {
    color: var(--color-brand);
}
.mega-menu-column a:hover span {
    width: 1rem;
    background-color: var(--color-brand);
}

/* =============================================================== */
/* =============================================================== */
/* ====================== SCROLL TO TOP ========================== */
/* =============================================================== */
/* =============================================================== */
.scroll-top {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand);
    color: var(--color-900);
    border-radius: var(--radius);
    border: 0;
    cursor: pointer;
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
    transition:
        opacity var(--transition),
        transform var(--transition),
        background-color var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--brand-hover);
    transform: translateY(-3px);
}

/* =============================================================== */
/* =============================================================== */
/* ========================= FOOTER ============================== */
/* =============================================================== */
/* =============================================================== */
footer {
    padding-bottom: 0 !important;
    clip-path: none !important;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}
.footer-hours {
    order: 1;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}
.footer-contacts {
    order: 2;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}
.footer-navigation {
    order: 3;
}
.footer-content h6 {
    color: var(--color-900);
    margin-bottom: var(--space-xs);
}
.footer-content img {
    height: 3rem;
    margin-inline: auto;
}
.footer-text {
    padding: 1rem;
    font-size: var(--text-sm);
    color: var(--color-brand);
    border-radius: var(--radius);
    background-color: hsl(var(--brand) / 0.1);
    border: 1px solid hsl(var(--brand) / 0.4);
}
.footer-bottom-content {
    font-size: var(--text-sm);
    padding: calc(var(--space-md) / 2) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-300);
    border-top: 1px solid var(--brand-border);
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    color: var(--color-700);
    letter-spacing: var(--ls-tight);
}
.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #888;
    position: relative;
}
.status-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: status-pulse 2s ease-out infinite;
}
.status-dot.open {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.status-dot.closed {
    background: var(--color-brand);
    box-shadow: 0 0 8px hsl(var(--brand) / 0.6);
}

@keyframes status-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content img {
        margin: 0 auto 0 0;
    }

    .footer-hours,
    .footer-contacts {
        border: none;
    }

    .footer-navigation {
        grid-column: 1 / -1;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-hours {
        order: 3;
        padding-bottom: 0;
    }
    .footer-contacts {
        order: 2;
        padding-bottom: 0;
    }
    .footer-navigation {
        order: 1;
        grid-column: 1;
        align-items: start !important;
        justify-content: start !important;
    }
}

/* =============================================================== */
/* =============================================================== */
/* ========================= CAROUSEL ============================ */
/* =============================================================== */
/* =============================================================== */
.carousel-wrapper {
    position: relative;
    width: 100%;
    height: fit-content;
}

.carousel {
    position: relative;
    height: fit-content;
    width: 100%;
    padding: var(--space-sm) 0;
}
@media (min-width: 768px) {
    .carousel {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    }
}

.carousel-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    transition: transform var(--transition);
    will-change: transform;
}

.carousel-btn {
    position: absolute;
    z-index: 1000;
    top: 0;
    width: 2rem;
    height: 100%;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    background-color: transparent;
    font-size: 1.2rem;
    color: var(--color-300);
    transition:
        background-color var(--transition),
        color var(--transition);
    will-change: background-color, color;
}
.carousel-btn:hover {
    color: var(--color-700);
    background-color: var(--color-border);
}
.carousel-btn.prev {
    left: -2rem;
}
.carousel-btn.next {
    right: -2rem;
}
.carousel-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    height: 1rem;
    justify-content: center;
    gap: var(--space-xs);
}
.carousel-dot {
    width: 1rem;
    height: 1rem;
    border-radius: var(--radius);
    background: transparent;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: background-color var(--transition);
    will-change: background-color;
}
.carousel-dot:hover {
    background-color: hsl(var(--brand) / 0.3);
}
.carousel-dot.active {
    width: 2rem;
    background: var(--color-brand);
}

/* =============================================================== */
/* =============================================================== */
/* ========================= DRAWER ============================== */
/* =============================================================== */
/* =============================================================== */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100dvh;
    background-color: var(--color-bg);
    border-left: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    padding-left: 1rem;
}
.drawer-header {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}
.drawer-header h4 {
    color: var(--color-900);
}
#drawer-close {
    background-color: transparent;
    border: 0;
    font-size: var(--text-xl);
    color: var(--color-500);
    cursor: pointer;
    transition: color var(--transition);
}
#drawer-close:hover {
    color: var(--color-brand);
}
.drawer-body {
    padding: var(--space-md) var(--space-sm);
    overflow-y: auto;
    flex-grow: 1;
}

/* =============================================================== */
/* =============================================================== */
/* ========================== FORM =============================== */
/* =============================================================== */
/* =============================================================== */
.form label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--ls-tight);
    color: var(--color-500);
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
    width: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem;
    color: var(--color-900);
    transition: border-color var(--transition);
    font-size: var(--text-md);
}

.form input:hover,
.form textarea:hover {
    outline: none;
    border-color: var(--brand-hover);
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--color-brand);
}

.file-upload-label {
    font-size: var(--text-md) !important;
    padding: var(--space-md);
    background-color: var(--card-bg);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: var(--text-md);
    transition: all var(--transition);
    text-transform: none !important;
}
.file-upload-label:hover {
    border-color: var(--brand-hover);
}
.file-upload-label input[type="file"] {
    display: none;
}

/* =============================================================== */
/* =============================================================== */
/* ====================== PAGE HEADER ============================ */
/* =============================================================== */
/* =============================================================== */
.page-header {
    width: 100%;
    height: 35dvh;
    min-height: 350px;
    position: sticky;
    top: 0;
    inset: 0;
    z-index: -1;
    isolation: isolate;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: var(--space-xl);
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 100% 0%, rgba(12, 14, 18, 0.7) 0%, rgba(12, 14, 18, 0.8) 100%);
    pointer-events: none;
}

.page-header-img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-header-extended {
    height: 50dvh;
}

.page-header-description {
    margin-top: var(--space-md);
    max-width: 48rem;
    text-align: center;
}

/* =============================================================== */
/* =============================================================== */
/* ====================== PAGE SPECIFIC ========================== */
/* =============================================================== */
/* =============================================================== */

/* =============================================================== */
/* =============================================================== */
/* ======================== HERO PAGE ============================ */
/* =============================================================== */
/* =============================================================== */
#hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    background-color: var(--color-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 100% 0%, rgba(12, 14, 18, 0.8) 0%, rgba(12, 14, 18, 0.9) 100%), url("../assets/prodejna.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-darken {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--color-bg);
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

.hero-content {
    position: relative;
    background: radial-gradient(circle at 100% 0%, rgba(220, 38, 38, 0.4) 0%, rgba(12, 14, 18, 0.8) 45%, rgba(12, 14, 18, 0.92) 100%);
    z-index: 2;
    height: 100%;
}

.hero-content > div {
    gap: var(--space-md) !important;
}

.hero-content h2 {
    line-height: 1.3;
    margin-bottom: -0.5rem;
    overflow: hidden;
    margin-bottom: calc(var(--space-md) * -1);

    opacity: 0;
    transform: translateY(100%);
}
.hero-content h2 span {
    display: inline-block;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 3vw, 4rem);
}

.hero-content h1 {
    position: relative;
    line-height: 0.8;
    width: fit-content;
    padding-bottom: var(--space-sm);
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hero-content h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-letter-wrapper {
    display: inline-block;
    overflow: hidden;
    position: relative;
}
.hero-letter {
    display: inline-block;
    text-transform: uppercase;
    color: var(--color-brand);
    font-size: clamp(5rem, 18vw, 11rem);
    transform: translateX(-100%);
}
.hero-content h4 {
    position: relative;
    line-height: 1.3;
    margin-bottom: -0.5rem;
    overflow: hidden;
    text-align: center;
    margin-bottom: -0.5rem;

    opacity: 0;
    transform: translateY(-100%);
}
.hero-content h4 span {
    display: inline-block;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}
#hero .button {
    opacity: 0;
    transform: translateY(-100%);
}

.hero-images {
    position: absolute;
    overflow: hidden;
    top: 100%;
    left: 50%;
    width: 100%;
    max-width: 1400px;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    will-change: transform, top, opacity;

    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 95%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 95%);
}

.hero-img-before {
    width: 100%;
    min-width: 700px;
    display: block;
}

.hero-img-after {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 700px;
    width: 100%;
    height: 100%;
    opacity: 0;
    will-change: opacity;
}

.hero-final-cta {
    position: absolute;
    bottom: 4rem;
    left: 50%;

    width: 90%;
    max-width: 600px;
    padding: var(--space-sm);
    border-radius: 1rem;

    /* Glassmorphism */
    background: rgba(12, 14, 18, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    text-align: center;
    color: white;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

/* ===== SCROLLER ===== */
.hero-scroll-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll {
    opacity: 0;
    display: inline-block;
    width: 2rem;
    height: 3.5rem;
    border: 0.125rem solid var(--color-900);
    border-radius: 1.5rem;
}
.hero-scroller {
    width: 0.25rem;
    height: 0.75rem;
    margin-top: 0.5rem;
    margin-left: 0.75rem;
    background: var(--color-brand);
    border-radius: 25%;
    animation: scroll 2.2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* ===== NUMBER SECTION ===== */
.number-cell {
    position: relative;
    background-color: transparent !important;
    padding: var(--space-md) var(--space-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    min-height: 12rem;
    transition: background-color var(--transition);
}

.number-cell::before {
    background: rgba(255, 255, 255, 0.6) !important;
}

.number-cell .num-value {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--fw-title);
    color: var(--color-900);
    letter-spacing: var(--ls-tight);
    line-height: 1;
    z-index: 2;
    margin-top: auto;
}

.number-cell .num-label {
    z-index: 2;
    text-transform: uppercase;
    color: var(--color-800);
    letter-spacing: var(--ls-tight);
    font-size: var(--text-sm);
    font-weight: var(--fw-regular);
}

/* ===== ABOUT SECTION ===== */
.about-logo-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.about-logo-track {
    display: flex;
    width: max-content;
    gap: var(--space-md);
    animation: logoz 30s linear infinite;
}

.about-logo-track img {
    height: 2rem;
    flex-shrink: 0;
}

@keyframes logoz {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== WORK SECTION ===== */
.work-item {
    height: 350px;
}

.work-item-label {
    position: absolute;
    left: var(--space-sm);
    bottom: calc(var(--space-sm) + var(--clip-height));
    z-index: 3;
    width: calc(100% - (2 * var(--space-md)) - 63px);

    display: grid;
    grid-template-rows: max-content 0fr;
    transition: grid-template-rows var(--transition);
}

.work-item:hover .work-item-label {
    grid-template-rows: max-content 1fr;
}

.work-item .description {
    color: var(--color-700);
    opacity: 0;
    overflow: hidden;
    min-height: 0;
    transform: translateY(0.5rem);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.work-item:hover .description {
    opacity: 1;
    transform: translateY(0);
}

.work-item button {
    z-index: 2;
    position: absolute;
    bottom: calc(var(--space-sm) + var(--clip-height));
    right: var(--space-sm);

    transition: all var(--transition);
    opacity: 0;
}
.work-item:hover button {
    opacity: 1;
}

.work-item:last-child .work-item-label,
.work-item:last-child .button {
    bottom: var(--space-sm);
}

@media (min-width: 992px) {
    .work-item {
        height: 450px;
    }
}

/* === STEPS ===== */
.steps-timeline {
    position: relative;
    width: 100%;
}

.steps-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 4rem;
    left: 1.5rem;
    width: 1px;
    background: linear-gradient(180deg, var(--color-brand) 0%, var(--color-border) 100%);
}

@media (min-width: 992px) {
    .steps-timeline::before {
        left: 50%;
        transform: translateX(-0.5px);
    }
}

.step-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md) 0 var(--space-md) var(--space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .step-row {
        grid-template-columns: 1fr 1fr;
        padding: var(--space-xs) 0 var(--space-xs) 0;
    }
    .step-row.right {
        direction: rtl;
    }
    .step-row.right > * {
        direction: ltr;
    }
}

.step-marker {
    position: absolute;
    left: 0;
    top: var(--space-md);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid hsl(var(--brand) / 0.4);
    color: var(--color-brand);
    font-family: "Poppins", sans-serif;
    font-weight: var(--fw-title);
    font-size: 1rem;
    z-index: 2;
    transition:
        background-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

@media (min-width: 992px) {
    .step-marker {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .step-row:hover .step-marker {
        transform: translate(-50%, -50%) scale(1.1);
        background: var(--color-brand);
        color: var(--color-900);
    }
}

@media (min-width: 992px) {
    .step-row.left .card {
        grid-column: 1;
        margin-right: var(--space-md);
    }
    .step-row.right .card {
        grid-column: 1;
        margin-left: var(--space-md);
    }
}

/* ===== REVIEW SECTION ===== */
.review-card-wrapper {
    position: relative;
    width: clamp(12rem, 90vw, 34rem);
    opacity: 0.5;
    transform: scale(0.7);
    transition: all var(--transition);
    box-shadow: none;
}

.review-card-wrapper.active {
    opacity: 1;
    transform: scale(1);
    z-index: 100;
    box-shadow: 8px 8px 2px 1px hsl(var(--brand) / 0.1);
}

/* =============================================================== */
/* =============================================================== */
/* ====================== CONTACT PAGE =========================== */
/* =============================================================== */
/* =============================================================== */
.vzorkovna-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.vzorkovna-grid > div {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .vzorkovna-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 300px);
    }

    .vzorkovna-grid > div:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .vzorkovna-grid > div:nth-child(2) {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .vzorkovna-grid > div:nth-child(3) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }
}

/* override for map leaflet */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    color: var(--color-900) !important;
    background-color: var(--card-bg) !important;
}

.leaflet-popup-content-wrapper a {
    color: var(--color-700);
}

.leaflet-popup-close-button > span {
    color: var(--color-700) !important;
}

/* =============================================================== */
/* =============================================================== */
/* ====================== ZALUZIE PAGE =========================== */
/* =============================================================== */
/* =============================================================== */
.lamely-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .lamely-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

.barva-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    transition: transform var(--transition);
    cursor: pointer;
    position: relative;
}

.barva-dot:hover {
    transform: scale(1.15);
    border-color: var(--color-900);
}

.montaz-step {
    font-family: "Poppins", sans-serif;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-brand);
    font-weight: var(--fw-highlight);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.montaz-step::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: var(--color-brand);
    display: block;
}
