/* =============================================================
   USUCAPIO · TYPOGRAFIE
   Tufte-vibe, knižní svazek, klid.
   ============================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-3);
  color: var(--ink);
  font-feature-settings: var(--otf-display);
  text-wrap: balance;
}

h1 {
  font-size: clamp(var(--t-2xl), 4.2vw, var(--t-3xl));
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.06;
}
h2 {
  font-size: var(--t-xl);
  letter-spacing: -0.016em;
  margin-top: var(--s-7);
}
h3 {
  font-size: var(--t-lg);
  font-weight: 600;
  margin-top: var(--s-6);
}
h4 {
  font-size: var(--t-md);
  font-weight: 600;
}
h5 {
  font-size: var(--t-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  color: var(--ink-3);
}
h6 {
  font-size: var(--t-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  color: var(--ink-3);
}

p {
  margin: 0 0 var(--s-4);
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

/* Global rule — never break Czech words mid-line with a hyphen.
   Applies to all elements that render free-flowing text. */
html, body, * {
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

/* Hero display — pro landing. */
.display {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 6.5vw, var(--t-hero));
  line-height: 0.98;
  letter-spacing: -0.028em;
  font-weight: 600;
  text-wrap: balance;
}

/* Eyebrow / kicker. */
.kicker {
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--seal);
}

/* Lead odstavec. */
.lead {
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: var(--measure-wide);
  font-feature-settings: var(--otf-prose);
}

/* Tělo zákona — prose styl. */
.prose {
  font-family: var(--font-serif);
  font-size: var(--t-body);
  line-height: var(--leading-prose);
  max-width: var(--measure-prose);
  font-feature-settings: var(--otf-prose);
  color: var(--ink);
}
.prose p { margin: 0 0 var(--s-4); }
.prose p + p { text-indent: 1.4em; margin-top: 0; }   /* knižní odstavce */
.prose p.no-indent + p { text-indent: 0; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose em { font-style: italic; }

/* Citace — práva. */
blockquote, .citation-block {
  margin: var(--s-5) 0;
  padding: var(--s-2) var(--s-5);
  border-left: 3px solid var(--seal);
  color: var(--ink-2);
  font-style: italic;
  font-size: var(--t-md);
  line-height: 1.5;
  max-width: var(--measure-wide);
}
blockquote cite {
  display: block;
  margin-top: var(--s-3);
  font-style: normal;
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

/* Číslování paragrafů — vystouplé do margin. */
.par-num {
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--seal);
  font-weight: 600;
}

/* Drobné značky / chips. */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid var(--ink-4);
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.6;
}
.tag--seal { border-color: var(--seal); color: var(--seal); }
.tag--ink  { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Definiční výpisy — pro meta info zákona. */
.dl-cards {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: var(--s-5);
  row-gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: var(--t-sm);
}
.dl-cards dt {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--ink-3);
  padding-top: 0.2em;
}
.dl-cards dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--t-base);
  color: var(--ink);
}

/* Section break — Tufte horizontal rule. */
.section-break {
  border: 0;
  text-align: center;
  margin: var(--s-7) 0;
  height: 1em;
  position: relative;
}
.section-break::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--ink-4);
  margin: 0 auto;
}

/* Sloupec čísel — tabular. */
.num, .tabular { font-feature-settings: var(--otf-tabular); }
