@charset "UTF-8";
/**
 * Folie Lesteni – Hlavní SCSS vstupní bod
 * Struktura: abstracts → base → layout → components → pages → themes → utilities
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Base – Reset defaultních stylů prohlížeče
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem; /* kompenzace fixed navbar */
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, dd,
figure, figcaption {
  margin: 0;
}

ul, ol {
  padding-left: 1.5em;
}

ul[class], ol[class] {
  list-style: none;
  padding-left: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

img, video {
  height: auto;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[x-cloak] {
  display: none !important;
}

/**
 * Base – Typografie
 */
/**
 * Abstracts – Proměnné
 */
body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ededec;
  background-color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Layout – Grid systém a container
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.container--narrow {
  max-width: 48rem;
}

/**
 * Layout – Glass efekty (sdílené)
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.glass {
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(38, 38, 38, 0.5);
}

.glass-strong {
  background-color: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(38, 38, 38, 0.5);
  border-color: rgba(38, 38, 38, 0.3);
}

/**
 * Layout – Navbar
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(38, 38, 38, 0.5);
  border-color: rgba(38, 38, 38, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) {
  .navbar__inner {
    height: 5rem;
  }
}

.navbar__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
}
@media (min-width: 768px) {
  .navbar__logo {
    font-size: 1.5rem;
  }
}

.navbar__logo-accent {
  color: #ddc10b;
}

.navbar__logo-suffix {
  color: #ededec;
  font-weight: 300;
}

.navbar__nav {
  display: none;
}
@media (min-width: 768px) {
  .navbar__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #737373;
  transition: color 0.2s;
  position: relative;
}
.navbar__link:hover {
  color: #ededec;
}
.navbar__link--active {
  color: #ddc10b;
  font-weight: 600;
}
.navbar__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 1px;
  background: #ddc10b;
}

.navbar__logo--active .navbar__logo-suffix {
  color: #ededec;
}

.navbar__logo--active .navbar__logo-accent {
  text-decoration: underline;
  -webkit-text-decoration-color: #ddc10b;
          text-decoration-color: #ddc10b;
  text-underline-offset: 4px;
}

.navbar__cta {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.navbar__cta:hover {
  opacity: 0.9;
}

.navbar__menu-btn {
  padding: 0.5rem;
  color: #ededec;
}
@media (min-width: 768px) {
  .navbar__menu-btn {
    display: none;
  }
}

.navbar__menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.navbar__dropdown {
  border-top: 1px solid rgba(38, 38, 38, 0.3);
  overflow: hidden;
}
@media (min-width: 768px) {
  .navbar__dropdown {
    display: none !important;
  }
}

.navbar__dropdown-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.navbar__dropdown-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #737373;
  padding: 0.5rem 0;
  padding-left: 0.5rem;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.navbar__dropdown-link:hover {
  color: #ededec;
}
.navbar__dropdown-link--active {
  color: #ddc10b;
  font-weight: 600;
  border-left-color: #ddc10b;
}

/**
 * Layout – Footer
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.footer {
  border-top: 1px solid rgba(38, 38, 38, 0.3);
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
  }
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__logo-accent {
  color: #ddc10b;
}

.footer__logo-suffix {
  font-weight: 300;
}

.footer__copyright {
  color: #737373;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  transition: color 0.2s, background-color 0.2s;
}
.footer__social-link:hover {
  color: #ddc10b;
  background-color: rgba(31, 31, 31, 0.8);
}

.footer__social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer__developer {
  font-size: 0.625rem;
  color: #737373;
  opacity: 0.4;
  margin-top: 0.25rem;
}

.footer__developer-link {
  color: #737373;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
.footer__developer-link:hover {
  color: #ddc10b;
  opacity: 1;
}

/**
 * Layout – Sekce (hero, stats, obecné)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.7);
}

.hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, #0a0a0a, transparent);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero__eyebrow {
  color: #ddc10b;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero__eyebrow {
    font-size: 1rem;
  }
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__subtitle {
  color: #737373;
  font-size: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.section-stats {
  padding: 3rem 0;
  border-top: 1px solid rgba(38, 38, 38, 0.3);
  border-bottom: 1px solid rgba(38, 38, 38, 0.3);
}
@media (min-width: 768px) {
  .section-stats {
    padding: 4rem 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  color: #ddc10b;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  color: #737373;
  font-size: 0.875rem;
}

/**
 * Components – Tlačítka
 */
/**
 * Abstracts – Proměnné
 */
.btn-primary {
  background: linear-gradient(135deg, #ddc10b, #dca415);
  color: #0a0a0a;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: 0 0 40px -10px rgba(221, 193, 11, 0.4);
}
.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary--icon {
  width: 1rem;
  height: 1rem;
}

.btn-secondary {
  border: 1px solid #262626;
  color: #ededec;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}
.btn-secondary:hover {
  background-color: #1f1f1f;
}

.btn-cta {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.btn-cta:hover {
  opacity: 0.9;
}

.btn-cta__icon {
  width: 1rem;
  height: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover {
  opacity: 0.9;
}

.btn-submit__icon {
  width: 1rem;
  height: 1rem;
}

/**
 * Components – Karty (služby, proces, FAQ)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.service-card {
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(38, 38, 38, 0.5);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.5s;
}
.service-card:hover {
  border-color: rgba(221, 193, 11, 0.3);
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image {
  height: 14rem;
  overflow: hidden;
  background-color: rgba(31, 31, 31, 0.5);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}

.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #ddc10b;
  margin-bottom: 0.75rem;
}

.service-card__description {
  color: #737373;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.25rem;
}

.service-card .btn-cta {
  margin-top: auto;
}

.process-card {
  position: relative;
  background: linear-gradient(135deg, #ddc10b, #dca415);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 40px -10px rgba(221, 193, 11, 0.4);
}

.process-card__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.1);
}

.process-card__icon-wrap {
  width: 3.75rem;
  height: 3.75rem;
  min-width: 3.75rem;
  min-height: 3.75rem;
  border-radius: 50%;
  background-color: rgba(10, 10, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

.process-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  min-width: 1.625rem;
  min-height: 1.625rem;
  font-size: 1.625rem;
  line-height: 1;
  color: #0a0a0a;
}

.process-card__icon-wrap .process-card__icon svg {
  width: 1.625rem !important;
  height: 1.625rem !important;
  display: block;
  margin: auto;
}

.process-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.process-card__description {
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

.faq-item {
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(38, 38, 38, 0.5);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  border-color: rgba(38, 38, 38, 0.3);
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  transition: color 0.2s;
}
.faq-trigger:hover {
  color: #ddc10b;
}
@media (min-width: 768px) {
  .faq-trigger {
    font-size: 1rem;
  }
}

.faq-trigger__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-trigger__icon.is-open {
  transform: rotate(180deg);
}

.faq-answer {
  color: #737373;
  font-size: 0.875rem;
  line-height: 1.625;
  padding-bottom: 1rem;
  padding-top: 0;
}

/**
 * Components – Formuláře
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.input,
.textarea {
  width: 100%;
  background-color: #1f1f1f;
  border: 1px solid #262626;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #ededec;
  transition: outline 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.input::-moz-placeholder, .textarea::-moz-placeholder {
  color: #737373;
}
.input::placeholder,
.textarea::placeholder {
  color: #737373;
}
.input:focus,
.textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(221, 193, 11, 0.5);
}
.input.has-error,
.textarea.has-error {
  border-color: #ef4444;
}

.textarea {
  min-height: 120px;
  resize: none;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group--email .email-input-wrap {
  position: relative;
  background-color: #1f1f1f;
  border: 1px solid #262626;
  border-radius: 0.75rem;
}
.form-group--email .email-input-wrap:focus-within {
  box-shadow: 0 0 0 2px rgba(221, 193, 11, 0.5);
}
.form-group--email .email-input-wrap:has(.has-error) {
  border-color: #ef4444;
}

.email-ghost {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  right: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  pointer-events: none;
  white-space: pre;
  overflow: hidden;
}
.email-ghost[hidden] {
  display: none;
}

.email-ghost__typed {
  color: #1f1f1f;
}

.email-ghost__suffix {
  color: #737373;
}

.input--ghost-bg {
  background-color: transparent !important;
  border: none !important;
  position: relative;
  z-index: 1;
}

.form-error {
  color: #ddc10b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.form-success {
  color: #22c55e;
  font-size: 0.875rem;
}

.contact-form {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}

/**
 * Components – Toast notifikace (pushup, dole vycentrované)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  max-width: 100%;
  pointer-events: none;
}

.toast-container > * {
  pointer-events: auto;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  min-width: 280px;
  max-width: 90vw;
}
@media (min-width: 640px) {
  .toast {
    min-width: 320px;
  }
}

.toast__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.toast__message {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.toast__close {
  flex-shrink: 0;
  padding: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast__close:hover {
  opacity: 1;
}
.toast__close iconify-icon {
  font-size: 1.125rem;
}

.toast--error {
  background-color: #1a0a0c;
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}
.toast--error .toast__icon {
  color: #ef4444;
}

.toast--warning {
  background-color: #1a1606;
  border: 1px solid rgba(234, 179, 8, 0.5);
  color: #fde047;
}
.toast--warning .toast__icon {
  color: #eab308;
}

.toast--info {
  background-color: #0a1428;
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #93c5fd;
}
.toast--info .toast__icon {
  color: #3b82f6;
}

.toast--success {
  background-color: #052e14;
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #86efac;
}
.toast--success .toast__icon {
  color: #22c55e;
}

.toast-enter,
.toast-leave {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-enter-start {
  opacity: 0;
  transform: translateY(1rem);
}

.toast-enter-end {
  opacity: 1;
  transform: translateY(0);
}

.toast-leave-start {
  opacity: 1;
  transform: translateY(0);
}

.toast-leave-end {
  opacity: 0;
  transform: translateY(0.5rem);
}

.content-blocks__heading {
  margin: 2rem 0 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.content-blocks__heading:first-child {
  margin-top: 0;
}
.content-blocks__heading--h2 {
  font-size: 1.75rem;
}
.content-blocks__heading--h3 {
  font-size: 1.5rem;
}
.content-blocks__heading--h4 {
  font-size: 1.25rem;
}
.content-blocks__heading--h5, .content-blocks__heading--h6 {
  font-size: 1.125rem;
}
.content-blocks__paragraph {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.content-blocks__paragraph p {
  margin-bottom: 0.75rem;
}
.content-blocks__paragraph p:last-child {
  margin-bottom: 0;
}
.content-blocks__paragraph ul, .content-blocks__paragraph ol {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}
.content-blocks__paragraph strong {
  font-weight: 600;
}
.content-blocks__paragraph a {
  color: var(--color-primary, #fbcd14);
  text-decoration: underline;
}
.content-blocks__image {
  margin: 2rem 0;
}
.content-blocks__img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.content-blocks__caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
.content-blocks__quote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-secondary);
  border-radius: 0 0.5rem 0.5rem 0;
}
.content-blocks__quote p {
  margin: 0;
  font-style: italic;
}
.content-blocks__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--color-muted-foreground);
}
.content-blocks__list {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
  line-height: 1.6;
}
.content-blocks__code {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  background: var(--color-muted);
  border-radius: 0.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}
.content-blocks__code code {
  background: transparent;
  padding: 0;
}
.content-blocks__divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
}

/**
 * Page shell – wrapper, odsazení pod fixní navigaci
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.page-wrapper {
  min-height: 100vh;
  padding-top: 4rem;
  background-color: #0a0a0a;
  color: #ededec;
}
@media (min-width: 768px) {
  .page-wrapper {
    padding-top: 5rem;
  }
}

.section-padding {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 3.75rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section-padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/**
 * Section headings – eyebrow, title, blog header na home
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section__header {
    margin-bottom: 4rem;
  }
}

.section__header--blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section__header--blog {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.section__header--blog .section__header-text {
  flex: 1;
  min-width: min(100%, 14rem);
}
@media (min-width: 768px) {
  .section__header--blog .section__header-text {
    text-align: left;
  }
}

.blog-section__all {
  flex-shrink: 0;
}

.section__eyebrow {
  color: #ddc10b;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 3rem;
  }
}

.section__title-accent {
  color: #ddc10b;
}

/**
 * Home – služby (záložky, carousel, service-card overlay)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
#services.section--overflow-clip {
  overflow-x: clip;
}

.services-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.services-tabs__tab {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #737373;
  background: transparent;
  border: 1px solid #262626;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.services-tabs__tab:hover {
  color: #ededec;
  border-color: #737373;
}
.services-tabs__tab--active {
  color: #0a0a0a;
  background: #ddc10b;
  border-color: #ddc10b;
}
.services-tabs__tab--active:hover {
  color: #0a0a0a;
  background: rgba(221, 193, 11, 0.95);
  border-color: #ddc10b;
}

.services-tabs__content {
  position: relative;
  min-height: 12rem;
}

.services-tabs__panel {
  animation-duration: 200ms;
}

.services-subcategory {
  margin-bottom: 2.5rem;
}
.services-subcategory:last-child {
  margin-bottom: 0;
}

.services-subcategory__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #262626;
}

.services-grid,
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .services-grid,
  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1190px) {
  .services-grid,
  .services-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.services-list__more {
  text-align: center;
  margin-top: 2rem;
}

.services-carousel-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .services-carousel-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .services-carousel-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.services-carousel-wrap::before, .services-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 3rem;
  width: 4rem;
  pointer-events: none;
  z-index: 2;
}
.services-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}
.services-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.services-carousel {
  position: relative;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
.services-carousel .swiper-slide {
  height: auto;
  opacity: 0.2;
  filter: grayscale(0.5);
  transition: opacity 0.3s, filter 0.3s;
}
.services-carousel .swiper-slide.swiper-slide-active, .services-carousel .swiper-slide.swiper-slide-prev, .services-carousel .swiper-slide.swiper-slide-next {
  opacity: 1;
  filter: grayscale(0);
}
@media (min-width: 768px) {
  .services-carousel .swiper-slide {
    height: 22rem;
  }
}
@media (min-width: 1024px) {
  .services-carousel .swiper-slide {
    height: 24rem;
  }
}

.services-carousel__pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.services-carousel__pagination {
  position: static !important;
}
.services-carousel__pagination .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  background: #737373;
  opacity: 0.5;
  transition: all 0.2s;
}
.services-carousel__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 1.25rem;
  border-radius: 0.25rem;
  background: #ddc10b;
  opacity: 1;
}

.service-card--carousel, .service-card--grid {
  position: relative;
  height: 100%;
  min-height: 18rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: none;
  background: transparent;
  backdrop-filter: none;
  transition: transform 0.3s;
}
.service-card--carousel:hover, .service-card--grid:hover {
  transform: translateY(-2px);
  border: none;
}
.service-card--carousel:hover .service-card__image img, .service-card--grid:hover .service-card__image img {
  transform: scale(1.05);
}
.service-card--carousel:hover .service-card__cta, .service-card--grid:hover .service-card__cta {
  opacity: 0.95;
}

.service-card--carousel .service-card__image, .service-card--grid .service-card__image {
  position: relative;
  height: 100%;
  min-height: 24rem;
  background-color: rgba(31, 31, 31, 0.8);
}

.service-card--carousel .service-card__overlay, .service-card--grid .service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 35%, transparent 70%);
  pointer-events: none;
}

.service-card--carousel .service-card__body, .service-card--grid .service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
  background-color: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(38, 38, 38, 0.5);
}

.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-card__tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #737373;
  border: 1px solid #262626;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.service-card__tag:hover {
  color: #ddc10b;
  border-color: #ddc10b;
}

.service-card__price-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #ddc10b;
  color: #0a0a0a;
  border-radius: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.service-card--carousel .service-card__title, .service-card--grid .service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ededec;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .service-card--carousel .service-card__title, .service-card--grid .service-card__title {
    font-size: 1.25rem;
  }
}

.service-card--carousel .service-card__description, .service-card--grid .service-card__description {
  font-size: 0.8125rem;
  color: rgba(237, 237, 236, 0.85);
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 1px solid #262626;
  color: #ededec;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.service-card__more:hover {
  border-color: #ddc10b;
  color: #ddc10b;
}

.service-card__more-icon {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}

.service-card__more:hover .service-card__more-icon {
  transform: translateX(0.25rem);
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.service-card__cta-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.service-card--carousel:hover .service-card__cta-icon, .service-card--grid:hover .service-card__cta-icon {
  transform: translateX(0.25rem);
}

/**
 * About – sekce „Proč my?“
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about__image {
    height: 28rem;
  }
}

.about__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 40px -10px rgba(221, 193, 11, 0.4);
}

.about__badge-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: #0a0a0a;
}

.about__badge-label {
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.8);
}

.about__content-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about__content-title {
    font-size: 2.25rem;
  }
}

.about__content-text {
  color: #737373;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-icon {
  width: 2.875rem;
  height: 2.875rem;
  min-width: 2.875rem;
  min-height: 2.875rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon iconify-icon,
.benefit-icon .benefit-icon__svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  min-width: 1.375rem;
  min-height: 1.375rem;
  color: #0a0a0a;
  font-size: 1.375rem;
  line-height: 1;
}

.benefit-icon iconify-icon svg {
  width: 1.375rem !important;
  height: 1.375rem !important;
  display: block;
  margin: auto;
}

.benefit-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/**
 * Contact – formulář, info, mapa (Leaflet)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-left {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
}
@media (min-width: 768px) {
  .contact-left {
    min-height: 100%;
  }
}

.contact-header .section__eyebrow {
  margin-bottom: 0.375rem;
}
.contact-header .contact__title {
  margin-bottom: 0.5rem;
}
.contact-header .contact__text {
  margin-bottom: 1rem;
}

.contact-info-map {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  flex: 1 1;
  min-height: 0;
}
@media (min-width: 640px) {
  .contact-info-map {
    grid-template-columns: 4fr 3fr;
    grid-template-rows: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .contact-info-map {
    gap: 1.5rem;
  }
}

.contact-info-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) {
  .contact-info-block {
    justify-content: center;
  }
}

.contact__title {
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 2.25rem;
  }
}

.contact__text {
  color: #737373;
  line-height: 1.625;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 640px) {
  .contact-info-list {
    flex: 1;
    padding: 2rem 0;
    gap: 2rem;
    min-height: 0;
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 22rem;
}

.contact-info-item--link {
  color: inherit;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}
.contact-info-item--link:hover {
  background-color: rgba(31, 31, 31, 0.6);
  color: #ddc10b;
}
.contact-info-item--link:hover .contact-info-item__icon {
  transform: scale(1.05);
}
.contact-info-item--link:hover .contact-info-item__icon iconify-icon {
  color: #0a0a0a;
}

.contact-info-item__icon {
  width: 2.875rem;
  height: 2.875rem;
  min-width: 2.875rem;
  min-height: 2.875rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.contact-info-item__icon iconify-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  min-width: 1.375rem;
  min-height: 1.375rem;
  font-size: 1.375rem;
  line-height: 1;
  color: #0a0a0a;
}

.contact-info-item__icon iconify-icon svg {
  width: 1.375rem !important;
  height: 1.375rem !important;
  display: block;
  margin: auto;
}

.contact-info-item__text {
  font-size: 0.875rem;
}

.contact-map {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  min-height: 12rem;
  height: 100%;
}
@media (min-width: 640px) {
  .contact-map {
    min-height: 14rem;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .contact-map {
    min-height: 16rem;
  }
}
.contact-map::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
  pointer-events: none;
}

.contact-map__container {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 12rem;
}
@media (min-width: 640px) {
  .contact-map__container {
    min-height: 14rem;
  }
}
@media (min-width: 768px) {
  .contact-map__container {
    min-height: 16rem;
  }
}

.contact-map .leaflet-container {
  background-color: #0a0a0a;
  font-family: inherit;
}

.map-marker {
  background: none !important;
  border: none !important;
}

.map-marker__pin {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker__dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ddc10b, #dca415);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(221, 193, 11, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.map-popup-wrapper {
  margin-bottom: 44px !important;
}
.map-popup-wrapper .leaflet-popup-content-wrapper {
  background-color: rgba(20, 20, 20, 0.55) !important;
  backdrop-filter: blur(32px) !important;
  -webkit-backdrop-filter: blur(32px) !important;
  border: 1px solid rgba(38, 38, 38, 0.5) !important;
  border-left: 3px solid #ddc10b !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  overflow: hidden;
}
.map-popup-wrapper .leaflet-popup-content {
  margin: 0;
  min-width: 180px;
}
.map-popup-wrapper .leaflet-popup-tip {
  background: rgba(20, 20, 20, 0.8) !important;
}

.map-popup {
  padding: 1rem 1.25rem;
}

.map-popup__title {
  font-weight: 700;
  font-size: 1rem;
  color: #ddc10b;
  margin: 0 0 0.25rem 0;
}

.map-popup__address {
  font-size: 0.875rem;
  color: #737373;
  margin: 0;
  line-height: 1.4;
}

/**
 * Process – kroky „Jak pracujeme“
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.process-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * Blog – carousel na home, karty (carousel + list layout)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
#blog.section--overflow-clip {
  overflow-x: clip;
}

.blog-carousel-block {
  display: block;
}

.blog-card--list {
  min-height: 0;
  background: rgba(31, 31, 31, 0.35);
  border: 1px solid rgba(237, 237, 236, 0.08);
  backdrop-filter: blur(8px);
}
.blog-card--list:hover {
  transform: none;
  border-color: rgba(221, 193, 11, 0.35);
}
.blog-card--list:hover .blog-card__img {
  transform: scale(1.04);
}
.blog-card--list:hover .blog-card__read-more--list {
  background: #ddc10b;
  color: #0a0a0a;
}

.blog-card__link--list {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
}
@media (min-width: 640px) {
  .blog-card__link--list {
    flex-direction: row;
    align-items: stretch;
  }
}

.blog-card__media {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: rgba(31, 31, 31, 0.8);
}
@media (min-width: 640px) {
  .blog-card__media {
    width: 11rem;
    min-width: 11rem;
    aspect-ratio: auto;
    min-height: 9rem;
  }
}
@media (min-width: 768px) {
  .blog-card__media {
    width: 13rem;
    min-width: 13rem;
    min-height: 10rem;
  }
}

.blog-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

.blog-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1rem 1.125rem;
  min-width: 0;
}
@media (min-width: 640px) {
  .blog-card__content {
    padding: 1rem 1.25rem;
    justify-content: center;
  }
}

.blog-card__title--list {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
@media (min-width: 768px) {
  .blog-card__title--list {
    font-size: 1.125rem;
  }
}

.blog-card__excerpt--list {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(237, 237, 236, 0.8);
}

.blog-card__read-more--list {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  background: rgba(237, 237, 236, 0.12);
  color: #ededec;
  border-radius: 0.375rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}

.blog-carousel-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .blog-carousel-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .blog-carousel-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.blog-carousel-wrap::before, .blog-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 3rem;
  width: 4rem;
  pointer-events: none;
  z-index: 2;
}
.blog-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}
.blog-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.blog-carousel {
  position: relative;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
.blog-carousel .swiper-slide {
  height: auto;
  min-height: 18rem;
  opacity: 0.35;
  filter: grayscale(0.4);
  transition: opacity 0.3s, filter 0.3s;
}
.blog-carousel .swiper-slide.swiper-slide-active {
  opacity: 1;
  filter: grayscale(0);
}
@media (min-width: 640px) {
  .blog-carousel .swiper-slide {
    min-height: 20rem;
  }
}
@media (min-width: 768px) {
  .blog-carousel .swiper-slide {
    height: 22rem;
    min-height: 0;
  }
}
@media (min-width: 1024px) {
  .blog-carousel .swiper-slide {
    height: 24rem;
  }
  .blog-carousel .swiper-slide.swiper-slide-prev, .blog-carousel .swiper-slide.swiper-slide-next {
    opacity: 1;
    filter: grayscale(0);
  }
}

.blog-carousel__pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.blog-carousel__pagination {
  position: static !important;
}
.blog-carousel__pagination .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  background: #737373;
  opacity: 0.5;
  transition: all 0.2s;
}
.blog-carousel__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 1.25rem;
  border-radius: 0.25rem;
  background: #ddc10b;
  opacity: 1;
}

.blog-card {
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
  min-height: 18rem;
}
.blog-card:hover {
  transform: translateY(-2px);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card:hover .blog-card__read-more {
  background: #ededec;
  color: #0a0a0a;
}
.blog-card:hover .blog-card__read-more .blog-card__icon {
  transform: translateX(0.25rem);
}

.blog-card__link {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card__image {
  position: relative;
  height: 100%;
  min-height: 18rem;
  overflow: hidden;
  background-color: rgba(31, 31, 31, 0.8);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}

.blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 35%, transparent 70%);
  pointer-events: none;
}

.blog-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-card__category {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #ddc10b;
  color: #0a0a0a;
  border-radius: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-card__date {
  font-size: 0.75rem;
  color: rgba(237, 237, 236, 0.7);
}

.blog-card__reading-time {
  font-size: 0.75rem;
  color: rgba(237, 237, 236, 0.6);
}
.blog-card__reading-time::before {
  content: "· ";
  margin-right: 0.25rem;
  color: rgba(237, 237, 236, 0.4);
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ededec;
}
@media (min-width: 1024px) {
  .blog-card__title {
    font-size: 1.25rem;
  }
}

.blog-card__excerpt {
  font-size: 0.8125rem;
  color: rgba(237, 237, 236, 0.85);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(237, 237, 236, 0.9);
  color: #0a0a0a;
  border-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}

.blog-card__icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

/**
 * Blog – výpis /blog (mřížka, stránkování)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.blog-index {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.blog-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .blog-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-index__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.blog-card--grid .blog-card__image {
  height: 12rem;
  min-height: 12rem;
}
.blog-card--grid .blog-card__title {
  font-size: 1.125rem;
}

.blog-index__pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination__item--disabled .blog-pagination__link {
  opacity: 0.4;
  pointer-events: none;
}
.blog-pagination__item--active .blog-pagination__link--current {
  background: #ddc10b;
  color: #0a0a0a;
}

.blog-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.65rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ededec;
  background: rgba(237, 237, 236, 0.08);
  border: 1px solid #262626;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-pagination__link:hover:not(.blog-pagination__link--current):not(span) {
  background: rgba(221, 193, 11, 0.15);
  border-color: #ddc10b;
}
.blog-pagination__link--nav {
  min-width: auto;
  padding: 0 1rem;
}

.blog-pagination__ellipsis {
  padding: 0 0.35rem;
  color: #737373;
  font-size: 0.875rem;
}

.blog-index__empty {
  color: #737373;
  padding: 3rem 1rem;
}

/**
 * FAQ – seznam otázek
 */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/**
 * Pages – Home
 * Bloky z home přesunuty do components/ (page-shell, section-headings, services-home, …)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Pages – Děkovná stránka po odeslání kontaktu
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.thank-you-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.thank-you-hero__title {
  margin-bottom: 1rem;
}

.thank-you-hero__subtitle {
  color: #737373;
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section-padding--top-small {
  padding-top: 2rem;
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .thank-you-actions {
    flex-direction: row;
  }
}

/**
 * Stránka služeb – /sluzby, detail kategorie, detail služby
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.services-page {
  padding: 2rem 1rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services-page {
    padding: 3rem 1.5rem 5rem;
  }
}

.section__header--left {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section__intro {
  font-size: 1.0625rem;
  color: #737373;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.services-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1190px) {
  .services-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.services-category-card {
  position: relative;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #141414;
  border: 1px solid #262626;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s;
}
.services-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(221, 193, 11, 0.4);
}
.services-category-card:hover .services-category-card__image img {
  transform: scale(1.05);
}
.services-category-card:hover .services-category-card__arrow {
  transform: translateX(4px);
}

.services-category-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1f1f1f;
}

.services-category-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

.services-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
  pointer-events: none;
}

.services-category-card__body {
  padding: 1.5rem;
}

.services-category-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #ededec;
}

.services-category-card__desc {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-category-card__count {
  font-size: 0.8125rem;
  color: #ddc10b;
  font-weight: 500;
}

.services-category-card__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  color: #ddc10b;
  transition: transform 0.2s;
}

.services-category-content {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #ededec;
}
.services-category-content p {
  margin-bottom: 1rem;
}
.services-category-content ul, .services-category-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.services-category-content h2, .services-category-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.services-category-content strong {
  font-weight: 600;
}
.services-category-content a {
  color: #ddc10b;
  text-decoration: underline;
}

.services-subcategory-block {
  margin-bottom: 2.5rem;
}
.services-subcategory-block:last-child {
  margin-bottom: 0;
}

.services-subcategory-block__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.services-subcategory-block__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.services-subcategory-block__link:hover {
  color: #ddc10b;
}

.service-detail__back {
  margin-top: 2rem;
}

.services-subcategory-block__desc {
  font-size: 0.875rem;
  color: #737373;
  margin-bottom: 1rem;
}

.services-subcategory-content.prose {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #737373;
  margin-bottom: 1.5rem;
}
.services-subcategory-content.prose p {
  margin-bottom: 0.75rem;
}
.services-subcategory-content.prose ul, .services-subcategory-content.prose ol {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.service-detail {
  max-width: 720px;
}

.service-detail__header {
  margin-bottom: 1.5rem;
}

.service-detail__price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ddc10b;
  margin-top: 0.5rem;
}

.service-detail__image {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
  background: #1f1f1f;
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-detail__description {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #737373;
  margin-bottom: 1.5rem;
}

.service-detail__content.prose {
  font-size: 1rem;
  line-height: 1.7;
}
.service-detail__content.prose p {
  margin-bottom: 1rem;
}
.service-detail__content.prose ul, .service-detail__content.prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.service-detail__content.prose h2, .service-detail__content.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-detail__content.prose a {
  color: #ddc10b;
  text-decoration: underline;
}

.service-detail__placeholder {
  color: #737373;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-cta--outline {
  background: transparent;
  border: 2px solid #262626;
  color: #ededec;
}
.btn-cta--outline:hover {
  border-color: #ddc10b;
  color: #ddc10b;
}

/**
 * Blog – detail článku (show)
 */
/**
 * Abstracts – Proměnné
 */
/**
 * Abstracts – Mixiny
 */
/**
 * Abstracts – Proměnné
 */
.blog-page {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.blog-article__header--top {
  margin-bottom: 1.5rem;
}

.blog-article__media {
  margin-bottom: 2.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .blog-article__media {
    margin-bottom: 3.5rem;
  }
}
.blog-article__media {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--color-muted, #262626);
  width: 100%;
  min-height: 12rem;
  max-height: 14rem;
}
.blog-article__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.blog-article__header {
  margin: 0;
}
.blog-article__header .section__title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .blog-article__header .section__title {
    font-size: 2.25rem;
  }
}

.blog-article__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-primary, #ddc10b);
  color: var(--color-primary-foreground, #fff);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-article__meta {
  color: var(--color-muted-foreground, #737373);
  font-size: 0.875rem;
}

.blog-article__excerpt {
  font-size: 1.125rem;
  color: var(--color-muted-foreground, #737373);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.blog-article__back {
  margin-top: 2rem;
}

.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #262626;
}
@media (min-width: 768px) {
  .blog-post-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.blog-post-nav__cell {
  min-width: 0;
}
@media (min-width: 768px) {
  .blog-post-nav__cell--prev {
    padding-right: 0.75rem;
  }
}
@media (min-width: 768px) {
  .blog-post-nav__cell--next {
    padding-left: 0.75rem;
    text-align: right;
  }
}

.blog-post-nav__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  padding-left: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(237, 237, 236, 0.06);
  border: 1px solid #262626;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.blog-post-nav__link:hover {
  border-color: rgba(221, 193, 11, 0.5);
  background: rgba(221, 193, 11, 0.08);
}
.blog-post-nav__link--next {
  align-items: flex-end;
  text-align: right;
  padding-left: 1.25rem;
  padding-right: 2.5rem;
}
@media (min-width: 768px) {
  .blog-post-nav__link--next {
    margin-left: auto;
  }
}

.blog-post-nav__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  color: #ddc10b;
}

.blog-post-nav__link--next .blog-post-nav__icon {
  left: auto;
  right: 0.75rem;
}

.blog-post-nav__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #737373;
}

.blog-post-nav__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: #ededec;
}

/**
 * Themes – Dark theme (folie-lesteni)
 */
/**
 * Abstracts – Proměnné
 */
.gradient-primary {
  background: linear-gradient(135deg, #ddc10b, #dca415);
}

.text-gradient {
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, #ffffff, #b3b3b3);
  -webkit-background-clip: text;
}

.red-glow {
  box-shadow: 0 0 40px -10px rgba(221, 193, 11, 0.4);
}

/**
 * Utilities – Pomocné třídy
 */
/**
 * Abstracts – Proměnné
 */
iconify-icon {
  display: inline-block;
  vertical-align: middle;
  color: inherit;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.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;
}

.color-primary {
  color: #ddc10b;
}

.color-foreground {
  color: #ededec;
}

.color-muted {
  color: #737373;
}

.color-primary-foreground {
  color: #0a0a0a;
}

.rotate-180 {
  transform: rotate(180deg);
}

/**
 * Breadcrumb – globální navigace (Úvod › … › aktuální)
 */
/**
 * Abstracts – Proměnné
 */
.breadcrumb {
  margin-bottom: 0.75rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.15rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0;
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.breadcrumb__link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.breadcrumb__link:focus-visible {
  outline: 2px solid #ddc10b;
  outline-offset: 2px;
  border-radius: 2px;
}

.breadcrumb__current {
  color: #fff;
  font-weight: 600;
}
/*# sourceMappingURL=app.css.map */