/*
Theme Name: Akademie Jizera
Theme URI: https://akademiejizera.cz
Author: Akademie Jizera
Description: Vlastní téma pro Akademii Jizera z.ú. — světlý, profesionální design v barvách organizace (navy + zelená).
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: akademie-jizera
*/

/* ═══════════════════ RESET & TOKENS ═══════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy:       #1e3a5f;
  --navy-dark:  #152c4a;
  --navy-light: #e8eef6;
  --green:      #2d7a3a;
  --green-light:#e8f4ea;
  --white:      #ffffff;
  --grey-light: #f5f6f8;
  --grey-mid:   #e0e4ea;
  --text-dark:  #1a2030;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --radius:     12px;
  --shadow:     0 2px 16px rgba(30,58,95,0.10);
  --shadow-lg:  0 8px 40px rgba(30,58,95,0.16);
  --max-w:      1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }
.content-block { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .content-block { padding: 0 20px; } }

/* ═══════════════════ TYPOGRAPHY ═══════════════════ */
.section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green); margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 12px; line-height: 1.25;
}
.section-sub { font-size: 0.95rem; color: var(--text-mid); max-width: 540px; line-height: 1.7; }

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--navy); color: #fff;
  font-weight: 600; font-size: 0.88rem;
  padding: 12px 28px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--navy);
  font-weight: 600; font-size: 0.88rem;
  padding: 11px 26px; border-radius: var(--radius);
  border: 2px solid var(--grey-mid); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--navy-light); color: var(--navy); }
.btn-green {
  display: inline-block;
  background: var(--green); color: #fff;
  font-weight: 600; font-size: 0.88rem;
  padding: 12px 28px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-green:hover { background: #256830; color: #fff; transform: translateY(-1px); }

/* ═══════════════════ NAV ═══════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  box-shadow: 0 1px 4px rgba(30,58,95,0.06);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; }
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-menu li a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-mid);
  padding: 6px 12px; border-radius: 8px; transition: all 0.2s;
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a { color: var(--navy); background: var(--navy-light); }
.nav-menu .menu-podporte > a {
  color: var(--green) !important; font-weight: 600;
  background: var(--green-light) !important;
  border-radius: 8px;
}
.nav-menu .menu-podporte > a:hover { background: #d1ead4 !important; }
.nav-cta > a {
  background: var(--navy) !important; color: #fff !important;
  border-radius: 8px; padding: 7px 16px !important;
}
.nav-cta > a:hover { background: var(--navy-dark) !important; }

/* ─── Podmenu (dropdown) ─── */
.nav-menu li { position: relative; }
.nav-menu li ul.sub-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  margin-top: 0;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 6px;
  z-index: 200;
}
.nav-menu li:hover > ul.sub-menu { display: block; }
.nav-menu li ul.sub-menu li a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}
.nav-menu li ul.sub-menu li a:hover { background: var(--navy-light); color: var(--navy); }
/* Šipka dolů u položky s podmenu */
.nav-menu li:has(> ul.sub-menu) > a::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.6;
  margin-left: 1px;
}

/* Mobile */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  z-index: 99; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; color: var(--navy); padding: 12px 32px; border-radius: var(--radius); }
.mobile-menu a:hover { background: var(--navy-light); }
@media (max-width: 860px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { padding: 0 20px; }
}

/* ═══════════════════ SECTIONS ═══════════════════ */
section { padding: 72px 40px; }
.section-alt { background: var(--grey-light); }
.section-header { margin-bottom: 44px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

@media (max-width: 640px) { section { padding: 52px 20px; } }

/* ═══════════════════ HERO (HOMEPAGE) ═══════════════════ */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #2a5298 100%);
  padding: 80px 40px 88px; color: #fff;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; }
.hero-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
  max-width: 680px;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.82);
  line-height: 1.75; max-width: 560px; margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-primary { background: #fff; color: var(--navy); }
.hero .btn-primary:hover { background: var(--grey-light); color: var(--navy); }
.hero .btn-secondary { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
.hero .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; }
@media (max-width: 640px) { .hero { padding: 60px 20px 72px; } }

/* ═══════════════════ STATS RIBBON ═══════════════════ */
.stats-ribbon {
  background: var(--navy);
  padding: 28px 40px;
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item {}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
@media (max-width: 600px) { .stats-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* ═══════════════════ NEWS CARDS ═══════════════════ */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: var(--max-w); margin: 0 auto;
}
.news-card {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.news-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--green); }
.news-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.news-card-date { font-size: 0.76rem; color: var(--text-light); }
.news-read { font-size: 0.82rem; font-weight: 600; color: var(--green); margin-top: 14px; }
.news-read:hover { color: var(--navy); }

.featured-news {
  display: block; max-width: var(--max-w); margin: 0 auto;
  background: var(--navy-light); border: 1px solid var(--grey-mid);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius); padding: 28px 32px;
  transition: box-shadow 0.2s;
}
.featured-news:hover { box-shadow: var(--shadow-lg); color: inherit; }
.featured-news .fn-badge { font-size: 0.76rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.featured-news h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.featured-news p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 14px; }
.featured-news .fn-meta { display: flex; align-items: center; gap: 10px; }
.fn-date { font-size: 0.78rem; color: var(--text-light); }

/* Tag pill */
.tag-pill {
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  background: var(--navy-light); color: var(--navy);
  display: inline-block; white-space: nowrap;
}
.tag-pill.green { background: var(--green-light); color: var(--green); }

/* ═══════════════════ OBLASTI GRID (HOME) ═══════════════════ */
.oblasti-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; max-width: var(--max-w); margin: 0 auto;
}
.oblast-card {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.oblast-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--navy); }
.oblast-card:hover h3 { color: var(--green); }
.oblast-icon { font-size: 1.8rem; margin-bottom: 10px; }
.oblast-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.oblast-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }
.oblast-link { font-size: 0.78rem; font-weight: 600; color: var(--green); margin-top: 10px; display: inline-block; }
@media (max-width: 600px) { .oblasti-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .oblasti-grid { grid-template-columns: 1fr; } }

/* ═══════════════════ PAGE HERO (SUBPAGES) ═══════════════════ */
.page-hero-band {
  background: linear-gradient(160deg, var(--navy) 0%, #2a5298 100%);
  padding: 56px 40px 52px; color: #fff;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero-band .section-label { color: rgba(255,255,255,0.55); }
.page-hero-band h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px;
}
.page-hero-band p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.7; }
@media (max-width: 640px) { .page-hero-band { padding: 44px 20px 40px; } }

/* ═══════════════════ PROJEKTY ═══════════════════ */
.projects-list { display: flex; flex-direction: column; gap: 16px; max-width: 860px; margin: 0 auto; }
.project-card {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 24px 28px;
  box-shadow: var(--shadow); transition: box-shadow 0.2s;
}
.project-card:hover { box-shadow: var(--shadow-lg); }
.project-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.project-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.project-card > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.project-status { font-size: 0.76rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 5px; }
.project-status::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.project-status.prep { color: var(--text-light); }
.project-status.prep::before { background: var(--text-light); }
.project-meta { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.progress-bar { width: 100%; height: 5px; background: var(--grey-mid); border-radius: 4px; margin-top: 14px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--green); border-radius: 4px; }
.project-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.project-detail-item { font-size: 0.8rem; color: var(--text-mid); }
.project-detail-item strong { color: var(--navy); font-weight: 600; }
@media (max-width: 600px) { .project-detail-grid { grid-template-columns: 1fr; } }

/* ═══════════════════ O NÁS ═══════════════════ */
.hodnoty-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.hodnota-card {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 24px 20px;
  box-shadow: var(--shadow);
}
.hodnota-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.hodnota-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.hodnota-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; max-width: 860px; margin: 0 auto; }
.team-card {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); text-align: center;
}
.team-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 14px; }
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-role { font-size: 0.78rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card p { font-size: 0.84rem; color: var(--text-mid); margin-top: 10px; line-height: 1.6; }
.team-card a { font-size: 0.82rem; color: var(--navy); margin-top: 6px; display: block; }
.team-card a:hover { color: var(--green); }

.docs-list { display: flex; flex-wrap: wrap; gap: 12px; max-width: 700px; margin: 0 auto; }
.doc-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 14px 18px;
  flex: 1; min-width: 220px; box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.doc-item:hover { box-shadow: var(--shadow-lg); }
.doc-icon { width: 36px; height: 36px; background: #fef3f3; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.doc-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.doc-meta { font-size: 0.74rem; color: var(--text-light); margin-top: 1px; }

/* ═══════════════════ CO DĚLÁME ═══════════════════ */
.oblast-detail { padding: 44px 0; }
.oblast-detail-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.oblast-detail-icon { font-size: 2.4rem; flex-shrink: 0; }
.oblast-detail h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--navy); margin: 0; }
.oblast-detail p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.oblast-detail h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin: 20px 0 10px; }
.oblast-detail-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.oblast-detail-list li { font-size: 0.9rem; color: var(--text-mid); padding-left: 20px; position: relative; line-height: 1.55; }
.oblast-detail-list li::before { content: "→"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.oblast-divider { border: none; border-top: 1px solid var(--grey-mid); margin: 4px 0; }

/* ═══════════════════ PODPOŘTE NÁS ═══════════════════ */
.support-intro { max-width: 720px; }
.impact-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; max-width: 820px; margin: 0 auto;
}
.impact-item {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
  box-shadow: var(--shadow);
}
.impact-amount { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.impact-desc { font-size: 0.85rem; color: var(--text-mid); margin-top: 6px; line-height: 1.5; }
.bank-box {
  background: var(--navy-light); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 28px 32px; max-width: 520px;
}
.bank-box h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 14px; }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--grey-mid); gap: 12px; }
.bank-row:last-of-type { border-bottom: none; }
.bank-row span:first-child { font-size: 0.82rem; color: var(--text-mid); }
.bank-row strong { font-size: 0.92rem; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; letter-spacing: 0.02em; }
.copy-btn {
  font-size: 0.72rem; font-weight: 600; color: var(--navy);
  background: var(--white); border: 1px solid var(--grey-mid);
  padding: 4px 10px; border-radius: 6px; cursor: pointer;
  transition: background 0.2s;
}
.copy-btn:hover { background: var(--grey-mid); }

.story-card {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-left: 4px solid var(--green);
  border-radius: var(--radius); padding: 28px 32px;
  max-width: 680px; box-shadow: var(--shadow);
}
.story-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; }
.story-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }

.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 18px; max-width: 900px; margin: 0 auto; }
.quote-card { background: var(--navy-light); border-radius: var(--radius); padding: 24px; }
.quote-card blockquote { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.quote-card cite { font-size: 0.8rem; font-weight: 600; color: var(--navy); font-style: normal; }

.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 820px; margin: 0 auto; }
.partner-card {
  background: var(--white); border: 2px solid var(--grey-mid);
  border-radius: var(--radius); padding: 22px 18px; text-align: center;
  box-shadow: var(--shadow); transition: border-color 0.2s;
}
.partner-card:hover { border-color: var(--navy); }
.partner-card .level { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 8px; }
.partner-card .amount { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.partner-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }
@media (max-width: 640px) { .partner-grid { grid-template-columns: 1fr; } .impact-strip { grid-template-columns: 1fr; } }

/* ═══════════════════ KONTAKT ═══════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 52px; align-items: start; max-width: 960px; margin: 0 auto;
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 40px; height: 40px; background: var(--navy-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item strong { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); display: block; margin-bottom: 2px; }
.contact-item span { font-size: 0.92rem; color: var(--text-dark); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: inherit; font-size: 0.9rem;
  padding: 12px 14px; background: var(--white);
  border: 1px solid var(--grey-mid); border-radius: var(--radius);
  color: var(--text-dark); outline: none; transition: border-color 0.2s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--navy); }
.contact-form textarea { min-height: 110px; }
.fakturace-box {
  background: var(--grey-light); border-radius: var(--radius);
  padding: 20px 24px; margin-top: 24px;
}
.fakturace-box h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 12px; }
.fakturace-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--grey-mid); font-size: 0.86rem; }
.fakturace-row:last-child { border-bottom: none; }
.fakturace-row span:first-child { color: var(--text-mid); }
.fakturace-row strong { color: var(--navy); font-weight: 600; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ═══════════════════ NEWS LIST (ARCHIVE) ═══════════════════ */
.news-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.news-row {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); padding: 22px 26px;
  box-shadow: var(--shadow); transition: box-shadow 0.2s;
}
.news-row:hover { box-shadow: var(--shadow-lg); }
.news-row-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.news-row h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.news-row h3 a { color: inherit; }
.news-row h3 a:hover { color: var(--green); }
.news-row p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }

/* ═══════════════════ SINGLE POST ═══════════════════ */
.single-content { max-width: 720px; margin: 0 auto; }
.single-content p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; }
.single-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin: 36px 0 14px; }
.single-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.single-content ul, .single-content ol { margin: 16px 0; padding-left: 24px; }
.single-content li { color: var(--text-mid); margin-bottom: 8px; list-style: disc; font-size: 0.96rem; }
.single-content img { border-radius: var(--radius); margin: 24px 0; }
.single-content blockquote { border-left: 3px solid var(--green); padding: 14px 22px; background: var(--green-light); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; }
.back-link { font-size: 0.84rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 32px; }
.back-link:hover { color: var(--green); }

/* ═══════════════════ CTA BAND ═══════════════════ */
.cta-band {
  background: var(--navy); color: #fff;
  padding: 56px 40px; text-align: center;
}
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 460px; margin: 0 auto 24px; font-size: 0.95rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--navy); }
.cta-band .btn-primary:hover { background: var(--grey-light); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }
@media (max-width: 640px) { .cta-band { padding: 44px 20px; } }

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 48px 40px 24px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col li a, .footer-col li span { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color 0.2s; cursor: pointer; }
.footer-col li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { font-size: 0.76rem; color: rgba(255,255,255,0.4); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } .footer-brand img { filter: brightness(0) invert(1); } }
@media (max-width: 640px) { .site-footer { padding: 40px 20px 20px; } }

/* ═══════════════════ PAGINATION ═══════════════════ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--grey-mid); color: var(--text-mid); transition: all 0.2s;
}
.pagination a:hover { background: var(--navy-light); color: var(--navy); border-color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ═══════════════════ FORM MESSAGES ═══════════════════ */
.form-ok { background: var(--green-light); border: 1px solid var(--green); color: var(--green); border-radius: var(--radius); padding: 12px 16px; font-size: 0.88rem; font-weight: 600; display: none; }
.form-err { background: #fef3f3; border: 1px solid #ef4444; color: #dc2626; border-radius: var(--radius); padding: 12px 16px; font-size: 0.88rem; display: none; }

/* ═══════════════════ ADMIN BAR ═══════════════════ */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-nav { top: 46px; } }

/* ═══════════════════ WP BLOCKS ═══════════════════ */
.wp-block-image { margin: 24px 0; }
.wp-block-image img { border-radius: var(--radius); }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }