/* ==========================================================================
   katarinamizakova.sk — kampaňový web
   Statická HTML verzia (pred integráciou do Echelon CMS)
   ========================================================================== */

/* --- Tokeny ------------------------------------------------------------- */
:root {
  /* paleta prevzatá z tlačeného letáku (KDH) */
  --navy-900: #12243f;
  --navy-800: #1c385f;   /* hlavná modrá z letáku */
  --navy-700: #24466f;
  --navy-600: #3a5b83;
  --navy-500: #5b7ba1;
  --navy-400: #93aac4;

  --cream-50:  #fdfaf6;
  --cream-100: #faf3ec;
  --cream-200: #f1dfd3;  /* pás priorít z letáku */
  --cream-300: #e7d3c5;
  --cream-400: #d8c0ae;

  --gold-700: #8a6a1e;   /* stmavená pre text na svetlom */
  --gold-600: #c19238;
  --gold-500: #e8b54c;   /* zlatá z letáku */
  --gold-400: #ffc667;   /* zlatá z ikon letáku */

  --white: #ffffff;

  /* sémantika */
  --bg: var(--cream-50);
  --surface: var(--white);
  --ink: var(--navy-900);
  --ink-soft: #33415a;
  --ink-muted: var(--navy-500);
  --rule: var(--cream-300);
  --accent: var(--gold-500);
  --accent-text: var(--gold-700);

  /* typografia */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.84rem, 0.82rem + 0.10vw, 0.90rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.13rem);
  --step-1:  clamp(1.20rem, 1.13rem + 0.34vw, 1.44rem);
  --step-2:  clamp(1.44rem, 1.32rem + 0.58vw, 1.85rem);
  --step-3:  clamp(1.73rem, 1.54rem + 0.95vw, 2.37rem);
  --step-4:  clamp(2.07rem, 1.77rem + 1.50vw, 3.05rem);
  --step-5:  clamp(2.49rem, 2.02rem + 2.34vw, 3.90rem);

  /* rytmus */
  --gutter: clamp(1.25rem, 0.9rem + 1.7vw, 2.5rem);
  --section-y: clamp(4rem, 2.5rem + 6vw, 8rem);
  --container: 1180px;
  --measure: 68ch;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(18, 36, 63, 0.05), 0 2px 8px rgba(18, 36, 63, 0.04);
  --shadow-md: 0 4px 12px rgba(18, 36, 63, 0.07), 0 12px 32px rgba(18, 36, 63, 0.06);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

/* Vlastné display pravidlá (img, .placeholder) prebíjajú UA [hidden], preto !important. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-text); }

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--beige { background: var(--cream-100); }
.section--beige-deep { background: var(--cream-200); }
.section--dark { background: var(--navy-800); color: var(--cream-200); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: var(--cream-100);
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --- Spoločné prvky ----------------------------------------------------- */
.eyebrow {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 1rem;
}
.section--dark .eyebrow { color: var(--gold-400); }

.section-head { max-width: 46ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: var(--step-4); }
.section-head .lead { margin-top: 1.25rem; font-size: var(--step-1); color: var(--ink-muted); }

.rule {
  width: 56px;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 0 0 1.5rem;
}

.prose { max-width: var(--measure); }
.prose .intro {
  font-size: var(--step-1);
  color: var(--ink);
  line-height: 1.55;
}

/* Tlačidlá */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn--primary {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--cream-100);
}
.btn--primary:hover { background: var(--navy-900); border-color: var(--navy-900); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: var(--navy-400);
  color: var(--navy-800);
}
.btn--ghost:hover { border-color: var(--navy-800); background: rgba(28, 56, 95, 0.05); }

/* Placeholder — miesta čakajúce na podklady od klientky */
.placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, var(--cream-200) 0 12px, var(--cream-100) 12px 24px);
  border: 2px dashed var(--gold-500);
  border-radius: var(--radius-lg);
  color: var(--gold-700);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.5rem;
}
.placeholder svg { width: 56px; height: 56px; opacity: 0.55; }
.placeholder small {
  display: block;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--navy-500);
  font-size: 0.8rem;
  max-width: 26ch;
  line-height: 1.4;
}

/* --- Hlavička ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--rule);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
}
.site-header__logo { display: block; flex-shrink: 0; }
.site-header__logo img { width: clamp(140px, 18vw, 190px); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav a {
  position: relative;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy-700);
  text-decoration: none;
  padding-block: 0.35rem;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--ink); }
.nav .btn { padding: 0.7rem 1.35rem; font-size: var(--step--1); }
.nav .btn--primary { color: var(--cream-100); }
.nav .btn--primary:hover { color: var(--white); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1.5px solid var(--cream-400);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    background: var(--cream-50);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding-block: 0.85rem; border-bottom: 1px solid var(--rule); font-size: var(--step-0); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1rem; width: 100%; }
}

.brandbar {
  background: var(--navy-800);
  color: var(--cream-100);
  padding-block: 0.6rem;
}
.brandbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brandbar__inner .gold { color: var(--gold-400); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  --hero-pb: clamp(4rem, 2rem + 6vw, 7rem);
  position: relative;
  isolation: isolate;
  background: var(--cream-100);
  padding-block: clamp(3rem, 1.5rem + 6vw, 6.5rem) var(--hero-pb);
  overflow: hidden;
}

/* Pozadie hero = letecká foto obce (ako panoráma na letáku).
   Po dodaní fotky stačí odobrať triedu --placeholder a nastaviť --hero-foto. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-foto, none);
  background-size: cover;
  background-position: center 78%;
}
.hero__bg--placeholder {
  background-color: #c8d2dd;
  background-image:
    linear-gradient(to bottom, #d9e6ef 0%, #c3d2c2 55%, #b9c4ab 100%),
    repeating-linear-gradient(115deg,
      rgba(28, 56, 95, 0.10) 0 22px,
      rgba(28, 56, 95, 0) 22px 44px);
  background-blend-mode: normal, multiply;
}
.hero__bg--placeholder::after {
  content: "Pozadie: foto Košickej Polianky z drona — na šírku, min. 2400 px";
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  max-width: 22ch;
  padding: 0.7rem 1rem;
  border: 2px dashed var(--gold-600);
  border-radius: var(--radius);
  background: rgba(253, 250, 246, 0.94);
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
}

/* Závoj, aby text vľavo zostal čitateľný aj nad fotkou */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg,
      var(--cream-50) 0%,
      rgba(253, 250, 246, 0.95) 30%,
      rgba(253, 250, 246, 0.58) 46%,
      rgba(253, 250, 246, 0.10) 64%,
      rgba(253, 250, 246, 0) 78%),
    linear-gradient(to top, rgba(253, 250, 246, 0.8) 0%, rgba(253, 250, 246, 0) 42%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero__signature {
  width: min(100%, 460px);
  margin-bottom: 1.75rem;
}
.hero__role {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--navy-700);
  line-height: 1.3;
  margin: 0 0 1.5rem;
  max-width: 20ch;
}
.hero__role strong { color: var(--ink); font-weight: 600; }

.hero__claim {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.hero__claim li {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.hero__claim li + li::before {
  content: "·";
  margin-right: 1rem;
  color: var(--cream-400);
}

.hero__script {
  position: relative;
  display: inline-block;
  margin: 0 0 1.5rem;
  font-family: "Sacramento", "Snell Roundhand", cursive;
  font-size: clamp(2.4rem, 1.7rem + 3.4vw, 4rem);
  line-height: 1.1;
  color: var(--navy-800);
  padding-bottom: 0.35em;
}
.hero__script::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 20%;
  bottom: 0.28em;
  height: 4px;
  border-radius: 4px;
  background: var(--gold-500);
}

.hero__lead {
  max-width: 42ch;
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 2.25rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.1rem;
  width: clamp(5.5rem, 4rem + 5vw, 7.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-400);
  border: 4px solid var(--cream-50);
  box-shadow: 0 6px 20px rgba(18, 36, 63, 0.22);
  text-align: center;
  line-height: 1.1;
}
.hero__badge--placeholder {
  background: var(--cream-100);
  border-style: dashed;
  border-color: var(--gold-600);
  box-shadow: none;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem);
  font-weight: 600;
  color: var(--navy-800);
}
.hero__badge--placeholder .hero__badge-num { color: var(--gold-600); }
.hero__badge-label {
  max-width: 8ch;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.hero__badge--placeholder .hero__badge-label { color: var(--gold-700); }

.hero__portrait {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__portrait .placeholder { height: 100%; border-radius: var(--radius-lg); }
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

/* Orezaná foto (PNG bez pozadia) — stojí priamo v hero, bez rámu a tieňa.
   Výšku určuje samotný obrázok, takže po stranách nevznikajú prázdne pásy. */
.hero__portrait--cutout {
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
/* Foto je zdola zámerne orezaná, tak ju posadíme presne na spodnú hranu sekcie —
   záporný spodný margin zruší spodný padding hero, takže rez splynie s okrajom
   a výšku sekcie odteraz určuje samotná fotka. */
.hero__portrait--cutout {
  align-self: end;
  margin-bottom: calc(-1 * var(--hero-pb));
}
.hero__portrait--cutout img {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(18, 36, 63, 0.18));
}

@media (max-width: 900px) {
  /* Na mobile je hero vysoké a úzke, takže `cover` škáluje fotku podľa výšky,
     zvislý presah nevznikne a `background-position-y` je bez účinku — vidno
     celú výšku fotky, teda hlavne oblohu. Preto z pozadia spravíme pás so
     šírkovým pomerom (55vw < 75vw = 100/1.333): vtedy `cover` škáluje podľa
     šírky, presah vznikne a posun 78 % zaberie rovnako ako na desktope.
     Výsledný výrez je 21–94 % výšky fotky, desktop má 20–95 %. */
  .hero { --hero-band: 55vw; }
  .hero__bg { inset: 0 0 auto 0; height: var(--hero-band); }

  /* Scrim musí prejsť do plnej krémovej presne tam, kde pás končí. */
  .hero__scrim {
    background:
      linear-gradient(to bottom,
        rgba(253, 250, 246, 0.25) 0,
        rgba(253, 250, 246, 0.55) calc(var(--hero-band) * 0.55),
        rgba(253, 250, 246, 0.95) calc(var(--hero-band) * 0.9),
        var(--cream-50) var(--hero-band));
  }
  .hero__badge { top: -1rem; right: -0.5rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 420px; margin-inline: auto; order: -1; }
  /* v jednom stĺpci je foto nad textom, spodná hrana sekcie tam nie je pod ňou */
  .hero__portrait--cutout { align-self: auto; margin-bottom: 0; }
  .hero__signature { margin-inline: auto; }
  .hero { text-align: center; }
  .hero__role, .hero__lead { margin-inline: auto; }
  .hero__claim, .hero__actions { justify-content: center; }
}

/* --- O mne -------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.about__media { position: sticky; top: 7rem; }
.about__photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about__photo .placeholder { height: 100%; border-radius: var(--radius-lg); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }

.about__quote {
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-style: italic;
  line-height: 1.45;
  color: var(--navy-700);
}

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { position: static; max-width: 380px; }
}

/* --- Priority ----------------------------------------------------------- */
.priorities__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.priority {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.priority:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cream-400);
}
.priority--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-100) 100%);
  border-color: var(--cream-400);
}
.priority__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--navy-800);
}
.priority__icon svg { width: 1.75rem; height: 1.75rem; }
.priority--featured .priority__icon { width: 4.25rem; height: 4.25rem; }
.priority--featured .priority__icon svg { width: 2.15rem; height: 2.15rem; }
.priority h3 {
  font-size: var(--step-2);
  margin-bottom: 0.9rem;
}
.priority--featured h3 { font-size: var(--step-3); }
.priority p { color: var(--ink-soft); }
.priority--featured p { max-width: 62ch; font-size: var(--step-1); line-height: 1.6; }

@media (max-width: 760px) {
  .priorities__list { grid-template-columns: 1fr; }
}

/* --- Ako chcem viesť obec ----------------------------------------------- */
.credo__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
/* --- Noví ľudia (kandidáti do zastupiteľstva) ---------------------------- */
.team__claim {
  max-width: var(--measure);
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.35;
  color: var(--ink);
}
.team__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}
.team__list li {
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--cream-400);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--ink);
}

.credo__list { list-style: none; margin: 0; padding: 0; }
.credo__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--cream-400);
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--ink);
  line-height: 1.35;
}
.credo__list li:first-child { padding-top: 0; }
.credo__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.credo__check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
}
.credo__check svg { width: 14px; height: 14px; }

@media (max-width: 860px) {
  .credo__grid { grid-template-columns: 1fr; }
}

/* --- Verím, že sa dá ---------------------------------------------------- */
.believe { position: relative; overflow: hidden; }
.believe::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -40%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 198, 103, 0.14) 0%, rgba(255, 198, 103, 0) 70%);
  pointer-events: none;
}
.believe__inner { position: relative; max-width: 62ch; }
.believe h2 {
  color: var(--cream-100);
  font-size: var(--step-5);
  margin-bottom: 2.5rem;
}
.believe__list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.believe__list li {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.4;
  color: var(--cream-200);
  padding: 0.7rem 0 0.7rem 1.75rem;
  position: relative;
}
.believe__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 1px;
  background: var(--gold-400);
}
.believe__list li strong { color: var(--white); font-weight: 500; }

.believe__closing { color: var(--cream-400); font-size: var(--step-1); line-height: 1.6; }
.believe__question {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-style: italic;
  color: var(--gold-400);
  line-height: 1.2;
}

/* --- Podnety + formulár ------------------------------------------------- */
.ask__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.ask__questions { list-style: none; margin: 0 0 2rem; padding: 0; }
.ask__questions li {
  position: relative;
  padding: 1rem 0 1rem 2.5rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--ink);
}
.ask__questions li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-700);
}
.ask__note { color: var(--ink-muted); }
.ask__note strong { color: var(--ink); font-weight: 600; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.form-card h3 { font-size: var(--step-2); margin-bottom: 0.5rem; }
.form-card__intro { color: var(--ink-muted); font-size: var(--step--1); margin-bottom: 2rem; }

.field { margin-bottom: 1.35rem; }
.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--navy-700);
}
.field label .optional {
  font-weight: 400;
  color: var(--ink-muted);
  text-transform: none;
  letter-spacing: 0;
}
.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--cream-50);
  border: 1.5px solid var(--cream-400);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  outline: none;
}
.field textarea { min-height: 9rem; resize: vertical; line-height: 1.6; }
.field.is-disabled { opacity: 0.45; }
.field.is-disabled input { background: var(--cream-200); cursor: not-allowed; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  cursor: pointer;
}
.checkbox input { margin-top: 0.25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--gold-600); flex-shrink: 0; }
.checkbox span { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.5; }
.checkbox strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 0.15rem; }

.form-card .btn { width: 100%; }

.form-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.form-status {
  margin-top: 1.25rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  background: var(--cream-200);
  border-left: 3px solid var(--gold-500);
  font-size: var(--step--1);
  color: var(--navy-700);
}
.form-status[hidden] { display: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .ask__grid { grid-template-columns: 1fr; }
}

/* --- Záver -------------------------------------------------------------- */
.closing { text-align: center; }
.closing__inner { max-width: 54ch; margin-inline: auto; }
.closing h2 { font-size: var(--step-4); color: var(--cream-100); margin-bottom: 1.75rem; }
.closing p { font-size: var(--step-1); color: var(--cream-400); line-height: 1.65; }
.closing__signature {
  width: min(100%, 320px);
  margin: 3rem auto 0;
  opacity: 0.9;
}

/* --- Pätička ------------------------------------------------------------ */
.site-footer {
  background: var(--navy-900);
  color: var(--navy-400);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  font-size: var(--step--1);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 243, 236, 0.14);
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-300);
  margin-bottom: 1.1rem;
}
.site-footer p { color: var(--cream-400); line-height: 1.6; }
.site-footer a { color: var(--cream-300); text-decoration: none; border-bottom: 1px solid rgba(241, 223, 211, 0.35); }
.site-footer a:hover { color: var(--white); border-bottom-color: var(--gold-400); }
.site-footer__signature { width: 210px; margin-bottom: 1.25rem; opacity: 0.85; }

/* Logo KDH — inline SVG, farbu určuje currentColor, takže stačí meniť `color`. */
.footer-kdh { display: inline-block; margin-top: 1.25rem; border-bottom: 0; }
.footer-kdh:hover { border-bottom: 0; }
.footer-kdh__logo {
  display: block;
  width: 59px;
  height: auto;
  fill: currentColor;
  color: var(--white);
  transition: opacity 0.2s ease;
}
.footer-kdh:hover .footer-kdh__logo { opacity: 0.75; }

.footer-placeholder {
  border: 1.5px dashed var(--gold-600);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--gold-400);
  font-size: 0.78rem;
  line-height: 1.45;
  background: rgba(255, 198, 103, 0.07);
}
.footer-placeholder strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--navy-500);
}

@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* --- Odhaľovanie pri scrollovaní ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --- Povinné údaje volebnej kampane v pätičke --------------------------- */
.footer-legal {
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--navy-400);
}
