/* ─────────────────────────────────────────────────────────────
   KLIMATIZACE ČERNÝ — sdílené styly (statická verze)
───────────────────────────────────────────────────────────── */
:root {
  --bg:         oklch(0.18 0.04 255);
  --bg-elev:    oklch(0.22 0.05 255);
  --bg-elev-2:  oklch(0.26 0.055 255);
  --fg:         oklch(0.96 0.012 80);
  --fg-muted:   oklch(0.78 0.02 80);
  --fg-dim:     oklch(0.55 0.02 255);
  --line:       oklch(0.32 0.04 255);
  --line-dim:   oklch(0.26 0.04 255);
  --accent:     oklch(0.82 0.14 85);
  --accent-hi:  oklch(0.92 0.08 85);
  --accent-fg:  oklch(0.18 0.04 255);
  --font-sans:  "Space Grotesk", -apple-system, system-ui, sans-serif;
  --font-mono:  "Space Mono", ui-monospace, monospace;
  --font-display: "Space Grotesk", -apple-system, system-ui, sans-serif;
  --maxw: 1400px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}
::selection { background: oklch(0.82 0.14 85 / 0.3); }
a { color: inherit; }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* ── Typografie ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.04em; }
.h1 { font-size: clamp(52px, 8vw, 120px); line-height: 0.92; }
.h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.0; }

.label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-muted);
}
.label .idx { color: var(--accent); }
.label .dash { width: 28px; height: 1px; background: var(--line); display: inline-block; }

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

/* ── Tlačítka / CTA ── */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--accent); background: var(--accent); color: var(--accent-fg);
  cursor: pointer; transition: all 0.2s ease;
}
.cta:hover { background: var(--accent-hi); border-color: var(--accent-hi); }
.cta.ghost { background: transparent; border-color: var(--line); color: var(--fg); }
.cta.ghost:hover { border-color: var(--fg); opacity: 0.85; background: transparent; }
.cta.sm { padding: 10px 16px; font-size: 12px; }
.cta.lg { padding: 18px 28px; font-size: 14px; }
.cta .arr { transition: transform 0.2s; }
.cta:hover .arr { transform: translateX(3px); }

/* ── Navigace ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: oklch(0.18 0.04 255 / 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px; height: 65px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.9; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--fg-muted); text-decoration: none;
  font-size: 13px; font-weight: 500; padding: 10px 16px;
  position: relative; transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 1px; background: var(--accent);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); text-decoration: none; letter-spacing: 0.04em; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; color: var(--fg); padding: 8px; }

#mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0; z-index: 99;
  background: var(--bg-elev); border-bottom: 1px solid var(--line); padding: 20px 24px 28px;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block; padding: 16px 0; font-size: 18px; font-weight: 600;
  color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--line-dim);
  letter-spacing: -0.04em;
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu .mob-cta {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; background: var(--accent); color: var(--accent-fg);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
}

/* ── Ikony ── */
.ico { display: inline-block; vertical-align: middle; }

/* ── Sekce ── */
section[id] { scroll-margin-top: 80px; }
.sec { padding: 120px 40px; }
.sec-sm { padding: 60px 40px; }

/* ── Hero ── */
.hero { position: relative; min-height: 92vh; overflow: hidden; display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-bg .grad1 { position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.18 0.04 255 / 0.6) 0%, oklch(0.18 0.04 255 / 0.25) 40%, oklch(0.18 0.04 255 / 0.92) 100%); }
.hero-bg .grad2 { position: absolute; inset: 0; background: linear-gradient(90deg, oklch(0.18 0.04 255 / 0.78) 0%, transparent 60%); }
.hero-top {
  position: relative; z-index: 2; padding: 108px 40px 0; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-mid {
  position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 40px 40px 60px; max-width: var(--maxw); margin: 0 auto; width: 100%;
}
.hero-kicker {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 32px; display: flex; align-items: center; gap: 14px;
}
.hero-kicker .dash { width: 36px; height: 1px; background: var(--accent); display: inline-block; }
.hero h1 { font-size: clamp(52px, 8vw, 128px); line-height: 0.92; color: var(--fg); margin: 0 0 48px; max-width: 14ch; }
.hero h1 .accent { color: var(--accent); }
.hero-lead { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero-lead p { font-size: 18px; line-height: 1.55; color: var(--fg-muted); max-width: 460px; margin: 0; }
.hero-stats {
  position: relative; z-index: 2; border-top: 1px solid var(--line);
  background: oklch(0.18 0.04 255 / 0.72); backdrop-filter: blur(8px);
}
.hero-stats .grid { max-width: var(--maxw); margin: 0 auto; padding: 32px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 4.5vw, 60px); line-height: 0.95; letter-spacing: -0.04em; color: var(--fg); display: flex; align-items: baseline; gap: 4px; }
.stat .num .suf { font-size: 0.45em; color: var(--accent); font-weight: 500; }
.stat .lab { margin-top: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }

/* ── Mřížky karet ── */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 32px; }
.section-head h2 { margin-top: 28px; color: var(--fg); }

/* Služby (3 karty) */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border-top: 1px solid var(--line); }
.svc-card { padding: 44px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 420px; transition: background 0.3s; }
.svc-card:first-child { border-left: 1px solid var(--line); }
.svc-card:hover { background: var(--bg-elev); }
.svc-card .top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 80px; }
.svc-card .top .n { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.14em; }
.svc-card h3 { font-size: 30px; line-height: 1.05; color: var(--fg); margin: 0 0 18px; }
.svc-card p { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 28px; }
.svc-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-card li { display: flex; gap: 12px; align-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--fg); letter-spacing: 0.02em; }
.svc-card li .plus { color: var(--accent); }

/* Produktové řádky */
.prod-list { border-top: 1px solid var(--line); }
.prod-row {
  width: 100%; text-align: left; display: grid;
  grid-template-columns: clamp(50px,6vw,80px) 1fr auto auto 40px;
  align-items: center; gap: clamp(16px,3vw,40px);
  border-bottom: 1px solid var(--line); padding: 28px 12px;
  color: var(--fg); text-decoration: none; transition: background 0.2s;
}
.prod-row:hover { background: var(--bg-elev); }
.prod-row .n { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.12em; }
.prod-row .name { font-family: var(--font-display); font-size: clamp(18px,2.2vw,28px); letter-spacing: -0.04em; font-weight: 700; }
.prod-row .spec { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: 0.08em; }
.prod-row .tag { font-size: 10px; padding: 6px 10px; border: 1px solid var(--line); color: var(--fg-muted); font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; }
.prod-row .arr { display: inline-flex; justify-content: flex-end; color: var(--fg-dim); transition: all 0.2s; }
.prod-row:hover .arr { color: var(--accent); transform: translateX(4px); }

/* Značky */
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-card { padding: 40px 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; transition: background 0.2s; }
.brand-card:hover { background: var(--bg-elev); }
.brand-card .bc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.brand-card .bc-logo { height: 44px; display: flex; align-items: center; }
.brand-card .bc-logo img { max-height: 38px; max-width: 160px; object-fit: contain; }
.brand-logo-midea { filter: brightness(0) saturate(100%) invert(42%) sepia(86%) saturate(1200%) hue-rotate(175deg) brightness(108%); }
.brand-card .warr { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); text-align: right; white-space: nowrap; padding-top: 6px; }
.brand-card .warr .t { color: var(--fg-dim); margin-bottom: 4px; }
.brand-card .warr .v { color: var(--fg); font-size: 13px; }
.brand-card .warr .v.hl { color: var(--accent); }
.brand-card p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); margin: 0; flex: 1; }
.brand-card .links { display: flex; flex-wrap: wrap; border-top: 1px solid var(--line-dim); padding-top: 18px; }
.brand-card .links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); text-decoration: none; padding: 8px 16px 8px 0; margin-right: 16px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid transparent; transition: all 0.2s; }
.brand-card .links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.brands-note { margin-top: 48px; padding: 44px 48px; border: 1px solid var(--line); background: var(--bg-elev); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.brands-note h3 { font-size: clamp(20px, 2vw, 28px); line-height: 1.2; color: var(--fg); margin: 0; max-width: 640px; }
.brands-note .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 14px; }

/* Proč my */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 80px; align-items: center; }
.why-grid h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; color: var(--fg); margin: 28px 0 36px; }
.why-grid .lead { font-size: 17px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 40px; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-feats > div { padding: 20px 0; }
.why-feats > div:nth-child(1), .why-feats > div:nth-child(2) { border-bottom: 1px solid var(--line); }
.why-feats > div:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 20px; }
.why-feats > div:nth-child(even) { padding-left: 20px; }
.why-feats .t { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 6px; }
.why-feats .d { font-size: 13px; color: var(--fg-muted); }
.why-portrait { aspect-ratio: 4/5; position: relative; overflow: hidden; border: 1px solid var(--line); }
.why-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.why-portrait .ov { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.18 0.04 255 / 0.45) 0%, transparent 50%); }
.why-portrait .cap { position: absolute; bottom: 24px; left: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg); opacity: 0.85; }

/* Postup */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); border-top: 1px solid var(--line); }
.step { border-right: 1px solid var(--line); padding: 32px 24px 60px; }
.step:last-child { border-right: 0; }
.step .n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 40px; }
.step h3 { font-size: 20px; color: var(--fg); margin: 0 0 14px; }
.step p { font-size: 14px; line-height: 1.5; color: var(--fg-muted); margin: 0; }

/* Reference / testimonials */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border-top: 1px solid var(--line); }
.tst { padding: 40px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tst:first-child { border-left: 1px solid var(--line); }
.tst .q { font-family: var(--font-display); font-size: 20px; line-height: 1.4; letter-spacing: -0.02em; color: var(--fg); margin: 0 0 32px; }
.tst .q .qm { color: var(--accent); }
.tst .a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }
.tst .s { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); }

/* Finální CTA */
.final { padding: 80px 40px 120px; max-width: var(--maxw); margin: 0 auto; }
.final-box { border: 1px solid var(--line); padding: clamp(40px,6vw,80px) clamp(24px,5vw,60px); position: relative; overflow: hidden; background: var(--bg-elev); }
.final-box h2 { color: var(--fg); margin: 28px 0 24px; }
.final-box p { font-size: 17px; line-height: 1.5; color: var(--fg-muted); margin: 0 0 40px; max-width: 680px; }
.final-box .row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.final-box .tel { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 14px; color: var(--fg); text-decoration: none; padding: 18px 0; }

/* Patička */
footer { border-top: 1px solid var(--line); padding: 80px 40px 40px; color: var(--fg); }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 60px; margin-bottom: 80px; }
.foot-grid img { height: 38px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 28px; }
.foot-grid .blurb { font-size: 14px; line-height: 1.6; color: var(--fg-muted); max-width: 300px; margin-bottom: 28px; }
.foot-grid .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 18px; }
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-grid li, .foot-grid li a { font-size: 14px; color: var(--fg-muted); text-decoration: none; }
.foot-grid li a.mono, .foot-grid li.mono { font-family: var(--font-mono); font-size: 13px; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 32px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); letter-spacing: 0.04em; }

/* Sticky telefon */
.sticky-phone {
  position: fixed; bottom: 28px; right: 28px; z-index: 90; display: none;
  align-items: center; gap: 10px; padding: 14px 22px;
  background: var(--accent); color: var(--accent-fg);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-decoration: none;
  box-shadow: 0 8px 32px oklch(0.82 0.14 85 / 0.4); transition: transform 0.2s, box-shadow 0.2s;
}
.sticky-phone.show { display: inline-flex; }
.sticky-phone:hover { transform: translateY(-2px); box-shadow: 0 12px 40px oklch(0.82 0.14 85 / 0.5); }

/* Vnitřní stránky – hlavička */
.page-top { padding-top: 65px; }
.page-hero { padding: 60px 40px 80px; max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 { font-size: clamp(52px, 8vw, 120px); line-height: 0.92; color: var(--fg); margin: 28px 0 0; max-width: 14ch; }

/* Služby – detailní řádky */
.svc-rows { padding: 0 40px 80px; max-width: var(--maxw); margin: 0 auto; }
.svc-row { display: grid; grid-template-columns: clamp(80px,8vw,120px) 1fr 1.2fr; gap: clamp(20px,4vw,60px); padding: 60px 0; border-top: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row .n { font-family: var(--font-mono); font-size: 14px; color: var(--accent); letter-spacing: 0.12em; }
.svc-row h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1.05; color: var(--fg); margin: 0 0 20px; }
.svc-row p { font-size: 16px; line-height: 1.6; color: var(--fg-muted); margin: 0; }
.svc-row ul { list-style: none; }
.svc-row li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-dim); font-size: 15px; color: var(--fg); }
.svc-row li:last-child { border-bottom: 0; }
.svc-row li .ln { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.08em; min-width: 28px; padding-top: 2px; }

/* Reference – fotokarty */
.ref-head { padding: 60px 40px 56px; max-width: var(--maxw); margin: 0 auto; }
.ref-head .row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 32px; margin-top: 28px; }
.ref-head h1 { font-size: clamp(52px, 8vw, 108px); line-height: 0.92; color: var(--fg); margin: 0; max-width: 12ch; }
.ref-head .meta { font-family: var(--font-mono); font-size: 13px; color: var(--fg-muted); letter-spacing: 0.08em; text-align: right; padding-bottom: 8px; }
.ref-grid-wrap { padding: 0 40px 120px; max-width: var(--maxw); margin: 0 auto; }
.ref-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line); }
.ref-card { display: flex; flex-direction: column; border-top: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background 0.25s; }
.ref-card:hover { background: var(--bg-elev); }
.ref-photo { position: relative; overflow: hidden; flex-shrink: 0; height: 420px; }
.ref-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.ref-card:hover .ref-photo img { transform: scale(1.03); }
.ref-photo .badge { position: absolute; top: 14px; right: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); background: oklch(0.18 0.04 255 / 0.78); backdrop-filter: blur(6px); padding: 5px 10px; border: 1px solid var(--line); }
.ref-meta { padding: 24px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ref-meta .n { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.14em; }
.ref-meta h3 { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.1; color: var(--fg); margin: 0; }
.ref-meta p { font-size: 13px; line-height: 1.6; color: var(--fg-muted); margin: 0; flex: 1; }
.ref-meta .tech { font-family: var(--font-mono); font-size: 11px; color: var(--fg); letter-spacing: 0.06em; padding-top: 14px; border-top: 1px solid var(--line-dim); }
.ref-meta .tech .dim { color: var(--fg-dim); }

/* Kontakt */
.kont-info { padding: 0 40px 60px; max-width: var(--maxw); margin: 0 auto; }
.kont-info .grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kont-info a { padding: clamp(32px,5vw,60px) clamp(20px,4vw,40px); text-decoration: none; color: var(--fg); display: block; }
.kont-info a:nth-child(-n+2) { border-right: 1px solid var(--line); }
.kont-info .ic { color: var(--accent); margin-bottom: 24px; }
.kont-info .lab { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.kont-info .val { font-family: var(--font-display); font-size: clamp(16px,2vw,22px); letter-spacing: -0.02em; line-height: 1.3; white-space: pre-line; }
.kont-info .sub { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); margin-top: 10px; letter-spacing: 0.04em; }
.kont-form-wrap { padding: 0 40px 80px; max-width: var(--maxw); margin: 0 auto; }
.kont-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); border: 1px solid var(--line); }
.kont-col { padding: clamp(32px,4vw,56px) clamp(24px,4vw,48px); }
.kont-col:first-child { border-right: 1px solid var(--line); }
.kont-col h2 { font-size: clamp(24px,3vw,40px); line-height: 1.05; color: var(--fg); margin: 24px 0 14px; }
.kont-col p { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 36px; }
.kont-col.hours { background: var(--bg-elev); display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line-dim); font-family: var(--font-mono); font-size: 13px; }
.hours-row .d { color: var(--fg-muted); }
.hours-row .t { color: var(--fg); }
.kont-map { padding: 0 40px 80px; max-width: var(--maxw); margin: 0 auto; }
.kont-map .box { position: relative; border: 1px solid var(--line); aspect-ratio: 21/9; overflow: hidden; background: var(--bg-elev); min-height: 280px; }
.kont-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.85) contrast(0.9); display: block; }
.kont-map .pin { position: absolute; left: 24px; top: 24px; z-index: 1; padding: 20px 24px; background: var(--bg); border: 1px solid var(--line); font-family: var(--font-mono); font-size: 13px; color: var(--fg); letter-spacing: 0.02em; }
.kont-map .pin .k { font-size: 10px; letter-spacing: 0.16em; color: var(--fg-muted); margin-bottom: 8px; }

/* Formulář */
form.cf { display: grid; gap: 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 10px; }
.cf input, .cf textarea, .cf select {
  width: 100%; padding: 13px 14px; font-size: 14px; font-family: var(--font-sans);
  background: var(--bg); border: 1px solid var(--line); color: var(--fg); outline: none; transition: border-color 0.15s;
}
.cf input:focus, .cf textarea:focus, .cf select:focus { border-color: var(--accent); }
.cf textarea { resize: vertical; min-height: 120px; }
.cf-submit { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.cf-submit button {
  padding: 16px 28px; background: var(--accent); color: var(--accent-fg); border: 0;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: opacity 0.15s;
}
.cf-submit button:hover { opacity: 0.85; }
.cf-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-dim); }

/* ── Responsivita ── */
@media (max-width: 900px) {
  .hide-mob { display: none !important; }
  .nav-burger { display: block; }
  .sec { padding: 80px 24px; }
  .final { padding: 60px 24px 80px; }
  .why-grid { gap: 40px; }
  .kont-info .grid { grid-template-columns: 1fr; }
  .kont-info a:nth-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .ref-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats .grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .brands-grid { grid-template-columns: 1fr; }
  .page-hero, .ref-head, .hero-top, .hero-mid { padding-left: 24px; padding-right: 24px; }
}
@media (min-width: 901px) { .hide-desk { display: none !important; } }
