/* Sdílené styly firemního webu pixsro.cz. Po změně zvednout ?v= v HTML. */
:root {
    --ink: #0B0F19;
    --ink-2: #111827;
    --ink-deep: #070A12;
    --paper: #F5F4EF;
    --white: #FFFFFF;
    --text: #0B0F19;
    --text-2: #4B5563;
    --text-3: #6B7280;
    --line: rgba(11, 15, 25, 0.08);
    --line-dark: rgba(255, 255, 255, 0.1);
    --accent: #FF6B2B;
    --accent-2: #FFA070;
    --accent-deep: #E4551A;
    --teal: #14B8A6;
    --radius: 22px;
    --radius-sm: 14px;
    --font-display: 'Sora', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1320px, 100% - 48px); margin-inline: auto; }

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 100;
    background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ===== Reveal on scroll ===== */
html.js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--delay, 0s);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== Eyebrow ===== */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-3); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 10px; height: 10px; border-radius: 3px; background: var(--accent); }
.on-dark .eyebrow { color: rgba(255, 255, 255, 0.6); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 26px; border-radius: 999px;
    font-weight: 600; font-size: 1rem; line-height: 1; white-space: nowrap;
    border: 1px solid transparent; cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 30px -12px rgba(255, 107, 43, 0.7); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(255, 107, 43, 0.8); }
.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.04); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(11, 15, 25, 0.6); }
.btn-sm { padding: 11px 20px; font-size: 0.92rem; }

/* ===== Navigation ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 20px 0;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled {
    background: rgba(11, 15, 25, 0.86);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
    display: inline-flex; align-items: center; gap: 12px;
    color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em;
}
.brand-mark { width: 32px; height: 32px; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    color: rgba(255, 255, 255, 0.78); padding: 9px 15px; border-radius: 999px;
    font-weight: 500; font-size: 0.95rem; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.09); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
    display: none; width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.06); color: #fff;
    place-items: center; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ===== Hero ===== */
.hero {
    position: relative; overflow: hidden;
    background: var(--ink); color: #fff;
    padding: 172px 0 0;
}
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(55% 55% at 85% 15%, rgba(255, 107, 43, 0.32), transparent 62%),
        radial-gradient(40% 45% at 5% 95%, rgba(20, 184, 166, 0.2), transparent 60%);
}
.hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at 60% 30%, #000 25%, transparent 72%);
    mask-image: radial-gradient(ellipse at 60% 30%, #000 25%, transparent 72%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.hero h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.7rem, 5.6vw, 4.9rem); line-height: 1.02; letter-spacing: -0.035em;
    margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { font-size: 1.22rem; line-height: 1.65; color: rgba(255, 255, 255, 0.74); max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }

.stats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stats-mark {
    position: absolute; right: -90px; top: -70px; width: 380px; height: 380px;
    color: #fff; opacity: 0.06; transform: rotate(12deg); pointer-events: none;
}
.stat {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius); padding: 28px 26px;
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.stat:hover { border-color: rgba(255, 160, 112, 0.6); background: rgba(255, 255, 255, 0.08); }
.stat:nth-child(2), .stat:nth-child(4) { transform: translateY(28px); }
.stat:nth-child(2):hover, .stat:nth-child(4):hover { transform: translateY(24px); }
.stat:nth-child(1):hover, .stat:nth-child(3):hover { transform: translateY(-4px); }
.stat strong {
    display: block; font-family: var(--font-display); font-weight: 800;
    font-size: 2.5rem; line-height: 1; letter-spacing: -0.03em;
}
.stat strong small { font-size: 1.1rem; font-weight: 700; color: var(--accent-2); margin-left: 4px; }
.stat span { display: block; margin-top: 12px; font-size: 0.95rem; line-height: 1.5; color: rgba(255, 255, 255, 0.66); }

.brands {
    margin-top: 104px; padding: 30px 0 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex; align-items: center; gap: 28px 44px; flex-wrap: wrap;
}
.brands-label {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45); margin-right: auto;
}
.brands a { display: inline-flex; align-items: center; opacity: 0.72; transition: opacity 0.25s, transform 0.25s var(--ease); }
.brands a:hover { opacity: 1; transform: translateY(-2px); }
.brands img { height: 22px; width: auto; filter: brightness(0) invert(1); }
.brands .wordmark {
    font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
    letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
}

/* ===== Sections ===== */
.section { padding: 116px 0; }
.section-paper { background: var(--paper); }
.section-ink { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.section-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; margin-bottom: 60px; }
.section-head h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2rem, 3.7vw, 3.1rem); line-height: 1.08; letter-spacing: -0.03em;
}
.section-head p { font-size: 1.15rem; line-height: 1.65; color: var(--text-2); }
.on-dark .section-head p { color: rgba(255, 255, 255, 0.7); }

/* ===== Pillars ===== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
    position: relative; display: flex; flex-direction: column; gap: 18px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 38px 36px; min-height: 340px;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(11, 15, 25, 0.4); border-color: rgba(255, 107, 43, 0.55); }
.pillar-icon {
    width: 58px; height: 58px; border-radius: 16px;
    background: var(--ink); color: #fff; display: grid; place-items: center;
    transition: background 0.35s;
}
.pillar:hover .pillar-icon { background: var(--accent); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; }
.pillar p { color: var(--text-2); line-height: 1.65; flex: 1; }
.pillar-links { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 13px; border-radius: 999px; background: var(--paper);
    font-size: 0.85rem; font-weight: 600; color: var(--text); transition: background 0.2s, color 0.2s;
}
a.chip:hover { background: var(--ink); color: #fff; }
.chip svg { width: 14px; height: 14px; }

/* ===== Shops ===== */
.shops { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shop {
    position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 16px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.shop::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.shop:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(11, 15, 25, 0.4); border-color: rgba(11, 15, 25, 0.18); }
.shop:hover::after { transform: scaleX(1); }
.shop-logo {
    height: 96px; display: flex; align-items: center;
    border-bottom: 1px solid var(--line); padding-bottom: 18px;
}
.shop-logo img { max-height: 36px; width: auto; filter: grayscale(1) brightness(0.18); transition: filter 0.4s; }
.shop-logo img.is-square { max-height: 70px; }
.shop:hover .shop-logo img { filter: none; }
.shop-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-meta .chip { background: var(--paper); font-size: 0.78rem; padding: 5px 11px; }
.shop h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.shop p { color: var(--text-2); line-height: 1.6; flex: 1; }
.shop-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
.shop-link svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.shop:hover .shop-link svg { transform: translateX(4px); }
.shop:hover .shop-link { color: var(--accent-deep); }

/* ===== B2B / zakázková výroba ===== */
.section-ink::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(50% 60% at 15% 50%, rgba(255, 107, 43, 0.18), transparent 65%);
}
.section-ink .container { position: relative; z-index: 1; }
.b2b { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 80px; align-items: center; }
.b2b-media { position: relative; }
.b2b-media img {
    width: 100%; height: auto; aspect-ratio: 8 / 9; object-fit: cover;
    border-radius: 30px; box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.8);
}
.b2b-badge {
    position: absolute; left: -22px; bottom: 36px;
    display: flex; align-items: center; gap: 14px;
    background: var(--white); color: var(--text); padding: 16px 20px; border-radius: 18px;
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.55);
}
.b2b-badge-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.b2b-badge-icon svg { width: 22px; height: 22px; }
.b2b-badge strong { display: block; font-size: 0.95rem; }
.b2b-badge span { font-size: 0.8rem; color: var(--text-3); }
.b2b h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2rem, 3.7vw, 3.1rem); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 22px;
}
.b2b-lead { font-size: 1.15rem; line-height: 1.65; color: rgba(255, 255, 255, 0.74); }
.b2b-list { display: grid; gap: 14px; margin: 30px 0 38px; }
.b2b-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.05rem; color: rgba(255, 255, 255, 0.9); }
.b2b-list svg { width: 24px; height: 24px; flex: none; color: var(--accent); margin-top: 2px; }

/* ===== Timeline ===== */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-top: 40px; }
.timeline::before {
    content: ''; position: absolute; top: 8px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 107, 43, 0.15) 100%);
}
.tl { position: relative; }
.tl::before {
    content: ''; position: absolute; top: -40px; left: 0; width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 6px rgba(255, 107, 43, 0.18);
}
.tl-year { font-family: var(--font-display); font-weight: 800; font-size: 2.7rem; line-height: 1; letter-spacing: -0.03em; margin-bottom: 16px; }
.tl h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.tl p { color: var(--text-2); line-height: 1.65; }

/* ===== Vending strip ===== */
.vending {
    margin-top: 80px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
    background: var(--ink); color: #fff; border-radius: var(--radius); padding: 34px 40px;
    position: relative; overflow: hidden;
}
.vending::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(60% 100% at 100% 50%, rgba(255, 107, 43, 0.28), transparent 60%);
}
.vending > * { position: relative; }
.vending-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); display: grid; place-items: center; }
.vending-icon svg { width: 30px; height: 30px; }
.vending h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.vending p { color: rgba(255, 255, 255, 0.7); }

/* ===== Contact ===== */
.contact-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.contact h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.3rem, 4.6vw, 3.9rem); line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 22px;
}
.contact h2 em { font-style: normal; color: var(--accent); }
.contact-lead { font-size: 1.15rem; line-height: 1.65; color: rgba(255, 255, 255, 0.72); max-width: 560px; }
.contact-cards { display: grid; gap: 14px; }
.ccard {
    display: flex; align-items: center; gap: 18px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px; padding: 22px 24px; color: #fff;
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
a.ccard:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 160, 112, 0.6); transform: translateX(4px); }
.ccard-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.ccard-icon svg { width: 22px; height: 22px; }
.ccard small { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 4px; }
.ccard strong { font-size: 1.12rem; font-weight: 600; }

/* ===== Footer ===== */
.footer { background: var(--ink-deep); color: rgba(255, 255, 255, 0.6); padding: 64px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.06); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .brand { margin-bottom: 18px; }
.footer-about { max-width: 360px; line-height: 1.65; }
.footer h4 { color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 26px;
    display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255, 255, 255, 0.45);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 56px; }
    .hero-lead { max-width: 640px; }
    .stats { max-width: 620px; }
    .stats-mark { right: -60px; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { min-height: 0; }
    .shops { grid-template-columns: repeat(2, 1fr); }
    .b2b { grid-template-columns: 1fr; gap: 56px; }
    .b2b-media { max-width: 560px; }
    .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-head { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 820px) {
    .nav-links {
        display: none; position: absolute; top: calc(100% + 8px); left: 24px; right: 24px;
        flex-direction: column; align-items: stretch; gap: 4px;
        background: rgba(11, 15, 25, 0.96); border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px; padding: 10px;
        -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
        box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
    .nav-toggle { display: grid; }
    .nav-cta { display: none; }
    .nav { padding: 14px 0; }
    .nav.is-scrolled, .nav.is-open { background: rgba(11, 15, 25, 0.92); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
    .hero { padding-top: 128px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .brands { margin-top: 72px; gap: 22px 32px; }
    .brands-label { width: 100%; margin-right: 0; }
    .section { padding: 80px 0; }
    .shops { grid-template-columns: 1fr; }
    .b2b-badge { left: 14px; bottom: 14px; padding: 12px 14px; }
    .timeline { grid-template-columns: 1fr; padding-top: 0; padding-left: 34px; gap: 40px; }
    .timeline::before { top: 0; bottom: 0; left: 8px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--accent) 0%, rgba(255, 107, 43, 0.15) 100%); }
    .tl::before { top: 6px; left: -34px; }
    .tl-year { font-size: 2.2rem; }
    .vending { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
    .vending .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .container { width: min(1320px, 100% - 40px); }
    .stats { gap: 12px; }
    .stat { padding: 22px 18px; }
    .stat strong { font-size: 2rem; }
    .stat:nth-child(2), .stat:nth-child(4) { transform: translateY(20px); }
}

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