.cb-hero {
  --cb-hero-bg: #fcf8f5;
  --cb-hero-text: #000;
  --cb-hero-muted: #000;
  --cb-hero-primary: #d77b93;
  --cb-hero-primary-hover: #c86481;
  --cb-hero-secondary-text: #c86481;
  --cb-hero-border: rgba(47, 36, 27, 0.12);

  padding: 72px 20px;
  background: var(--cb-hero-bg);
  color: var(--cb-hero-text);
}

.cb-hero__container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.cb-hero__content {
  min-width: 0;
}

.cb-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(141, 106, 61, 0.10);
  color: var(--cb-hero-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cb-hero__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;  
  font-weight: 800;
  text-align:center;
  color:#000;
}

.cb-hero__description {
  margin-bottom: 30px;
  width:100%;
  text-align:center;
  display:flex; justify-content:center;
}

.cb-hero__description p {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  color: #000;
  text-align:center;
  width:700px;
  font-weight:400;
}

.cb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 30px;
}

.cb-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 22px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: all .2s ease;
  border: 1px solid transparent;
  width:220px;
}

.cb-hero__button--primary {
  background: var(--cb-hero-primary);
  color: #fff;
}

.cb-hero__button--primary:hover {
  transform: translateY(-1px);
  background: var(--cb-hero-primary-hover);
  color: #fff;
}

.cb-hero__button--secondary {
  background: var(--cb-hero-primary);
  color: #fff;
}

.cb-hero__button--secondary:hover {
  transform: translateY(-1px);
  background: var(--cb-hero-primary-hover);
  color: #fff;
}

.cb-hero__media {
  min-width: 0;
  
}

.cb-hero__single-media,
.cb-hero__slider {
  position: relative;
  width: 100%;
  margin-top:88px;
}

.cb-hero__slides {
  position: relative;
  min-height: 100%;
}

.cb-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s ease;
}

.cb-hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cb-hero__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  
}

.cb-hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.cb-hero__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 36, 27, 0.18);
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
}

.cb-hero__dot.is-active {
  background: var(--cb-hero-primary);
  transform: scale(1.15);
}

.cb-hero--align-center .cb-hero__container {
  grid-template-columns: 1fr;
  text-align: center;
}

.cb-hero--align-center .cb-hero__description {
  margin-left: auto;
  margin-right: auto;
}

.cb-hero--align-center .cb-hero__actions {
  justify-content: center;
}

.cb-hero--theme-dark {
  --cb-hero-bg: #241b14;
  --cb-hero-text: #f8f2ea;
  --cb-hero-muted: #d9cdc1;
  --cb-hero-primary: #d2a56a;
  --cb-hero-primary-hover: #bf9258;
  --cb-hero-secondary-text: #f8f2ea;
  --cb-hero-border: rgba(255, 255, 255, 0.16);
}

.cb-hero--theme-dark .cb-hero__dot {
  background: rgba(255, 255, 255, 0.24);
}

.cb-hero--theme-dark .cb-hero__dot.is-active {
  background: var(--cb-hero-primary);
}

@media (max-width: 991px) {
  .cb-hero {
    padding: 56px 16px;
  }

  .cb-hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cb-hero__title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .cb-hero__description p {
    font-size: 16px;
    line-height: 1.7;
  }
}