/* =================================================================
   Paper Rings - designovy system
   Vzhled: tiskarska dilna / tisteny cenik.
   Svetly papir, ostre hrany, cern + razitkova cervena.
   Pisma: Libre Caslon (nadpisy), Newsreader (text), IBM Plex Mono (data).
   Bez frameworku, bez build kroku, bez ikon z knihoven.
   ================================================================= */

/* ---------- Tokeny ---------- */
:root {
    --paper:    #f4efe3;
    --paper-2:  #ece3d1;
    --paper-3:  #e6dcc4;
    --ink:      #20201b;
    --ink-2:    #494539;
    --ink-3:    #837c6b;
    --spot:     #bf3a2b;   /* razitkova cervena */
    --spot-2:   #8d271c;
    --line:     #20201b;
    --hair:     rgba(32,32,27,.22);
    --hair-2:   rgba(32,32,27,.12);

    --font-display: "Libre Caslon Display", "Times New Roman", Georgia, serif;
    --font-head:    "Libre Caslon Text", "Times New Roman", Georgia, serif;
    --font-body:    "Newsreader", Georgia, "Times New Roman", serif;
    --font-mono:    "IBM Plex Mono", "Courier New", ui-monospace, monospace;

    --wrap: 1180px;
    --shadow: 6px 6px 0 var(--ink);
    --shadow-spot: 6px 6px 0 var(--spot);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.075rem;
    line-height: 1.62;
    color: var(--ink);
    background-color: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

/* jemne zrno papiru pres celou plochu */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--spot); transition: color .15s; }
a:hover { color: var(--spot); }

::selection { background: var(--spot); color: var(--paper); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: var(--paper-2); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }

.center { text-align: center; }
.mt-s { margin-top: 10px; }
.mt-m { margin-top: 22px; }
.mt-l { margin-top: 44px; }
.muted { color: var(--ink-3); }

/* delice */
.rule { border: 0; border-top: 1.5px solid var(--ink); }
.rule--double { height: 6px; border: 0; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }

/* dvojity ramecek "tiskove desky" */
.framed { position: relative; border: 1.6px solid var(--ink); background: var(--paper); }
.framed::after {
    content: ""; position: absolute; inset: 5px; border: 1px solid var(--hair);
    pointer-events: none;
}

/* ---------- Typografie ---------- */
.h-display {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.01em;
    font-size: clamp(2.6rem, 6.4vw, 5.1rem);
}
.h-section {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; }
h3 { font-size: 1.24rem; }
h4 { font-size: 1.06rem; }

p { max-width: 64ch; }
.lead {
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 60ch;
}

strong, b { font-weight: 600; }
em, i { font-style: italic; }

/* monospace popisek / kicker */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--spot);
}
.eyebrow::before { content: "\25A0"; font-size: .62em; color: var(--spot); }
.eyebrow--ink { color: var(--ink); }
.eyebrow--ink::before { color: var(--ink); }

.kicker {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }

/* ---------- Masthead / navigace ---------- */
.topline {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.topline__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 7px 0; flex-wrap: wrap; }
.topline a { color: var(--paper); text-decoration: none; }
.topline a:hover { color: var(--paper); text-decoration: underline; text-decoration-color: var(--spot); }
.topline .sep { color: var(--ink-3); }

.masthead { background: var(--paper); border-bottom: 1.6px solid var(--ink); position: sticky; top: 0; z-index: 50; transition: box-shadow .2s; }
.masthead.is-scrolled { box-shadow: 0 4px 0 -2px var(--hair), 0 2px 14px rgba(32,32,27,.08); }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__rings { flex: 0 0 auto; }
.brand__name { font-family: var(--font-display); font-size: 1.62rem; letter-spacing: .01em; line-height: 1; }
.brand__name small { font-family: var(--font-mono); font-size: .56em; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; display: block; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 0; }
.nav__links a {
    font-family: var(--font-mono);
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-2);
    padding: 8px 15px;
    border-left: 1px solid var(--hair-2);
    transition: color .15s, background .15s;
}
.nav__links a:first-child { border-left: 0; }
.nav__links a:hover { color: var(--ink); background: var(--paper-2); }
.nav__links a.is-active { color: var(--spot); }

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

/* prepinac meny */
.cur-switch { display: inline-flex; border: 1.4px solid var(--ink); font-family: var(--font-mono); }
.cur-switch button {
    padding: 7px 11px; font-size: .74rem; font-weight: 600; letter-spacing: .08em;
    color: var(--ink-2); border-left: 1.4px solid var(--ink); background: var(--paper);
}
.cur-switch button:first-child { border-left: 0; }
.cur-switch button.active { background: var(--ink); color: var(--paper); }

.nav__burger { display: none; width: 42px; height: 38px; border: 1.4px solid var(--ink); }
.nav__burger span { display: block; width: 18px; height: 1.8px; background: var(--ink); margin: 3px auto; transition: .2s; }

.mobile-menu { display: none; }

/* ---------- Tlacitka ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-mono);
    font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none;
    padding: .85em 1.55em;
    border: 1.6px solid var(--ink);
    background: var(--paper); color: var(--ink);
    box-shadow: 0 0 0 transparent;
    transition: transform .12s ease, box-shadow .12s ease, background .15s, color .15s;
    white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); color: var(--ink); }
.btn:active { transform: translate(0, 0); box-shadow: 0 0 0 transparent; }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { color: var(--paper); box-shadow: var(--shadow-spot); }
.btn--spot { background: var(--spot); color: var(--paper); border-color: var(--spot); }
.btn--spot:hover { color: var(--paper); box-shadow: var(--shadow); }
.btn--lg { padding: 1.02em 1.9em; font-size: .88rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row.center { justify-content: center; }

.btn__arrow { font-family: var(--font-mono); font-weight: 700; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero__copy { max-width: 36ch; }
.hero h1 { margin: 18px 0; }
.hero .lead { margin-bottom: 30px; }
.hero__note { margin-top: 26px; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: var(--ink-3); text-transform: uppercase; }
.hero__note b { color: var(--spot); font-weight: 600; }

.text-spot { color: var(--spot); }
.underglow { text-decoration: underline; text-decoration-color: var(--spot); text-decoration-thickness: 3px; text-underline-offset: 6px; }

/* hero "cenikovy listek" se zakladkovou (krouzkovou) vazbou */
.spec-card { position: relative; background: var(--paper); border: 1.6px solid var(--ink); box-shadow: var(--shadow); }
.spec-card__head {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--ink); color: var(--paper);
    font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
    padding: 9px 16px 9px 50px;
}
.spec-card__body { padding: 20px 22px 24px 50px; position: relative; }
/* krouzkova vazba - punc podel leveho okraje */
.spec-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 34px;
    border-right: 1.4px solid var(--ink);
    background-image: radial-gradient(circle at 17px 18px, transparent 0 5px, var(--ink) 5px 6.6px, transparent 6.6px);
    background-size: 34px 52px; background-repeat: repeat-y; background-position: 0 16px;
    pointer-events: none;
}
.spec-card__head { position: relative; z-index: 1; }

.specrow { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-mono); font-size: .9rem; padding: 9px 0; border-bottom: 1px solid var(--hair-2); }
.specrow:last-of-type { border-bottom: 0; }
.specrow__k { color: var(--ink-2); white-space: nowrap; }
.specrow__dots { flex: 1; border-bottom: 1.5px dotted var(--hair); transform: translateY(-4px); }
.specrow__v { color: var(--ink); font-weight: 600; white-space: nowrap; }
.specrow__v .text-spot { font-weight: 600; }

/* razitko */
.stamp {
    display: inline-block;
    font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--spot);
    border: 2px solid var(--spot);
    padding: 7px 12px;
    transform: rotate(-6deg);
    box-shadow: inset 0 0 0 2px var(--paper), inset 0 0 0 3px var(--spot);
    background: var(--paper);
    line-height: 1.15; text-align: center;
}
.spec-card__stamp { position: absolute; right: 18px; bottom: -18px; z-index: 2; }

/* ---------- Technicky pruh ---------- */
.specbar { background: var(--ink); color: var(--paper); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.specbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.specbar__item { padding: 13px 20px; border-left: 1px solid rgba(244,239,227,.16); color: var(--paper); }
.specbar__item:first-child { border-left: 0; }
.specbar__item b { color: var(--spot); font-weight: 600; }

/* ---------- Statistiky (radkova sazba) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1.6px solid var(--ink); background: var(--paper); }
.stat { padding: 26px 22px; border-left: 1px solid var(--hair); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.stat b .u { font-family: var(--font-mono); font-size: .42em; vertical-align: super; color: var(--spot); }
.stat span { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Mrizky a karty ---------- */
.grid { display: grid; gap: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
/* spojena katalogova mrizka s vlasovymi delici */
.grid--ledger { border: 1.6px solid var(--ink); background: var(--paper); }
.grid--ledger > * { border-left: 1px solid var(--hair); border-top: 1px solid var(--hair); }
.grid--ledger.grid-3 > *:nth-child(-n+3) { border-top: 0; }
.grid--ledger.grid-2 > *:nth-child(-n+2) { border-top: 0; }
.grid--ledger.grid-4 > *:nth-child(-n+4) { border-top: 0; }
.grid--ledger.grid-3 > *:nth-child(3n+1) { border-left: 0; }
.grid--ledger.grid-2 > *:nth-child(2n+1) { border-left: 0; }
.grid--ledger.grid-4 > *:nth-child(4n+1) { border-left: 0; }

.card { padding: 28px 26px; background: var(--paper); position: relative; transition: background .15s; }
.card:hover { background: var(--paper-2); }
.card h3 { margin-bottom: 8px; }
.card h4 { margin-bottom: 6px; }
.card p { color: var(--ink-2); }
.card__num { font-family: var(--font-mono); font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--spot); display: block; margin-bottom: 14px; }
.card__num::before { content: "\00B6\00A0"; color: var(--ink-3); }
.card--mark::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--spot); }

/* samostatna karta s ramem (mimo ledger) */
.card--framed { border: 1.6px solid var(--ink); }
.card--framed:hover { box-shadow: var(--shadow); transform: translate(-2px,-2px); transition: transform .12s, box-shadow .12s, background .15s; }

/* ---------- Cenik ---------- */
.pricelist-cap { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.pricelist-cap__t { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.pricelist-cap__n { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

.pricing { display: grid; grid-template-columns: repeat(4, 1fr); border: 1.6px solid var(--ink); background: var(--paper); }
.price-card { position: relative; padding: 26px 22px 28px; border-left: 1px solid var(--hair); display: flex; flex-direction: column; }
.price-card:first-child { border-left: 0; }
.price-card.is-popular { background: var(--paper-3); }
.price-card__flag {
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--spot); color: var(--paper);
    font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    text-align: center; padding: 5px 4px;
}
.price-card.is-popular { padding-top: 46px; }
.price-card__code { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; }
.price-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; margin: 2px 0 16px; }
.price-card__price { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-mono); }
.price-card__amount { font-size: 2.5rem; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.price-card__cur { font-size: 1.05rem; font-weight: 600; }
.price-card__period { font-size: .78rem; color: var(--ink-3); letter-spacing: .02em; }
.price-card__perm { font-family: var(--font-mono); font-size: .76rem; color: var(--ink-2); margin-top: 9px; }
.price-card__perm .muted { color: var(--ink-3); }
.price-card .checklist { margin: 18px 0 22px; }
.price-card .btn { margin-top: auto; }

/* ---------- Seznamy ---------- */
.checklist { list-style: none; }
.checklist li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-2); }
.checklist li::before {
    content: "\2713"; position: absolute; left: 0; top: 0;
    font-family: var(--font-mono); font-weight: 700; color: var(--spot);
}
.speclist { list-style: none; }
.speclist li { position: relative; padding-left: 20px; margin-bottom: 7px; font-family: var(--font-mono); font-size: .86rem; color: var(--ink-2); }
.speclist li::before { content: "\2014"; position: absolute; left: 0; color: var(--ink-3); }

/* ---------- Split + panel ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.panel { border: 1.6px solid var(--ink); background: var(--paper); padding: clamp(24px, 3vw, 34px); }
.panel--alt { background: var(--paper); }
.panel h3 { margin-bottom: 14px; }

/* radek udaju (faktur. udaje, kontakt) */
.dl { list-style: none; }
.dl li { padding: 11px 0; border-bottom: 1px solid var(--hair-2); }
.dl li:last-child { border-bottom: 0; }
.dl .k { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 3px; }
.dl .v { color: var(--ink); }

/* ---------- Breadcrumb + page hero ---------- */
.page-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(20px, 3vw, 34px); border-bottom: 1.5px solid var(--ink); }
.breadcrumb { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.breadcrumb a { text-decoration: none; color: var(--ink-2); }
.breadcrumb a:hover { color: var(--spot); }
.breadcrumb .sep { margin: 0 8px; color: var(--ink-3); }

/* ---------- FAQ (ucetni kniha) ---------- */
.faq { max-width: 880px; }
.faq__cat { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--spot); margin: 40px 0 4px; }
.faq__item { border-top: 1.2px solid var(--ink); }
.faq__item:last-child { border-bottom: 1.2px solid var(--ink); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; text-align: left; padding: 20px 4px; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.faq__q:hover { color: var(--spot); }
.faq__sign { font-family: var(--font-mono); font-weight: 600; font-size: 1.4rem; color: var(--spot); flex: 0 0 auto; line-height: 1; }
.faq__item.open .faq__sign { color: var(--ink); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a > div { padding: 0 4px 22px; color: var(--ink-2); max-width: 70ch; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.contact-card:first-child { padding-top: 0; }
.contact-card__tag { font-family: var(--font-mono); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--paper); background: var(--ink); padding: 4px 8px; height: fit-content; white-space: nowrap; }
.contact-card h4 { margin-bottom: 3px; }
.contact-card p { color: var(--ink-2); font-size: .96rem; }
.contact-card a { font-family: var(--font-mono); font-size: .92rem; }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
.field .req { color: var(--spot); }
.input, .select, .textarea {
    width: 100%; font-family: var(--font-mono); font-size: .92rem; color: var(--ink);
    background: var(--paper); border: 1.4px solid var(--ink); padding: 11px 13px;
    transition: box-shadow .12s, border-color .12s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; box-shadow: 3px 3px 0 var(--spot); }
.textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field small { display: block; margin-top: 5px; font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); }
.form-foot { margin-top: 8px; }
.note { font-size: .85rem; color: var(--ink-3); margin: 12px 0 16px; max-width: none; }
.form-msg { font-family: var(--font-mono); font-size: .85rem; padding: 0; margin-bottom: 10px; }
.form-msg.ok { color: var(--spot-2); border-left: 3px solid var(--spot); padding: 10px 14px; background: var(--paper-2); }
.form-msg.err { color: var(--spot-2); border-left: 3px solid var(--spot); padding: 10px 14px; background: var(--paper-2); }

/* ---------- CTA banner ---------- */
.cta-banner { border: 1.6px solid var(--ink); background: var(--ink); color: var(--paper); padding: clamp(34px, 5vw, 60px); text-align: center; position: relative; box-shadow: var(--shadow-spot); }
.cta-banner h2 { color: var(--paper); }
.cta-banner .lead { color: var(--paper-2); margin-inline: auto; }
.cta-banner .eyebrow { color: var(--spot); }
.cta-banner .btn--ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.cta-banner .btn--ghost:hover { background: var(--paper); color: var(--ink); box-shadow: 6px 6px 0 var(--spot); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: 24px; background: rgba(32,32,27,.55); overflow-y: auto; }
.modal.open { display: flex; }
.modal__box { width: 100%; max-width: 880px; background: var(--paper); border: 1.6px solid var(--ink); box-shadow: var(--shadow); margin: 28px 0; }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 22px 26px; border-bottom: 1.5px solid var(--ink); background: var(--paper-2); }
.modal__head h2 { font-family: var(--font-head); font-size: 1.4rem; }
.modal__head p { font-size: .92rem; color: var(--ink-2); margin-top: 4px; }
.modal__close { font-family: var(--font-mono); font-size: 1.6rem; line-height: 1; width: 40px; height: 40px; border: 1.4px solid var(--ink); flex: 0 0 auto; }
.modal__close:hover { background: var(--ink); color: var(--paper); }
.modal__body { padding: 26px; }
.order-summary { border: 1.4px solid var(--ink); background: var(--paper-2); padding: 18px 20px; margin-bottom: 24px; }
.order-summary .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-family: var(--font-mono); }
.order-summary .price-out { font-size: 1.5rem; font-weight: 600; }
.order-summary .checklist li { font-size: .86rem; }
.modal__body h4 { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }

/* ---------- Paticka / tiraz ---------- */
.colophon { background: var(--paper); border-top: 1.6px solid var(--ink); padding: clamp(44px, 5vw, 64px) 0 0; }
.colophon__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 32px; }
.colophon h4 { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.colophon ul { list-style: none; }
.colophon li { margin-bottom: 9px; }
.colophon a { text-decoration: none; color: var(--ink-2); font-size: .96rem; }
.colophon a:hover { color: var(--spot); text-decoration: underline; }
.colophon__brand .brand { margin-bottom: 14px; }
.colophon__brand p { color: var(--ink-2); font-size: .96rem; max-width: 38ch; }
.colophon__tag { font-family: var(--font-mono); font-size: .74rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.colophon__legal { margin-top: clamp(36px, 4vw, 52px); border-top: 1.5px solid var(--ink); padding: 18px 0 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: .73rem; letter-spacing: .03em; color: var(--ink-3); text-transform: uppercase; }
.colophon__legal a { color: var(--ink-3); text-decoration: none; }
.colophon__legal a:hover { color: var(--spot); }

/* ---------- Pravni text ---------- */
.legal { max-width: 800px; }
.legal h2 { font-family: var(--font-head); font-size: 1.5rem; margin: 38px 0 12px; padding-top: 16px; border-top: 1.5px solid var(--ink); }
.legal h3 { font-family: var(--font-mono); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; color: var(--spot); margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal p { margin-bottom: 12px; }
.legal ul { list-style: none; margin: 12px 0; }
.legal ul li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal ul li::before { content: "\2014"; position: absolute; left: 0; color: var(--ink-3); }
.legal .toc { border: 1.6px solid var(--ink); background: var(--paper-2); padding: 22px 26px; }
.legal .toc strong { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.legal .toc ul { list-style: none; padding: 0; margin-top: 12px; }
.legal .toc li { padding-left: 0; margin-bottom: 7px; }
.legal .toc li::before { content: none; }
.legal .toc a { font-family: var(--font-mono); font-size: .86rem; color: var(--ink-2); text-decoration: none; }
.legal .toc a:hover { color: var(--spot); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- 404 ---------- */
.err-big { font-family: var(--font-display); font-size: clamp(5rem, 20vw, 12rem); line-height: .9; color: var(--ink); }
.err-big .text-spot { color: var(--spot); }

/* ---------- Responsivni ---------- */
@media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__copy { max-width: none; }
    .spec-card { max-width: 460px; }
    .colophon__grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .nav__links, .nav__right .cur-switch, .nav__cta { display: none; }
    .nav__burger { display: block; }
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
    .grid--ledger.grid-3 > *, .grid--ledger.grid-4 > * { border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); }
    .grid--ledger.grid-3 > *:nth-child(-n+2), .grid--ledger.grid-4 > *:nth-child(-n+2) { border-top: 0; }
    .grid--ledger.grid-3 > *:nth-child(odd), .grid--ledger.grid-4 > *:nth-child(odd) { border-left: 0; }
    .pricing { grid-template-columns: 1fr 1fr; }
    .price-card:nth-child(odd) { border-left: 0; }
    .price-card:nth-child(n+3) { border-top: 1px solid var(--hair); }
    .stats { grid-template-columns: 1fr 1fr; }
    .stat:nth-child(odd) { border-left: 0; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--hair); }
    .mobile-menu { display: none; position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 120; background: var(--paper); border-left: 1.6px solid var(--ink); padding: 84px 28px 28px; flex-direction: column; gap: 4px; box-shadow: -8px 0 0 -4px var(--hair); }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: var(--font-mono); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; color: var(--ink-2); padding: 13px 4px; border-bottom: 1px solid var(--hair-2); }
    .mobile-menu a.is-active { color: var(--spot); }
    .mobile-menu .btn { margin-top: 18px; }
    .nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .nav__burger.is-open span:nth-child(2) { opacity: 0; }
    .nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}
@media (max-width: 620px) {
    .form-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid--ledger.grid-3 > *, .grid--ledger.grid-4 > * { border-left: 0; }
    .grid--ledger.grid-3 > *:nth-child(n+2), .grid--ledger.grid-4 > *:nth-child(n+2) { border-top: 1px solid var(--hair); }
    .pricing { grid-template-columns: 1fr; }
    .price-card { border-left: 0; }
    .price-card:nth-child(n+2) { border-top: 1px solid var(--hair); }
    .stats { grid-template-columns: 1fr; }
    .stat { border-left: 0; }
    .stat:nth-child(n+2) { border-top: 1px solid var(--hair); }
    .topline__inner { justify-content: center; }
    .topline .hide-sm { display: none; }
    .colophon__grid { grid-template-columns: 1fr; gap: 26px; }
}
