.elementor-4077 .elementor-element.elementor-element-e3b017a{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-f9c0193{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-beec400{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-66d0bc3{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-0a1ed09{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-257c1be{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-fe4c929{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-61e98b5{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-d5bd9dc{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-4077 .elementor-element.elementor-element-b683cd5{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Braah+One&family=Raleway:wght@300;400;500;600;700;800&display=swap&subset=latin,latin-ext');
:root {
  --bg:        #ffffff;
  --ink:       #0f0f0f;
  --ink-soft:  #2a2a2a;
  --muted:     #6b6b6b;
  --line:      #ececec;
  --line-2:    #f4f4f4;
  --accent:    #DD2B1C;
  --soft:      #fafafa;

  --head: 'Braah One', system-ui, sans-serif;
  --body: 'Raleway', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); }
a:hover { color: var(--accent); }

/* ==== Top bar ==== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar__brand {
  font-family: var(--head);
  font-size: 18px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--ink);
}
.topbar__brand .dot { color: var(--accent); }
.topbar__nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.topbar__nav a { text-decoration: none; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==== Hero ==== */
.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero__tag {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(46px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin: 0 0 20px;
}
.hero__title .accent { color: var(--accent); }
.hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  max-width: 700px;
  color: var(--ink-soft);
  margin: 0 0 30px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta span strong {
  color: var(--accent);
  display: block;
  font-size: 28px;
  font-family: var(--head);
  font-weight: 400;
  letter-spacing: 0;
}

/* ==== Overview / quicknav ==== */
.overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.overview__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 16px 20px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: padding 0.15s;
}
.overview__item:last-child { border-right: 0; }
.overview__item:hover { padding-left: 8px; }
.overview__item:hover .overview__name { color: var(--accent); }
.overview__num {
  font-family: var(--head);
  font-size: 22px;
  color: var(--accent);
}
.overview__day {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.overview__name {
  font-family: var(--head);
  font-size: 17px;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.15s;
}

/* ==== Section labels ==== */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.section__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.section__lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 0;
}

/* ==== Day section ==== */
.day {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.day:nth-of-type(even) { background: var(--soft); }
.day__head {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  margin-bottom: 48px;
  align-items: start;
}
.day__num {
  font-family: var(--head);
  font-size: clamp(80px, 12vw, 150px);
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -3px;
}
.day__label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.day__title {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  margin: 0 0 12px;
}
.day__sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ==== Timeline ==== */
.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.titem {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.titem__time {
  font-family: var(--head);
  font-size: 17px;
  color: var(--accent);
  letter-spacing: 0;
  padding-top: 3px;
  white-space: nowrap;
}
.titem__title {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--ink);
}
.titem__body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.titem__body ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.titem__body ul li {
  position: relative;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  line-height: 1.5;
}
.titem__body ul li:last-child { border-bottom: 0; }
.titem__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 7px; height: 7px;
  background: var(--accent);
}
.titem.is-work {
  background: var(--bg);
}
.titem.is-work .titem__time { color: var(--muted); }
.titem.is-work .titem__title { color: var(--ink-soft); }

/* ==== Voting table ==== */
.vote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 14px;
}
.vote-box {
  border: 1px solid var(--line);
  padding: 20px 22px;
}
.vote-box__h {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.vote-box ul {
  list-style: none;
  margin: 0; padding: 0;
}
.vote-box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
}
.vote-box ul li:last-child { border-bottom: 0; }
.vote-box ul li .pts {
  font-family: var(--head);
  font-size: 20px;
  color: var(--accent);
}
.vote-box ul li .pts.neg { color: var(--muted); }

/* ==== Org structure ==== */
.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
.org-card {
  border: 1px solid var(--line);
  padding: 20px 22px;
}
.org-card.is-key {
  border-top: 4px solid var(--accent);
}
.org-card__num {
  font-family: var(--head);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.org-card__title {
  font-family: var(--head);
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.1;
}
.org-card__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ==== Areas showcase ==== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 14px;
}
.area-card {
  border: 1px solid var(--line);
  padding: 28px 24px;
}
.area-card__letter {
  font-family: var(--head);
  font-size: 64px;
  line-height: 0.85;
  color: var(--accent);
  margin-bottom: 12px;
}
.area-card__title {
  font-family: var(--head);
  font-size: 20px;
  margin: 0 0 10px;
  line-height: 1.1;
}
.area-card ul {
  list-style: none; margin: 0; padding: 0;
}
.area-card ul li {
  position: relative;
  padding: 5px 0 5px 18px;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.area-card ul li:last-child { border-bottom: 0; }
.area-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 7px; height: 7px;
  background: var(--accent);
}

/* ==== Hodnocení section ==== */
.eval-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.eval-card {
  background: var(--ink);
  color: #fff;
  padding: 40px 36px;
}
.eval-card__tag {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eval-card__title {
  font-family: var(--head);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
  margin: 0 0 28px;
  color: #fff;
}
.eval-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.eval-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.eval-row__pct {
  font-family: var(--head);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.eval-row__title {
  font-family: var(--head);
  font-size: 16px;
  margin: 0 0 4px;
  color: #fff;
}
.eval-row__desc {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.5;
}

/* ==== Closer ==== */
.closer {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
}
.closer__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.closer__title {
  font-family: var(--head);
  font-size: clamp(54px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -2px;
  margin: 0 0 30px;
  color: #fff;
}
.closer__title .accent { color: var(--accent); }
.closer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 36px;
}
.closer__meta span { margin-right: 6px; }
.closer__meta .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent);
  margin: 0 14px 2px 8px;
  vertical-align: middle;
}
.closer__note {
  margin-top: 24px;
  font-style: italic;
  color: #888;
  font-size: 15px;
  max-width: 560px;
}

/* ==== Responsive ==== */
@media (max-width: 860px) {
  .overview { grid-template-columns: repeat(3, 1fr); }
  .overview__item:nth-child(3) { border-right: 0; }
  .day__head { grid-template-columns: 1fr; gap: 12px; }
  .day__num { font-size: 80px; }
  .titem { grid-template-columns: 100px 1fr; gap: 16px; }
  .vote-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .eval-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
}
@media (max-width: 560px) {
  .overview { grid-template-columns: 1fr 1fr; }
  .titem { grid-template-columns: 1fr; }
  .titem__time { font-size: 13px; }
  .closer__meta span { display: block; margin: 4px 0; }
  .closer__meta .dot { display: none; }
}/* End custom CSS */