/* ═══════════════════════════════════════════════════════════════
   SIMONET — Design koncept 2026 „Zrcadlová síň"
   Samostatné demo, nesdílí styly s ostatním webem.
   ═══════════════════════════════════════════════════════════════ */

:root {
    --bg-0: #030309;
    --bg-1: #06060f;
    --bg-2: #0a0a18;
    --ink: #e8ecf4;
    --ink-dim: #8b93a7;
    --ink-faint: #4a5165;
    --cyan: #00d4ff;
    --violet: #7b2ff7;
    --green: #00ff88;
    --cyan-soft: rgba(0, 212, 255, 0.14);
    --violet-soft: rgba(123, 47, 247, 0.16);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-strong: rgba(255, 255, 255, 0.06);
    --line: rgba(140, 170, 255, 0.12);
    --line-bright: rgba(0, 212, 255, 0.35);
    --font-display: 'Unbounded', 'Segoe UI', sans-serif;
    --font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
    --chrome-text: linear-gradient(180deg, #ffffff 0%, #b8e6ff 34%, #26374f 50%, #d7f1ff 62%, #57c8ff 100%);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --space-section: clamp(6rem, 12vw, 11rem);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg-0);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a, button { cursor: none; }

::selection { background: var(--violet); color: #fff; }

/* jemný filmový grain přes celý web */
body::after {
    content: '';
    position: fixed;
    inset: -50%;
    pointer-events: none;
    z-index: 2000;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 9s steps(10) infinite;
}
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(-3%, 2%); }
    40% { transform: translate(2%, -3%); }
    60% { transform: translate(-2%, -2%); }
    80% { transform: translate(3%, 3%); }
}

/* ═══════════ PRELOADER ═══════════ */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: var(--bg-0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }

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

.preloader-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    letter-spacing: 0.35em;
    background: var(--chrome-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}
.preloader-logo-glitch { animation: glitch-flicker 1.1s infinite; }
@keyframes glitch-flicker {
    0%, 74%, 100% { opacity: 1; }
    75%, 79% { opacity: 0.15; }
    80%, 84% { opacity: 1; }
    85%, 88% { opacity: 0.3; }
}

.preloader-counter {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 3.4rem;
    color: var(--cyan);
    line-height: 1;
    text-shadow: 0 0 34px rgba(0, 212, 255, 0.55);
}
.preloader-percent { font-size: 1.4rem; color: var(--ink-faint); margin-left: 0.3rem; }

.preloader-bar {
    width: min(280px, 60vw);
    height: 1px;
    margin: 1.6rem auto 1rem;
    background: var(--line);
    overflow: hidden;
}
.preloader-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    box-shadow: 0 0 12px var(--cyan);
}

.preloader-hint {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ═══════════ CURSOR ═══════════ */

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2500;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
}
.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
                border-color 0.25s, background 0.25s;
}
body.cursor-hover .cursor-ring {
    width: 64px;
    height: 64px;
    border-color: rgba(0, 255, 136, 0.7);
    background: rgba(0, 255, 136, 0.06);
}
@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
    body, a, button { cursor: auto; }
}

/* ═══════════ FRAGMENT HUNT ═══════════ */

.fragments-hud {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    padding: 0.6rem 0.95rem;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--cyan);
    background: rgba(6, 6, 15, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
    transition: box-shadow 0.4s, border-color 0.4s;
}
.fragments-hud.pulse {
    border-color: var(--green);
    box-shadow: 0 0 34px rgba(0, 255, 136, 0.4);
}
.fragments-hud-icon { display: block; width: 16px; height: 16px; }
.fragments-total { color: var(--ink-faint); }

.fragment {
    position: absolute;
    z-index: 40;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--cyan);
    opacity: 0.22;
    transition: opacity 0.4s, box-shadow 0.4s, border-color 0.4s, transform 0.4s;
    animation: fragment-breathe 3.4s ease-in-out infinite;
}
.fragment svg { display: block; width: 14px; height: 14px; }
.fragment:hover {
    opacity: 1;
    border-color: var(--cyan);
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.55);
    animation-play-state: paused;
}
.fragment.found {
    opacity: 1;
    color: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 26px rgba(0, 255, 136, 0.6);
    animation: none;
    transform: scale(1.1);
}
@keyframes fragment-breathe {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 212, 255, 0); }
    50% { box-shadow: 0 0 18px rgba(0, 212, 255, 0.35); }
}

.fragment[data-fragment="1"] { right: 8%; top: 24%; }
.fragment[data-fragment="2"] { left: 6%; bottom: 14%; }
.fragment[data-fragment="3"] { right: 4%; top: 10%; }
.fragment[data-fragment="4"] { left: 4%; bottom: 10%; }
.fragment[data-fragment="5"] { right: 10%; top: 16%; }

/* ═══════════ NAV ═══════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
    background: linear-gradient(180deg, rgba(3, 3, 9, 0.85), rgba(3, 3, 9, 0));
    transition: background 0.5s, backdrop-filter 0.5s;
}
.nav.scrolled {
    background: rgba(3, 3, 9, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    color: var(--ink);
    text-decoration: none;
}
.nav-logo-mark {
    width: 11px;
    height: 11px;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.6);
    animation: mark-spin 7s linear infinite;
}
@keyframes mark-spin {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem); }

.nav-link {
    position: relative;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-link-cta {
    padding: 0.55rem 1.2rem;
    border: 1px solid var(--line-bright);
    border-radius: 999px;
    color: var(--cyan);
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
    color: #001018;
    background: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* ═══════════ HERO ═══════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 900px;
}

/* procedurální zrcadlová síň: mlhoviny + perspektivní podlaha */
.hero-bg-image {
    position: absolute;
    inset: -12% -6%;
    background:
        radial-gradient(38% 46% at 18% 26%, var(--violet-soft), transparent 70%),
        radial-gradient(42% 52% at 82% 22%, var(--cyan-soft), transparent 70%),
        radial-gradient(30% 34% at 55% 78%, rgba(0, 255, 136, 0.06), transparent 70%),
        var(--bg-0);
}
.hero-bg-image::before {
    /* zrcadlová podlaha — perspektivní mřížka */
    content: '';
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: 0;
    height: 46%;
    background:
        repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.14) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, rgba(123, 47, 247, 0.12) 0 1px, transparent 1px 60px),
        linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.05));
    transform: perspective(500px) rotateX(62deg);
    transform-origin: top center;
    mask-image: linear-gradient(180deg, transparent, #000 35%, #000 70%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000 70%, transparent);
}
.hero-bg-image::after {
    /* šikmé zrcadlové stěny po stranách */
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.05) 0%, transparent 14%),
        linear-gradient(-105deg, rgba(255, 255, 255, 0.04) 0%, transparent 14%),
        linear-gradient(100deg, transparent 30%, rgba(0, 212, 255, 0.05) 42%, transparent 46%),
        linear-gradient(-100deg, transparent 52%, rgba(123, 47, 247, 0.06) 64%, transparent 68%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(75% 65% at 50% 45%, transparent 40%, rgba(3, 3, 9, 0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 7rem 1.4rem 4rem;
    max-width: 1100px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 2.2rem;
}

.hero-title {
    position: relative;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 11.5vw, 8.6rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}
.hero-title-row { display: inline-block; transform-style: preserve-3d; }
.hero-letter {
    display: inline-block;
    background: var(--chrome-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.45s var(--ease-out), filter 0.45s;
    filter: drop-shadow(0 0 26px rgba(0, 212, 255, 0.22));
}
.hero-letter:hover {
    transform: translateY(-12px) rotateX(24deg) scale(1.06);
    filter: drop-shadow(0 0 44px rgba(0, 212, 255, 0.65));
}

.hero-title-reflection {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1em;
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: rgba(0, 212, 255, 0.34);
    transform: scaleY(-1) translateY(-8px);
    filter: blur(3px);
    mask-image: linear-gradient(180deg, transparent 30%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 30%, #000 100%);
    pointer-events: none;
    user-select: none;
}

.hero-tagline {
    font-size: clamp(1rem, 2.1vw, 1.3rem);
    color: var(--ink-dim);
    max-width: 620px;
    margin: 4.6rem auto 2.6rem;
}
.hero-tagline em {
    font-style: normal;
    color: var(--ink);
    background: linear-gradient(90deg, var(--cyan), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}
.hero-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    animation: scroll-drip 2.2s var(--ease-out) infinite;
    transform-origin: top;
}
@keyframes scroll-drip {
    0% { transform: scaleY(0); opacity: 0; }
    35% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1) translateY(16px); opacity: 0; }
}
.hero-scroll-text {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ═══════════ TLAČÍTKA ═══════════ */

.btn-mirror {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    padding: 1rem 2.2rem;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #021018;
    background: linear-gradient(135deg, #9ff1ff 0%, var(--cyan) 40%, #2f9dff 100%);
    border: none;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.btn-mirror:hover {
    box-shadow: 0 12px 60px rgba(0, 212, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.btn-mirror-label { position: relative; z-index: 2; }
.btn-mirror-shine {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -60%;
    width: 40%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease-out);
}
.btn-mirror:hover .btn-mirror-shine { left: 130%; }
.btn-mirror-lg { padding: 1.25rem 2.9rem; font-size: 0.95rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-dim);
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.btn-ghost:hover {
    color: var(--ink);
    border-color: var(--line-bright);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

/* ═══════════ MARQUEE ═══════════ */

.marquee {
    position: relative;
    z-index: 5;
    transform: rotate(-2.4deg);
    margin: -1.5rem -3vw 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(6, 6, 15, 0.72);
    backdrop-filter: blur(8px);
    overflow: hidden;
    padding: 1.05rem 0;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.8rem;
    width: max-content;
    animation: marquee-run 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-run {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(140, 170, 255, 0.4);
    transition: color 0.35s, -webkit-text-stroke-color 0.35s;
}
.marquee-item:hover {
    color: var(--cyan);
    -webkit-text-stroke-color: transparent;
    text-shadow: 0 0 26px rgba(0, 212, 255, 0.5);
}
.marquee-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    transform: rotate(45deg);
}

/* ═══════════ SPOLEČNÉ SEKČNÍ PRVKY ═══════════ */

.section-label {
    font-size: 0.78rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.3rem;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.9rem, 4.6vw, 3.4rem);
    line-height: 1.14;
    letter-spacing: 0.01em;
}
.section-title-dim { color: var(--ink-faint); }
.section-hint {
    margin-top: 1.2rem;
    font-size: 0.92rem;
    color: var(--ink-dim);
}

/* ═══════════ MANIFEST ═══════════ */

.manifest {
    position: relative;
    padding: var(--space-section) clamp(1.4rem, 6vw, 6rem);
    overflow: hidden;
}
.manifest-inner { max-width: 1050px; margin: 0 auto; position: relative; z-index: 2; }
.manifest-label {
    font-size: 0.78rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 2rem;
}
.manifest-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3.6vw, 2.7rem);
    line-height: 1.42;
    letter-spacing: 0.01em;
}
.manifest-text .word { opacity: 0.12; display: inline-block; transition: opacity 0.3s; }

.manifest-crystal,
.cta-crystal {
    position: absolute;
    right: clamp(0.5rem, 7vw, 7rem);
    top: 16%;
    width: 190px;
    height: 190px;
    z-index: 1;
    pointer-events: none;
}
.cta-crystal { left: clamp(0.5rem, 6vw, 6rem); right: auto; top: 10%; width: 150px; height: 150px; }

/* procedurální 3D krystal (fasety generuje JS) */
.crystal3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: crystal-spin 14s linear infinite;
}
@keyframes crystal-spin {
    0% { transform: rotateY(0deg) rotateX(8deg); }
    100% { transform: rotateY(360deg) rotateX(8deg); }
}
.crystal-face {
    position: absolute;
    inset: 12%;
    clip-path: polygon(50% 0%, 92% 38%, 50% 100%, 8% 38%);
    background: linear-gradient(160deg, rgba(0, 212, 255, 0.32), rgba(123, 47, 247, 0.1) 55%, rgba(0, 255, 136, 0.12));
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(2px);
    box-shadow: inset 0 0 34px rgba(0, 212, 255, 0.2);
}
.crystal-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.22), transparent 65%);
    animation: crystal-pulse 4.2s ease-in-out infinite;
}
@keyframes crystal-pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1.06); }
}

/* ═══════════ ŠEST KOMNAT (SLUŽBY) ═══════════ */

.chambers {
    position: relative;
    padding: var(--space-section) clamp(1.4rem, 5vw, 5rem);
    background:
        radial-gradient(50% 40% at 50% 0%, rgba(123, 47, 247, 0.08), transparent 70%),
        var(--bg-0);
}
.chambers-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(3rem, 6vw, 5.5rem);
}

.chambers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2.6vw, 2.2rem);
    max-width: 1240px;
    margin: 0 auto;
    perspective: 1200px;
}

.chamber {
    --gx: 50%;
    --gy: 50%;
    position: relative;
    min-height: 340px;
    border-radius: 18px;
    background: linear-gradient(165deg, var(--glass-strong), rgba(255, 255, 255, 0.012) 60%);
    border: 1px solid var(--line);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color 0.45s, box-shadow 0.45s;
    -webkit-box-reflect: below 10px linear-gradient(transparent 72%, rgba(255, 255, 255, 0.09));
}
.chamber:nth-child(odd) { transform: rotate(-1.4deg); }
.chamber:nth-child(even) { transform: rotate(1.3deg) translateY(14px); }
.chamber:hover {
    border-color: var(--line-bright);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 44px rgba(0, 212, 255, 0.14);
}

.chamber-face {
    position: absolute;
    inset: 0;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.9rem;
    transition: transform 0.55s var(--ease-out), opacity 0.55s;
}
.chamber:hover .chamber-face { transform: translateY(-34%); opacity: 0.25; }

.chamber-num {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(140, 170, 255, 0.22);
    transition: -webkit-text-stroke-color 0.4s, text-shadow 0.4s;
}
.chamber:hover .chamber-num { -webkit-text-stroke-color: rgba(0, 212, 255, 0.6); }

.chamber-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.08);
}
.chamber-icon svg { display: block; width: 32px; height: 32px; }
.chamber-icon-accent { stroke: var(--green); }

.chamber-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.18rem;
    letter-spacing: 0.02em;
}

/* mlžný závoj přes zavřenou komnatu */
.chamber-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(160, 200, 255, 0.07) 46%, transparent 55%);
    background-size: 260% 100%;
    background-position: 110% 0;
    transition: background-position 1s var(--ease-out);
    pointer-events: none;
}
.chamber:hover .chamber-veil { background-position: -60% 0; }

.chamber-secret {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.8rem;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.5s var(--ease-out) 0.08s, transform 0.5s var(--ease-out) 0.08s;
}
.chamber:hover .chamber-secret { opacity: 1; transform: translateY(0); }
.chamber-secret p { color: var(--ink-dim); font-size: 0.98rem; margin-bottom: 1rem; }
.chamber-cta {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
}

/* glare kopíruje myš */
.chamber-glare {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(300px circle at var(--gx) var(--gy), rgba(0, 212, 255, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
}
.chamber:hover .chamber-glare { opacity: 1; }

/* ═══════════ CHODBA (PROCES) — horizontal scroll ═══════════ */

.corridor { position: relative; }
.corridor-pin {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(45% 55% at 85% 50%, rgba(123, 47, 247, 0.09), transparent 70%),
        var(--bg-1);
}
.corridor-head { padding: 0 clamp(1.4rem, 5vw, 5rem) clamp(2rem, 4vw, 3.4rem); }

.corridor-track {
    display: flex;
    align-items: stretch;
    gap: clamp(1.6rem, 3vw, 3rem);
    padding: 0 clamp(1.4rem, 5vw, 5rem) 3.5rem;
    width: max-content;
    will-change: transform;
}

.mirror-step { position: relative; width: clamp(300px, 34vw, 470px); flex: 0 0 auto; }
.mirror-step-num {
    position: absolute;
    top: -0.65em;
    left: -0.12em;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(5.4rem, 9vw, 8.6rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 212, 255, 0.24);
    pointer-events: none;
}
.mirror-step-panel {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 320px;
    padding: 2.6rem 2.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.9rem;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    transform: perspective(900px) rotateY(-7deg);
    transition: transform 0.6s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
    -webkit-box-reflect: below 12px linear-gradient(transparent 74%, rgba(255, 255, 255, 0.08));
}
.mirror-step:hover .mirror-step-panel {
    transform: perspective(900px) rotateY(0deg) translateY(-8px);
    border-color: var(--line-bright);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5), 0 0 46px rgba(0, 212, 255, 0.14);
}
.mirror-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 0.4rem;
}
.mirror-step-icon svg { display: block; width: 40px; height: 40px; }
.mirror-step-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.4rem;
}
.mirror-step-desc { color: var(--ink-dim); font-size: 0.98rem; }

/* ═══════════ STATS ═══════════ */

.stats {
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.4rem, 5vw, 5rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-0);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1240px;
    margin: 0 auto;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.stat-value {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    line-height: 1.1;
    background: linear-gradient(180deg, #fff, #79d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 22px rgba(0, 212, 255, 0.25));
}
.stat-label {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ═══════════ PRODUKTY ═══════════ */

.products {
    position: relative;
    padding: var(--space-section) clamp(1.4rem, 5vw, 5rem);
    overflow: hidden;
    background: var(--bg-1);
}
.products-bg {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 18%, rgba(0, 212, 255, 0.05) 24%, transparent 30%),
        linear-gradient(115deg, transparent 42%, rgba(123, 47, 247, 0.06) 50%, transparent 58%),
        linear-gradient(115deg, transparent 68%, rgba(0, 255, 136, 0.04) 76%, transparent 84%);
}
.products-head { max-width: 1240px; margin: 0 auto clamp(2.6rem, 5vw, 4.5rem); position: relative; z-index: 2; }

.products-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.8rem);
    max-width: 1240px;
    margin: 0 auto;
}

.product {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 250px;
    padding: 1.7rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--ink);
    background: linear-gradient(165deg, var(--glass-strong), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--line);
    transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
    -webkit-box-reflect: below 8px linear-gradient(transparent 78%, rgba(255, 255, 255, 0.07));
}
.product:hover {
    transform: translateY(-12px) rotateX(4deg);
    border-color: var(--line-bright);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.16);
}
.product-badge {
    align-self: flex-start;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--violet);
    padding: 0.32rem 0.7rem;
    border: 1px solid rgba(123, 47, 247, 0.4);
    border-radius: 999px;
}
.product-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    background: linear-gradient(180deg, #fff, #9ad8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-desc { color: var(--ink-dim); font-size: 0.92rem; flex: 1; }
.product-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: transform 0.4s var(--ease-out), background 0.4s, color 0.4s;
}
.product-arrow svg { display: block; width: 20px; height: 20px; }
.product:hover .product-arrow {
    transform: translateX(6px);
    background: var(--cyan);
    color: #021018;
}

/* ═══════════ CTA ═══════════ */

.cta {
    position: relative;
    padding: var(--space-section) clamp(1.4rem, 5vw, 5rem);
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(55% 60% at 50% 100%, rgba(123, 47, 247, 0.14), transparent 70%),
        radial-gradient(40% 45% at 50% 0%, rgba(0, 212, 255, 0.07), transparent 70%),
        var(--bg-0);
}
.cta .section-label { text-align: center; }
.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 7vw, 5.4rem);
    line-height: 1.06;
    margin-bottom: 1.6rem;
}
.cta-title-mirror {
    background: var(--chrome-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 34px rgba(0, 212, 255, 0.3));
}
.cta-text {
    max-width: 520px;
    margin: 0 auto 2.6rem;
    color: var(--ink-dim);
    font-size: 1.06rem;
}
.cta-actions { display: flex; justify-content: center; margin-bottom: 2rem; }
.cta-phone {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    color: var(--ink-faint);
}

/* ═══════════ SECRET MODAL ═══════════ */

.secret-modal {
    position: fixed;
    inset: 0;
    z-index: 2800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
    background: rgba(3, 3, 9, 0.78);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}
.secret-modal.open { opacity: 1; visibility: visible; }

.secret-modal-card {
    position: relative;
    max-width: 480px;
    padding: 3rem 2.6rem;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(170deg, rgba(14, 16, 30, 0.96), rgba(6, 6, 15, 0.98));
    border: 1px solid rgba(0, 255, 136, 0.35);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 255, 136, 0.18);
    transform: translateY(24px) scale(0.96);
    transition: transform 0.5s var(--ease-out);
}
.secret-modal.open .secret-modal-card { transform: translateY(0) scale(1); }

.secret-modal-glow {
    position: absolute;
    inset: -40%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.12), transparent 55%);
}
.secret-modal-label {
    font-size: 0.74rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}
.secret-modal-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.secret-modal-text { color: var(--ink-dim); font-size: 0.96rem; margin-bottom: 1.8rem; }

.secret-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-dim);
    transition: color 0.3s, border-color 0.3s;
}
.secret-modal-close svg { display: block; width: 18px; height: 18px; }
.secret-modal-close:hover { color: var(--ink); border-color: var(--line-bright); }

/* ═══════════ FOOTER ═══════════ */

.footer {
    border-top: 1px solid var(--line);
    padding: 2.2rem clamp(1.4rem, 5vw, 5rem);
    background: var(--bg-0);
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--ink-dim);
}
.footer-note, .footer-contact { font-size: 0.8rem; color: var(--ink-faint); }

/* ═══════════ REVEAL STAV (JS přidá .in) ═══════════ */

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1080px) {
    .chambers-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 1.4rem; }
    .stat:nth-child(odd)::before { display: none; }
}

@media (max-width: 860px) {
    .nav-links .nav-link:not(.nav-link-cta) { display: none; }
    /* chodba přechází na vertikální layout bez pinu */
    .corridor-pin { min-height: 0; padding: var(--space-section) 0; }
    .corridor-track { width: auto; flex-direction: column; padding-bottom: 0; }
    .mirror-step { width: 100%; }
    .mirror-step-panel { transform: none; min-height: 0; }
    .manifest-crystal, .cta-crystal { opacity: 0.4; }
}

@media (max-width: 620px) {
    .chambers-grid { grid-template-columns: 1fr; }
    .chamber:nth-child(odd), .chamber:nth-child(even) { transform: none; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-title-reflection { display: none; }
    .fragments-hud { right: 0.8rem; bottom: 0.8rem; }
}

/* ═══════════ REDUCED MOTION ═══════════ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; }
    .manifest-text .word { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   MIRROR LAYER — přemostění na legacy style.css
   Načítá se PO style.css: přepisuje design tokens a klíčové
   komponenty, aby celý web (views, builder, app landing) přešel
   do designu „Zrcadlová síň" bez přepisování 8700 řádků.
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* legacy tokens style.css → nové hodnoty */
    --bg-primary: #030309;
    --bg-secondary: #06060f;
    --bg-surface: #0c0d1c;
    --bg-surface-hover: #131530;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #e8ecf4;
    --text-secondary: #8b93a7;
    --text-muted: #4a5165;
    --border-color: rgba(140, 170, 255, 0.12);
    --border-light: rgba(140, 170, 255, 0.22);
    --font-heading: 'Unbounded', 'Space Grotesk', sans-serif;
    --font-body: 'Space Grotesk', 'Inter', sans-serif;
    --radius: 16px;
    --sidebar-width: 0px;
}

/* ── Layout: web už nemá sidebar ── */
body { cursor: none; }
.site-content {
    margin-left: 0 !important;
    width: 100% !important;
}
.site-sidebar, .hamburger { display: none !important; }

/* header offset pod fixní nav */
.site-content > *:first-child { scroll-margin-top: 80px; }

/* ── Legacy nadpisy → chrome/Unbounded ── */
.section-title, .page-title, .detail-hero-title, .cta-title,
.hero-title, .error-title, .confirm-title, .category-title,
.blog-title, .app-hero-title {
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}
.page-title, .detail-hero-title {
    background: linear-gradient(180deg, #ffffff, #9ad8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 28px rgba(0, 212, 255, 0.22));
}

/* ── Karty: glass + zrcadlový odraz + šikmost ── */
.service-card, .project-card, .program-card, .why-us-card,
.blog-card, .app-feature, .app-pricing-card-free, .app-pricing-card-paid,
.app-pricing-card-business, .order-service-card, .contact-info-card,
.app-audience-card, .app-support-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012) 60%);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.card-grid .service-card, .card-grid .project-card, .card-grid .program-card {
    -webkit-box-reflect: below 10px linear-gradient(transparent 78%, rgba(255, 255, 255, 0.07));
}
.card-grid > *:nth-child(odd) { transform: rotate(-0.8deg); }
.card-grid > *:nth-child(even) { transform: rotate(0.7deg) translateY(8px); }
.card-grid > *:hover {
    transform: translateY(-10px) rotate(0deg);
    border-color: var(--line-bright);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.14);
}

/* ── Tlačítka ── */
.btn-primary, .cta-btn-glow, .app-hero-btn-download, .btn-play {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #021018;
    background: linear-gradient(135deg, #9ff1ff 0%, var(--cyan) 40%, #2f9dff 100%);
    border: none;
    border-radius: 999px;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.btn-primary:hover, .cta-btn-glow:hover, .app-hero-btn-download:hover {
    box-shadow: 0 12px 60px rgba(0, 212, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}
.btn-secondary, .btn-outline {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--ink-dim);
}
.btn-secondary:hover, .btn-outline:hover {
    color: var(--ink);
    border-color: var(--line-bright);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

/* ── Formuláře (kontakt, objednávka, checkout) ── */
.form-input, .form-textarea, .form-select,
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
}
.form-input:focus, .form-textarea:focus, textarea:focus,
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
    border-color: var(--line-bright);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
    outline: none;
}

/* ── Page header podstránek ── */
.page-header {
    background:
        radial-gradient(45% 60% at 30% 0%, rgba(123, 47, 247, 0.12), transparent 70%),
        radial-gradient(40% 55% at 75% 10%, rgba(0, 212, 255, 0.08), transparent 70%),
        var(--bg-0);
    border-bottom: 1px solid var(--line);
    padding-top: 7rem;
}

/* ── Footer legacy ── */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-0);
}

/* ── Prose / detail obsah ── */
.prose h2, .prose h3 { font-family: var(--font-heading); }
.prose a { color: var(--cyan); }

/* ── Flash zprávy ── */
.flash-message {
    border: 1px solid var(--line-bright);
    background: rgba(6, 6, 15, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 14px;
}

/* ── Tour overlay sladění ── */
.tour-overlay { background: rgba(3, 3, 9, 0.94); }

/* ── Builder sekce ── */
.builder-section { background: transparent; }
.builder-pricing .pricing-plan, .builder-features .feature-item,
.builder-stats .stat-item, .builder-testimonial {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--line);
    border-radius: 18px;
}

/* ── Touch zařízení: vrátit kurzor ── */
@media (hover: none), (pointer: coarse) {
    body { cursor: auto; }
}

/* ── Mobil: top nav položky do fullscreen menu ── */
@media (max-width: 860px) {
    .mobile-menu-toggle { display: inline-flex !important; }
}

/* ── Mobilní fullscreen menu ── */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(3, 3, 9, 0.96);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--cyan); }

@media (max-width: 860px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
}

/* ── Homepage: komnaty jako odkazy + projektový grid ── */
.chamber-link {
    position: absolute;
    inset: 0;
    display: block;
    color: inherit;
    text-decoration: none;
}
.projects-mirror {
    position: relative;
    padding: var(--space-section) clamp(1.4rem, 5vw, 5rem);
    background:
        radial-gradient(45% 50% at 20% 10%, rgba(0, 212, 255, 0.06), transparent 70%),
        var(--bg-0);
}
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }
.section-link-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 3.4rem);
    position: relative;
    z-index: 2;
}
@media (max-width: 1080px) {
    .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .products-grid-3 { grid-template-columns: 1fr; }
}

/* ── Komnaty: ikony z DB (icon_svg má vlastní rozměry) ── */
.chamber-icon svg { width: 32px; height: 32px; display: block; }
