/* ============================================================
   HNV Group — téma "hnv"
   Řemeslo a konstrukce. Černá / zlatá / bílá, diagonální řezy,
   ikonové dlaždice, Montserrat 800–900 uppercase + Inter + Caveat.
   Vanilla CSS, mobile-first, bez frameworku.
   ============================================================ */

:root {
    --ink: #141414;
    --coal: #232323;
    --coal-2: #2E2E2E;
    --gold: #D9A54D;
    --gold-2: #C48F36;
    --gold-soft: #F3E3C0;
    /* zlatý TEXT na světlém podkladu — #D9A54D/#C48F36 mají jen ~2:1, tohle ≥ 5.2:1 (paper-2) */
    --gold-deep: #7F5516;
    --paper: #F4F2ED;
    --paper-2: #EAE6DE;
    --white: #FFFFFF;
    --line: #DAD5CB;
    --muted: #5F5F5F; /* ≥ 5.1:1 i na --paper-2 (#6B6B6B mělo 4.3:1) */
    --maxw: 1200px;
    --radius: 4px;

    --ff-display: 'Montserrat', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    --ff-text: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --ff-script: 'Caveat', 'Segoe Script', cursive;

    --gutter: 16px;
    --header-h: 68px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & základ ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h) + 12px);
    overflow-x: clip; /* iOS Safari nerespektuje overflow-x na samotném body */
}

body {
    margin: 0;
    font-family: var(--ff-text);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin: 0 0 .55em;
}
h1 { font-size: clamp(2rem, 6.2vw, 3.9rem); }
h2 { font-size: clamp(1.6rem, 4.4vw, 2.7rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.45rem); font-weight: 800; }
h4 { font-size: 1rem; font-weight: 800; }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.25rem; }
li { margin-bottom: .35em; }
strong, b { font-weight: 600; }
::selection { background: var(--gold); color: var(--ink); }

/* Fokus — vždy viditelný, nikdy odstraněný. Na světlém podkladu černý rámeček
   (zlatá má proti papíru jen 2:1), na tmavém zlatý. */
:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 3px;
    border-radius: 2px;
}
.section--dark :focus-visible,
.site-header :focus-visible,
.site-nav :focus-visible,
.hero :focus-visible,
.page-head :focus-visible,
.err-page :focus-visible,
.site-footer :focus-visible,
.lightbox :focus-visible,
.cc-card :focus-visible,
.cta-band--dark :focus-visible { outline-color: var(--gold); }
.callbar :focus-visible,
.section--gold :focus-visible { outline-color: var(--ink); }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
@media (min-width: 720px) { .container { padding: 0 clamp(1.5rem, 4vw, 2.5rem); } }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--gold);
    color: var(--ink);
    padding: .7rem 1.2rem;
    font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Typografické drobnosti ---------- */
.eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--ff-text);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin: 0 0 .9rem;
}
.eyebrow::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: var(--gold);
    flex: 0 0 auto;
}
.section--dark .eyebrow,
.hero .eyebrow,
.site-footer .eyebrow,
.err-page .eyebrow { color: var(--gold); }

.script {
    font-family: var(--ff-script);
    font-weight: 600;
    font-size: clamp(1.4rem, 3.4vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gold);
}

.lead { font-size: clamp(1.02rem, 1.8vw, 1.16rem); color: var(--muted); }
.section--dark .lead, .hero .lead, .page-head .lead { color: rgba(255, 255, 255, .78); }

em { font-style: normal; color: var(--gold-deep); }
.hero em, .section--dark em, .page-head em, .site-footer em, .err-page em, .cta-band--dark em { color: var(--gold); }

/* ---------- Sekce ---------- */
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; position: relative; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, .76); }
.section--dark a { color: var(--gold); }
.section--dark a:hover { color: var(--gold-soft); }
.section--gold { background: var(--gold); color: var(--ink); }
.section--gold h2, .section--gold h3 { color: var(--ink); }
.section--gold a { color: var(--ink); }
.section--gold a.btn--dark, .section--gold .btn--dark { color: var(--white); }
.section--gold a.btn--dark:hover, .section--gold .btn--dark:hover { color: var(--white); }
.section--gold a.btn--outline-ink:hover, .section--gold .btn--outline-ink:hover { color: var(--white); }

/* Diagonální řezy — pásy jako na letáčku (~4°) */
.section--dark,
.section--gold {
    clip-path: polygon(0 2.4vw, 100% 0, 100% 100%, 0 calc(100% - 2.4vw));
    margin-top: -1.6vw;
    margin-bottom: -1.6vw;
    padding-top: calc(clamp(3rem, 8vw, 5.5rem) + 2.4vw);
    padding-bottom: calc(clamp(3rem, 8vw, 5.5rem) + 2.4vw);
}

.section-head { max-width: 720px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head h2 { margin-bottom: .5rem; }
.section-head p:last-child { margin-bottom: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Tlačítka ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--ff-display);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .95rem 1.7rem;
    min-height: 48px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--ink);
    cursor: pointer;
    text-align: center;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.btn:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--ink); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--ink); }

.btn--dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--coal-2); border-color: var(--coal-2); color: var(--white); }

.btn--outline-ink { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: var(--white); }

.btn--sm { padding: .6rem 1.1rem; min-height: 40px; font-size: .72rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Hlavička ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 120;
    background: transparent;
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-solid {
    background: rgba(20, 20, 20, .96);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(217, 165, 77, .35);
}
.site-header__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: .6rem var(--gutter);
    min-height: var(--header-h);
}
@media (min-width: 720px) { .site-header__in { padding: .6rem clamp(1.5rem, 4vw, 2.5rem); } }

.brand { display: flex; align-items: center; gap: .7rem; color: var(--white); }
.brand:hover { color: var(--white); }
.brand__mark { width: 46px; height: 23px; flex: 0 0 auto; }
.brand__word {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 1.22rem;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}
.brand__word i { font-style: normal; color: var(--gold); }
.brand__claim {
    display: none;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-top: .22rem;
    white-space: nowrap;
}
@media (min-width: 1300px) { .brand__claim { display: block; } }

.site-nav { display: flex; align-items: center; gap: clamp(.7rem, 1.2vw, 1.5rem); }
.site-nav a {
    font-family: var(--ff-display);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    padding: .4rem 0;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s var(--ease), border-color .2s var(--ease);
}
.site-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Rozbalovací podmenu (položka menu s dětmi, např. Služby → 7 stránek) */
.nav-item { position: relative; display: flex; align-items: center; gap: .15rem; }
.sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--white);
    cursor: pointer;
    transition: color .2s var(--ease), transform .2s var(--ease);
}
.sub-toggle svg { width: 14px; height: 14px; }
.sub-toggle:hover, .nav-item:hover .sub-toggle { color: var(--gold); }
.nav-item.is-open .sub-toggle { transform: rotate(180deg); color: var(--gold); }
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -.85rem;
    padding-top: .5rem;
    min-width: 270px;
    z-index: 130;
}
.sub-menu__in {
    display: flex;
    flex-direction: column;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, .1);
    border-top: 3px solid var(--gold);
    padding: .45rem 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}
.nav-item:hover .sub-menu,
.nav-item:focus-within .sub-menu,
.nav-item.is-open .sub-menu { display: block; }
.site-nav .sub-menu a {
    padding: .6rem 1.1rem;
    border-bottom: 0;
    font-size: .7rem;
    letter-spacing: .08em;
    white-space: nowrap;
}
.site-nav .sub-menu a:hover { color: var(--gold); background: rgba(255, 255, 255, .05); }

.header-tools { display: flex; align-items: center; gap: .8rem; }
.header-phone {
    display: none;
    align-items: center;
    gap: .45rem;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .03em;
    color: var(--white);
    white-space: nowrap;
}
.header-phone svg { width: 17px; height: 17px; color: var(--gold); }
.header-phone:hover { color: var(--gold); }
@media (min-width: 1300px) { .header-phone { display: inline-flex; } }
.header-cta { display: none; white-space: nowrap; }
@media (min-width: 940px) { .header-cta { display: inline-flex; } }
/* Telefon uvnitř navigace je jen pro mobilní fullscreen menu — na desktopu ho zastupuje .header-phone
   (jinak by v hlavičce byly dva viditelné tel: odkazy) */
@media (min-width: 940px) { .site-nav__phone { display: none; } }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 0 10px;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
    z-index: 130;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 940px) { .nav-toggle { display: none; } }

/* Mobilní fullscreen menu */
@media (max-width: 939px) {
    .site-nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
        background: var(--ink);
        transform: translateY(-100%);
        /* zavřené menu je i pro klávesnici/čtečku skryté (visibility), ne jen odsunuté mimo obrazovku */
        visibility: hidden;
        transition: transform .35s var(--ease), visibility 0s .35s;
        overflow-y: auto;
        z-index: 125;
    }
    .site-nav.is-open { transform: translateY(0); visibility: visible; transition-delay: 0s, 0s; }
    .site-nav a {
        font-size: 1.15rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
    .site-nav a:hover { border-bottom-color: rgba(255, 255, 255, .12); }
    .site-nav .btn { margin-top: 1.4rem; border-bottom: 0; }
    .nav-item { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-item > a { border-bottom: 1px solid rgba(255, 255, 255, .12); }
    .sub-toggle { display: none; }
    .sub-menu { display: block; position: static; padding: 0; min-width: 0; }
    .sub-menu__in { background: none; border: 0; box-shadow: none; padding: 0 0 .4rem 1rem; }
    .site-nav .sub-menu a { font-size: .95rem; padding: .65rem 0; color: rgba(255, 255, 255, .8); white-space: normal; border-bottom: 1px solid rgba(255, 255, 255, .06); }
    .site-nav .site-nav__phone {
        margin-top: .9rem;
        border-bottom: 0;
        color: var(--gold);
        font-size: 1.3rem;
    }
    body.nav-locked { overflow: hidden; }
}

/* Sticky spodní lišta „Zavolat" (mobil) */
.callbar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 115;
    display: flex;
    background: var(--gold);
    box-shadow: 0 -2px 14px rgba(0, 0, 0, .25);
}
.callbar a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 54px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
}
.callbar a + a { border-left: 2px solid rgba(20, 20, 20, .18); }
.callbar a:hover { color: var(--ink); }
.callbar svg { width: 18px; height: 18px; }
@media (min-width: 940px) { .callbar { display: none; } }
@media (max-width: 939px) { body { padding-bottom: 54px; } }

/* ---------- Flash zprávy ---------- */
.flashes { position: fixed; top: calc(var(--header-h) + 10px); right: var(--gutter); z-index: 140; max-width: 26rem; }
.flash {
    background: var(--ink);
    color: var(--white);
    border-left: 4px solid var(--gold);
    padding: .85rem 1.1rem;
    margin-bottom: .6rem;
    font-size: .92rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.flash--error { border-left-color: #C0392B; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--ink);
    color: var(--white);
    padding: calc(var(--header-h) + clamp(3rem, 12vw, 6.5rem)) 0 calc(clamp(3rem, 9vw, 5.5rem) + 2.4vw);
    overflow: hidden;
    isolation: isolate;
    /* diagonální řez dolní hrany — pás jako na letáčku */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.4vw), 0 100%);
    margin-bottom: -1.6vw;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20, 20, 20, .94) 0%, rgba(20, 20, 20, .86) 45%, rgba(20, 20, 20, .66) 100%);
}
/* zlatý diagonální pás vpravo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -12%;
    width: 46%;
    height: 100%;
    background: var(--gold);
    opacity: .12;
    clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
    z-index: -1;
}
.hero__in { position: relative; }
.hero__grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); }
@media (min-width: 960px) { .hero__grid { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: center; } }

.hero h1 { color: var(--white); margin-bottom: .5rem; }
.hero h1 em { color: var(--gold); }
.hero__badge { margin-bottom: .9rem; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255, 255, 255, .8); max-width: 42ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.hero__rule { width: 84px; height: 4px; background: var(--gold); margin: 0 0 1.4rem; }

/* pás hodnot pod hero (Spolehlivost / Kvalita / Férové jednání) */
.hero-values { display: grid; gap: .8rem; margin-top: clamp(2.2rem, 6vw, 3.4rem); }
@media (min-width: 720px) {
    .hero-values { grid-template-columns: repeat(var(--hv-cols, 3), minmax(0, 1fr)); }
}
.hero-value__text { display: block; min-width: 0; }
.hero-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, .05);
    border-left: 3px solid var(--gold);
}
.hero-value b {
    display: block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
}
.hero-value span { font-size: .88rem; color: rgba(255, 255, 255, .66); }
.hero-value .tile { flex: 0 0 auto; }

/* ---------- Ikonové dlaždice ---------- */
.tile {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    flex: 0 0 auto;
}
.tile svg { width: 32px; height: 32px; }
.tile--gold { background: var(--gold); color: var(--ink); }
.tile--ink { background: var(--ink); color: var(--gold); }
.tile--sm { width: 48px; height: 48px; }
.tile--sm svg { width: 24px; height: 24px; }
.section--dark .tile--ink { background: var(--coal-2); }

.ico { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Služby (hnv-services) ---------- */
.svc-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* 7 služeb: na širokých obrazovkách 4 + 3 místo 3 + 3 + osiřelá sedmá karta */
@media (min-width: 1180px) { .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.svc {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
a.svc:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20, 20, 20, .12); border-color: var(--gold); color: var(--ink); }
.svc__media { position: relative; }
.svc__media img { width: 100%; aspect-ratio: 20 / 13; object-fit: cover; }
.svc__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc__body .tile { margin-bottom: 1rem; }
.svc h3 { margin-bottom: .45rem; }
.svc p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.svc__more {
    margin-top: auto;
    font-family: var(--ff-display);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-deep);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
a.svc:hover .svc__more { color: var(--ink); }
.section--alt .svc { background: var(--white); }

/* ---------- Hodnoty / features ---------- */
.feat-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) { .feat-grid { grid-template-columns: repeat(var(--feat-cols, 3), minmax(0, 1fr)); } }

.feat {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
}
.feat .tile { margin-bottom: 1.1rem; }
.feat h3 { margin-bottom: .4rem; }
.feat p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.section--dark .feat { background: var(--coal); border-color: rgba(255, 255, 255, .1); }
.section--dark .feat p { color: rgba(255, 255, 255, .7); }

/* ---------- Proces (01–04) ---------- */
.steps { display: grid; gap: 1.6rem; list-style: none; padding: 0; margin: 0; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 2.4rem; } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.step { position: relative; padding-top: 1.6rem; margin: 0; }
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--line);
}
.step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 2px;
    background: var(--gold);
}
.step__num {
    display: block;
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--gold-deep); /* na světlém podkladu má --gold kontrast jen 2:1 */
    margin-bottom: .6rem;
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.section--dark .step::before { background: rgba(255, 255, 255, .16); }
.section--dark .step__num { color: var(--gold); }
.section--dark .step p { color: rgba(255, 255, 255, .7); }

.process-grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details {
    border-bottom: 1px solid var(--line);
    background: transparent;
}
.faq details[open] { background: var(--white); }
.faq summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.1rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: .98rem;
    letter-spacing: .01em;
    color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin-top: .35rem;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--gold-deep); }
.faq__answer { padding: 0 1.1rem 1.25rem; color: var(--muted); font-size: .96rem; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ---------- Působnost (hnv-area) ---------- */
.area-grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
@media (min-width: 900px) { .area-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; } }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; padding: 0; list-style: none; }
.chips li {
    margin: 0;
    padding: .5rem .95rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 500;
    color: var(--ink);
}
.chips li::before { content: '· '; color: var(--gold); font-weight: 700; }
.section--dark .chips li { background: var(--coal); border-color: rgba(255, 255, 255, .14); color: var(--white); }

.area-media img { width: 100%; border-radius: var(--radius); }

/* ---------- Editorial text ---------- */
.editorial { max-width: 68ch; }
.editorial h2, .editorial h3 { margin-top: 1.8em; }
.editorial h2:first-child, .editorial h3:first-child { margin-top: 0; }
.editorial ul { list-style: none; padding-left: 0; }
.editorial ul li { position: relative; padding-left: 1.6rem; }
.editorial ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .62em;
    width: 8px;
    height: 8px;
    background: var(--gold);
}
.editorial ol { padding-left: 1.3rem; }
.editorial a { text-decoration: underline; text-underline-offset: .18em; }
.editorial blockquote {
    margin: 1.6rem 0;
    padding: .2rem 0 .2rem 1.2rem;
    border-left: 3px solid var(--gold);
    font-size: 1.08rem;
}

.text-cols { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
@media (min-width: 900px) { .text-cols { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }
.text-cols--flip > figure { order: -1; }
@media (max-width: 899px) { .text-cols--flip > figure { order: 0; } }
.text-cols figure { margin: 0; }
.text-cols figure img { width: 100%; border-radius: var(--radius); }
.text-cols figcaption { margin-top: .6rem; font-size: .84rem; color: var(--muted); }

.badge-pill {
    display: inline-block;
    padding: .35rem .8rem;
    background: var(--gold-soft);
    color: var(--ink);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: .9rem;
}

/* ---------- CTA pás ---------- */
.cta-band { display: grid; gap: 1.4rem; align-items: center; }
@media (min-width: 900px) { .cta-band { grid-template-columns: minmax(0, 1fr) auto; gap: 2.4rem; } }
.cta-band h2 { margin-bottom: .4rem; }
.cta-band p { margin-bottom: 0; color: rgba(20, 20, 20, .85); } /* .72 mělo na zlaté jen 3.9:1 */
.cta-band .btn-row { justify-content: flex-start; }
@media (min-width: 900px) { .cta-band .btn-row { justify-content: flex-end; } }

/* ---------- Statistiky ---------- */
.stats-band { display: grid; gap: 1.4rem; }
@media (min-width: 560px) { .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .stats-band { grid-template-columns: repeat(var(--stat-cols, 3), minmax(0, 1fr)); } }
.stat {
    padding: 1.2rem 1.3rem;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, .04);
}
.stat b {
    display: block;
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.1;
    color: var(--gold);
    letter-spacing: .02em;
    text-transform: uppercase;
}
.stat span { display: block; margin-top: .3rem; font-size: .9rem; color: rgba(255, 255, 255, .72); }

/* ---------- Galerie + lightbox ---------- */
.gallery-grid { display: grid; gap: .8rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
.gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius); background: var(--ink); }
.gallery-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.05); opacity: .88; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, .94);
    padding: var(--gutter);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 86vh; width: auto; border-radius: var(--radius); }
.lightbox__close, .lightbox__nav {
    position: absolute;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    padding: .6rem 1rem;
}
.lightbox__close { top: .5rem; right: .5rem; }
.lightbox__nav--prev { left: .2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: .2rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { color: var(--gold); }

/* ---------- Reference ---------- */
.quote-grid { display: grid; gap: 1.1rem; }
@media (min-width: 720px) { .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .quote-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.quote {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
}
.quote__stars { color: var(--gold); display: flex; gap: .15rem; margin-bottom: .8rem; }
.quote__stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.quote blockquote { margin: 0; padding: 0; border: 0; }
.quote p { font-size: .96rem; color: var(--ink); }
.quote figcaption { margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line); }
.quote figcaption b { display: block; font-family: var(--ff-display); font-weight: 800; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.quote figcaption span { font-size: .84rem; color: var(--muted); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); } }

.contact-list { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__text { min-width: 0; }
.contact-item b {
    display: block;
    font-family: var(--ff-display);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .15rem;
}
.contact-item a, .contact-item p {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .01em;
    color: var(--ink);
    margin: 0;
    word-break: break-word;
}
.contact-item a:hover { color: var(--gold-deep); }
.contact-item p.contact-item__plain { font-family: var(--ff-text); font-weight: 400; font-size: .98rem; color: var(--muted); }

.map-wrap { margin-top: clamp(2rem, 5vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: clamp(260px, 42vw, 420px); border: 0; }

/* ---------- Formulář ---------- */
.scf { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem); }
.scf > h3 { margin-bottom: .4rem; }
.scf > p { color: var(--muted); font-size: .95rem; }
.section--dark .scf { background: var(--coal); border-color: rgba(255, 255, 255, .12); }
.section--dark .scf label, .section--dark .scf > p { color: rgba(255, 255, 255, .75); }

.form-grid { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .gdpr-row label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.field input, .field textarea, .field select {
    font-family: var(--ff-text);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .8rem .9rem;
    width: 100%;
    min-height: 48px;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); background: var(--white); }

.interest-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.interest-pill { display: inline-flex; align-items: center; gap: .45rem; cursor: pointer; }
.interest-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.interest-pill span {
    display: inline-block;
    padding: .55rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.interest-pill:hover span { border-color: var(--gold); }
.interest-pill input:checked + span { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }
.interest-pill input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 3px; }

.gdpr-row { display: flex; align-items: flex-start; gap: .6rem; }
.gdpr-row input { margin-top: .25rem; width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--gold-2); }
.gdpr-row label { text-transform: none; letter-spacing: 0; font-size: .86rem; font-weight: 400; line-height: 1.5; }

.form-errors {
    background: #FBE9E7;
    border-left: 3px solid #C0392B;
    color: #8E2A1E;
    padding: .8rem 1rem;
    margin-bottom: 1rem;
    font-size: .9rem;
}
.contact-success { text-align: center; padding: 1.5rem .5rem; }
.contact-success .check {
    width: 62px;
    height: 62px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}
.contact-success .check svg { width: 30px; height: 30px; stroke-width: 2.2; fill: none; stroke: currentColor; }
.hidden { display: none !important; }

/* ---------- Hlavička stránky ---------- */
.page-head {
    background: var(--ink);
    color: var(--white);
    padding: calc(var(--header-h) + clamp(2.2rem, 7vw, 4rem)) 0 clamp(2.2rem, 6vw, 3.6rem);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 2.4vw));
    margin-bottom: -1.6vw;
    overflow: hidden; /* ::after pás vpravo přesahuje o 10 % — bez toho vzniká horizontální scroll */
}
.page-head h1 { color: var(--white); margin-bottom: .5rem; }
.page-head .lead { max-width: 62ch; margin-bottom: 0; }
.page-head::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: var(--gold);
    opacity: .1;
    clip-path: polygon(26% 0, 100% 0, 74% 100%, 0 100%);
}
.page-head .container { position: relative; z-index: 1; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .8rem; color: rgba(255, 255, 255, .6); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--gold); }
.breadcrumbs .sep { color: rgba(255, 255, 255, .4); }

.empty-note {
    max-width: 34rem;
    margin: clamp(4rem, 12vw, 7rem) auto;
    padding: 2rem var(--gutter);
    text-align: center;
    color: var(--muted);
}
.empty-note b { display: block; font-family: var(--ff-display); text-transform: uppercase; color: var(--ink); margin-bottom: .4rem; }

/* ---------- Blog ---------- */
.blog-entries { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .blog-entries { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .blog-entries { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.blog-entry {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-entry:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20, 20, 20, .12); }
.blog-entry__media img { width: 100%; aspect-ratio: 20 / 13; object-fit: cover; }
.blog-entry__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-entry h2 { font-size: 1.15rem; margin-bottom: .5rem; }
.blog-entry h2 a { color: var(--ink); }
.blog-entry h2 a:hover { color: var(--gold-deep); }
.blog-entry__excerpt { color: var(--muted); font-size: .93rem; }
.doc-link {
    margin-top: auto;
    font-family: var(--ff-display);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.blog-pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.blog-pagination__info { font-size: .85rem; color: var(--muted); }
.blog-content img { border-radius: var(--radius); margin: 1.4rem 0; }
.blog-content iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: var(--radius); margin: 1.4rem 0; }
.blog-related { display: grid; gap: .8rem; margin-top: 1rem; }
@media (min-width: 720px) { .blog-related { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.blog-related a {
    display: block;
    padding: 1.1rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    color: var(--ink);
}
.blog-related a:hover { border-color: var(--gold); color: var(--gold-deep); }
.blog-related b { display: block; font-family: var(--ff-display); font-weight: 800; font-size: .95rem; text-transform: uppercase; letter-spacing: .02em; }
.blog-related span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- 404 ---------- */
.err-page {
    min-height: 74vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 3rem) var(--gutter) 4rem;
    background: var(--ink);
    color: var(--white);
}
.err-page .code {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(4.5rem, 20vw, 10rem);
    line-height: .95;
    color: var(--gold);
    letter-spacing: .02em;
}
.err-page h1 { color: var(--white); margin-top: 1rem; }
.err-page p { color: rgba(255, 255, 255, .72); max-width: 46ch; }
.err-page .btn-row { justify-content: center; margin-top: 1.4rem; }

/* ---------- Oddělovač ---------- */
.sep-rule { display: flex; align-items: center; gap: 1.1rem; }
.sep-rule span { flex: 1; height: 1px; background: var(--line); }
.sep-rule svg { width: 26px; height: 26px; color: var(--gold); }

/* ---------- Patička ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
    padding: clamp(3rem, 8vw, 4.5rem) 0 2rem;
    position: relative;
    clip-path: polygon(0 2.4vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -1.6vw;
    overflow: hidden;
}
.site-footer__top { display: grid; gap: 2rem; margin-bottom: 2.4rem; }
@media (min-width: 720px) { .site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .site-footer__top { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2.6rem; } }

.site-footer .brand__mark { width: 62px; height: 31px; }
.site-footer .brand__word { font-size: 1.45rem; }
.site-footer__intro { margin-top: 1rem; font-size: .92rem; max-width: 34ch; }
.site-footer__intro .script { display: block; margin-top: .6rem; font-size: 1.5rem; }

.site-footer h4 {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(255, 255, 255, .78); font-size: .93rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer p { font-size: .93rem; margin-bottom: .6rem; }
.site-footer__phone { font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; }

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.4rem;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
    color: rgba(255, 255, 255, .54);
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.site-footer__legal a { font-size: .82rem; }

/* ---------- Cookie lišta ---------- */
.cc-banner {
    position: fixed;
    left: var(--gutter);
    right: var(--gutter);
    bottom: 70px;
    z-index: 190;
}
@media (min-width: 940px) { .cc-banner { bottom: var(--gutter); } }
.cc-card {
    max-width: var(--maxw);
    margin: 0 auto;
    background: var(--ink);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(217, 165, 77, .4);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}
@media (min-width: 900px) { .cc-card { grid-template-columns: minmax(0, 1fr) auto; align-items: center; } }
.cc-text h4 { color: var(--white); font-size: .95rem; margin-bottom: .3rem; }
.cc-text p { font-size: .86rem; margin: 0; }
.cc-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cc-btn {
    font-family: var(--ff-display);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .7rem 1.1rem;
    min-height: 42px;
    border-radius: var(--radius);
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.cc-btn-solid { background: var(--gold); color: var(--ink); }
.cc-btn-solid:hover { background: var(--gold-2); }
.cc-btn-ghost { background: transparent; color: var(--gold); }
.cc-btn-ghost:hover { background: rgba(217, 165, 77, .16); }

.cc-modal { position: fixed; inset: 0; z-index: 195; display: flex; align-items: center; justify-content: center; padding: var(--gutter); }
.cc-overlay { position: absolute; inset: 0; background: rgba(10, 10, 10, .72); }
.cc-dialog {
    position: relative;
    width: 100%;
    max-width: 34rem;
    background: var(--white);
    border-radius: var(--radius);
    max-height: 86vh;
    overflow-y: auto;
}
.cc-dialog-head, .cc-dialog-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.2rem; }
.cc-dialog-head { border-bottom: 1px solid var(--line); }
.cc-dialog-head h5 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin: 0; font-size: 1rem; }
.cc-dialog-foot { border-top: 1px solid var(--line); justify-content: flex-end; }
.cc-close { background: none; border: 0; font-size: 1.2rem; cursor: pointer; color: var(--muted); padding: .4rem; }
.cc-dialog-body { padding: .6rem 1.2rem 1rem; }
.cc-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.cc-row:last-child { border-bottom: 0; }
.cc-row b { display: block; font-size: .95rem; }
.cc-row p { font-size: .84rem; color: var(--muted); margin: .2rem 0 0; }
.cc-row input { width: 20px; height: 20px; margin-top: .2rem; flex: 0 0 auto; accent-color: var(--gold-2); }

/* ---------- Doplňky komponent ---------- */

/* značka: wordmark + claim pod ním */
.brand > span { display: flex; flex-direction: column; min-width: 0; }

/* hlavička stránky — zlatý eyebrow na tmavém */
.page-head .eyebrow { color: var(--gold); }

/* služby: šipka u „Více o službě" */
.svc__more svg { width: 15px; height: 15px; }

/* působnost bez obrázku i bez chipů = jeden sloupec */
@media (min-width: 900px) {
    .area-grid--solo { grid-template-columns: minmax(0, 1fr); }
}
.area-side {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
}
.area-side__head {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: .4rem;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
}
.area-side .chips { margin-top: .8rem; }
.area-side .chips li { background: var(--paper); }

/* CTA pás — tmavá varianta (settings.bg_style = dark) */
.cta-band--dark {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 4vw, 2.6rem);
}
.cta-band--dark h2 { color: var(--white); }
.cta-band--dark p { color: rgba(255, 255, 255, .76); }
.cta-band--dark .btn--dark { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cta-band--dark .btn--dark:hover { background: var(--gold-2); border-color: var(--gold-2); }
.cta-band--dark .btn--outline-ink { border-color: var(--gold); color: var(--gold); }
.cta-band--dark .btn--outline-ink:hover { background: var(--gold); color: var(--ink); }

/* kontakty */
.contact-item__text { display: block; min-width: 0; }
.scf-head { margin-bottom: 1rem; }
.scf-head h3 { margin-bottom: .35rem; }
.scf-head p { margin-bottom: 0; }
.scf__submit { margin-top: 1.2rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* samostatný obrázek / média */
.media-figure { margin: 0 0 clamp(1.6rem, 4vw, 2.6rem); }
.media-figure img { width: 100%; border-radius: var(--radius); }
.media-figure--full { max-width: none; }
.media-figure figcaption,
.media-caption { margin-top: .6rem; font-size: .84rem; color: var(--muted); text-align: center; }

/* oddělovač se značkou */
.sep-mark { width: 34px; height: 17px; flex: 0 0 auto; }

/* blog — detail */
.blog-gallery { margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.blog-actions { margin-top: clamp(2rem, 5vw, 3rem); }
.blog-more { margin-top: clamp(2.6rem, 6vw, 4rem); }

/* ---------- Reveal animace ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- Tisk ---------- */
@media print {
    .site-header, .callbar, .cc-banner, .cc-modal, .lightbox, .site-footer__legal { display: none !important; }
    body { background: #fff; color: #000; padding-bottom: 0; }
    .section--dark, .hero, .page-head, .site-footer { background: #fff !important; color: #000 !important; clip-path: none !important; }
}
