@charset "UTF-8";
/* ===========================================================================
   Lepší Jinočany — hlavní styl
   ---------------------------------------------------------------------------
   Barevný systém:
     zelená  = plochy a identita (hlavička, hero, patička, CTA)
     zlatá   = akce (tlačítka, odkazy, aktivní stav) — ze znaku obce #fbd405
     modrá   = informace (odznaky, ikony, meta údaje) — ze znaku obce #0253f9

   Pozor na kontrast: plná zlatá je světlá, takže na ní VŽDY tmavý text.
   Pro zlatý text na světlém podkladu se používá --gold-dark / --gold-ink.
   =========================================================================== */

/* ── Barvy a proměnné ───────────────────────────────────────────────────── */
:root {
  --green: #1e5b3c;
  --green-dark: #11351f;
  --green-light: #418260;
  --green-pale: #e8f1ec;

  --gold: #fbd405;
  --gold-dark: #c39406;
  --gold-ink: #82600a;

  --blue: #1152d4;
  --blue-light: #6fa0f7;
  --blue-dark: #0e3a94;
  --blue-pale: #eef4fe;

  --cream: #f8f7ef;
  --ink: #14261c;
  --muted: #5c6f64;
  --border: #d5e0d9;
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(17, 53, 31, .07), 0 1px 2px rgba(17, 53, 31, .04);
  --shadow: 0 4px 16px rgba(17, 53, 31, .09);
  --shadow-lg: 0 14px 40px rgba(17, 53, 31, .16);

  --wrap: 1180px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ── Základ ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 .6em;
  color: var(--green-dark);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green); }

img { max-width: 100%; height: auto; display: block; }

hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Přeskočit na obsah — pro čtečky a klávesnici */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--green-dark);
  padding: .7rem 1.2rem; font-weight: 700; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ── Rozvržení ──────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section--cream { background: var(--cream); }
.section--pale { background: var(--green-pale); }
.section--green { background: var(--green); color: #fff; }
.section--green h2, .section--green h3 { color: #fff; }

.section-head { max-width: 660px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.07rem; margin: 0; }
.section--green .section-head p { color: rgba(255, 255, 255, .8); }

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ── Tlačítka ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem;
  font: 600 1.02rem/1.2 var(--font-body);
  border: 2px solid transparent; border-radius: 10px;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s, transform .18s;
}
.btn:active { transform: translateY(1px); }

/* Plná zlatá — hlavní akce. Tmavý text je tu záměr, ne opomenutí:
   bílý text na této zlaté má kontrast asi 1,4:1 a je nečitelný. */
.btn--gold { background: var(--gold); color: var(--green-dark); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #ffe14a; color: var(--green-dark); }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-light); color: #fff; }

.btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; }

.btn--outline { background: transparent; color: var(--green); border-color: var(--border); }
.btn--outline:hover { background: var(--green-pale); color: var(--green-dark); border-color: var(--green-light); }

.btn--sm { padding: .55rem 1.1rem; font-size: .93rem; border-radius: 8px; }
.btn--danger { background: #b3261e; color: #fff; }
.btn--danger:hover { background: #931d16; color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ── Odkaz se šipkou ────────────────────────────────────────────────────── */
.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--gold-ink); text-decoration: none;
}
.arrow-link:hover { color: var(--green); gap: .8rem; }
.arrow-link .icon { width: 18px; height: 18px; }
.arrow-link { transition: gap .18s, color .18s; }

/* ── Hlavička ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green); color: #fff;
  box-shadow: 0 2px 14px rgba(17, 53, 31, .25);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 84px;
}

.brand { display: flex; flex-direction: column; text-decoration: none; color: #fff; }
.brand:hover { color: #fff; }
.brand:hover .brand__name { color: var(--gold); }
.brand__name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  line-height: 1; transition: color .16s;
}
.brand__tagline {
  margin-top: 6px; font-size: .7rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: .55rem .85rem; border-radius: 8px;
  font-size: .97rem; font-weight: 500; color: rgba(255, 255, 255, .9);
  text-decoration: none; transition: background-color .16s, color .16s;
  white-space: nowrap;
}
.nav a:hover { background: var(--green-light); color: #fff; }
/* Aktivní položka: zlatá se tmavým textem */
.nav a[aria-current="page"] { background: var(--gold); color: var(--green-dark); font-weight: 600; }

.nav__admin { margin-left: 10px; font-size: .8rem !important; color: rgba(255, 255, 255, .5) !important; }
.nav__admin:hover { color: rgba(255, 255, 255, .85) !important; background: transparent !important; }

.nav-toggle {
  display: none; background: transparent; border: 0; color: #fff;
  padding: 10px; border-radius: 8px; cursor: pointer;
}
.nav-toggle:hover { background: var(--green-light); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--green); padding: 12px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 1rem; font-size: 1.05rem; }
  .nav__admin { margin-left: 0; }
  .site-header__inner { position: relative; }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--green); color: #fff;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(4.5rem, 10vw, 8rem);
  /* Zaoblený spodek — mírnější a předvídatelnější než původní elipsa */
  border-bottom-left-radius: 50% 70px;
  border-bottom-right-radius: 50% 70px;
}
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero__lead { font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: rgba(255, 255, 255, .85); max-width: 40rem; }
.hero__inner { position: relative; z-index: 1; }
.hero--center .hero__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hero--center .hero__lead { margin-left: auto; margin-right: auto; }
.hero__lead p:last-child { margin-bottom: 0; }
.hero .btn-row { margin-top: 2.2rem; }

/* Podkladový motiv: tři vlnitá břevna ze znaku obce */
.hero__pattern {
  position: absolute; inset: 0; opacity: .13; pointer-events: none;
  background-repeat: repeat;
  background-size: 180px 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='90' viewBox='0 0 180 90'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M-10 22c15-13 30-13 45 0s30 13 45 0 30-13 45 0 30 13 45 0'/%3E%3Cpath d='M-10 52c15-13 30-13 45 0s30 13 45 0 30-13 45 0 30 13 45 0'/%3E%3Cpath d='M-10 82c15-13 30-13 45 0s30 13 45 0 30-13 45 0 30 13 45 0'/%3E%3C/g%3E%3C/svg%3E");
}

.hero--slim { padding-bottom: clamp(3rem, 7vw, 5rem); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

/* ── Karty ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow); }
.card__body { padding: 26px; flex: 1; }
.card__body > :last-child { margin-bottom: 0; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); }

.card__media { aspect-ratio: 16 / 9; background: var(--green-pale); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__media img { transform: scale(1.04); }

/* Karta na barevném podkladu (sekce Proč kandidujeme) */
.card--plain {
  background: var(--green-pale); border-color: transparent; box-shadow: none;
  padding: 32px; border-radius: var(--radius-lg);
}
.card--plain:hover { background: #ddebe2; box-shadow: none; }

/* Karta na zeleném podkladu (program na úvodní stránce) */
.card--onGreen {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  color: #fff; padding: 32px; border-radius: var(--radius-lg); box-shadow: none;
}
.card--onGreen h3 { color: #fff; }
.card--onGreen p { color: rgba(255, 255, 255, .82); }

/* ── Kolečko/dlaždice s ikonou ──────────────────────────────────────────── */
.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--green); color: #fff; margin-bottom: 20px;
  transition: background-color .2s;
}
.icon-tile .icon { width: 27px; height: 27px; }
.card--plain:hover .icon-tile { background: var(--blue); }
.card--onGreen .icon-tile { background: rgba(255, 255, 255, .14); }

/* Modrá = informační varianta */
.icon-tile--blue { background: var(--blue); }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 1.15rem; margin-bottom: 16px;
}

/* ── Meta údaje (datum apod.) ───────────────────────────────────────────── */
.meta {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .9rem; color: var(--muted); margin-bottom: .7rem;
}
.meta .icon { width: 16px; height: 16px; color: var(--blue); }

.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .7rem; border-radius: 999px;
  background: var(--blue-pale); color: var(--blue-dark);
  font-size: .8rem; font-weight: 600;
}
.badge--gold { background: #fff6cc; color: var(--gold-ink); }
.badge--muted { background: var(--green-pale); color: var(--green); }

/* ── Aktuality ──────────────────────────────────────────────────────────── */
.news-card h3 a { color: var(--green-dark); text-decoration: none; }
.news-card:hover h3 a { color: var(--gold-ink); }

.news-head {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.news-head h2 { margin-bottom: .3rem; }
.news-head p { margin: 0; color: var(--muted); }

/* ── Detail článku ──────────────────────────────────────────────────────── */
.article { max-width: 760px; margin: 0 auto; }
.article__image { border-radius: var(--radius-lg); overflow: hidden; margin: 0 0 2rem; box-shadow: var(--shadow); }

/* Obsah z editoru */
.rich > :first-child { margin-top: 0; }
.rich h1, .rich h2 { margin-top: 2rem; }
.rich h3 { margin-top: 1.6rem; }
.rich p { line-height: 1.8; }
.rich ul, .rich ol { padding-left: 1.4rem; margin: 0 0 1.1em; }
.rich li { margin-bottom: .35rem; }
.rich blockquote {
  margin: 1.8rem 0; padding: .3rem 0 .3rem 1.2rem;
  border-left: 4px solid var(--gold); color: var(--muted); font-style: italic;
}
.rich img { border-radius: var(--radius); margin: 1.5rem 0; }
.rich a { color: var(--gold-ink); }
.rich a:hover { color: var(--green); }
.rich strong { color: var(--green-dark); }
.rich table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.rich th, .rich td { border: 1px solid var(--border); padding: .6rem .8rem; text-align: left; }
.rich th { background: var(--green-pale); }

/* ── Tým ────────────────────────────────────────────────────────────────── */
.person__media { aspect-ratio: 4 / 3; background: var(--green-pale); overflow: hidden; position: relative; }
.person__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .person__media img { transform: scale(1.04); }
.person__placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: rgba(30, 91, 60, .22);
}
.person__placeholder .icon { width: 76px; height: 76px; }
.person__role { color: var(--gold-ink); font-weight: 600; margin-bottom: .8rem; }
.person__bio { color: var(--muted); font-size: .97rem; }

/* ── Program ────────────────────────────────────────────────────────────── */
.topic { display: grid; gap: 32px; align-items: start; }
@media (min-width: 940px) {
  .topic { grid-template-columns: 1fr 1.6fr; gap: 48px; }
  .topic--flip .topic__head { order: 2; }
}
.topic + .topic { margin-top: clamp(3rem, 6vw, 4.5rem); }
.topic__head h2 { margin-bottom: .6rem; }
.topic__head p { color: var(--muted); margin: 0; }
.topic__steps { background: var(--green-pale); border-radius: var(--radius-lg); padding: 28px; }
.topic__steps h3 { font-size: 1.1rem; margin-bottom: 1rem; }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .8rem; }
.checklist li:last-child { margin-bottom: 0; }
.checklist .icon { width: 21px; height: 21px; flex: 0 0 auto; margin-top: 3px; color: var(--green); }

/* Bilance programu: odrážky s vlastní značkou místo puntíku.
   Seznam přichází z editoru jako <ul>, proto stylujeme až tady. */
.rich--check ul, .rich--arrow ul { list-style: none; padding-left: 0; }
.rich--check li, .rich--arrow li { position: relative; padding-left: 1.7rem; margin-bottom: .7rem; }
.rich--check li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--green); font-weight: 700;
}
.rich--arrow li::before {
  content: "→"; position: absolute; left: 0; top: -1px;
  color: var(--blue); font-weight: 700;
}

/* ── Galerie ────────────────────────────────────────────────────────────── */
.gallery-group + .gallery-group { margin-top: 3rem; }
.gallery-group__head {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.4rem; padding-bottom: .8rem; border-bottom: 2px solid var(--border);
}
.gallery-group__head h2 { margin: 0; font-size: 1.5rem; }

.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-item {
  position: relative; padding: 0; border: 0; background: var(--green-pale);
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  cursor: zoom-in; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__caption {
  position: absolute; inset: auto 0 0 0; padding: 22px 12px 10px;
  background: linear-gradient(transparent, rgba(17, 53, 31, .8));
  color: #fff; font-size: .88rem; text-align: left;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 26, 17, .93); padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--radius); }
.lightbox__caption { color: rgba(255, 255, 255, .85); text-align: center; margin-top: 14px; font-size: .95rem; }
.lightbox__btn {
  position: absolute; background: rgba(255, 255, 255, .13); border: 0; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
.lightbox__prev svg { transform: rotate(180deg); }
@media (max-width: 640px) {
  .lightbox__prev { left: 8px; bottom: 20px; top: auto; }
  .lightbox__next { right: 8px; bottom: 20px; top: auto; }
}

/* ── Formuláře ──────────────────────────────────────────────────────────── */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .95rem; color: var(--green-dark); }
.field .hint { font-size: .85rem; color: var(--muted); font-weight: 400; }

input[type=text], input[type=email], input[type=password], input[type=number],
input[type=url], input[type=search], textarea, select {
  width: 100%; padding: .8rem 1rem;
  font: 400 1rem/1.5 var(--font-body); color: var(--ink);
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  transition: border-color .16s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(65, 130, 96, .18);
}
textarea { resize: vertical; min-height: 130px; }

.check { display: flex; align-items: flex-start; gap: .6rem; }
.check input { width: 19px; height: 19px; margin: 3px 0 0; flex: 0 0 auto; accent-color: var(--green); }
.check label { font-weight: 500; }

/* Past na roboty — skryto pro lidi, viditelné pro spamboty */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Hlášení ────────────────────────────────────────────────────────────── */
.notice {
  padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.4rem;
  border: 1px solid; font-size: .97rem;
}
.notice--success { background: #eaf6ee; border-color: #a9d8ba; color: #12512c; }
.notice--error { background: #fdeceb; border-color: #f0b7b3; color: #8b1c15; }
.notice--info { background: var(--blue-pale); border-color: #bcd3fa; color: var(--blue-dark); }
.notice p:last-child { margin-bottom: 0; }

.empty {
  text-align: center; padding: clamp(2.5rem, 6vw, 4rem) 20px;
  background: var(--green-pale); border-radius: var(--radius-lg); color: var(--muted);
}
.empty h3 { margin-bottom: .4rem; }
.empty .icon { width: 56px; height: 56px; color: rgba(30, 91, 60, .3); margin-bottom: 1rem; }

/* ── Kontakt ────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }

.contact-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-list .icon-tile { width: 48px; height: 48px; margin: 0; border-radius: 12px; }
.contact-list .icon-tile .icon { width: 22px; height: 22px; }
.contact-list dt { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 600; }
.contact-list dd { margin: 0; font-weight: 600; font-size: 1.05rem; }
.contact-list a { color: var(--green-dark); text-decoration: none; }
.contact-list a:hover { color: var(--gold-ink); }

.social { display: flex; gap: 10px; }
.social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale); color: var(--green);
  transition: background-color .18s, color .18s;
}
.social a:hover { background: var(--gold); color: var(--green-dark); }
.social .icon { width: 21px; height: 21px; }

/* ── Patička ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--green-dark); color: rgba(255, 255, 255, .75); }
.site-footer__grid {
  display: grid; gap: 36px; padding: clamp(2.8rem, 6vw, 4rem) 0 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.site-footer h3, .site-footer h4 { color: #fff; }
.site-footer h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.site-footer h4 { font-size: 1.08rem; margin-bottom: 1rem; }
.site-footer__tagline { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255, 255, 255, .72); text-decoration: none; font-size: .96rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer .social a { background: rgba(255, 255, 255, .1); color: #fff; }
.site-footer .social a:hover { background: var(--gold); color: var(--green-dark); }
.site-footer__bottom {
  margin-top: 2.5rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .88rem; color: rgba(255, 255, 255, .55);
}

/* ── Tisk ───────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .btn-row, .nav-toggle, .lightbox { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .hero { background: none; color: #000; padding: 0 0 1rem; }
  .hero h1, .hero__lead { color: #000; }
  .hero__pattern { display: none; }
}

/* ── Ohled na uživatele, kteří nechtějí animace ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
