/* =========================================================
   MenoHub — šablona webu
   Jeden stylopis pro všechny stránky. Mobile first.
   Zlomy: do 639 mobil · 640–1279 tablet · od 1280 široký desktop
   ========================================================= */

/* ---------- 1. Tokeny ---------- */
:root {
  --plum: #3A1F4D;
  --plum-dark: #2F1840;
  --plum-line: #5A3C74;
  --sage: #3E8A6B;
  --sage-dark: #245B45;
  --sage-bg: #DCEEE3;
  --ink: #1D1526;
  --body: #4A3F55;
  --muted: #6B5E75;
  --paper: #F5F1EB;
  --white: #FFFFFF;
  --line: #E3DBD1;
  --line-soft: #EFE9E1;
  --lila: #EAE2F1;
  --lila-line: #C9BCD6;
  --lila-text: #D9CBF2;
  --mint: #7ED0A1;

  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --gutter: 20px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --maxw: 1440px;
}

@media (min-width: 640px)  { :root { --gutter: 32px; } }
@media (min-width: 768px)  { :root { --gutter: 40px; } }
@media (min-width: 1024px) { :root { --gutter: 48px; } }
@media (min-width: 1280px) { :root { --gutter: 72px; } }
@media (min-width: 1440px) { :root { --gutter: 96px; } }

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--plum); }
a:hover { color: var(--sage); }

button { font: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  padding: 10px 16px; background: var(--plum); color: #fff;
  border-radius: 8px; font-weight: 600; text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 12px; color: #fff; }

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

/* Bloky s vlastním pozadím (pilíře, Pro ženy, Pro firmy, newsletter)
   nesedí uvnitř .wrap, ale musí držet přesně stejnou šířku obsahu. */
.bleed-block {
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--maxw) - var(--gutter) * 2);
  margin-inline: auto;
}

.section { padding-block: 44px; }
@media (min-width: 640px)  { .section { padding-block: 64px; } }
@media (min-width: 1024px) { .section { padding-block: 88px; } }

.stack { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-22 { gap: 22px; }
.gap-28 { gap: 28px; }
.gap-36 { gap: 36px; }

/* ---------- 4. Typografie ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sage);
}
@media (min-width: 1024px) { .eyebrow { font-size: 13px; } }

.h1, .h2, .h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }

.h1 { font-size: 34px; line-height: 1.12; }
.h2 { font-size: 26px; line-height: 1.18; letter-spacing: -0.01em; }
.h3 { font-size: 20px; line-height: 1.25; }

@media (min-width: 640px) {
  .h1 { font-size: 44px; }
  .h2 { font-size: 32px; }
  .h3 { font-size: 23px; }
}
@media (min-width: 1024px) {
  .h1 { font-size: 60px; line-height: 1.08; }
  .h2 { font-size: 40px; line-height: 1.14; }
  .h3 { font-size: 28px; }
}

.lead { font-size: 17px; line-height: 1.55; color: var(--body); }
@media (min-width: 1024px) { .lead { font-size: 20px; max-width: 540px; } }

.text { font-size: 16px; line-height: 1.55; color: var(--body); }
@media (min-width: 1024px) { .text { font-size: 17px; } }

.muted { color: var(--muted); }
.small { font-size: 14px; line-height: 1.5; color: var(--muted); }
.tiny  { font-size: 13px; line-height: 1.5; color: var(--muted); }

strong { font-weight: 600; color: var(--ink); }

/* ---------- 5. Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px;
  border: 1.5px solid transparent; border-radius: 8px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn--primary { background: var(--plum); color: #fff; border-color: var(--plum); }
.btn--primary:hover { background: var(--plum-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn--ghost:hover { background: var(--lila); color: var(--plum); }
.btn--plain { background: transparent; color: var(--plum); border-color: transparent; padding-inline: 0; }
.btn--plain:hover { color: var(--sage); }
.btn--mint { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.btn--mint:hover { background: #6cc191; color: var(--ink); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) {
  .btn-row { flex-direction: row; align-items: center; gap: 14px; flex-wrap: wrap; }
  .btn--block { width: auto; }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600; color: var(--plum); text-decoration: none;
}
.link-arrow:hover { color: var(--sage); }

/* ---------- 6. Hlavička ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 62px; min-width: 0;
}
@media (min-width: 1280px) { .site-header__inner { min-height: 84px; gap: 24px; } }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo__mark { flex-shrink: 0; }
.logo__word {
  font-family: var(--sans); font-weight: 700; font-size: 20px;
  letter-spacing: -0.015em; color: var(--plum);
}
@media (min-width: 1280px) {
  .logo { gap: 13px; }
  .logo__word { font-size: 26px; }
}

.nav { display: none; }
@media (min-width: 1280px) {
  .nav {
    display: flex; align-items: center; justify-content: center;
    flex: 1 1 auto; min-width: 0; gap: 20px;
    font-size: 15px; font-weight: 500;
  }
  .nav a { color: var(--ink); text-decoration: none; white-space: nowrap; }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--sage); }
}
@media (min-width: 1440px) { .nav { gap: 32px; } }

.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
@media (min-width: 768px) { .header-right { gap: 12px; } }
@media (min-width: 1280px) { .header-right { gap: 16px; } }

.lang { display: flex; align-items: center; gap: 3px; }
.lang a {
  display: flex; align-items: center; justify-content: center;
  padding: 3px; border-radius: 4px; text-decoration: none; opacity: .55;
}
.lang a:hover { opacity: 1; }
.lang a[aria-current="page"] { opacity: 1; box-shadow: 0 0 0 1.5px var(--plum); }
.lang svg { border-radius: 2px; }

.header-sep { width: 1px; height: 24px; background: var(--line); display: none; }
@media (min-width: 768px) { .header-sep { display: block; } .lang { gap: 4px; } }

.header-cta {
  display: none;
  white-space: nowrap; flex-shrink: 0;
}
@media (min-width: 768px) {
  .header-cta { display: inline-flex; min-height: 44px; padding: 0 16px; font-size: 15px; }
}
@media (min-width: 1280px) {
  .header-cta { min-height: 44px; padding: 0 20px; font-size: 16px; }
}

.burger {
  width: 44px; height: 44px; margin-right: -10px; padding: 0;
  border: 0; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (min-width: 1280px) { .burger { display: none; } }

/* mobilní menu */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding-block: 12px 20px;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1280px) { .mobile-nav { display: none !important; } }

.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: flex; align-items: center; min-height: 48px;
  font-size: 17px; font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:hover { color: var(--sage); }
.mobile-nav .btn { margin-top: 16px; }

/* ---------- 7. Hero ---------- */
.hero { padding-block: 24px 34px; }
@media (min-width: 1024px) { .hero { padding-block: 76px 64px; } }

.hero__grid { display: flex; flex-direction: column; }
@media (min-width: 1024px) {
  .hero__grid {
    display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px; align-items: center;
  }
  .hero__col { grid-column: 1 / span 6; grid-row: 1; padding-right: 32px; display: flex; flex-direction: column; gap: 30px; }
  .hero__media { grid-column: 7 / span 6; grid-row: 1; position: relative; }
}

.hero__img {
  width: 100%; height: 272px; object-fit: cover; object-position: 50% 16%;
  border-radius: 14px;
}
@media (min-width: 640px)  { .hero__img { height: 380px; } }
@media (min-width: 1024px) { .hero__img { height: 620px; border-radius: var(--radius-lg); object-position: 50% 18%; } }

/* karta „Co spojujeme“ */
.hero__card {
  position: relative; z-index: 2;
  margin: -46px 10px 0;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(29,21,38,.16);
  display: flex; flex-direction: column; gap: 8px;
}
.hero__card-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sage);
}
.hero__card-title { font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.28; color: var(--ink); }
.hero__card-text { font-size: 13px; line-height: 1.45; color: var(--muted); }

@media (min-width: 1024px) {
  .hero__card {
    position: absolute; z-index: 2; margin: 0;
    left: -24px; bottom: 36px; width: min(280px, 42%);
    padding: 20px 22px; border-radius: 14px; gap: 10px;
  }
  .hero__card-title { font-size: 20px; }
  .hero__card-text { font-size: 14px; }
}
@media (min-width: 1280px) {
  .hero__card { left: -56px; bottom: 44px; width: 320px; padding: 24px 26px; }
  .hero__card-title { font-size: 21px; }
}

.hero h1 { margin-top: 28px; }
@media (min-width: 1024px) { .hero h1 { margin-top: 0; } }
.hero .lead { margin-top: 18px; }
@media (min-width: 1024px) { .hero .lead { margin-top: 0; } }
.hero .btn-row { margin-top: 24px; }
@media (min-width: 1024px) { .hero .btn-row { margin-top: 4px; } }

/* stack avatarů */
.proof { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
@media (min-width: 1024px) { .proof { gap: 12px; margin-top: 10px; } }

.avatars { display: flex; align-items: center; }
.avatars img, .avatars .avatars__more {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--paper); flex-shrink: 0;
}
.avatars img { object-fit: cover; object-position: 50% 30%; }
.avatars > * + * { margin-left: -8px; }
.avatars__more {
  background: var(--lila);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) {
  .avatars img, .avatars .avatars__more { width: 38px; height: 38px; }
  .avatars > * + * { margin-left: -9px; }
}

.proof__text { font-size: 13px; line-height: 1.5; color: var(--muted); }
@media (min-width: 1024px) { .proof__text { font-size: 14px; } }

/* ---------- 8. Pilíře ---------- */
.pillars {
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--maxw) - var(--gutter) * 2);
  margin-inline: auto;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 640px)  { .pillars { grid-template-columns: 1fr 1fr; gap: 22px 24px; padding-block: 28px; } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 30px; } }

.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar svg { flex-shrink: 0; margin-top: 1px; }
.pillar p { font-size: 15px; line-height: 1.45; color: var(--ink); }

/* ---------- 9. Sekce s hlavičkou ---------- */
.sec-head { display: flex; flex-direction: column; gap: 12px; max-width: 700px; }
@media (min-width: 1024px) {
  .sec-head--split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 40px; max-width: none; }
  .sec-head--split > div { max-width: 700px; }
  .sec-head--split > p { max-width: 380px; }
}

/* ---------- 10. Karty projektů ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
@media (min-width: 768px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 32px; }
}
@media (min-width: 1024px) { .cards { gap: 16px; } }
@media (min-width: 1280px) { .cards { gap: 24px; margin-top: 40px; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
}
.card--dark { background: var(--plum); border-color: var(--plum); color: #fff; }
.card--dark .card__title, .card--dark .card__text { color: #fff; }
.card--dark .card__foot { border-top-color: var(--plum-line); }
.card--dark .card__meta { color: var(--lila-text); }
.card--dark .link-arrow { color: var(--mint); }

.card img { width: 100%; height: 190px; object-fit: cover; object-position: 50% 30%; }
@media (min-width: 768px)  { .card img { height: 132px; } }
@media (min-width: 1024px) { .card img { height: 168px; } }
@media (min-width: 1280px) { .card img { height: 220px; } }

/* mapová grafika v kartě MenoMapa */
.card__map {
  height: 190px; padding: 20px; background: var(--plum-dark);
  display: flex; flex-direction: column; justify-content: flex-end;
}
@media (min-width: 768px)  { .card__map { height: 132px; padding: 14px; } }
@media (min-width: 1024px) { .card__map { height: 168px; padding: 20px; } }
@media (min-width: 1280px) { .card__map { height: 220px; padding: 28px; } }

.card__body { padding: 20px 18px 22px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; min-width: 0; }
@media (min-width: 768px)  { .card__body { padding: 14px 14px 16px; gap: 8px; } }
@media (min-width: 1024px) { .card__body { padding: 18px 16px 20px; gap: 10px; } }
@media (min-width: 1280px) { .card__body { padding: 28px 28px 30px; gap: 14px; } }

.card__top { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
@media (min-width: 1280px) {
  .card__top {
    flex-direction: row; justify-content: space-between; align-items: center;
    gap: 8px 10px; flex-wrap: wrap;
  }
}
.card__title {
  font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink);
  min-width: 0; overflow-wrap: anywhere;
}
@media (min-width: 768px)  { .card__title { font-size: 19px; } }
@media (min-width: 1024px) { .card__title { font-size: 22px; } }
@media (min-width: 1280px) { .card__title { font-size: 28px; } }

.badge {
  padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap; flex: 0 0 auto;
}
@media (min-width: 768px)  { .badge { padding: 3px 8px; font-size: 10px; letter-spacing: .04em; } }
@media (min-width: 1280px) { .badge { padding: 5px 10px; font-size: 12px; letter-spacing: .06em; } }
.badge--sage { background: var(--sage-bg); color: var(--sage-dark); }
.badge--lila { background: var(--lila); color: var(--plum); }
.badge--mint { background: var(--mint); color: var(--ink); }

.card__text { font-size: 15px; line-height: 1.55; color: var(--body); overflow-wrap: anywhere; }
@media (min-width: 768px)  { .card__text { font-size: 13px; line-height: 1.45; } }
@media (min-width: 1280px) { .card__text { font-size: 15px; line-height: 1.55; } }

.card__foot {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 8px 12px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .card__foot { flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 10px; }
  .card__foot .link-arrow { font-size: 13px; }
}
@media (min-width: 1280px) {
  .card__foot { flex-direction: row; align-items: center; gap: 8px 12px; padding-top: 12px; }
  .card__foot .link-arrow { font-size: 15px; }
}
.card__meta { font-size: 14px; color: var(--muted); }
@media (min-width: 768px)  { .card__meta { font-size: 12px; } }
@media (min-width: 1280px) { .card__meta { font-size: 14px; } }
.card__meta strong { font-size: 1.05em; }

/* ---------- 11. Dvousloupcové bloky ---------- */
.split {
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--maxw) - var(--gutter) * 2);
  margin-inline: auto;
  padding: 26px 22px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 20px;
}
.split__text { display: flex; flex-direction: column; gap: 16px; }
.split__text .btn-row { margin-top: 4px; }
@media (min-width: 1024px) {
  .split {
    padding: 64px; border-radius: var(--radius-xl);
    display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px; align-items: center;
  }
  .split__text { grid-column: 1 / span 6; display: flex; flex-direction: column; gap: 22px; padding-right: 32px; }
  .split__media { grid-column: 7 / span 6; }
  .split--flip .split__media { grid-column: 1 / span 6; grid-row: 1; }
  .split--flip .split__text { grid-column: 7 / span 6; grid-row: 1; padding-right: 0; padding-left: 32px; }
}

.split img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 640px)  { .split img { height: 320px; } }
@media (min-width: 1024px) { .split img { height: 440px; } }

.ticks { display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.45; color: var(--ink); }
.ticks span.tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lila); flex-shrink: 0; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
}
.ticks--sage span.tick { background: var(--sage-bg); }

/* ---------- 12. Akce ---------- */
.events { display: flex; flex-direction: column; }
@media (min-width: 1024px) {
  .events-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; }
  .events-grid > .sec-head { grid-column: 1 / span 4; padding-right: 24px; }
  .events-grid > .events { grid-column: 5 / span 8; border-top: 1px solid var(--line); }
}

.event {
  display: grid; grid-template-columns: 84px 1fr 20px;
  gap: 14px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
}
.event:hover { color: var(--ink); }
.event:hover .event__title { color: var(--sage); }
.event img { width: 84px; height: 64px; object-fit: cover; border-radius: 8px; }
.event__date { font-size: 13px; font-weight: 600; color: var(--muted); }
.event__title { font-size: 17px; font-weight: 600; line-height: 1.32; overflow-wrap: anywhere; }
.event__cta { display: none; }
.event__chev { justify-self: end; color: var(--muted); }

@media (min-width: 1024px) {
  .event {
    grid-template-columns: 112px 92px 1fr auto;
    gap: 20px; padding: 20px 0;
  }
  .event img { width: 112px; height: 80px; }
  .event__daybox { display: flex; flex-direction: column; }
  .event__day { font-family: var(--serif); font-size: 32px; font-weight: 600; line-height: 1; }
  .event__month { font-size: 15px; font-weight: 600; line-height: 1.2; margin-top: 2px; }
  .event__date { display: none; }
  .event__title { font-size: 20px; }
  .event__meta { font-size: 14px; color: var(--muted); margin-top: 5px; display: block; }
  .event__chev { display: none; }
  .event__cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 16px; border: 1.5px solid var(--plum); border-radius: 6px;
    font-size: 14px; font-weight: 600; color: var(--plum);
  }
  .event:hover .event__cta { background: var(--plum); color: #fff; }
}
.event__daybox { display: none; }
@media (min-width: 1024px) { .event__daybox { display: flex; } }
.event__meta { font-size: 13px; color: var(--muted); margin-top: 3px; display: block; }

/* ---------- 13. Tým ---------- */
.team-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px)  { .team-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 768px) {
  .team-row--founders { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
}
@media (min-width: 1280px) {
  .team-row--founders { gap: 24px; }
  .team-row--experts  { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

.person {
  background: var(--lila); border-radius: var(--radius-lg);
  padding: 22px; display: flex; gap: 18px; align-items: center;
}
.person img { width: 82px; height: 82px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.person__role { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--plum); }
.person__name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.person__text { font-size: 14px; line-height: 1.5; color: var(--body); }
.person__body { display: flex; flex-direction: column; gap: 6px; }

@media (min-width: 768px) {
  .team-row--founders .person { flex-direction: column; align-items: flex-start; padding: 16px; gap: 10px; }
  .team-row--founders .person img { width: 64px; height: 64px; }
  .team-row--founders .person__name { font-size: 18px; }
  .team-row--founders .person__text { font-size: 13px; }
}
@media (min-width: 1024px) {
  .person { flex-direction: column; align-items: flex-start; padding: 22px; gap: 14px; }
  .person img { width: 80px; height: 80px; }
  .person__name { font-size: 22px; }
  .person__body { gap: 7px; }
}
@media (min-width: 1280px) {
  .person,
  .team-row--founders .person { padding: 28px; gap: 16px; }
  .person img,
  .team-row--founders .person img { width: 96px; height: 96px; }
  .person__name,
  .team-row--founders .person__name { font-size: 25px; }
  .team-row--founders .person__text { font-size: 14px; }
}

.tile {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.tile--open { border-style: dashed; border-color: var(--lila-line); }
.tile__icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--lila);
  display: flex; align-items: center; justify-content: center;
}
.tile--open .tile__icon { background: var(--sage-bg); }
.tile__title { font-size: 17px; font-weight: 600; color: var(--ink); }
.tile__text { font-size: 14px; line-height: 1.5; color: var(--muted); }
.tile .link-arrow { margin-top: auto; }
@media (min-width: 1024px) {
  .tile { padding: 26px 24px; }
  .tile__title { font-size: 18px; }
}

/* ---------- 14. Newsletter ---------- */
.newsletter {
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--maxw) - var(--gutter) * 2);
  margin-inline: auto;
  padding: 28px 22px 30px;
  background: var(--plum); color: #fff;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 1024px) {
  .newsletter {
    padding: 64px; border-radius: var(--radius-xl);
    display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px; align-items: center;
  }
  .newsletter__text { grid-column: 1 / span 6; }
  .newsletter__form { grid-column: 8 / span 5; }
}
.newsletter h2 { font-family: var(--serif); font-weight: 600; font-size: 25px; line-height: 1.2; letter-spacing: -.01em; color: #fff; }
@media (min-width: 1024px) { .newsletter h2 { font-size: 36px; line-height: 1.16; } }
.newsletter p { font-size: 15px; line-height: 1.55; color: var(--lila-text); margin-top: 10px; }
@media (min-width: 1024px) { .newsletter p { font-size: 16px; margin-top: 14px; } }

.newsletter__form { display: flex; flex-direction: column; gap: 10px; }
.newsletter label { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--lila-text); }
.newsletter__row { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .newsletter__row { flex-direction: row; } }
.newsletter input {
  flex-grow: 1; min-height: 52px; padding: 0 16px;
  border: 1px solid var(--plum-line); border-radius: 8px;
  background: var(--plum-dark); color: #fff;
  font-family: inherit; font-size: 16px;
}
.newsletter input::placeholder { color: #9d86b4; }
.newsletter input:focus { outline: 2px solid var(--mint); outline-offset: 2px; }
.form-note { font-size: 13px; color: var(--lila-text); }
.form-note[hidden] { display: none; }

/* ---------- 15. Patička ---------- */
.site-footer {
  margin-top: 56px;
  padding-block: 36px 28px;
  border-top: 1px solid var(--line);
}
@media (min-width: 1024px) { .site-footer { margin-top: 88px; padding-block: 56px 40px; } }

.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; }
@media (min-width: 1280px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 24px; } }

.footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
@media (min-width: 1280px) { .footer-brand { grid-column: auto; gap: 14px; } }
.footer-brand p { font-size: 14px; line-height: 1.55; color: var(--muted); }

.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-col > strong { color: var(--ink); margin-bottom: 2px; }
.footer-col a { color: var(--body); text-decoration: none; }
.footer-col a:hover { color: var(--sage); }

.footer-bottom {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; color: var(--muted);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--sage); }
@media (min-width: 1024px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; }
  .footer-bottom nav { gap: 24px; }
}

/* ---------- 16. Podstránky ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); padding-top: 20px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb span[aria-hidden] { color: var(--lila-line); }

.page-hero { padding-block: 24px 8px; }
@media (min-width: 1024px) { .page-hero { padding-block: 44px 8px; } }

.meta-row { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 14px; color: var(--muted); }
.meta-row strong { color: var(--ink); }

/* obsahový sloupec */
.prose { max-width: 680px; }
.prose > * + * { margin-top: 20px; }
.prose p, .prose li { font-size: 17px; line-height: 1.68; color: var(--body); }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.2; color: var(--ink); margin-top: 38px; }
.prose h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 1.25; color: var(--ink); margin-top: 30px; }
@media (min-width: 1024px) {
  .prose h2 { font-size: 30px; }
  .prose h3 { font-size: 23px; }
}
.prose ul { display: flex; flex-direction: column; gap: 10px; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--sage);
}
.prose ol { counter-reset: n; display: flex; flex-direction: column; gap: 10px; }
.prose ol li { counter-increment: n; position: relative; padding-left: 30px; }
.prose ol li::before {
  content: counter(n) "."; position: absolute; left: 0; top: 0;
  font-weight: 600; color: var(--sage);
}
.prose blockquote {
  padding: 20px 22px; background: var(--lila); border-radius: var(--radius);
  font-family: var(--serif); font-size: 20px; line-height: 1.45; color: var(--ink);
}
.prose figure figcaption { margin-top: 8px; font-size: 13px; color: var(--muted); }
.prose img { border-radius: var(--radius); }

/* dvousloupcový obsah s bočním panelem */
.with-aside { display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 1024px) {
  .with-aside { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; align-items: start; }
  .with-aside__main { grid-column: 1 / span 7; }
  .with-aside__side { grid-column: 9 / span 4; position: sticky; top: 108px; }
}

.panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.panel--plum { background: var(--plum); border-color: var(--plum); color: #fff; }
.panel--plum .panel__title, .panel--plum dt { color: #fff; }
.panel--plum dd, .panel--plum .tiny { color: var(--lila-text); }
.panel__title { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); }
.panel dl { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.panel dl > div { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; }
.panel dt { color: var(--muted); }
.panel dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }
.panel--plum dt { color: var(--lila-text); font-weight: 400; }
.panel--plum dd { color: #fff; }

.price { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); }
.panel--plum .price { color: var(--mint); }

/* FAQ */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-size: 17px; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sage); }
.faq summary .plus { flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .faq__body { padding-bottom: 20px; }
.faq .faq__body p { font-size: 16px; line-height: 1.6; color: var(--body); }

/* logo pásmo / reference */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px)  { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logos { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.logos div {
  height: 72px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--lila-line);
}

/* související články */
.posts { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px)  { .posts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } }
@media (min-width: 1024px) { .posts { gap: 16px; } }
@media (min-width: 1280px) { .posts { gap: 24px; } }
.post { display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ink); min-width: 0; }
@media (min-width: 768px) { .post { gap: 8px; } }
.post img {
  width: 100%; height: auto; aspect-ratio: 3 / 2;
  object-fit: cover; border-radius: var(--radius);
}
.post__title { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.25; overflow-wrap: anywhere; }
@media (min-width: 768px)  { .post__title { font-size: 16px; } }
@media (min-width: 1280px) { .post__title { font-size: 20px; } }
.post .small { overflow-wrap: anywhere; }
@media (min-width: 768px) and (max-width: 1279px) { .post .small { font-size: 13px; } }
.post:hover .post__title { color: var(--sage); }

/* hero podstránky s obrázkem */
.cover { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-lg); }
@media (min-width: 640px)  { .cover { height: 320px; } }
@media (min-width: 1024px) { .cover { height: 440px; } }

/* tisk */
@media print {
  .site-header, .site-footer, .newsletter, .burger, .mobile-nav { display: none !important; }
  body { background: #fff; }
}
