:root {
  --navy-950: #051f34;
  --navy-900: #072b49;
  --navy-800: #0d3b5f;
  --blue-300: #a9cbe8;
  --blue-100: #eaf2f8;
  --peach-600: #e69257;
  --peach-500: #f3a86f;
  --peach-100: #fff0e4;
  --surface: #ffffff;
  --background: #f7f8f6;
  --border: #dce5ec;
  --text: #294154;
  --muted: #5b6d7c;
  --heading: #072b49;
  --shadow-sm: 0 4px 14px rgba(7, 43, 73, .06);
  --shadow-md: 0 14px 36px rgba(7, 43, 73, .11);
  --shadow-lg: 0 24px 70px rgba(7, 43, 73, .16);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-height: 72px;
  --font-heading: "Montserrat", "Inter", Arial, sans-serif;
  --font-body: "Source Sans 3", "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy-900);
  color: white;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  /* Pri vrchu stránky (0px) je lišta priehľadná a splýva s hero pozadím */
  background: rgba(247, 248, 246, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
/* Po odscrollovaní sa lišta vyplní do plného vzhľadu */
.site-header.scrolled {
  background: rgba(247, 248, 246, .9);
  border-bottom-color: rgba(7, 43, 73, .1);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(7, 43, 73, .06);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.05; }
.brand-name { font-family: var(--font-heading); font-weight: 800; color: var(--navy-900); letter-spacing: -.035em; }
.brand-place { margin-top: 4px; font-size: 12px; font-weight: 700; color: var(--peach-600); letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--navy-900); text-decoration: none; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; border-radius: 999px; background: var(--peach-500); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 16px; border-radius: 10px; background: var(--navy-900); color: white !important; box-shadow: var(--shadow-sm); }
.nav-cta:hover { background: var(--navy-800); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  /* Pozadie hero siaha až pod priehľadnú hlavičku (od 0px) */
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: linear-gradient(110deg, rgba(169,203,232,.76) 0%, rgba(247,248,246,.96) 46%, rgba(243,168,111,.72) 100%);
}
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 52% 35%, rgba(255,255,255,.6), transparent 40%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding-block: 56px 0; }
.hero-head, .hero-body { max-width: 620px; }
.eyebrow, .section-kicker { margin: 0 0 16px; font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--peach-600); }
h1, h2, h3 { margin-top: 0; font-family: var(--font-heading); color: var(--heading); }
h1 { margin-bottom: 18px; font-size: clamp(3.75rem, 7vw, 6.5rem); line-height: .9; letter-spacing: -.065em; font-weight: 800; }
h2 { margin-bottom: 18px; font-size: clamp(2.25rem, 4.4vw, 3.75rem); line-height: 1.08; letter-spacing: -.045em; font-weight: 800; }
h3 { margin-bottom: 10px; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.02em; }
.hero-location { margin: 0 0 22px; padding-top: 14px; border-top: 5px solid rgba(243,168,111,.7); font-size: clamp(1.2rem, 2vw, 1.75rem); color: var(--navy-900); }
.hero-claim { margin: 0 0 12px; font-family: var(--font-heading); font-size: clamp(1.55rem, 3vw, 2.55rem); line-height: 1.18; font-weight: 800; color: var(--navy-900); }
.hero-lead { max-width: 650px; margin: 0; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 24px; border: 2px solid transparent; border-radius: 12px; font-family: var(--font-heading); font-size: 15px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, .menu-toggle:focus-visible { outline: 3px solid var(--blue-300); outline-offset: 3px; }
.button-primary { color: var(--navy-900); background: var(--peach-500); box-shadow: 0 10px 28px rgba(7,43,73,.16); }
.button-primary:hover { background: var(--peach-600); box-shadow: 0 15px 34px rgba(7,43,73,.2); }
.button-secondary { border-color: var(--navy-900); color: var(--navy-900); background: rgba(255,255,255,.18); }
.button-secondary:hover { background: var(--navy-900); color: white; }
.button-light { background: white; color: var(--navy-900); }
.value-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 34px 0 0; }
.value-list li { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 13px; border: 1px solid rgba(7,43,73,.13); border-radius: 999px; background: rgba(255,255,255,.68); font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--navy-900); }
.value-list svg { width: 20px; height: 20px; }
/* Výrez postavy — ukotvený vpravo dole, mierne odsadený od okraja */
/* Výška sa odvíja od viewportu, nie od šírky - postava tak drží rovnaký pomer
   voči obrazovke na 13" notebooku aj na 27" monitore a hlava nenarazí do lišty. */
/* adriana-hero.png je orezaný presne na postavu (893x1417, žiadny priehľadný
   okraj), takže výška boxu = skutočná výška postavy: 80svh naozaj znamená
   80 % výšky okna. Keby sa fotka vymieňala, OREŽ ju na alpha bbox, inak
   priehľadný okraj postavu opticky zmenší. */
/* Výška sa odvíja od voľného miesta pod hlavičkou, nie od percenta okna:
   vrch postavy tak sedí VŽDY 55 px pod lištou (na každom rozlíšení rovnako)
   a spodkom stojí na spodnej hrane hero sekcie. */
.hero-portrait { position: absolute; z-index: 1; right: clamp(16px, 9vw, 260px); bottom: 0; margin: 0; height: clamp(360px, calc(100svh - var(--header-height) - 55px), 1000px); aspect-ratio: 893 / 1417; width: auto; max-width: min(48vw, 700px); pointer-events: none; }
/* Žiadny svit ani tvar ZA výrezom: postava je priehľadné PNG, takže čokoľvek
   za ňou presvitá cez priehľadné miesta a číta sa to ako viditeľné okraje
   fotky. (Rovnaký dôvod, prečo je .hero-brandmark vypnutý.) */
/* Spodok je čistý rez na hrane hero sekcie. ŽIADNA mask-image: predtým tam bol
   gradient, ktorý rozpustil spodných 14 % postavy do pozadia — čítalo sa to
   ako zlý orez, nie ako efekt. */
.hero-portrait img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; margin-bottom: -1px; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 18px 34px rgba(7,43,73,.16)); }

/* Brandový chevron za postavou. Pôvodne bol menší a schovaný priamo za výrezom,
   takže jeho ostré hrany z clip-path presvitali cez priehľadné miesta a čítali
   sa ako okraje fotky. Teraz je VÄČŠÍ ako postava a vysunutý za pravý okraj,
   takže hrany končia mimo jej siluety; spodok navyše mizne do pozadia. */
.hero-brandmark { position: absolute; z-index: 0; right: clamp(-160px, -6vw, -40px); bottom: 0; width: min(52vw, 780px); aspect-ratio: 3 / 4; pointer-events: none; opacity: .7;
  background: linear-gradient(160deg, rgba(243,168,111,.34), rgba(169,203,232,.22));
  clip-path: polygon(54% 0, 100% 0, 46% 50%, 100% 100%, 54% 100%, 8% 50%);
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 96%); }

.section { padding-block: 112px; scroll-margin-top: 96px; }
.section-about { background: white; }
.about-grid { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); align-items: start; gap: 80px; }
/* Ľavý stĺpec = fotka + citát pod ňou. Text vpravo je výrazne dlhší, tak sa
   ľavý stĺpec lepí a sprevádza čítanie namiesto toho, aby plával v prázdne. */
.about-media { display: grid; gap: 26px; position: sticky; top: calc(var(--header-height) + 28px); }
.about-media blockquote { margin: 0; }
.about-photo { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 12%; }
.photo-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 13px 16px; border-radius: 12px; background: rgba(7,43,73,.88); color: white; font-size: 14px; font-weight: 600; backdrop-filter: blur(12px); }
.about-copy p { max-width: 710px; }
.about-copy .lead { font-size: 1.2rem; }
/* Vedľajšie kandidatúry — uvedené, ale zámerne potichu, aby neprebíjali
   hlavné posolstvo (starostka). */
.candidacy-note { margin-top: -6px; padding-left: 16px; border-left: 3px solid rgba(243,168,111,.55); font-size: .95rem; color: var(--muted); }
.accent-line { width: 92px; height: 5px; margin: 0 0 28px; border-radius: 999px; background: var(--peach-500); }
blockquote { margin: 30px 0 18px; padding: 24px 28px; border-left: 5px solid var(--peach-500); border-radius: 0 16px 16px 0; background: var(--blue-100); color: var(--navy-900); font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }
/* Claim ako na plagáte - veľký, brandový, s rukopisným podpisom vedľa */
.signature-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px 32px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--border); }
.signature-claim { margin: 0; font-family: var(--font-heading); font-size: clamp(1.6rem, 2.6vw, 2.35rem); line-height: 1.1; letter-spacing: -.035em; font-weight: 800; color: var(--navy-900); }
.signature-mark { flex: 0 0 auto; width: clamp(150px, 15vw, 200px); height: auto; }

.section-priorities { background: var(--background); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading > p { max-width: 470px; margin: 0 0 12px; }
/* 12 stĺpcov: prvý rad 3 veľké karty (span 4), druhý rad 4 menšie (span 3) */
.priority-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.priority-card { position: relative; display: block; grid-column: span 4; min-height: 300px; padding: 30px; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); color: inherit; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.priority-card-small { grid-column: span 3; min-height: 250px; padding: 24px; }
.priority-card:hover { transform: translateY(-5px); border-color: rgba(243,168,111,.85); box-shadow: var(--shadow-md); }
.priority-card > svg { width: 42px; height: 42px; margin: 32px 0 24px; color: var(--navy-900); }
.priority-card-small > svg { width: 34px; height: 34px; margin: 24px 0 18px; }
.priority-card-small h3 { font-size: 1.18rem; }
.priority-card-small p { font-size: .97rem; }
.priority-number { position: absolute; top: 20px; right: 24px; font-family: var(--font-heading); font-size: 56px; font-weight: 800; color: rgba(7,43,73,.07); }
.priority-card-small .priority-number { font-size: 44px; }
.priority-card p { margin-bottom: 0; color: var(--muted); }
.priority-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: .04em; color: var(--peach-600); }
.priority-link::after { content: "→"; transition: transform .2s ease; }
.priority-card:hover .priority-link::after { transform: translateX(4px); }
.priority-card-featured { color: white; border-color: var(--navy-900); background: var(--navy-900); }
.priority-card-featured h3, .priority-card-featured > svg { color: white; }
.priority-card-featured p { color: #d8e5ee; }
.priority-card-featured .priority-number { color: rgba(255,255,255,.09); }
.priority-card-featured .priority-link { color: var(--peach-500); }

/* Konkrétne opatrenia — rozbaľovacie oblasti programu (natívne <details>, bez JS) */
.section-measures { background: white; }
.measures-list { display: grid; gap: 14px; max-width: 940px; margin-inline: auto; }
.measure { border: 1px solid var(--border); border-radius: 16px; background: var(--background); transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.measure:hover { border-color: rgba(243,168,111,.6); }
.measure[open] { border-color: rgba(243,168,111,.85); background: white; box-shadow: var(--shadow-sm); }
.measure > summary { display: grid; grid-template-columns: 44px 1fr 24px; align-items: center; gap: 18px; padding: 20px 24px; cursor: pointer; list-style: none; }
.measure > summary::-webkit-details-marker { display: none; }
.measure > summary:focus-visible { outline: 3px solid var(--blue-300); outline-offset: -3px; border-radius: 16px; }
.measure-number { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--peach-500); color: var(--navy-900); font-family: var(--font-heading); font-size: 15px; font-weight: 800; }
.measure-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; line-height: 1.25; letter-spacing: -.02em; color: var(--heading); }
.measure-chevron { width: 24px; height: 24px; color: var(--navy-900); transition: transform .2s ease; }
.measure[open] .measure-chevron { transform: rotate(180deg); }
.measure ul { display: grid; gap: 10px; list-style: none; margin: 0 0 0 62px; padding: 0 24px 24px 0; }
.measure li { position: relative; padding-left: 26px; color: var(--muted); }
.measure li::before { content: ""; position: absolute; left: 0; top: .72em; width: 13px; height: 3px; border-radius: 999px; background: var(--peach-500); }
.measures-summary { max-width: 940px; margin: 34px auto 0; padding: 30px 34px; border-left: 5px solid var(--peach-500); border-radius: 0 16px 16px 0; background: var(--blue-100); color: var(--navy-900); }
.measures-summary p { margin: 0; }
.measures-summary p + p { margin-top: 14px; }

.section-values { position: relative; overflow: hidden; background: var(--navy-900); color: #d8e5ee; }
.section-values::before { content: ""; position: absolute; width: 520px; height: 520px; right: -260px; top: -100px; border: 70px solid rgba(243,168,111,.12); transform: rotate(45deg); }
.values-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.section-kicker-light { color: #ffc496; }
.values-intro h2 { color: white; }
.values-intro p { max-width: 520px; }
.values-intro .button { margin-top: 18px; }
.values-stack { display: grid; gap: 14px; }
.value-panel { display: grid; grid-template-columns: 52px 1fr; gap: 22px; align-items: start; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.07); backdrop-filter: blur(14px); }
.value-panel > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--peach-500); color: var(--navy-900); font-family: var(--font-heading); font-weight: 800; }
.value-panel h3 { margin: 0 0 6px; color: white; }
.value-panel p { margin: 0; color: #d8e5ee; }

.section-quote { position: relative; overflow: hidden; background: linear-gradient(125deg, var(--blue-100) 0%, #ffffff 48%, var(--peach-100) 100%); }
/* Jemné brandové chevrony rámujúce citát — rovnaký motív ako inde, nenápadne */
.section-quote::before, .section-quote::after { content: ""; position: absolute; top: 50%; width: 120px; height: 120px; border: 26px solid; transform: translateY(-50%) rotate(45deg); opacity: .1; pointer-events: none; }
.section-quote::before { left: -46px; border-color: var(--navy-800) transparent transparent var(--navy-800); }
.section-quote::after { right: -46px; border-color: transparent var(--peach-600) var(--peach-600) transparent; }
.quote-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 940px; margin-inline: auto; }
.quote-mark { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(3.4rem, 8vw, 5.4rem); line-height: 1; color: var(--peach-500); }
.quote-text { margin: 10px 0 30px; font-family: var(--font-heading); font-weight: 800; color: var(--navy-900); font-size: clamp(2.1rem, 5.4vw, 4rem); line-height: 1.06; letter-spacing: -.045em; }
.quote-author { display: flex; flex-direction: column; gap: 5px; margin: 0; font-family: var(--font-heading); font-weight: 800; color: var(--navy-900); font-size: 1.2rem; letter-spacing: -.01em; }
.quote-author span { font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--peach-600); }

.section-contact { background: var(--navy-950); color: #d8e5ee; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; }
.contact-copy h2 { color: white; }
.website-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: #ffc496; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 2px; }
.contact-points { margin-top: 32px; padding-left: 20px; }
.contact-form { padding: 32px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.06); box-shadow: var(--shadow-lg); }
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row label { color: white; font-size: 14px; font-weight: 700; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid rgba(255,255,255,.26); border-radius: 10px; padding: 13px 15px; color: var(--text); background: white; }
.form-row textarea { min-height: 150px; resize: vertical; }
.check-row { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 22px; font-size: 14px; line-height: 1.4; }
.check-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--peach-500); }
.contact-form .button { width: 100%; border: 0; }
.contact-form .button[disabled] { opacity: .65; cursor: progress; transform: none; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 14px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding-block: 36px; background: #031522; color: #b9ccd9; font-size: 14px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; align-items: center; }
.footer-inner > div:first-child { display: flex; flex-direction: column; }
.footer-inner strong { color: white; font-family: var(--font-heading); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: white; text-underline-offset: 4px; }
.legal-note { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #8299a8; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Úzke, ale vysoké okná (981-1200 px): pri 80svh by postava pri tejto šírke
   zasiahla do textu. Zúžime text a fotku ohraničíme voľným miestom vedľa neho —
   radšej o kúsok nižšia postava než text pod jej rukou. */
@media (min-width: 981px) and (max-width: 1200px) {
  .hero-head, .hero-body { max-width: 480px; }
  .hero-portrait { right: clamp(16px, 3vw, 40px); max-width: calc(100vw - 640px); }
}

@media (max-width: 980px) {
  :root { --header-height: 64px; }
  body { font-size: 17px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 0; padding: 16px 24px 26px; border-bottom: 1px solid var(--border); background: rgba(247,248,246,.98); box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .22s ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 14px 0; font-size: 16px; }
  .site-nav a::after { display: none; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-portrait { height: clamp(320px, calc(100svh - var(--header-height) - 40px), 700px); max-width: min(50vw, 520px); }
  h1 { font-size: clamp(3.4rem, 8vw, 5rem); }
  .about-grid, .values-layout, .contact-grid { gap: 48px; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .priority-grid { grid-template-columns: repeat(2, 1fr); }
  .priority-card, .priority-card-small { grid-column: auto; min-height: 250px; padding: 26px; }
  .priority-card:last-child { grid-column: 1 / -1; }
  .measures-summary { padding: 26px 28px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  /* Mobil: čisté svetlé pozadie (bez výrazného oranžového gradientu), fotka navrchu */
  .hero { min-height: 100svh; display: block; position: relative;
    background: linear-gradient(158deg, var(--blue-100) 0%, #ffffff 56%, var(--peach-100) 100%); }
  .hero::after { display: none; }   /* žiadny biely highlight nad fotkou */
  .hero-brandmark { display: none; } /* žiadny broskyňový chevron presvitajúci cez výrez */
  .hero::before { display: none; }   /* žiadny scrim */
  /* Pozor na šírku: PNG je orezané tesne na postavu (893x1417), takže šírka
     boxu = šírka postavy. Pôvodný súbor mal navrchu 14 % priehľadného okraja,
     preto tu bolo 114 % — s orezaným súborom by to postavu zväčšilo o tretinu
     a text by jej pristál na rukách. 92 % dáva rovnakú veľkosť ako predtým. */
  .hero-portrait { position: absolute; z-index: 0; left: 50%; right: auto; bottom: 0; transform: translateX(-50%); width: min(92%, 420px); height: auto; max-width: none; -webkit-mask-image: none; mask-image: none; }
  .hero-portrait img { height: auto; object-fit: fill; }
  /* Mobil = plagát: fotka/tvár hore, meno dole, žiadne tlačidlo */
  .hero-inner { position: relative; z-index: 2; min-height: calc(100svh - var(--header-height)); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 20px 30px; }
  /* Text leží na fotke, takže pod ním potrebuje podklad — inak sa broskyňový
     nadpis stratí na bielej blúzke. Je to pseudoprvok .hero-inner (z-index 2),
     takže sa vykreslí NAD fotkou, ale POD textom; fotka nad ním ostáva čistá. */
  .hero-inner::before { content: ""; position: absolute; inset: auto 0 0; height: 42%; z-index: -1; pointer-events: none;
    background: linear-gradient(to top, rgba(247,248,246,.94) 34%, rgba(247,248,246,.66) 68%, transparent 100%); }
  .hero-head { max-width: none; }
  .hero-body { display: none; }
  .section { padding-block: 72px; }
  .about-grid, .values-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 42px; }
  .about-media { position: static; }   /* v jednom stĺpci by lepenie prekážalo */
  .about-media { order: 2; }
  .signature-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .section-heading { margin-bottom: 34px; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-card, .priority-card-small, .priority-card:last-child { grid-column: auto; min-height: 230px; }
  .measure > summary { grid-template-columns: 38px 1fr 20px; gap: 14px; padding: 16px 18px; }
  .measure-number { width: 38px; height: 38px; font-size: 14px; }
  .measure-title { font-size: 1.02rem; }
  .measure-chevron { width: 20px; height: 20px; }
  .measure ul { margin-left: 18px; padding: 0 18px 20px 0; }
  .measures-summary { margin-top: 26px; padding: 24px 22px; }
  .contact-form { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .legal-note { grid-column: auto; }
  .section-quote::before, .section-quote::after { display: none; }
}

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

@media print {
  .site-header { position: static; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero { min-height: 720px; }
  .hero-portrait img { height: 620px; }
}
