:root {
  --mth-brown: #bd5928;
  --mth-brown-dark: #a44a20;
  --mth-orange: #e18224;
  --mth-yellow: #f6b82f;
  --mth-yellow-dark: #e0a41c;
  --mth-green: #404a31;
  --mth-ink: #171412;
  --mth-ink-soft: #483320;
  --mth-cream: #fbf3e7;
  --mth-line: #dccfb0;
  --mth-muted: #8d8d8d;

  --mth-font-head: "Faculty Glyphic", sans-serif;
  --mth-font-body: "Google Sans Flex", sans-serif;

  --mth-radius: 20px;
  --mth-section-gap: 80px;
}

.mth-section {
  font-family: var(--mth-font-body);
  color: var(--mth-ink);
  padding: calc(var(--mth-section-gap) / 2) 0;
  box-sizing: border-box;
}
.mth-section *,
.mth-section *::before,
.mth-section *::after {
  box-sizing: border-box;
}

.mth-container {
  width: 100%;
  margin: 0 auto;
  padding: 0px;
}

/* nadnadpis */
.mth-eyebrow {
  margin: 0 0 14px;
  font-family: var(--mth-font-body);
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--mth-orange);
  text-align: center;
}
.mth-eyebrow strong {
  font-weight: 800;
}
.mth-eyebrow--lg {
  font-size: 25px;
}

/* nadpis sekce */
.mth-h2 {
  margin: 0 0 40px;
  font-family: var(--mth-font-head) !important;
  font-weight: 400;
  font-size: 40px !important;
  line-height: 1.15;
  letter-spacing: -0.01em !important;
  color: var(--mth-ink);
  text-align: center;
}
.mth-h2--sm {
  font-size: 35px !important;
  letter-spacing: 0;
}

/* tlacitka */
.mth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--mth-font-body);
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.mth-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.mth-btn--primary {
  background: var(--mth-brown);
  color: #fff;
}
.mth-btn--primary:hover {
  background: var(--mth-brown-dark);
  color: #fff;
}
.mth-btn--light {
  background: #fff;
  color: var(--mth-ink-soft);
}
.mth-btn--light:hover {
  background: var(--mth-cream);
  color: var(--mth-ink-soft);
}
.mth-btn--block {
  display: flex;
  width: 100%;
  min-height: 61px;
  text-transform: uppercase;
}

/* kruhove sipky */
.mth-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  border-radius: 50%;
  background: var(--mth-brown);
  border: 1px solid var(--mth-brown);
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.mth-circle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mth-circle--ghost {
  background: transparent;
  color: var(--mth-brown);
}
.mth-circle--ghost:hover {
  background: var(--mth-brown);
  color: #fff;
}
.mth-circle[disabled] {
  opacity: 0.35;
  cursor: default;
}

/* hvezdicky */
.mth-stars {
  display: inline-flex;
  gap: 3px;
  line-height: 0;
}
.mth-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--mth-yellow);
}
.mth-stars--sm svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 991px) {
  :root {
    --mth-section-gap: 56px;
  }
  .mth-h2 {
    font-size: 32px !important;
  }
  .mth-h2--sm {
    font-size: 28px !important;
  }
  .mth-eyebrow {
    font-size: 16px;
  }
  .mth-eyebrow--lg {
    font-size: 18px;
  }
}

@media (max-width: 639px) {
  .mth-h2 {
    font-size: 26px !important;
    margin-bottom: 28px;
  }
  .mth-h2--sm {
    font-size: 24px !important;
  }
}
