* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #faf8f4;
  color: #16180f;
  font-family: "Figtree", sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}

a {
  color: #54573f;
  text-decoration: none;
}
a:hover {
  color: #4d3900;
}

p {
  text-wrap: pretty;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.pillars-wrap .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.pillars-wrap .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.program__grid .reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.program__grid .reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.program__grid .reveal:nth-child(4) {
  transition-delay: 0.18s;
}

.program__grid .reveal:nth-child(5) {
  transition-delay: 0.24s;
}

.program__grid .reveal:nth-child(6) {
  transition-delay: 0.3s;
}

.team__members .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.team__members .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.team__members .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.kontakt__grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.kontakt__grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.site-wrap {
  max-width: 1180px;
  margin: 0 auto;
  background: #faf8f4;
}

.btn {
  display: inline-grid;
  place-items: center;
  padding: 16px 26px;
  border-radius: 7px;
  font: 600 15px/1 "Figtree", sans-serif;
}
.btn--primary {
  background: #16180f;
  color: #fff;
}
.btn--outline {
  border: 1.5px solid rgba(22, 24, 15, 0.25);
  color: #16180f;
}
.btn--sm {
  padding: 14px 22px;
  font-size: 14px;
}
.btn--gold {
  padding: 15px;
  background: #f5c518;
  color: #16180f;
  border: none;
  cursor: pointer;
  width: 100%;
}

.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(22, 24, 15, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 245, 255, 0.94);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.site-wrap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #16180f;
}

.badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5c518;
  color: #16180f;
  display: grid;
  place-items: center;
  font: 700 17px/1 "Roboto Flex", serif;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-header__title {
  font: 700 15px/1 "Roboto Flex", serif;
  letter-spacing: -0.01em;
}

.site-header__subtitle {
  font: 500 9.5px/1 "Figtree", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6d5c;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font: 500 13.5px/1 "Figtree", sans-serif;
}
.site-nav a {
  color: #41442f;
}

.site-nav__cta {
  display: inline-grid;
  place-items: center;
  padding: 11px 18px;
  background: #16180f;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #16180f;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 24, 15, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding-bottom: 0;
  background: #EEF5FF;
  overflow: hidden;
}

.hero__inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 52px;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 64px 40px;
  min-width: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 10.5px/1 "Figtree", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #54573f;
}

.hero__eyebrow-line {
  width: 26px;
  height: 1px;
  background: #f5c518;
}

.hero__title {
  margin: 0;
  font-family: "Roboto Flex", serif;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 110px);
  line-height: 0.95;
  font-variation-settings: "slnt" -4, "wdth" 116, "opsz" 33;
}

.hero__lead {
  margin: 0;
  font: 400 clamp(26px, 5vw, 52px)/1 "Oooh Baby", cursive;
  color: #41442f;
  transform: skew(-10deg, -2deg);
  position: relative;
  transform-origin: left top;
  top: -6px;
  max-width: 30em;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.hero__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.hero__media:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}

.hero__badge {
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 150px;
  height: 150px;
  object-fit: contain;
  z-index: 2;
}

.hero__photo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.pillars {
  gap: 1px;
  border-top: 1px solid rgba(22, 24, 15, 0.12);
  border-bottom: 1px solid rgba(22, 24, 15, 0.12);
}

.pillar {
  background: #faf8f4;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar:nth-child(2), .pillar:nth-child(1) {
  border-right: 1px solid rgba(22, 24, 15, 0.12);
}
.pillar:not(:last-child) {
  border-bottom: 1px solid transparent;
}

.pillars-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.pillar__index {
  font: 600 11px/1 "Figtree", sans-serif;
  letter-spacing: 0.16em;
  color: #9a9c8a;
}

.pillar__title {
  margin: 0;
  font: 600 25px/1.15 "Roboto Flex", serif;
  letter-spacing: -0.02em;
}

.pillar__text {
  margin: 0;
  font: 400 15px/1.55 "Figtree", sans-serif;
  color: #54573f;
}

.program {
  padding: 72px 40px 20px;
}

.program__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.program__head-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 34em;
}

.program__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 10.5px/1 "Figtree", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #54573f;
  display: block;
}

.program__title {
  margin: 0;
  font: 700 42px/1.08 "Roboto Flex", serif;
  letter-spacing: -0.025em;
}

.program__lead {
  margin: 0;
  font: 400 16px/1.55 "Figtree", sans-serif;
  color: #54573f;
}

.program__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  background: #fff;
  border: 1px solid rgba(22, 24, 15, 0.1);
  border-radius: 10px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fdf3d0;
  display: grid;
  place-items: center;
  font: 400 8.5px/1.2 ui-monospace, Menlo, monospace;
  color: #8a7328;
  text-align: center;
}

.program-card__title {
  margin: 0;
  font: 600 20px/1.2 "Roboto Flex", serif;
}

.program-card__text {
  margin: 0;
  font: 400 14.5px/1.55 "Figtree", sans-serif;
  color: #54573f;
}

.program-card__link {
  margin-top: auto;
  font: 600 13.5px/1 "Figtree", sans-serif;
}

.about {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 52px;
  align-items: center;
  padding: 72px 40px;
}

.about__media {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 440px;
}

.about__media-item {
  background: repeating-linear-gradient(45deg, #eae7dd 0 8px, #f2f0e8 8px 16px);
  border: 1px solid rgba(22, 24, 15, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}
.about__media-item span {
  font: 400 11.5px/1.5 ui-monospace, Menlo, monospace;
  color: #8b8d7c;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 10.5px/1 "Figtree", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #54573f;
  display: block;
}

.about__title {
  margin: 0;
  font: 700 40px/1.1 "Roboto Flex", serif;
  letter-spacing: -0.025em;
}

.about__text {
  margin: 0;
  font: 400 16.5px/1.6 "Figtree", sans-serif;
  color: #41442f;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(22, 24, 15, 0.12);
  border-bottom: 1px solid rgba(22, 24, 15, 0.12);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about__stat-num {
  font: 700 30px/1 "Roboto Flex", serif;
  color: #54573f;
}

.about__stat-label {
  font: 400 13px/1.4 "Figtree", sans-serif;
  color: #6a6d5c;
}

.about__link {
  font: 600 14.5px/1 "Figtree", sans-serif;
}

.team {
  padding: 72px 40px;
}

.team__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 34em;
  margin-bottom: 34px;
}

.team__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 10.5px/1 "Figtree", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #54573f;
  display: block;
}

.team__title {
  margin: 0;
  font: 700 42px/1.08 "Roboto Flex", serif;
  letter-spacing: -0.025em;
}

.team__lead {
  margin: 0;
  font: 400 16px/1.55 "Figtree", sans-serif;
  color: #54573f;
}

.team__photo {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
.team__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.team__members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team__member {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(22, 24, 15, 0.1);
  border-radius: 10px;
  padding: 18px 20px;
}

.team__member-number {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f5c518;
  color: #16180f;
  display: grid;
  place-items: center;
  font: 700 15px/1 "Roboto Flex", serif;
}

.team__member-name {
  font: 600 14.5px/1.3 "Figtree", sans-serif;
  color: #16180f;
}

#podnety {
  margin: 0 40px;
  background: #16180f;
  color: #f4f2e9;
  border-radius: 14px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center;
}

.podnety__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.podnety__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 10.5px/1 "Figtree", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5c518;
  display: block;
}

.podnety__title {
  margin: 0;
  font: 700 38px/1.1 "Roboto Flex", serif;
  letter-spacing: -0.025em;
  color: #fff;
}

.podnety__text {
  margin: 0;
  font: 400 16.5px/1.6 "Figtree", sans-serif;
  color: #c3c5b6;
  max-width: 26em;
}

.podnety__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.podnety__tag {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  font: 500 13px/1 "Figtree", sans-serif;
  color: #e7e5da;
}

.podnety__form {
  background: #faf8f4;
  border-radius: 10px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font: 600 12.5px/1 "Figtree", sans-serif;
  color: #41442f;
}

.form-field__hint {
  font-weight: 400;
  color: #8b8d7c;
}

.form-field__control {
  border: 1px solid rgba(22, 24, 15, 0.2);
  border-radius: 7px;
  padding: 12px;
  font: 400 14.5px/1 "Figtree", sans-serif;
  color: #16180f;
  background: #fff;
}
.form-field__control--textarea {
  line-height: 1.45;
  resize: vertical;
}

.form-field__note {
  font: 400 11.5px/1.45 "Figtree", sans-serif;
  color: #8b8d7c;
}

#volby {
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.volby__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.volby__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 10.5px/1 "Figtree", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #54573f;
  display: block;
}

.volby__title {
  margin: 0;
  font: 700 36px/1.1 "Roboto Flex", serif;
  letter-spacing: -0.025em;
}

.volby__text {
  margin: 0;
  font: 400 16px/1.6 "Figtree", sans-serif;
  color: #54573f;
}

.volby__table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(22, 24, 15, 0.12);
  border: 1px solid rgba(22, 24, 15, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.volby__row {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.volby__row-label {
  font: 600 14.5px/1 "Figtree", sans-serif;
}

.volby__row-value {
  font: 400 14.5px/1 "Figtree", sans-serif;
  color: #6a6d5c;
}

#kontakt {
  padding: 0 40px 72px;
}

.kontakt__grid {
  border-top: 1px solid rgba(22, 24, 15, 0.12);
  padding-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
}

.kontakt__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt__col-title {
  margin: 0;
  font: 600 22px/1.15 "Roboto Flex", serif;
}

.kontakt__col-text {
  margin: 0;
  font: 400 15px/1.55 "Figtree", sans-serif;
  color: #54573f;
}

.kontakt__col-link {
  font: 600 14px/1 "Figtree", sans-serif;
}

.kontakt__info {
  font: 400 15px/1.6 "Figtree", sans-serif;
  color: #54573f;
}

.site-footer {
  background: #f2f0e8;
  border-top: 1px solid rgba(22, 24, 15, 0.1);
  padding: 34px 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font: 600 14px/1 "Roboto Flex", serif;
}

.site-footer__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5c518;
  color: #16180f;
  display: grid;
  place-items: center;
  font: 700 14px/1 "Roboto Flex", serif;
}

.site-footer__legal {
  font: 400 12px/1.5 "Figtree", sans-serif;
  color: #8b8d7c;
  max-width: 44em;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px !important;
    padding: 16px 20px !important;
  }
  .site-wrap-header {
    flex-wrap: wrap !important;
    row-gap: 10px !important;
  }
  .site-nav {
    gap: 16px !important;
    flex-wrap: wrap;
    font-size: 13px !important;
  }
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #podnety {
    margin: 0 20px !important;
    padding: 32px 22px !important;
  }
  .site-footer {
    padding: 26px 20px !important;
  }
  .site-wrap > section {
    grid-template-columns: 1fr !important;
  }
  .program__grid,
  .about__stats,
  .team__members {
    grid-template-columns: 1fr !important;
  }
  .pillars-wrap {
    grid-template-columns: 1fr !important;
  }
  .pillar {
    border-right: none !important;
  }
  .pillar:not(:last-child) {
    border-bottom: 1px solid rgba(22, 24, 15, 0.12) !important;
  }
  h2 {
    font-size: 30px !important;
  }
  .hero__inner {
    display: flex !important;
    flex-direction: column-reverse !important;
    justify-content: center !important;
    gap: 0 !important;
  }
  .hero__content {
    padding: 40px 20px !important;
    margin: auto !important;
    text-align: center !important;
  }
  .hero__content .hero__eyebrow {
    margin: auto !important;
    text-align: center !important;
  }
  .hero__content .hero__actions {
    justify-content: center !important;
  }
  .hero__media {
    height: 320px !important;
    margin: auto;
  }
  .hero__media:before {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    transform: translate(-50%, -50%) !important;
  }
  .hero__badge {
    width: 110px !important;
    height: 110px !important;
  }
  .about__media {
    height: 320px !important;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-wrap-header {
    flex-wrap: nowrap !important;
  }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(80vw, 320px);
    margin: 0;
    background: #faf8f4;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    padding: 96px 28px 32px;
    box-shadow: 8px 0 30px rgba(22, 24, 15, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }
  .site-nav a {
    font-size: 16px !important;
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .site-nav__cta {
    margin-top: 8px;
  }
}

/*# sourceMappingURL=style.css.map */
