/* ============================================================
   SOKOL ZVOLE — design system „Modrá Zvole"
   Mockup stylesheet — vanilla CSS, mobile-first
   Barvy vychází ze znaku klubu: #0051A3 / #231F20 / #fff
   ============================================================ */

:root {
  /* Barvy */
  --navy-950: #071633;
  --navy-900: #0A1F45;
  --navy-800: #0E2B5C;
  --blue-700: #003E80;
  --blue-600: #0051A3;   /* modrá ze znaku */
  --blue-500: #1266BE;
  --blue-150: #C9DCF2;
  --blue-100: #DCE9F7;
  --blue-50:  #EFF5FC;
  --ink-900:  #16181D;
  --ink-700:  #33373F;
  --ink-600:  #4A5160;
  --ink-400:  #7C8494;
  --line:     #DFE4EC;
  --paper:    #F5F7FA;
  --white:    #FFFFFF;
  --amber-500: #FFB020;
  --amber-600: #E99C05;
  --amber-100: #FFF0D2;
  --green-600: #2E7D46;
  --green-100: #E1F2E6;

  /* Typografie */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rozměry */
  --container: 1160px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(10, 31, 69, .08);
  --shadow-md: 0 6px 24px rgba(10, 31, 69, .10);
  --shadow-lg: 0 16px 48px rgba(10, 31, 69, .16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue-700); }
table { border-collapse: collapse; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.7rem); }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin: 0 0 .4em; color: var(--navy-900); }

.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .95rem;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .35rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 4px;
  background: var(--amber-500);
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(3rem, 7vw, 5rem); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy-900); color: #D9E3F2; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); flex-wrap: wrap; }
.section-head h2 { margin-bottom: 0; }
.section-head .link-more { white-space: nowrap; font-weight: 600; text-decoration: none; }
.section-head .link-more:hover { text-decoration: underline; }

/* Pruhový motiv ze znaku */
.stripes {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.05) 0 14px,
    transparent 14px 42px
  );
}

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .78rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--amber-500); color: var(--navy-950); }
.btn--primary:hover { background: var(--amber-600); color: var(--navy-950); }
.btn--blue { background: var(--blue-600); color: var(--white); }
.btn--blue:hover { background: var(--blue-700); color: var(--white); }
.btn--ghost { border-color: rgba(255,255,255,.65); color: var(--white); background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn--outline { border-color: var(--blue-600); color: var(--blue-600); background: transparent; }
.btn--outline:hover { background: var(--blue-50); }
.btn--sm { padding: .45rem 1rem; min-height: 38px; font-size: .92rem; }

/* ---------- Hlavička ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 52px; height: 52px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: .02em;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .18em;
  color: var(--ink-400);
  margin-top: .25em;
}

.nav { display: none; }
.nav a {
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem .65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav a:hover { background: var(--blue-50); color: var(--blue-700); }
.nav a[aria-current="page"], .nav a.is-active { color: var(--blue-600); font-weight: 600; background: var(--blue-50); }
.nav .nav__ext::after { content: " ↗"; font-size: .8em; }

.nav-item { position: relative; }
.nav-item > button {
  all: unset;
  cursor: pointer;
  color: var(--ink-700);
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem .65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-item > button::after { content: " ▾"; font-size: .72em; color: var(--ink-400); }
.nav-item > button:hover, .nav-item.is-open > button { background: var(--blue-50); color: var(--blue-700); }
.nav-item.is-current > button { color: var(--blue-600); font-weight: 600; background: var(--blue-50); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: .45rem;
  display: none;
  flex-direction: column;
}
/* Neviditelný „most" přes 8px mezeru mezi tlačítkem a dropdownem —
   drží hover spojitý, aby se menu při přejezdu myší nezavíralo. */
.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 10px;
}
.nav-item.is-open .dropdown { display: flex; }
.dropdown a { display: block; padding: .5rem .7rem; font-size: .93rem; }
.dropdown hr { border: 0; border-top: 1px solid var(--line); margin: .35rem .5rem; }

.header-cta { display: none; gap: .5rem; align-items: center; }
.nav-toggle {
  all: unset;
  cursor: pointer;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
}
.nav-toggle:hover { background: var(--blue-50); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (min-width: 1140px) {
  .nav { display: flex; align-items: center; gap: .1rem; }
  .header-cta { display: inline-flex; margin-left: .5rem; }
  .nav-toggle { display: none; }
}

/* Mobilní menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: .8rem 0 1.2rem;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a, .mobile-menu span.group-label {
  display: block;
  padding: .7rem .4rem;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-700);
  border-bottom: 1px solid var(--blue-50);
}
.mobile-menu a[aria-current="page"] { color: var(--blue-600); font-weight: 700; }
.mobile-menu span.group-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-400);
  font-size: .85rem;
  border-bottom: none;
  padding-bottom: .1rem;
  margin-top: .5rem;
}
.mobile-menu .mobile-menu__sub a { padding-left: 1.2rem; font-size: 1rem; }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .5;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,22,51,.55) 0%, rgba(7,22,51,.35) 45%, rgba(7,22,51,.92) 100%);
}
.hero__inner {
  position: relative;
  padding-block: clamp(4rem, 10vw, 7.5rem);
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  padding: .35rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  font-weight: 800;
  margin-bottom: .35em;
}
.hero h1 em { font-style: normal; color: var(--amber-500); }
.hero p { font-size: clamp(1.02rem, 2.2vw, 1.2rem); color: #CBD8EC; max-width: 56ch; margin: 0 0 1.8rem; }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Stat pás */
.stats {
  position: relative;
  background: var(--blue-600);
  color: var(--white);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
}
.stat {
  background: var(--blue-600);
  padding: 1.4rem 1rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
}
.stat span { font-size: .85rem; opacity: .85; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
@media (min-width: 700px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Karty zápasů ---------- */
.match-strip { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .match-strip { grid-template-columns: repeat(3, 1fr); } }
.match-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.match-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.match-card__team-label {
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: var(--radius-pill);
  padding: .15rem .7rem;
}
.match-card__fixture {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--navy-900);
}
.match-card__when {
  display: flex;
  gap: .9rem;
  font-size: .93rem;
  color: var(--ink-600);
}
.match-card__when b { color: var(--navy-900); font-weight: 700; }
.chip {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: .12rem .65rem;
  font-size: .78rem;
  font-weight: 600;
}
.chip--home { background: var(--green-100); color: var(--green-600); }
.chip--away { background: var(--blue-100); color: var(--blue-700); }

/* ---------- News karty ---------- */
.news-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card__img { aspect-ratio: 46/25; object-fit: cover; width: 100%; background: var(--blue-100); }
.news-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.news-card__date {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.news-card__title { font-family: var(--font-body); text-transform: none; font-size: 1.12rem; font-weight: 700; line-height: 1.35; margin: 0; }
.news-card__title a { color: var(--navy-900); text-decoration: none; }
.news-card__title a:hover { color: var(--blue-600); }
.news-card__excerpt { font-size: .93rem; color: var(--ink-600); margin: 0; }
.news-card--featured { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .news-card--featured { display: grid; grid-template-columns: 3fr 2fr; }
  .news-card--featured .news-card__img { height: 100%; aspect-ratio: auto; }
  .news-card--featured .news-card__body { padding: 2rem; justify-content: center; }
  .news-card--featured .news-card__title { font-size: 1.6rem; }
}

/* ---------- Týmové karty ---------- */
.team-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  position: relative;
  background: var(--navy-900);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.team-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .25s ease, opacity .2s; }
.team-card:hover .team-card__img { transform: scale(1.045); opacity: .9; }
.team-card__body {
  position: relative;
  width: 100%;
  padding: .9rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(7,22,51,.94));
  padding-top: 2.6rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.05;
}
.team-card__years { color: var(--amber-500); font-size: .82rem; font-weight: 600; }

/* ---------- Page hero (podstránky) ---------- */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; padding-block: clamp(2.4rem, 6vw, 4rem); }
.page-hero h1 { color: var(--white); margin-bottom: .15em; }
.page-hero__lead { color: #C2D2E8; max-width: 62ch; font-size: 1.05rem; margin: .4rem 0 0; }
.breadcrumbs {
  font-size: .85rem;
  color: #8FA6C7;
  margin-bottom: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
}
.breadcrumbs a { color: #B9CCE8; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { opacity: .5; }

/* ---------- Obsahové stránky ---------- */
.prose { max-width: 68ch; font-size: 1.05rem; }
.prose p { margin: 0 0 1.15em; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.15em; }
.prose li { margin-bottom: .35em; }
.prose img { border-radius: var(--radius); margin-block: 1.5em; }
.prose figure { margin: 1.5em 0; }
.prose figcaption { font-size: .88rem; color: var(--ink-400); margin-top: .5em; }
.prose blockquote {
  margin: 1.6em 0;
  padding: 1rem 1.4rem;
  border-left: 4px solid var(--amber-500);
  background: var(--blue-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-700);
}
.prose strong { color: var(--navy-900); }
.prose table { width: 100%; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .6rem .8rem; border-bottom: 1px solid var(--line); }
.prose th { background: var(--blue-50); font-weight: 600; }

.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--ink-400);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.article-meta .chip--date { background: var(--blue-100); color: var(--blue-700); font-size: .82rem; }

/* Layout se sidebarem */
.layout-sidebar { display: grid; gap: 2.4rem; }
@media (min-width: 960px) { .layout-sidebar { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; } }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}
.sidebar-card h3 { font-size: 1.15rem; margin-bottom: .8rem; }

/* ---------- Fakta týmu ---------- */
.facts-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.facts-card dl { margin: 0; }
.facts-card .facts-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--blue-50);
}
.facts-card .facts-row:last-child { border-bottom: 0; }
.facts-card dt {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .95rem;
  color: var(--blue-600);
  padding: .85rem 1.2rem .1rem;
}
.facts-card dd { margin: 0; padding: 0 1.2rem .85rem; color: var(--ink-700); }
@media (min-width: 640px) {
  .facts-card .facts-row { grid-template-columns: 220px 1fr; }
  .facts-card dt { padding: .95rem 1.2rem; border-right: 1px solid var(--blue-50); }
  .facts-card dd { padding: .95rem 1.2rem; }
}

/* Trenérské karty */
.coach-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .coach-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .coach-grid { grid-template-columns: repeat(4, 1fr); } }
.coach-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.coach-card__avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto .7rem;
  object-fit: cover;
  background: var(--blue-100);
  border: 3px solid var(--blue-50);
}
.coach-card__avatar--initials {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-600);
}
.coach-card__name { font-weight: 700; color: var(--navy-900); }
.coach-card__license { font-size: .84rem; color: var(--ink-400); margin-top: .15rem; }

/* ---------- Tabulka zápasů ---------- */
.fixtures { display: none; }
.fixtures table { width: 100%; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.fixtures th {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: .92rem;
  padding: .8rem 1rem;
  text-align: left;
}
.fixtures td { padding: .75rem 1rem; border-bottom: 1px solid var(--blue-50); font-size: .95rem; vertical-align: top; }
.fixtures tr:last-child td { border-bottom: 0; }
.fixtures tr:hover td { background: var(--blue-50); }
.fixtures .fx-date { white-space: nowrap; font-weight: 600; color: var(--navy-900); }
.fixtures .fx-time { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--blue-600); }
.fixtures .fx-note { color: var(--ink-400); font-size: .85rem; }
.fixtures-cards { display: grid; gap: .9rem; }
.fixture-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.fixture-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .3rem; }
.fixture-card__date { font-weight: 700; color: var(--navy-900); font-size: .95rem; }
.fixture-card__time { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--blue-600); }
.fixture-card__match { font-weight: 600; line-height: 1.4; }
.fixture-card__note { font-size: .85rem; color: var(--ink-400); margin-top: .25rem; }
/* desktop: tabulka místo karet (musí být až ZA základními pravidly karet, jinak přebije) */
@media (min-width: 800px) { .fixtures { display: block; } .fixtures-cards { display: none; } }

/* Přepínač týmů (taby) */
.tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.tab {
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: .5rem 1.2rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-600);
  cursor: pointer;
  text-decoration: none;
}
.tab.is-active { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }
.tab:hover:not(.is-active) { border-color: var(--blue-500); color: var(--blue-600); }

/* Podsekce týmu v rozpisu */
.team-fixtures { margin-bottom: 2.4rem; scroll-margin-top: 90px; }
.team-fixtures:last-child { margin-bottom: 0; }
.team-fixtures__name {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--navy-900);
  margin: 0 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--blue-100);
}
.team-fixtures__count { font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--ink-400); text-transform: none; }
.fixtures .chip, .fixture-card .chip { margin-left: .5rem; vertical-align: middle; }
.chip--turnaj { background: var(--amber-100); color: #8a6400; }
.fixtures td strong { color: var(--blue-700); }
.fixture-card__match strong { color: var(--blue-700); }

/* ---------- Soubory ke stažení ---------- */
.download-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .download-grid { grid-template-columns: repeat(2, 1fr); } }
.download-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .15s;
}
.download-tile:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); }
.download-tile__icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
}
.download-tile__name { font-weight: 600; color: var(--navy-900); line-height: 1.35; }
.download-tile__meta { font-size: .82rem; color: var(--ink-400); }

/* ---------- Galerie ---------- */
.album-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .album-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .album-grid { grid-template-columns: repeat(3, 1fr); } }
.album-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 46/28;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.album-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .25s; }
.album-card:hover img { transform: scale(1.04); }
.album-card__label {
  position: relative;
  width: 100%;
  padding: 2.2rem 1.1rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(7,22,51,.92));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}
.album-card__count { display: block; font-family: var(--font-body); font-size: .8rem; font-weight: 500; opacity: .8; text-transform: none; }

.photo-grid { display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }
.photo-grid a { border-radius: var(--radius-sm); overflow: hidden; display: block; aspect-ratio: 4/3; background: var(--blue-100); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s; }
.photo-grid a:hover img { transform: scale(1.05); }

/* ---------- Kontakty ---------- */
.contact-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.contact-card__role {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue-600);
  margin-bottom: .3rem;
}
.contact-card__name { font-weight: 700; font-size: 1.15rem; color: var(--navy-900); margin-bottom: .5rem; }
.contact-card__tel {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.02rem;
}

.org-card {
  background: var(--navy-900);
  color: #D5E1F1;
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.org-card h3 { color: var(--white); }
.org-card table td { padding: .3rem .6rem .3rem 0; vertical-align: top; }
.org-card table td:first-child { font-weight: 600; color: #9DB4D6; white-space: nowrap; }
.org-card a { color: var(--amber-500); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 320px;
  background: var(--blue-100);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- Partneři ---------- */
.partner-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .partner-grid { grid-template-columns: repeat(5, 1fr); } }
.partner-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.2rem;
  text-decoration: none;
  color: var(--ink-600);
  font-weight: 600;
  font-size: .88rem;
  line-height: 1.3;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.partner-tile img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}
.partner-tile:hover { border-color: var(--blue-500); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* ---------- Sport karty (fotbal / beach) ---------- */
.sport-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sport-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sport-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--blue-100); }
.sport-card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .55rem; }
.sport-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: 1.8rem;
  color: var(--navy-900);
  line-height: 1.05;
}
.sport-card__desc { color: var(--ink-600); font-size: 1rem; line-height: 1.55; margin: 0; }
.sport-card__link {
  margin-top: .5rem;
  font-weight: 700;
  color: var(--blue-600);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sport-card:hover .sport-card__link { color: var(--blue-700); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--blue-600);
  border-radius: var(--radius);
  color: var(--white);
  padding: clamp(1.8rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 16px, transparent 16px 48px);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: .2em; }
.cta-banner p { margin: 0; color: #CFE0F5; max-width: 52ch; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ---------- Archivní banner ---------- */
.archive-banner {
  background: var(--amber-100);
  border: 1px solid #EFCF8B;
  border-radius: var(--radius-sm);
  padding: .8rem 1.1rem;
  font-size: .93rem;
  color: #6B4E0A;
  margin-bottom: 1.8rem;
}
.archive-banner strong { color: #4F3A05; }

/* ---------- Patička ---------- */
.site-footer {
  background: var(--navy-950);
  color: #AEBED6;
  margin-top: auto;
}
.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.05rem;
  margin-bottom: .9rem;
}
.site-footer a { color: #C7D6EC; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-size: .95rem; }
.site-footer .brand__name { color: var(--white); }
.site-footer .brand__name small { color: #7E92B5; }
.footer-contact { font-size: .95rem; display: grid; gap: .35rem; font-style: normal; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: grid;
  place-items: center;
  color: var(--white);
}
.footer-social a:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.footer-social svg { width: 19px; height: 19px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.1rem;
  font-size: .85rem;
  color: #7E92B5;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}
.site-footer__bottom a { color: #9FB2D2; }

/* ---------- Pomocné ---------- */
.grid-2 { display: grid; gap: 1.4rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 760px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Rozpis z Google Sheets ---------- */
.schedule-section { overflow: hidden; }
.schedule-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 1rem; }
.schedule-head__text { color: var(--ink-600); max-width: 66ch; margin: .5rem 0 0; }
.schedule-actions { display: flex; gap: .7rem; flex-wrap: wrap; flex: 0 0 auto; }
.schedule-actions .btn { display: inline-flex; align-items: center; gap: .5rem; }
.schedule-actions .btn.is-loading svg { animation: schedule-spin .8s linear infinite; }
@keyframes schedule-spin { to { transform: rotate(360deg); } }
.schedule-meta { display: flex; align-items: center; gap: .55rem; color: var(--ink-400); font-size: .88rem; }
.schedule-meta__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 4px var(--green-100); }
.schedule-message { min-height: 1.5em; margin: .5rem 0 0; color: var(--blue-700); font-weight: 600; font-size: .9rem; }
.schedule-tabs { display: flex; gap: .5rem; overflow-x: auto; padding: .7rem 0 1rem; scrollbar-width: thin; }
.schedule-tabs button { border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--white); color: var(--navy-900); font: 600 .9rem var(--font-body); white-space: nowrap; padding: .62rem 1rem; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.schedule-tabs button:hover { border-color: var(--blue-500); }
.schedule-tabs button.is-active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.schedule-tabs__current { display: inline-block; margin-left: .35rem; padding: .05rem .42rem; border-radius: var(--radius-pill); background: var(--amber-500); color: var(--navy-950); font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; }
.schedule-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1rem, 3vw, 1.5rem); box-shadow: var(--shadow-sm); }
.schedule-panel[hidden] { display: none; }
.schedule-panel__title { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .8rem; }
.schedule-panel__title h3 { margin: 0; }
.schedule-panel__title span { color: var(--ink-400); font-size: .84rem; }
.schedule-scroll-hint { display: none; color: var(--ink-400); font-size: .8rem; margin: 0 0 .5rem; }
.schedule-table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); scrollbar-color: var(--blue-150) transparent; }
.schedule-table { border-collapse: separate; border-spacing: 0; width: max-content; min-width: 100%; font-size: .78rem; line-height: 1.25; }
.schedule-table td { height: 46px; min-width: 82px; padding: .45rem .5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; background: var(--white); }
.schedule-table tr:last-child td { border-bottom: 0; }
.schedule-table td:last-child { border-right: 0; }
.schedule-cell--lead { min-width: 108px !important; background: var(--blue-50) !important; }
.schedule-cell--day { min-width: 108px !important; position: sticky; left: 0; z-index: 3; background: var(--navy-900) !important; color: var(--white); font-weight: 700; text-transform: capitalize; }
.schedule-cell--venue { min-width: 66px !important; position: sticky; left: 108px; z-index: 3; background: var(--blue-600) !important; color: var(--white); font-weight: 800; }
.schedule-cell--time { background: var(--blue-50) !important; color: var(--navy-900); font-size: .72rem; font-weight: 700; }
.schedule-cell--booking { background: var(--schedule-cell, var(--amber-100)) !important; color: var(--navy-950); font-weight: 700; box-shadow: inset 0 0 0 1px rgba(10,31,69,.08); }
.schedule-row--spacer td { height: 14px; min-width: 0; padding: 0; background: var(--paper); border: 0; }
.schedule-subtitle { margin: 1.4rem 0 .8rem; font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; }
.beach-training { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.beach-training article { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; border-radius: var(--radius-sm); background: var(--blue-50); border-left: 4px solid var(--blue-600); }
.beach-training strong { color: var(--navy-900); text-transform: capitalize; }
.beach-training span { color: var(--ink-600); text-align: right; }
.beach-years { display: grid; gap: .65rem; }
.beach-years details { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.beach-years summary { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1rem; cursor: pointer; background: var(--blue-50); color: var(--navy-900); font-weight: 700; }
.beach-years summary small { color: var(--ink-400); font-weight: 600; }
.beach-table-wrap { overflow-x: auto; }
.beach-table { width: 100%; min-width: 680px; font-size: .88rem; }
.beach-table th, .beach-table td { padding: .7rem .85rem; text-align: left; border-bottom: 1px solid var(--line); }
.beach-table th { background: var(--navy-900); color: var(--white); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.beach-table tbody tr:last-child td { border-bottom: 0; }
.beach-table tbody tr:nth-child(even) { background: var(--blue-50); }
.schedule-empty { display: grid; gap: .3rem; margin-top: 1rem; }
@media (max-width: 760px) {
  .schedule-head { align-items: stretch; flex-direction: column; gap: 1.2rem; }
  .schedule-actions { flex-direction: column; }
  .schedule-actions .btn { justify-content: center; width: 100%; }
  .schedule-panel__title { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .schedule-scroll-hint { display: block; }
  .schedule-table { font-size: .73rem; }
  .schedule-table td { min-width: 74px; height: 44px; padding: .4rem; }
  .schedule-cell--lead, .schedule-cell--day { min-width: 92px !important; }
  .schedule-cell--venue { left: 92px; min-width: 58px !important; }
  .beach-training { grid-template-columns: 1fr; }
}
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow-md); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--amber-500); color: var(--navy-950);
  padding: .6rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700; z-index: 100;
}
.skip-link:focus { left: 0; }

/* Mock poznámka (jen pro mockup, ve výrobě odstranit) */
.mock-note {
  background: #FDF2D0;
  border: 1px dashed #D9B95C;
  color: #6B4E0A;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  margin: 1rem 0;
}
.mock-note::before { content: "POZNÁMKA K MOCKUPU: "; font-weight: 700; }

/* Focus stavy */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
