/* =====================================================================
   VašeŽaluzie.cz — style.css
   Struktura:
   1. Promenne (design tokens)
   2. Reset & zaklady
   3. Pomocne tridy (container, btn, text-orange)
   4. Header + navigace
   5. Hero
   6. Karty kategorii
   7. Duverybody (navy box)
   8. Konfiguratory
   9. Jak to probiha + kontaktni karta
   10. Footer
   11. Responzivita (media queries)
   ===================================================================== */

/* ---------- 1. PROMENNE ---------- */
:root {
    --navy:        #16233b;
    --navy-deep:   #111d31;
    --navy-soft:   #3a4656;
    --orange:      #f37a1d;
    --orange-dark: #e06a0e;
    --green:       #2f9e5c;
    --white:       #ffffff;
    --bg:          #ffffff;
    --gray-50:     #f6f7f9;
    --gray-100:    #eef1f4;
    --gray-200:    #e3e7ec;
    --gray-300:    #c2cad4;
    --text:        #283142;
    --muted:       #6c7686;

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(20, 30, 50, .06);
    --shadow:    0 10px 30px rgba(20, 30, 50, .08);
    --shadow-lg: 0 22px 50px rgba(20, 30, 50, .14);

    --container: 1240px;
    --gutter: clamp(16px, 4vw, 28px);

    --header-h: 138px;

    --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 2. RESET & ZAKLADY ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-locked { overflow: hidden; }

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

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

h1, h2, h3 { margin: 0; line-height: 1.12; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

svg.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. POMOCNE TRIDY ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

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

.btn {
    --btn-py: 13px; --btn-px: 22px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: var(--btn-py) var(--btn-px);
    font: inherit; font-weight: 700; font-size: .98rem;
    border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap; line-height: 1;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 18px rgba(243, 122, 29, .32); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(243, 122, 29, .4); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--lg { --btn-py: 16px; --btn-px: 28px; font-size: 1.02rem; }

.phone-link {
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 700; color: var(--navy); white-space: nowrap;
}
.phone-link .icon { color: var(--orange); width: 1.4em; height: 1.4em; }
.phone-link:hover { color: var(--orange); }

/* ---------- 4. HEADER ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-100);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--gray-100); }

/* Overlay varianta (homepage): hlavicka lezi pres hero fotku, na vrchu pruhledna.
   Po odscrollovani se podbarvi bile, aby byla vzdy citelna. Stale je fixni (neroluje se). */
.site-header--overlay {
    position: fixed; left: 0; right: 0; top: 0;
    background: transparent;
    border-bottom-color: transparent;
}
.site-header--overlay .header__nav-row { border-top-color: transparent; }
.site-header--overlay.is-scrolled {
    background: #ffffff;
    border-bottom-color: var(--gray-100);
    box-shadow: var(--shadow-sm);
}
.site-header--overlay.is-scrolled .header__nav-row { border-top-color: var(--gray-100); }

/* radek 1: logo + akce (telefony + CTA) */
.header__top {
    min-height: 88px;
    display: flex; align-items: center; gap: clamp(16px, 2vw, 32px);
}
.logo { flex: 0 0 auto; display: inline-flex; }
.logo img { height: clamp(42px, 3.4vw, 54px); width: auto; max-width: none; }

.header__actions { margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.header__actions .btn--primary { --btn-py: 13px; --btn-px: 22px; }

/* dva telefonni kontakty s popiskem */
.header__phones { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.phone-link--header { display: inline-flex; align-items: center; gap: 10px; }
.phone-link--header .icon { color: var(--orange); width: 1.7em; height: 1.7em; flex: 0 0 auto; }
.phone-link__text { display: flex; flex-direction: column; line-height: 1.16; }
.phone-link__label { font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.phone-link__num { font-size: 1.04rem; font-weight: 800; color: var(--navy); white-space: nowrap; }
.phone-link--header:hover .phone-link__num { color: var(--orange); }

/* radek 2: hlavni navigace */
.header__nav-row { border-top: 1px solid var(--gray-100); transition: border-color .25s ease; }
.main-nav { display: flex; align-items: center; justify-content: center; }
.main-nav__list { display: flex; align-items: center; gap: clamp(8px, 1.6vw, 34px); flex-wrap: nowrap; }
.main-nav__list a {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600; font-size: .95rem; color: var(--navy);
    padding: 15px 2px; position: relative; white-space: nowrap;
}
.nav-caret { width: 1em; height: 1em; color: var(--gray-300); transition: transform .2s ease; }
.main-nav__list a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.main-nav__list a:hover { color: var(--orange); }
.main-nav__list a:hover .nav-caret { transform: rotate(180deg); color: var(--orange); }
.main-nav__list a:hover::after { transform: scaleX(1); }
.main-nav__cta { display: none; }   /* zobrazi se jen v mobilnim panelu */

.nav-close { display: none; }

/* Hamburger */
.hamburger {
    display: none; width: 46px; height: 46px; border: 0; background: var(--gray-100);
    border-radius: 12px; cursor: pointer; padding: 0; place-items: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px auto; border-radius: 2px; transition: .25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, .5); z-index: 110; }

/* ---------- 5. HERO ---------- */
.hero { position: relative; overflow: hidden; }
.hero__inner {
    position: relative;
    min-height: clamp(600px, 50vw, 740px);
    display: flex; flex-direction: column; justify-content: center;
    /* horni padding uvolni misto pod fixni (overlay) hlavickou */
    padding-block: clamp(150px, 15vw, 188px) clamp(40px, 5vw, 72px);
}
.hero__content { position: relative; z-index: 3; max-width: clamp(440px, 52%, 580px); }
.hero__title { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 16px; }
.hero__subtitle { font-size: clamp(1.3rem, 2.1vw, 1.8rem); font-weight: 800; color: var(--navy); margin: 0 0 18px; }
.hero__text { font-size: clamp(1rem, 1.1vw, 1.1rem); color: #515a6b; max-width: 40ch; margin: 0 0 26px; }

.hero__benefits { display: flex; gap: clamp(18px, 3vw, 38px); margin-bottom: 28px; flex-wrap: wrap; }
.hero__benefits li { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .92rem; color: var(--navy); }
.hero__benefits .icon {
    width: 44px; height: 44px; padding: 10px; color: var(--navy);
    background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.hero__region { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .92rem; margin: 0; }
.hero__region .icon { width: 40px; height: 40px; color: var(--navy); }

/* velky vizual na celou sirku (full-bleed, bez ramecku a zaobleni) */
.hero__media {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero__media::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(95deg, rgba(255, 255, 255, .97) 8%, rgba(255, 255, 255, .82) 22%, rgba(255, 255, 255, .34) 38%, rgba(255, 255, 255, 0) 52%);
}

/* statisticky box pres obrazek vpravo dole */
.hero__stats {
    position: absolute; z-index: 2;
    right: calc(var(--gutter) + clamp(14px, 2vw, 30px));
    bottom: clamp(30px, 4vw, 56px);
    width: min(540px, 54%);
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: rgba(17, 29, 49, .92);
    border-radius: var(--radius); padding: clamp(14px, 1.6vw, 22px) clamp(8px, 1vw, 14px);
    box-shadow: var(--shadow-lg);
}
.stat { text-align: center; padding: 4px clamp(6px, 1vw, 14px); position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: rgba(255, 255, 255, .16); }
.stat__num { display: block; color: #fff; font-weight: 800; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1; }
.stat__label { display: block; color: rgba(255, 255, 255, .7); font-size: .72rem; margin-top: 6px; line-height: 1.25; }

/* ---------- 6. KARTY KATEGORII ---------- */
.categories { padding: clamp(48px, 6vw, 80px) 0 clamp(30px, 4vw, 50px); }
.cards-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 1.6vw, 22px);
}
.card {
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
    display: flex; flex-direction: column; overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card__badge {
    position: absolute; left: 20px; bottom: -26px;
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center; box-shadow: var(--shadow);
}
.card__badge svg { width: 28px; height: 28px; }
.badge--orange { background: var(--orange); color: #fff; }
.badge--navy   { background: var(--navy-soft); color: #fff; }
.badge--green  { background: var(--green); color: #fff; }
.badge--light  { background: #fff; color: var(--navy); border: 1px solid var(--gray-200); }

.card__body { padding: 38px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.18rem; margin-bottom: 12px; }
.card__list { margin-bottom: 18px; flex: 1; }
.card__list li { color: var(--muted); font-size: .93rem; padding: 3px 0; }
.card__link { display: inline-flex; align-items: center; gap: 7px; color: var(--orange); font-weight: 700; font-size: .92rem; }
.card__link .icon { transition: transform .2s ease; }
.card__link:hover .icon { transform: translateX(4px); }

/* ---------- 7. DUVERYBODY ---------- */
.trust { padding: clamp(24px, 4vw, 44px) 0; }
.trust__box {
    background: var(--navy); color: #fff; border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 52px);
    display: grid; grid-template-columns: minmax(200px, 280px) 1fr; gap: clamp(24px, 4vw, 48px);
    align-items: center; box-shadow: var(--shadow-lg);
}
.trust__intro h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.trust__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2vw, 28px); }
.trust__item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; }
.trust__item + .trust__item::before { content: ""; position: absolute; left: calc(-1 * clamp(8px, 1vw, 14px)); top: 6px; bottom: 6px; width: 1px; background: rgba(255, 255, 255, .14); }
.trust__icon { color: var(--orange); }
.trust__icon svg { width: 46px; height: 46px; stroke-width: 1.5; }
.trust__text { font-size: .9rem; line-height: 1.4; color: rgba(255, 255, 255, .92); max-width: 18ch; }

/* ---------- 8. KONFIGURATORY ---------- */
.configurators { padding: clamp(24px, 4vw, 44px) 0; }
.config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); }
.config-box {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    min-height: clamp(220px, 26vw, 300px); box-shadow: var(--shadow);
    background-size: cover; background-position: center;
    display: flex; align-items: center;
}
.config-box::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 34%, rgba(255, 255, 255, .35) 62%, rgba(255, 255, 255, 0) 85%);
}
.config-box__content { position: relative; padding: clamp(24px, 3vw, 42px); max-width: 60%; }
.config-box__title { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 12px; }
.config-box__text { color: #41506a; font-size: 1rem; max-width: 30ch; margin: 0 0 22px; }

/* ---------- 9. JAK TO PROBIHA ---------- */
.process { padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 90px); }
.process__inner { display: grid; grid-template-columns: 1fr minmax(230px, 290px); gap: clamp(24px, 3vw, 40px); align-items: center; }
.process__main {
    background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-xl);
    padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-sm);
    display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 40px); align-items: center;
}
.process__heading { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(8px, 1vw, 16px); }
.step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; }
.step + .step::before {
    content: "›"; position: absolute; left: calc(-0.5 * clamp(8px, 1vw, 16px)); top: 22px;
    transform: translateX(-50%); color: var(--orange); font-size: 1.5rem; font-weight: 700; line-height: 1;
}
.step__icon { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--gray-200); display: grid; place-items: center; color: var(--navy); background: var(--gray-50); }
.step__icon svg { width: 28px; height: 28px; }
.step__title { font-weight: 700; font-size: .85rem; color: var(--navy); line-height: 1.25; }
.step__text { font-size: .76rem; color: var(--muted); line-height: 1.3; }

.contact-card {
    background: #fff; border: 2px solid var(--orange); border-radius: var(--radius-lg);
    padding: clamp(22px, 3vw, 34px); text-align: center; box-shadow: 0 14px 30px rgba(243, 122, 29, .14);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.contact-card__label { color: var(--muted); font-weight: 600; font-size: .95rem; }
.contact-card__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--orange); font-weight: 800; font-size: clamp(1.05rem, 1.6vw, 1.3rem); white-space: nowrap; }
.contact-card__phone .icon { width: 1.3em; height: 1.3em; }
.contact-card__hours { color: var(--navy); font-weight: 600; font-size: .92rem; }

/* ---------- 10. FOOTER ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .82); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); padding: clamp(40px, 5vw, 64px) var(--gutter); }
.footer__logo { height: 34px; width: auto; margin-bottom: 18px; background: #fff; padding: 9px 14px; border-radius: 12px; box-sizing: content-box; }
.footer__claim { color: rgba(255, 255, 255, .65); max-width: 38ch; font-size: .95rem; }
.footer__title { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer__list li { padding: 6px 0; }
.footer__list a:hover { color: var(--orange); }
.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact .icon { color: var(--orange); width: 1.2em; height: 1.2em; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer__bottom .container { padding-block: 18px; }
.footer__bottom p { margin: 0; font-size: .85rem; color: rgba(255, 255, 255, .55); }

/* ---------- 11. RESPONZIVITA ---------- */

/* Uzsi desktop: kompaktnejsi telefony */
@media (max-width: 1180px) {
    .phone-link__label { display: none; }
    .phone-link--header .icon { width: 1.4em; height: 1.4em; }
}

/* Tablet velky: uzsi rozestupy navigace */
@media (max-width: 1080px) {
    .main-nav__list { gap: clamp(8px, 1.4vw, 22px); }
    .main-nav__list a { font-size: .9rem; }
}

/* Prepnuti na hamburger menu */
@media (max-width: 960px) {
    .hamburger { display: grid; }
    .header__nav-row { border-top: 0; }
    .main-nav {
        position: fixed; top: 0; right: 0; z-index: 120;
        width: min(360px, 86vw); height: 100dvh;
        background: #fff; box-shadow: -12px 0 40px rgba(0, 0, 0, .18);
        display: flex; flex-direction: column; gap: 8px;
        padding: 84px 28px 28px; transform: translateX(100%);
        transition: transform .3s ease; overflow-y: auto;
    }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
    .main-nav__list a { display: flex; justify-content: space-between; padding: 12px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--gray-100); }
    .main-nav__list a::after { display: none; }
    .main-nav__cta { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
    .main-nav__cta .btn { width: 100%; }
    .nav-close { display: block; position: absolute; top: 18px; right: 22px; background: none; border: 0; font-size: 2rem; line-height: 1; color: var(--navy); cursor: pointer; }
    /* telefony + CTA se presunou do mobilniho panelu */
    .header__phones,
    .header__actions .btn--primary { display: none; }
    .header__actions { gap: 10px; }

    /* Hero do sloupce: obrazek nahore (banner), pod nim text a statistiky */
    .hero { display: flex; flex-direction: column; }
    .hero__media {
        position: relative; inset: auto; order: 0;
        width: 100%; height: clamp(220px, 52vw, 360px);
    }
    .hero__media::after { display: none; }
    .hero__inner { min-height: 0; gap: 22px; padding-block: clamp(24px, 5vw, 36px); }
    .hero__content { max-width: none; }
    .hero__stats {
        position: static; width: auto;
        right: auto; bottom: auto; margin-top: 4px;
    }

    /* Trust: heading nahore, ikony do mrizky */
    .trust__box { grid-template-columns: 1fr; text-align: center; }
    .trust__intro h2 br { display: none; }
    .trust__list { grid-template-columns: repeat(5, 1fr); }
    .trust__item + .trust__item::before { display: none; }

    /* Process do sloupce */
    .process__inner { grid-template-columns: 1fr; }
    .process__main { grid-template-columns: 1fr; text-align: center; }
    .process__heading br { display: none; }
}

/* Tablet: karty 2 sloupce */
@media (max-width: 860px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .config-grid { grid-template-columns: 1fr; }
    .config-box__content { max-width: 78%; }
    .trust__list { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
    .process__steps { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
    .step:nth-child(4)::before { display: none; }
}

/* Mobil: vse do jednoho sloupce */
@media (max-width: 560px) {
    :root { --header-h: 66px; }
    .logo img { height: 32px; }
    .hero__title { font-size: clamp(1.9rem, 9vw, 2.4rem); }
    .hero__benefits { gap: 16px; }
    .hero__benefits li { font-size: .82rem; }
    .hero__cta .btn { flex: 1; }
    .hero__media img { height: 300px; }

    /* Statistiky do 2 sloupcu */
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat + .stat::before { display: none; }
    .stat { border-radius: 10px; background: rgba(255, 255, 255, .06); }

    .cards-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
    .trust__list { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .step::before { display: none !important; }
    .config-box__content { max-width: 100%; }
    .config-box::before { background: linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .8) 60%, rgba(255, 255, 255, .55) 100%); }

    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- 12. KONTAKTY (stranka kontakt.php) ---------- */

/* Heading stranky */
.page-head { padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 36px); text-align: center; }
.page-head__title { font-size: clamp(2rem, 4.2vw, 3rem); }
.page-head__lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); margin: 14px 0 0; }

/* Kontaktni osoby - cele fotky vedle sebe */
.people { padding: clamp(20px, 3vw, 40px) 0 clamp(40px, 5vw, 70px); }
.people__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 48px);
    align-items: stretch;
}
.person {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.person__photo {
    width: 100%;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.person__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.person__body { padding: clamp(20px, 2.4vw, 32px); text-align: center; }
.person__role { color: var(--muted); font-size: .92rem; margin: 0 0 6px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.person__name { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin: 0 0 18px; color: var(--navy); }
.person__contacts { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.person__contacts li { display: inline-flex; align-items: center; gap: 10px; font-size: 1.02rem; font-weight: 600; color: var(--navy); }
.person__contacts a { color: var(--navy); }
.person__contacts a:hover { color: var(--orange); }
.person__icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--orange); color: #fff;
    display: grid; place-items: center;
    font-weight: 700; font-size: 1rem;
}
.person__icon svg { width: 18px; height: 18px; }

/* Firemni udaje + prodejna */
.contact-info { padding: clamp(30px, 4vw, 60px) 0; background: var(--gray-50); }
.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 36px);
}
.info-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--shadow-sm);
}
.info-card__title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.info-card__company { margin: 0 0 8px; font-size: 1.1rem; color: var(--navy); }
.info-card__address { font-style: normal; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.info-card__meta { display: grid; gap: 6px; margin: 0 0 18px; padding: 14px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.info-card__meta > div { display: flex; gap: 12px; }
.info-card__meta dt { font-weight: 700; color: var(--navy); min-width: 100px; }
.info-card__meta dd { margin: 0; color: var(--text); }
.info-card__note { font-size: .88rem; color: var(--muted); line-height: 1.55; margin: 0; }
.info-card__sub { font-size: 1.05rem; margin: 22px 0 12px; color: var(--navy); }

/* Otevirací doba */
.hours { width: 100%; border-collapse: collapse; font-size: .98rem; }
.hours th, .hours td { padding: 9px 6px; text-align: left; border-bottom: 1px solid var(--gray-100); }
.hours th { font-weight: 600; color: var(--navy); }
.hours td { color: var(--text); text-align: right; font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours__closed th, .hours__closed td { color: var(--muted); }

/* Mapa */
.map-section { padding: clamp(40px, 5vw, 70px) 0; }
.map-section__title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-align: center; }
.map-section__lead { text-align: center; color: var(--muted); margin: 10px 0 24px; }
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    line-height: 0;
}
.map-embed iframe { display: block; width: 100%; height: 450px; border: 0; }
.map-section__link { text-align: center; margin-top: 22px; }

/* Responzivita - kontakt */
@media (max-width: 860px) {
    .people__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
    .contact-info__grid { grid-template-columns: 1fr; }
    .map-embed iframe { height: 360px; }
}

@media (max-width: 560px) {
    .info-card__meta dt { min-width: 80px; }
    .map-embed iframe { height: 300px; }
}

/* Snizeni pohybu pro uzivatele, kteri to preferuji */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
