/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--pp-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--pp-text-body);
  background: var(--pp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--pp-font-head);
  font-weight: 700;
  color: var(--pp-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; }
h3 { font-size: clamp(19px, 2vw, 22px); line-height: 1.3; }
h4 { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.4; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin: 0 0 1rem; }
li { margin-bottom: 0.4rem; }

em { font-style: italic; }
strong { font-weight: 700; }

/* =========================================
   LAYOUT
   ========================================= */
.pp-container {
  max-width: var(--pp-container);
  margin: 0 auto;
  padding: 0 var(--pp-gutter);
}

.pp-section {
  padding: 96px 0;
}
.pp-section--tight { padding: 64px 0; }
.pp-section--cream { background: var(--pp-bg-cream); }
.pp-section--light { background: var(--pp-bg-light); }
.pp-section--navy {
  background: var(--pp-navy);
  color: rgba(255, 255, 255, 0.85);
}
.pp-section--navy h1,
.pp-section--navy h2,
.pp-section--navy h3 { color: var(--pp-white); }

.pp-section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.pp-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
.pp-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pp-gold-dark);
  margin-bottom: 18px;
}

.pp-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--pp-text-muted);
}

.pp-accent-rule {
  width: 40px;
  height: 3px;
  background: var(--pp-gold);
  margin-top: 12px;
  margin-bottom: 24px;
}

/* =========================================
   ENTRY CONTENT (blog, pages)
   ========================================= */
.pp-entry-content h2,
.pp-entry-content h3,
.pp-entry-content h4 {
  margin-top: 2rem;
}
.pp-entry-content a {
  color: var(--pp-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pp-entry-content a:hover {
  color: var(--pp-gold-dark);
}
.pp-entry-content blockquote {
  border-left: 3px solid var(--pp-gold);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--pp-bg-cream);
  font-family: var(--pp-font-head);
  font-size: 18px;
  font-style: italic;
  color: var(--pp-navy);
}

/* =========================================
   PAGE HERO (právní a ostatní stránky)
   ========================================= */
.pp-page-hero {
  padding-top: 16px;
  padding-bottom: 8px;
}

.pp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pp-text-muted);
  margin-bottom: 20px;
}
.pp-breadcrumb a {
  color: var(--pp-gold-dark);
  text-decoration: none;
}
.pp-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pp-breadcrumb-sep {
  color: var(--pp-text-muted);
  opacity: 0.5;
}

/* =========================================
   LEGAL CONTENT — max-width centrovaný blok
   ========================================= */
.pp-legal-content {
  max-width: 760px;
  margin: 0 auto;
}
