/* ROZCESTNÍK ZNAČEK */
.kj-brand-section {
  width: 100%;
  padding: 64px 20px 72px;
  box-sizing: border-box;
}

.kj-brand-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.kj-brand-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.2;
  font-weight: 400;
}

.kj-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.kj-brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 235px;
  padding: 38px 36px 28px;
  box-sizing: border-box;
  overflow: hidden;
  color: #171313;
  text-decoration: none;
  background: #f8f5f3;
  border-radius: 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.kj-brand-card:hover,
.kj-brand-card:focus {
  color: #171313;
  text-decoration: none;
  background: #f3eeeb;
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(44, 31, 27, 0.1);
}

.kj-brand-card:focus-visible {
  outline: 2px solid #8d7770;
  outline-offset: 4px;
}

.kj-brand-name {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.kj-brand-description {
  max-width: 290px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #4d4542;
}

.kj-brand-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 32px;
  flex: 0 0 auto;
  background: #8d7770;
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.kj-brand-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: -3px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.kj-brand-card:hover .kj-brand-arrow,
.kj-brand-card:focus .kj-brand-arrow {
  background: #715c56;
  transform: translateX(4px);
}


/* ÚVODNÍ BLOK */
.kj-intro-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 72px 20px;
  box-sizing: border-box;
  background:
    linear-gradient(
      125deg,
      rgba(153, 119, 108, 0.03) 0%,
      rgba(153, 119, 108, 0.03) 36%,
      transparent 36%
    ),
    linear-gradient(
      55deg,
      transparent 0%,
      transparent 60%,
      rgba(153, 119, 108, 0.07) 60%,
      rgba(153, 119, 108, 0.07) 100%
    ),
    #faf8f7;
}

.kj-intro-section::before,
.kj-intro-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.kj-intro-section::before {
  top: -180px;
  right: 15%;
  width: 520px;
  height: 620px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-31deg);
}

.kj-intro-section::after {
  right: -170px;
  bottom: -300px;
  width: 620px;
  height: 620px;
  background: rgba(137, 103, 94, 0.08);
  transform: rotate(32deg);
}

.kj-intro-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
}

.kj-intro-content {
  max-width: 650px;
}

.kj-intro-title {
  margin: 0 0 36px;
  font-size: clamp(36px, 3.3vw, 54px);
  line-height: 1.08;
  font-weight: 400;
}

.kj-intro-text {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.45;
}

.kj-intro-text p {
  margin: 0 0 30px;
}

.kj-intro-text p:last-child {
  margin-bottom: 0;
}

.kj-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kj-intro-image-wrapper {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 18px 35px rgba(52, 39, 35, 0.18),
    0 4px 12px rgba(52, 39, 35, 0.09);
}

.kj-intro-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* TABLET */
@media (max-width: 991px) {
  .kj-brand-section {
    padding-top: 50px;
    padding-bottom: 58px;
  }

  .kj-brand-title {
    margin-bottom: 36px;
  }

  .kj-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kj-intro-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .kj-intro-container {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 45px;
  }

  .kj-intro-title {
    margin-bottom: 28px;
  }

  .kj-intro-text {
    font-size: 17px;
  }

  .kj-intro-image-wrapper {
    width: min(100%, 340px);
  }
}


/* MOBIL */
@media (max-width: 767px) {
  .kj-brand-section {
    padding: 40px 15px 48px;
  }

  .kj-brand-title {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .kj-brand-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kj-brand-card {
    min-height: 190px;
    padding: 28px 26px 24px;
    border-radius: 22px;
  }

  .kj-brand-name {
    font-size: 22px;
  }

  .kj-brand-description {
    font-size: 16px;
  }

  .kj-brand-arrow {
    width: 38px;
    height: 38px;
    margin-top: 26px;
  }

  .kj-intro-section {
    padding: 46px 20px 54px;
  }

  .kj-intro-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .kj-intro-content {
    max-width: none;
  }

  .kj-intro-title {
    margin-bottom: 26px;
    font-size: 34px;
    line-height: 1.12;
  }

  .kj-intro-title br {
    display: none;
  }

  .kj-intro-text {
    font-size: 16px;
    line-height: 1.55;
  }

  .kj-intro-text p {
    margin-bottom: 24px;
  }

  .kj-intro-image-wrapper {
    width: min(88vw, 330px);
  }
}


/* MALÝ MOBIL */
@media (max-width: 420px) {
  .kj-intro-title {
    font-size: 30px;
  }
}