/* ═══════════════════════════════════════════════
   PROJEKTY ČERVENÝ – DESIGN SYSTEM "ORGANIC PREMIUM"
   ═══════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────── */
:root {
    --ink: #1C1B18;             /* near-black charcoal — headings, key text */
    --blue: #4E5CAC;            /* logo blue — buttons, active states, accents */
    --blue-light: #6B78C4;      /* lighter blue — hover accents */
    --blue-dark: #3A4890;       /* darker blue — pressed / deep states */
    --cream: #F5F4F2;           /* warm off-white — alt section backgrounds */
    --white: #FFFFFF;
    --text: #2A2926;            /* warm dark charcoal — body text */
    --text-light: #5C5A56;      /* warm medium gray */
    --text-muted: #8A8782;      /* warm neutral gray */

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.10);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --space-xs: 12px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;

    --max-width: 1200px;
    --section-pad: 100px;
    --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── Reset & Base ───────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* ── Utility ────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-blue {
    color: var(--blue);
}

/* ── Section defaults ───────────────────────── */
.section {
    padding: var(--section-pad) 0;
}

.section--alt {
    background-color: var(--cream);
}

.section__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ink);
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 20px;
    text-align: center;
}

.section__title--left {
    text-align: left;
    margin: 0 0 20px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.22s ease;
}

.nav--scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
}

.nav__logo strong {
    font-weight: 700;
}

.nav__logo-img {
    height: 34px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__item {
    position: relative;
}

.nav__item--has-menu {
    display: flex;
    align-items: center;
    padding: 24px 0;
    margin: -24px 0;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.25s ease;
    position: relative;
}

.nav__menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.nav__menu-trigger:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 6px;
    border-radius: 2px;
}

.nav__menu-icon {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin-left: 4px;
    transform: rotate(45deg);
    transform-origin: 62% 62%;
    transition: transform 0.22s ease;
}

.nav__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 260px;
    padding: 10px;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(28, 27, 24, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(28, 27, 24, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition:
        opacity 0.2s ease,
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.2s ease;
    visibility: hidden;
}

.nav__submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.nav__submenu li + li {
    margin-top: 2px;
}

.nav__submenu .nav__submenu-link {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--text-light);
    line-height: 1.3;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav__submenu .nav__submenu-link::after {
    display: none;
}

.nav__submenu .nav__submenu-link:hover,
.nav__submenu .nav__submenu-link:focus-visible {
    background: rgba(78, 92, 172, 0.08);
    color: var(--ink);
    transform: translateX(2px);
}

.nav__submenu .nav__submenu-link:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.nav__item--has-menu:hover .nav__submenu,
.nav__item--has-menu:focus-within .nav__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.nav__item--has-menu:hover .nav__menu-icon,
.nav__item--has-menu:focus-within .nav__menu-icon {
    transform: rotate(225deg);
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--ink);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

.nav__cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background 0.25s ease, transform 0.2s ease !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition:
        opacity 0.2s ease,
        transform 0.24s var(--ease-out-strong);
}

.nav__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
/* ── Hero Split-Screen ───────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.hero__panel--text {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 64px 80px;
    position: relative;
    overflow: visible;
    width: 50%;
    height: 100%;
}

.hero__panel--text::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero__panel--text::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(78, 92, 172, 0.08);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.hero__tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__tag-name,
.hero__tag-role {
    white-space: nowrap;
}

.hero__tag::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--blue);
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    color: var(--ink);
    line-height: 1.12;
    margin-bottom: 28px;
}

.hero__title .text-blue {
    color: var(--blue);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 440px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__actions .btn--ghost {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-light);
    border: 1.5px solid rgba(0, 0, 0, 0.35);
    box-shadow: none;
}

.hero__actions .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: none;
    transform: translateY(-1px);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.10);
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
}

.hero__stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image Panel */
.hero__panel--image {
    position: absolute;
    top: 0;
    right: 0;
    width: 57%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    animation: heroImageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroImageReveal {
    from {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    to {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

/* ── Hero Staggered Entrance ─────────────────── */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(48px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__tag,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__stats {
    opacity: 0;
}

.hero__tag     { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.10s forwards; }
.hero__title   { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards; }
.hero__subtitle{ animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.60s forwards; }
.hero__actions { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.82s forwards; }
.hero__stats   { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards; }

@media (prefers-reduced-motion: reduce) {
    .hero__tag,
    .hero__title,
    .hero__subtitle,
    .hero__actions,
    .hero__stats {
        opacity: 1;
        animation: none;
    }

    .hero__panel--image {
        animation: none;
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/* ── Buttons ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease,
        transform 0.16s var(--ease-out-strong);
    text-decoration: none;
}

.btn--primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(78, 92, 172, 0.3);
}

.btn--primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(78, 92, 172, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 2px solid rgba(0, 0, 0, 0.18);
}

.btn--ghost:hover {
    background: var(--cream);
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(78, 92, 172, 0.12);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.btn:active {
    transform: scale(0.97);
}

.btn--full {
    width: 100%;
}

/* ── Card CTAs ─────────────────────────────── */
.card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.2;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.22s ease;
}

.card-cta--divided {
    padding-top: 16px;
    border-top: 1px solid rgba(28, 27, 24, 0.08);
}

.card-cta__label {
    min-width: 0;
}

.card-cta__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: color-mix(in srgb, var(--blue) 12%, var(--white));
    color: var(--blue-dark);
    border: 1px solid color-mix(in srgb, var(--blue) 18%, transparent);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.22s ease,
        color 0.22s ease;
}

.card-cta:focus-visible,
.service-card:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 6px;
}

@media (hover: hover) and (pointer: fine) {
    .card-cta:hover,
    .service-card:hover .card-cta,
    .info-card--clickable:hover .card-cta,
    .portfolio-card:hover .card-cta {
        color: var(--blue-dark);
    }

    .card-cta:hover .card-cta__arrow,
    .service-card:hover .card-cta__arrow,
    .info-card--clickable:hover .card-cta__arrow,
    .portfolio-card:hover .card-cta__arrow {
        transform: translateX(2px);
        background: var(--blue);
        color: var(--white);
        border-color: var(--blue);
    }
}

.card-cta:active {
    color: var(--blue-dark);
}

/* ═══════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: left;
    box-shadow: var(--shadow-card);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease;
    cursor: pointer;
    border: none;
    display: block;
    overflow: hidden;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        box-shadow: 0 12px 34px rgba(28, 27, 24, 0.09);
        transform: translateY(-3px);
    }
}

.service-card:active {
    transform: translateY(-1px);
}

/* ── Top Half: Image ── */
.service-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover .service-card__image img {
        transform: scale(1.035);
    }
}

/* Optional overlay to soften image slightly */
.service-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
    transition: opacity 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover .service-card__image::after {
        opacity: 0.32;
    }
}

/* ── Floating Icon ── */
.service-card__icon-wrapper {
    position: absolute;
    top: 212px;
    /* 240px image height - 28px half-height */
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    z-index: 2;
    transition:
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.2s ease,
        color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover .service-card__icon-wrapper {
        background: var(--blue);
        color: var(--white);
        transform: translateY(-2px) scale(1.03);
    }
}

.service-card__icon-wrapper svg,
.service-card__icon-wrapper .material-symbols-outlined {
    width: 26px;
    height: 26px;
    font-size: 26px;
}

/* ── Content body ── */
.service-card__body {
    padding: 28px 32px 28px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.service-card__text {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    width: 100%;
}

/* ═══════════════════════════════════════════════
   TABS
   ═══════════════════════════════════════════════ */
.tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 56px;
    padding: 7px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(28, 27, 24, 0.08);
    border-radius: 999px;
    box-shadow: 0 18px 44px -28px rgba(28, 27, 24, 0.32);
}

.tabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition:
        background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.28s ease,
        color 0.22s ease,
        transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.28s ease;
    box-shadow: none;
}

.tabs__btn svg,
.tabs__btn .material-symbols-outlined {
    width: 22px;
    height: 22px;
    font-size: 22px;
    flex-shrink: 0;
}

.tabs__btn:hover,
.portfolio-filter:hover {
    background: color-mix(in srgb, var(--blue) 9%, transparent);
    color: var(--blue-dark);
    transform: translateY(-1px);
}

.tabs__btn:active,
.portfolio-filter:active {
    transform: translateY(0);
}

.tabs__btn:focus-visible,
.portfolio-filter:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.tabs__btn--active,
.portfolio-filter.portfolio-filter--active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 12px 26px -18px rgba(78, 92, 172, 0.75);
}

.tabs__btn--active:hover,
.portfolio-filter.portfolio-filter--active:hover {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
}

.tabs__panels {
    position: relative;
}

.tabs__panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tabs__panel--active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════
   TIMELINE – SPLIT LAYOUT
   ═══════════════════════════════════════════════ */
.timeline-split {
    display: grid;
    grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.28fr);
    gap: clamp(48px, 5.4vw, 80px);
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .timeline-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-card {
        position: relative;
        top: auto;
    }
}

/* ── Left Side: Info Card ── */
.info-card {
    display: block;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
        var(--white);
    border: 1px solid rgba(28, 27, 24, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 28px 70px -46px rgba(28, 27, 24, 0.45);
    position: sticky;
    top: 120px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.info-card--clickable {
    cursor: pointer;
    transition:
        border-color 0.24s ease,
        box-shadow 0.28s ease,
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card--clickable:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 6px;
}

@media (hover: hover) and (pointer: fine) {
    .info-card--clickable:hover {
        border-color: color-mix(in srgb, var(--blue) 18%, transparent);
        box-shadow: 0 34px 76px -48px rgba(28, 27, 24, 0.55);
        transform: translateY(-2px);
    }

    .info-card--clickable:hover .info-card__image {
        transform: scale(1.035);
    }
}

.info-card__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.info-card__icon {
    width: 46px;
    height: 46px;
    background: color-mix(in srgb, var(--blue) 10%, var(--white));
    color: var(--blue-dark);
    border: 1px solid color-mix(in srgb, var(--blue) 16%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.info-card__icon svg,
.info-card__icon .material-symbols-outlined {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.info-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.2vw, 2rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0;
    line-height: 1.1;
}

.info-card__text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 24px;
}

.info-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1.42 / 1;
    background: var(--cream);
}

.info-card__image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: block;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card__detail {
    margin-top: 18px;
}

/* ── Right Side: Timeline Steps ── */
.timeline-split__right {
    padding-top: 10px;
}

.timeline-list__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 40px;
}

.timeline-list {
    display: flex;
    flex-direction: column;
}

.timeline-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 24px;
    position: relative;
    padding-bottom: 40px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

/* The vertical connecting line */
.timeline-step::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15px;
    bottom: 0px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), #E5E5E5);
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 0.55s ease 0.25s;
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step--visible::before {
    transform: scaleY(1);
}

.timeline-step__marker {
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 2px solid var(--ink);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 2;
    margin-top: 2px;
    opacity: 0;
    transform: scale(0.4);
    transition: background 0.3s ease, color 0.3s ease,
                opacity 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-step--visible .timeline-step__marker {
    opacity: 1;
    transform: scale(1);
}

.timeline-step:hover .timeline-step__marker {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.timeline-step__content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 0;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.timeline-step__content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* ── Active Step ── */
.timeline-step--active .timeline-step__marker {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.timeline-step--active .timeline-step__content h4 {
    color: var(--blue);
}

/* ── Done Step (Checkmark) ── */
.timeline-step--done .timeline-step__marker {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.timeline-step--done .timeline-step__marker svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--blue);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.2;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__text strong {
    color: var(--text);
}

.about__stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 2px solid rgba(0, 0, 0, 0.07);
    flex-wrap: wrap;
    align-items: center;
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--blue);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── ČKAIT Style ── */
.footer__cert-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 6px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-weight: 500;
}

.footer__cert-link:hover {
    color: var(--blue-light);
    opacity: 0.9;
}

.footer__cert-link svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px 32px;
    box-shadow: var(--shadow-card);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--blue);
    opacity: 0.12;
    font-weight: 800;
    pointer-events: none;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
}

.testimonial-card__author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

/* ═══════════════════════════════════════════════
   PORTFOLIO – SPLIT CARDS + FILTER + LIGHTBOX
   ═══════════════════════════════════════════════ */

/* ── Filters ── */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 48px;
    padding: 7px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(28, 27, 24, 0.08);
    border-radius: 999px;
    box-shadow: 0 18px 44px -28px rgba(28, 27, 24, 0.32);
}

.portfolio-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition:
        background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.28s ease,
        color 0.22s ease,
        transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.28s ease;
    box-shadow: none;
}

.portfolio-filter .material-symbols-outlined {
    width: 22px;
    height: 22px;
    font-size: 22px;
    flex-shrink: 0;
}

/* ── Two-column split grid ── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* ── Cards ── */
.portfolio-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    min-height: 280px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(28, 27, 24, 0.04), 0 8px 22px rgba(28, 27, 24, 0.05);
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease, opacity 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 2px 4px rgba(28, 27, 24, 0.04), 0 12px 34px rgba(28, 27, 24, 0.075);
    transform: translateY(-2px);
}

.portfolio-card--hidden {
    display: none;
}

/* ── Image ── */
.portfolio-card__image {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    background: var(--cream);
}

.portfolio-card__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, #E5E5E5 100%);
    color: var(--text-muted);
}

.portfolio-card__no-image svg {
    width: 48px;
    height: 48px;
    opacity: 0.35;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.035);
}

/* ── Badge ── */
.portfolio-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    padding: 7px 13px;
    border-radius: 100px;
    letter-spacing: 0.01em;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(28, 27, 24, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ── Split content ── */
.portfolio-card__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 28px 24px;
}

.portfolio-card__meta {
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}

.portfolio-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.18rem, 1.4vw, 1.38rem);
    color: var(--ink);
    line-height: 1.2;
    margin: 0;
}

.portfolio-card__desc {
    font-size: 0.94rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-card__footer {
    display: block;
    margin-top: auto;
}

.portfolio-card__cta {
    width: 100%;
}

/* ── Load more ── */
.portfolio-loadmore {
    text-align: center;
    margin-top: 48px;
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox--open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 22, 18, 0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox__panel {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 1400px;
    width: calc(100% - 48px);
    max-height: calc(100vh - 40px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 1fr auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.lightbox--open .lightbox__panel {
    transform: scale(1) translateY(0);
}

.lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover {
    background: var(--white);
    transform: scale(1.1) rotate(90deg);
}

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

.lightbox__image-wrap {
    overflow: hidden;
    min-height: 320px;
    position: relative;
}

.lightbox__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.lightbox__img-prev,
.lightbox__img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(8, 22, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.2s ease;
}

.lightbox__img-prev { left: 10px; }
.lightbox__img-next { right: 10px; }

.lightbox__img-prev:hover,
.lightbox__img-next:hover {
    background: rgba(8, 22, 18, 0.85);
}

.lightbox__img-prev svg,
.lightbox__img-next svg {
    width: 18px;
    height: 18px;
}

.lightbox__counter {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(8, 22, 18, 0.6);
    color: var(--white);
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 100px;
    pointer-events: none;
}

.lightbox--single .lightbox__img-prev,
.lightbox--single .lightbox__img-next,
.lightbox--single .lightbox__counter,
.lightbox--single .lightbox__thumbs {
    display: none;
}

/* ── Thumbnail strip ── */
.lightbox__thumbs {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    overflow-x: auto;
    background: var(--surface-2, #f3f4f6);
    border-top: 1px solid var(--border, #e5e7eb);
    scrollbar-width: thin;
}

.lightbox__thumbs:empty {
    display: none;
}

.lightbox__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.65;
}

.lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox__thumb:hover {
    opacity: 0.85;
}

.lightbox__thumb--active {
    border-color: var(--blue, #4e5cac);
    opacity: 1;
}

.lightbox__info {
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.lightbox__badge {
    display: inline-block;
    background: rgba(78, 92, 172, 0.10);
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.lightbox__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
}

.lightbox__desc {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__form {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #F5F4F2;
    border: 2px solid #E8E7E4;
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(78, 92, 172, 0.1);
}

.input-error {
    border-color: #e53e3e !important;
    background-color: #fff9f9 !important;
}
.input-error:focus {
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1) !important;
}
.form-error {
    color: #e53e3e;
    font-size: 0.82rem;
    margin-top: 6px;
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__info {
    padding-top: 20px;
}

.contact__info-block {
    margin-bottom: 32px;
}

.contact__info-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact__info-value {
    font-size: 1rem;
    color: var(--text);
}

.contact__info-value--large {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--ink);
    display: block;
    transition: color 0.3s ease;
}

.contact__info-value--large:hover {
    color: var(--blue);
}

.contact__cert-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.service-inline-link {
    color: var(--blue-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    white-space: nowrap;
}

.service-inline-link:hover,
.service-inline-link:focus-visible {
    color: var(--blue);
}

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

.contact__cert-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact__map-card {
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(78, 92, 172, 0.16);
}

.contact__map-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(78, 92, 172, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.contact__map-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact__map-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact__map-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
}

.contact__map-sub {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   SERVICE DETAIL PAGES
   ═══════════════════════════════════════════════ */
.service-detail {
    background: var(--white);
    color: var(--text);
}

.service-detail--public {
    --service-image-position: center;
}

.service-detail--commercial {
    --service-image-position: center;
}

.service-detail h1,
.service-detail h2,
.service-detail h3,
.service-detail p {
    text-wrap: pretty;
}

.service-detail h1,
.service-detail h2 {
    text-wrap: balance;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 clamp(36px, 5vw, 56px);
    background:
        linear-gradient(90deg, rgba(28, 27, 24, 0.026) 1px, transparent 1px),
        linear-gradient(180deg, var(--cream) 0%, var(--white) 86%);
    background-size: 64px 64px, auto;
}

.service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
    gap: clamp(40px, 5vw, 68px);
    align-items: center;
}

.svc__breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.5;
}

.svc__breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.svc__breadcrumb a:hover,
.svc__breadcrumb a:focus-visible {
    color: var(--blue);
}

.service-hero .section__tag {
    margin-bottom: 16px;
}

.service-hero h1 {
    max-width: 660px;
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3.4vw, 3.35rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 22px;
}

.svc__lead {
    max-width: 640px;
    font-size: clamp(1.08rem, 1.45vw, 1.24rem);
    line-height: 1.72;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-hero__text {
    max-width: 660px;
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-light);
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
    margin-top: 34px;
}

.service-hero__link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid rgba(28, 27, 24, 0.22);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.service-hero__link:hover,
.service-hero__link:focus-visible {
    color: var(--blue-dark);
    border-color: var(--blue);
}

.service-hero__visual {
    position: relative;
    min-height: 470px;
}

.service-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    object-position: var(--service-image-position, center);
    border-radius: 34px;
    box-shadow: 0 24px 54px -42px rgba(28, 27, 24, 0.42);
}

.service-section {
    padding: clamp(68px, 7vw, 104px) 0;
}

.service-hero + .service-section {
    padding-top: clamp(52px, 6vw, 76px);
}

.service-section--cream {
    background: var(--cream);
}

.service-section__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: start;
}

.service-section__heading h2,
.service-section__header h2,
.service-prep__content h2,
.service-advice__content h2,
.service-cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.58rem, 2.6vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}

.service-section__heading p:not(.section__tag),
.service-section__header p:not(.section__tag),
.service-prep__content p:not(.section__tag),
.service-advice__content p:not(.section__tag) {
    max-width: 640px;
    margin-top: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-section__header {
    max-width: 700px;
    margin-bottom: 36px;
}

.service-scenarios {
    display: grid;
    gap: 24px;
}

.service-scenario,
.deliverable-card,
.faq-item {
    background: var(--white);
    border: 1px solid rgba(28, 27, 24, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
    .service-scenario:hover,
    .deliverable-card:hover,
    .faq-item:hover {
        box-shadow: 0 12px 34px rgba(28, 27, 24, 0.09);
        transform: translateY(-3px);
    }
}

.service-scenario {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0 16px;
    padding: 28px 30px;
}

.service-scenario .material-symbols-outlined,
.deliverable-card .material-symbols-outlined {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: span 2;
    border-radius: 50%;
    background: rgba(78, 92, 172, 0.07);
    color: var(--blue);
    font-size: 20px;
}

.service-scenario h3,
.deliverable-card h3,
.faq-item h3,
.service-checklist h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 8px;
}

.service-scenario p,
.deliverable-card p,
.faq-item p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.72;
    color: var(--text-light);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.deliverable-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 16px;
    padding: 28px 30px;
}

.deliverable-card .material-symbols-outlined {
    margin: 2px 0 0;
}

.service-process .info-card__title {
    font-size: clamp(1.28rem, 1.7vw, 1.55rem);
    font-weight: 800;
}

.service-process .timeline-list__title {
    margin-bottom: 28px;
}

.service-process .timeline-step__content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.service-process .timeline-step:hover .timeline-step__content h3 {
    color: var(--blue);
}

.service-prep {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: start;
}

.service-checklist {
    padding: 32px 34px;
    background: var(--white);
    color: var(--text);
    border: 1px solid rgba(28, 27, 24, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.service-checklist h3 {
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-checklist ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.service-checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--text-light);
    line-height: 1.62;
}

.service-checklist li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(78, 92, 172, 0.09);
}

.service-advice {
    display: grid;
    grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.service-advice__panel {
    padding: 32px 34px;
    border: 1px solid rgba(28, 27, 24, 0.06);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.service-advice__panel blockquote {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    font-weight: 400;
    line-height: 1.78;
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.faq-item {
    padding: 28px 30px;
}

.service-cta-section {
    position: relative;
    padding-block: var(--section-pad);
    background: var(--cream);
    overflow: hidden;
}

.service-cta-section .container {
    position: relative;
}

.service-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-xl);
    align-items: end;
    padding: clamp(var(--space-xl), 5vw, var(--space-2xl));
    border-radius: var(--radius-xl);
    background:
        radial-gradient(120% 100% at 100% 0%, color-mix(in srgb, var(--blue) 14%, var(--white)) 0%, transparent 55%),
        linear-gradient(180deg, color-mix(in srgb, var(--blue) 7%, var(--white)) 0%, color-mix(in srgb, var(--blue) 4%, var(--cream)) 100%);
    border: 1px solid color-mix(in srgb, var(--blue) 14%, transparent);
    overflow: hidden;
}

.service-cta-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border: 1.5px solid color-mix(in srgb, var(--blue) 22%, transparent);
    border-radius: 50%;
    pointer-events: none;
}

.service-cta-card__content,
.service-cta-card__action {
    position: relative;
    z-index: 1;
}

.service-cta-card__content {
    max-width: 760px;
}

.service-cta-card__action {
    display: flex;
    justify-content: flex-end;
}

.service-cta-card .section__tag {
    margin-bottom: var(--space-sm);
    color: var(--blue-dark);
}

.service-cta-card h2 {
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    text-wrap: balance;
}

.service-cta-card__text {
    margin: var(--space-sm) 0 0;
    max-width: 620px;
    color: color-mix(in srgb, var(--ink) 70%, var(--blue));
    font-size: 1.02rem;
    line-height: 1.65;
}

.service-cta-card .btn--primary {
    min-width: 220px;
    min-height: 56px;
}

.service-crosslinks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.service-crosslinks .card-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-height: 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border: 1px solid rgba(28, 27, 24, 0.07);
    border-radius: var(--radius-md);
    color: var(--ink);
    transition:
        transform 0.25s var(--ease-out-strong),
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-crosslinks .card-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--blue) 10%, var(--white));
    color: var(--blue);
}

.service-crosslinks .card-cta__icon .material-symbols-outlined {
    font-size: 24px;
}

.service-crosslinks .card-cta__label {
    flex: 1;
    min-width: 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    text-wrap: pretty;
}

.service-crosslinks .card-cta__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--blue) 10%, var(--white));
    border: 1px solid color-mix(in srgb, var(--blue) 16%, transparent);
    color: var(--blue);
    font-size: 1rem;
    transition:
        transform 0.25s var(--ease-out-strong),
        background-color 0.25s ease,
        color 0.25s ease;
}

@media (hover: hover) {
    .service-crosslinks .card-cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-card);
        border-color: color-mix(in srgb, var(--blue) 25%, transparent);
    }

    .service-crosslinks .card-cta:hover .card-cta__arrow {
        background: var(--blue);
        border-color: var(--blue);
        color: var(--white);
        transform: translateX(4px);
    }
}

.service-crosslinks .card-cta:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.service-simple-list {
    display: grid;
    gap: 14px;
    list-style: none;
}

.service-simple-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-light);
    line-height: 1.72;
}

.service-simple-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(78, 92, 172, 0.11);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0;
}

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

.footer__brand {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer__logo-img {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer__copy {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.footer__creator a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer__creator a:hover {
    color: var(--blue);
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

.footer__links a:hover {
    color: var(--blue);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay-1 {
    transition-delay: 0.15s;
}

.reveal--delay-2 {
    transition-delay: 0.3s;
}

.reveal--delay-3 {
    transition-delay: 0.45s;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .hero__panel--text {
        width: 100%;
        padding: 120px 40px 60px;
    }

    .hero__panel--image {
        position: relative;
        width: 100%;
        height: 50vh;
        clip-path: none;
        animation: none;
    }

    .about {
        gap: 48px;
    }
}

@media (max-width: 1000px) {
    :root {
        --section-pad: 72px;
    }

    /* Nav mobile */
    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        clip-path: inset(0 0 0 100%);
        transition:
            clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.22s ease;
    }

    .nav__links.open {
        opacity: 1;
        pointer-events: auto;
        clip-path: inset(0);
    }

    .nav__links a::after {
        display: none;
    }

    .nav__links a {
        font-size: 1.1rem;
    }

    .nav__item {
        width: 100%;
    }

    .nav__item--has-menu {
        display: block;
        padding: 0;
        margin: 0;
    }

    .nav__menu-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .nav__menu-icon {
        transform: rotate(45deg) !important;
    }

    .nav__submenu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 12px;
        padding: 8px;
        background: rgba(78, 92, 172, 0.06);
        border: 1px solid rgba(78, 92, 172, 0.10);
        border-radius: 14px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .nav__submenu::before {
        display: none;
    }

    .nav__submenu .nav__submenu-link {
        padding: 10px 12px;
        font-size: 0.95rem;
        white-space: normal;
    }

    .nav__submenu .nav__submenu-link:hover,
    .nav__submenu .nav__submenu-link:focus-visible {
        transform: none;
    }

    /* Hero */
    .hero {
        height: auto;
    }

    .hero__panel--text {
        padding: 100px 28px 48px;
        text-align: center;
    }

    .hero__panel--text::after {
        display: none;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__panel--image {
        height: 45vh;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    /* Service detail pages */
    .service-hero {
        padding-top: 112px;
    }

    .service-hero__grid,
    .service-section__grid,
    .service-prep,
    .service-advice {
        grid-template-columns: 1fr;
    }

    .service-hero__visual {
        min-height: 420px;
    }

    .service-hero__visual img {
        min-height: 420px;
    }

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

    .deliverables-grid,
    .faq-grid {
        gap: 22px;
    }

    .service-cta-card,
    .service-crosslinks {
        grid-template-columns: 1fr;
    }

    .service-cta-card {
        align-items: start;
    }

    .service-cta-card__action {
        justify-content: flex-start;
    }

    /* About */
    .about {
        grid-template-columns: 1fr;
    }

    .about__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__content .section__title--left {
        text-align: center;
    }

    .about__stats {
        justify-content: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }


    .lightbox__panel {
        grid-template-columns: 1fr;
        width: calc(100% - 24px);
        max-height: 90vh;
        overflow-y: auto;
    }

    .lightbox__image-wrap {
        min-height: 220px;
        max-height: 45vh;
    }

    .lightbox__info {
        padding: 28px 24px;
    }

    .lightbox__thumbs {
        padding: 8px 10px;
    }

    .lightbox__thumb {
        width: 58px;
        height: 44px;
    }

    /* Contact */
    .contact {
        grid-template-columns: 1fr;
    }

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

    .contact__info {
        text-align: center;
    }

    /* Footer */
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__brand {
        justify-content: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .tabs,
    .portfolio-filters {
        width: 100%;
        padding: 6px;
        border-radius: 24px;
    }

    .tabs__btn,
    .portfolio-filter {
        flex: 1 1 100%;
        justify-content: center;
        padding: 13px 18px;
    }

    .info-card {
        padding: 20px;
        border-radius: 24px;
    }

    .info-card__heading {
        align-items: flex-start;
    }

    .info-card__media {
        aspect-ratio: 1.08 / 1;
        border-radius: 18px;
    }

    .card-cta__arrow {
        width: 30px;
        height: 30px;
    }

    .service-hero {
        padding-top: 100px;
    }

    .service-hero h1 {
        font-size: clamp(2.05rem, 9vw, 2.65rem);
    }

    .service-hero__actions {
        align-items: stretch;
    }

    .service-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .service-hero__link {
        width: fit-content;
    }

    .service-hero__visual,
    .service-hero__visual img {
        min-height: 340px;
    }

    .service-hero__visual img {
        border-radius: 24px;
    }

    .deliverables-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-section {
        padding: 64px 0;
    }

    .service-section__header {
        margin-bottom: 28px;
    }

    .service-scenario {
        grid-template-columns: 32px 1fr;
    }

    .service-scenario .material-symbols-outlined {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .deliverable-card {
        grid-template-columns: 32px 1fr;
    }

    .service-checklist {
        padding: 26px;
        border-radius: 22px;
    }

    .service-advice__panel {
        padding: 26px;
        border-radius: 22px;
    }

    .service-cta-card {
        border-radius: 24px;
    }

    .service-cta-card::after {
        right: -90px;
        top: -90px;
        width: 220px;
        height: 220px;
    }

    .service-cta-card .btn--primary {
        width: 100%;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .portfolio-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .portfolio-card__image {
        min-height: 220px;
        aspect-ratio: 4 / 3;
    }

    .portfolio-card__content {
        padding: 24px 22px 22px;
    }

    .portfolio-card__footer {
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-pad: 56px;
    }

    .hero__tag {
        justify-content: center;
        gap: 8px 10px;
        letter-spacing: 2px;
    }

    .hero__tag-name,
    .hero__tag-role {
        white-space: normal;
    }

    .hero__tag-name {
        padding-left: 0;
    }

    .hero__title {
        font-size: 2rem;
        overflow-wrap: anywhere;
    }

    .hero__panel--text {
        padding: 96px 20px 40px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .hero__stats {
        gap: 20px;
    }

    .hero__stat-number {
        font-size: 1.4rem;
    }

    .hero__panel--image {
        height: 40vh;
    }

    .btn {
        padding: 14px 28px;
    }

    .contact__form {
        padding: 28px 20px;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline__dot {
        left: -40px;
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .timeline__card {
        padding: 24px;
    }

    .about__stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .footer__cert-link {
        margin-left: 0;
        margin-top: 12px;
        padding-left: 0;
        border-left: none;
        display: flex;
        justify-content: center;
    }
}

/* ── Kontaktní formulář — rozšíření ─────────────── */

/* Honeypot: vizuálně skryté před uživateli, boti ho vyplní */
.form-group--honeypot {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(50%);
}

/* GDPR checkbox */
.form-group--checkbox {
    margin-top: 4px;
}

.form-checkbox {
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 10px;
    accent-color: var(--blue);
    cursor: pointer;
}

.form-checkbox__label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    vertical-align: middle;
}

/* Turnstile widget spacing */
.cf-turnstile {
    margin-top: 4px;
}

/* Submit button — stav po úspěšném odeslání */
.btn--success {
    background: #2E7D52 !important;
    color: var(--white) !important;
}

/* ═══════════════════════════════════════════════
   COOKIE CONSENT — vanilla-cookieconsent v3
   Přizpůsobení do "Organic Premium" design systému
   ═══════════════════════════════════════════════ */
#cc-main {
    --cc-font-family: 'Inter', sans-serif;
    --cc-modal-border-radius: 20px;
    --cc-btn-border-radius: 12px;

    --cc-bg: #FFFFFF;
    --cc-primary-color: #4E5CAC;
    --cc-body-color: #2A2926;
    --cc-secondary-color: #5C5A56;

    --cc-btn-primary-bg: #4E5CAC;
    --cc-btn-primary-color: #FFFFFF;
    --cc-btn-primary-hover-bg: #3A4890;

    --cc-btn-secondary-bg: #F5F4F2;
    --cc-btn-secondary-color: #2A2926;
    --cc-btn-secondary-hover-bg: #E8E7E5;

    --cc-toggle-on-bg: #4E5CAC;
    --cc-toggle-off-bg: #C8C6C2;

    --cc-separator-bg: #F0EFED;
    --cc-cookie-category-block-bg: #F5F4F2;
    --cc-cookie-category-block-hover-bg: #ECEAE8;
    --cc-cookie-category-block-border: #E8E7E5;

    --cc-overlay-bg: rgba(28, 27, 24, 0.55);
}
