/* =========================================================
   Carveline — carveline.digital
   Rytina rodinných financí / carved precision finance UI
   ========================================================= */

:root {
  --bg: #0a0b0c;
  --stone: #101215;
  --stone-2: #15181d;
  --ledge: #1b1f25;
  --line: rgba(255, 255, 255, 0.075);
  --line-soft: rgba(255, 255, 255, 0.045);
  --line-strong: rgba(255, 255, 255, 0.16);
  --carve-dark: rgba(0, 0, 0, 0.75);
  --brass: #c0a06a;
  --brass-dim: #8b7346;
  --brass-glow: rgba(192, 160, 106, 0.16);
  --text: #d5d8dd;
  --text-strong: #eef0f3;
  --muted: #878d97;
  --danger: #cf6d5a;
  --ok: #7ea87c;

  --font-display: "Outfit", "Avenir Next", "Futura", "Century Gothic", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --gutter: 24px;
  --r: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  color-scheme: dark;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.72;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

/* Kamenná textura + rytá mřížka */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -12%, #1a1e24 0%, rgba(26, 30, 36, 0) 62%),
    radial-gradient(900px 620px at 6% 104%, #171a1f 0%, rgba(23, 26, 31, 0) 60%),
    linear-gradient(180deg, #0c0d0f 0%, #0a0b0c 60%, #08090a 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.017) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0 1px, transparent 1px 96px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

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

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--brass); color: #12140f; padding: 10px 18px; z-index: 200;
  font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.14;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.65rem); }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.35rem); font-weight: 400; letter-spacing: -0.005em; }
p { margin: 0 0 1.1em; }

.engraved {
  color: #c7cad0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.055), 0 -1px 1px rgba(0, 0, 0, 0.9);
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-dim));
  flex: none;
}
.lede { font-size: 1.06rem; color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: 0.86rem; line-height: 1.65; }
strong { color: var(--text-strong); font-weight: 600; }

/* Rytá dělící linka — signature prvek */
.rule {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 18%, var(--line-strong) 82%, transparent);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.85);
  margin: 0;
}
.rule::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--bg);
  border: 1px solid var(--brass-dim);
  box-shadow: 0 0 0 4px var(--bg);
}

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.83rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--r);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #1d2128, #131519);
  color: var(--text-strong);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 26px -20px #000;
}
.btn:hover { transform: translateY(-2px); border-color: var(--brass-dim); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 30px -20px #000; }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(180deg, #d3b078, #a9884f);
  color: #14150f;
  border-color: #d8b87f;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 16px 34px -22px rgba(192, 160, 106, 0.9);
}
.btn--primary:hover { background: linear-gradient(180deg, #dfbd85, #b3915a); }
.btn--ghost { background: transparent; }
.btn--wide { width: 100%; }

/* ---------- Hlavička ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 11, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(9, 10, 11, 0.94); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-strong);
  line-height: 1;
}
.brand-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--brass-dim);
  margin-top: 5px;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--text-strong); border-bottom-color: var(--brass-dim); }
.nav .btn { display: none; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text-strong);
  white-space: nowrap;
}
.header-phone:hover { color: var(--brass); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 12px; width: 20px; height: 1px;
  background: var(--text);
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -6px; left: 0; }
.nav-toggle span::after { top: 6px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 11vw, 132px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; filter: grayscale(0.5) contrast(1.05); }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #0a0b0c 8%, rgba(10, 11, 12, 0.82) 46%, rgba(10, 11, 12, 0.55) 100%),
              linear-gradient(0deg, #0a0b0c 2%, rgba(10, 11, 12, 0) 45%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
}
.fact-num {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 300;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.fact-label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* Vyrytá deska (hero karta) */
.plate {
  position: relative;
  background: linear-gradient(155deg, #171a1f 0%, #0e1013 100%);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.55), 0 40px 60px -46px #000;
}
.plate::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line-soft);
  border-radius: 1px;
  pointer-events: none;
}
.plate-title {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 6px;
}

/* Kalkulačka */
.calc-field { margin-top: 16px; }
.calc-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.input, .calc-field input, textarea, select {
  width: 100%;
  background: #0b0d10;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus, .calc-field input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brass-dim);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6), 0 0 0 3px var(--brass-glow);
}
.calc-out {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
}
.calc-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 7px 0; }
.calc-row span:first-child { font-size: 0.85rem; color: var(--muted); }
.calc-row b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.16rem;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
}
.calc-row.is-key b { color: var(--brass); font-size: 1.42rem; }
.bar { height: 4px; background: #090a0c; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; margin-top: 14px; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--brass-dim), var(--brass)); width: 0; transition: width 0.5s var(--ease); }

/* ---------- Sekce ---------- */
.section { padding: clamp(64px, 8.5vw, 108px) 0; }
.section--alt { background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0) 70%); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.is-center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  position: relative;
  background: linear-gradient(160deg, #14171c 0%, #0d0f12 100%);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px 32px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 50px -46px #000;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(192, 160, 106, 0.35); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 40px 60px -46px #000; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 0.94rem; }
.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  margin-bottom: 22px;
  background: #0c0e11;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.card-icon svg { stroke: var(--brass); }
.card-list { list-style: none; margin: 18px 0 0; padding: 0; }
.card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.card-list li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 9px; height: 1px; background: var(--brass-dim);
}

/* Postup */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.6);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-no {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 200;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass-dim);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; max-width: 62ch; }

/* Split sekce */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 68px); align-items: center; }
.split-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 50px 70px -60px #000;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.04) brightness(0.86); }
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(192, 160, 106, 0.07), rgba(10, 11, 12, 0.5));
  pointer-events: none;
}
.split-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.92), rgba(8, 9, 10, 0));
  z-index: 1;
}

/* ---------- Ceník ---------- */
.billing-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #0c0e11;
  margin: 0 auto 44px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
}
.billing-switch button {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 11px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.billing-switch button[aria-pressed="true"] {
  color: #14150f;
  background: linear-gradient(180deg, #d3b078, #ab8a51);
  font-weight: 600;
}
.switch-wrap { display: flex; justify-content: center; }

.price-card { display: flex; flex-direction: column; padding: 34px 30px 34px; }
.price-card.is-featured { border-color: rgba(192, 160, 106, 0.42); background: linear-gradient(160deg, #191c22 0%, #0e1013 100%); }
.price-tag {
  position: absolute; top: -1px; right: 22px;
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #14150f;
  background: linear-gradient(180deg, #d3b078, #ab8a51);
  padding: 5px 12px;
  border-radius: 0 0 2px 2px;
}
.price-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 400; color: var(--text-strong); margin: 0 0 6px; }
.price-for { font-size: 0.86rem; color: var(--muted); margin: 0 0 22px; min-height: 42px; }
.price-value {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 300;
  color: var(--text-strong);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 8px;
}
.price-value small { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); letter-spacing: 0.04em; }
.price-note { font-size: 0.8rem; color: var(--muted); margin: 10px 0 24px; min-height: 34px; }
.price-card .card-list { flex: 1; margin-bottom: 26px; }
.price-card .card-list li { color: var(--text); }
.price-card .card-list li.is-off { color: #5f646d; }
.price-card .card-list li.is-off::before { background: #4a4e56; }

.price-terms {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(160deg, #131619, #0c0e10);
  padding: 30px;
}
.price-terms h3 { font-size: 1.05rem; margin-bottom: 16px; }
.terms-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 34px; }
.terms-grid dt { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-dim); margin-top: 12px; }
.terms-grid dd { margin: 4px 0 0; font-size: 0.92rem; color: var(--muted); }

.table-wrap { overflow-x: auto; margin-top: 34px; border: 1px solid var(--line); border-radius: var(--r); }
table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 0.92rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); }
thead th {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  background: #101318;
}
tbody tr:last-child td { border-bottom: 0; }
td:last-child, th:last-child { text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- Reference ---------- */
.quote { display: flex; flex-direction: column; }
.quote p { font-size: 0.98rem; color: var(--text); }
.quote-mark { font-family: var(--font-display); font-size: 2.4rem; color: var(--brass-dim); line-height: 0.6; margin-bottom: 18px; display: block; }
.quote-by { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.initials {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--brass-dim);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--brass);
  background: #0d0f12;
  flex: none;
}
.quote-by b { display: block; font-weight: 500; font-size: 0.92rem; }
.quote-by span { font-size: 0.8rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.55);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: var(--text-strong);
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass); }
.faq summary::after {
  content: "";
  position: absolute; right: 8px; top: 34px;
  width: 12px; height: 1px;
  background: var(--brass);
}
.faq summary::before {
  content: "";
  position: absolute; right: 13.5px; top: 28.5px;
  width: 1px; height: 12px;
  background: var(--brass);
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.faq details[open] summary::before { transform: scaleY(0); opacity: 0; }
.faq-body { padding: 0 60px 26px 0; color: var(--muted); font-size: 0.95rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(30px, 4.5vw, 60px); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field .req { color: var(--brass); }
textarea { resize: vertical; min-height: 132px; }
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.check input { margin: 3px 0 0; width: 16px; height: 16px; accent-color: var(--brass); flex: none; }
.check a { color: var(--brass); }
.err { display: block; color: var(--danger); font-size: 0.78rem; margin-top: 6px; min-height: 0; }
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(126, 168, 124, 0.4);
  border-radius: var(--r);
  background: rgba(126, 168, 124, 0.08);
  color: #b9d3b7;
  font-size: 0.9rem;
  display: none;
}
.form-status.is-visible { display: block; }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6); }
.contact-list li:first-child { padding-top: 0; }
.contact-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dim);
  margin-bottom: 6px;
}
.contact-list a { color: var(--text-strong); text-decoration: none; }
.contact-list a:hover { color: var(--brass); }

/* ---------- CTA pás ---------- */
.band { position: relative; overflow: hidden; border-block: 1px solid var(--line); }
.band-media { position: absolute; inset: 0; z-index: -1; }
.band-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.16; filter: grayscale(0.6); }
.band-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0a0b0c 20%, rgba(10, 11, 12, 0.6)); }
.band-inner { padding: clamp(52px, 7vw, 84px) 0; display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.band h2 { margin-bottom: 8px; }

/* ---------- Patička ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 34px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-grid h4 {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a, .linkbtn {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.footer-list a:hover, .linkbtn:hover { color: var(--brass); }
.footer-about p { font-size: 0.9rem; color: var(--muted); max-width: 38ch; }
.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #6d727b;
}
.disclaimer {
  margin-top: 26px;
  font-size: 0.78rem;
  color: #6d727b;
  line-height: 1.7;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.012);
}

/* ---------- Cookies ---------- */
.cookie {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 120;
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(160deg, #171a20, #0d0f12);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 26px 28px;
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.9);
  display: none;
}
.cookie.is-open { display: block; animation: rise 0.45s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.cookie h3 { font-size: 1.06rem; margin-bottom: 8px; }
.cookie p { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.cookie a { color: var(--brass); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 22px; font-size: 0.76rem; }
.cookie-prefs { display: none; margin: 4px 0 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.cookie-prefs.is-open { display: block; }
.pref { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.pref b { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text-strong); }
.pref p { margin: 4px 0 0; font-size: 0.8rem; }
.pref input { width: 18px; height: 18px; accent-color: var(--brass); margin-top: 4px; flex: none; }

/* ---------- Právní stránky ---------- */
.legal-hero { padding: clamp(56px, 7vw, 88px) 0 34px; border-bottom: 1px solid var(--line-soft); }
.legal-hero p.small { color: var(--muted); }
.legal { padding: 52px 0 84px; }
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin-top: 44px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { margin-top: 26px; font-size: 1.02rem; }
.legal-body ul, .legal-body ol { padding-left: 20px; color: var(--muted); }
.legal-body li { margin-bottom: 8px; }
.legal-body p { color: var(--muted); }
.legal-toc {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 40px;
  background: linear-gradient(160deg, #131619, #0c0e10);
}
.legal-toc h4 { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.legal-toc ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 30px; }
.legal-toc li { margin-bottom: 8px; break-inside: avoid; }
.legal-toc a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.legal-toc a:hover { color: var(--brass); }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.legal-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px 14px;
  transition: color 0.2s, border-color 0.2s;
}
.legal-nav a:hover, .legal-nav a[aria-current="page"] { color: var(--brass); border-color: var(--brass-dim); }
.legal-body table { min-width: 520px; }

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

/* ---------- Responzivita ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 26px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-facts { margin-top: 34px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0c0e11;
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 26px;
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { display: inline-flex; margin-top: 18px; border-bottom: 0; }
  .grid-3, .grid-2, .split, .contact-grid, .terms-grid { grid-template-columns: 1fr; }
  .legal-toc ul { columns: 1; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-no { font-size: 1.5rem; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  .cookie { left: 10px; right: 10px; bottom: 10px; padding: 20px; }
  .cookie-actions .btn { width: 100%; }
  .hero-facts { gap: 22px 30px; }
  .plate { padding: 24px 20px; }
}

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

@media print {
  body::before, body::after, .site-header, .cookie, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
