/* Brand page styles */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

#brand-page {
  width: 100%;
}


.brand-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.brand-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 16px;
}

.brand-hero__logo {
  display: block;
  max-width: 200px;
  width: min(40vw, 200px);
  height: auto;
  margin: 0 auto 16px;
}

.brand-hero__tagline {
  margin: 8px 0 60px;
  font-family: 'Pacifico', cursive;
  font-size: clamp(22px, 4.8vw, 44px);
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.brand-hero__cta {
  display: inline-block;
  background-color: #F2AE3B;
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color .2s ease-in-out, transform .1s ease-in-out;
  width: 100%;
  max-width: 75%;
}

.brand-hero__cta:hover {
  background-color: #e5a02d;
  color: #fff;
}

.brand-hero__cta:active {
  transform: translateY(1px);
}

@media (max-width: 576px) {
  .brand-hero {
    min-height: 70vh;
  }

  .brand-hero__logo {
    max-width: 240px;
  }
}


/* Intro + video block */
.brand-intro {
  padding: 48px 0 56px;
  background: #fff;
}

.brand-intro__title {
  margin: 0 0 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #4b3f3a;
  font-size: clamp(18px, 2.6vw, 22px);
}

.brand-intro__text {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  color: #4b3f3a;
  opacity: .9;
  font-size: clamp(14px, 2.8vw, 18px);
  line-height: 1.6;
}

.brand-video {
  margin: 0 auto;
}

.brand-video__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #d9d9d9;
}


/* Slider block */
.brand-slider {
  padding: 40px 0 56px;
  background: #fff;
}

.brand-slider__text {
  max-width: 1100px;
  margin: 0 auto 16px;
  text-align: center;
  color: #4b3f3a;
  font-size: clamp(14px, 2.6vw, 18px);
  line-height: 1.6;
}


.brand-swiper {
  position: relative;
  width: 100%;
}

.brand-swiper .swiper-wrapper {
  display: flex;
}

.brand-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.brand__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 0;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.brand__nav--prev {
  left: 8px;
}

.brand__nav--next {
  right: 8px;
}

.brand__nav::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.brand__nav--prev::before {
  transform: rotate(-135deg);
}

.brand__nav--next::before {
  transform: rotate(45deg);
}


/* Stats block */
.brand-stats {
  background: #fff;
  padding: 44px 0 56px;
}

.brand-stats__intro {
  margin: 0 auto 24px;
  text-align: center;
  color: #4b3f3a;
  opacity: .95;
  font-size: clamp(14px, 2.6vw, 24px);
  font-family: Montserrat;
  font-weight: 500;
  line-height: 1.5;
  max-width: 1093px;
}

.brand-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .brand-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.brand-stat {
  text-align: center;

}

.brand-stat__value {
  color: #F2AE3B;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 96px);
  line-height: 1;
  font-family: 'Pacifico', cursive;
}


.brand-stat__label {
  margin-top: 8px;
  color: #b9b9b9;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 24px;
}


/* About block */
.brand-about {
  background: #f8f7f5;
  padding: 40px 0 56px;
}

.brand-about__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .brand-about__grid {
    flex-direction: row;
    /* image stays on the left by source order */
    gap: 32px;
    align-items: center;
  }
}

.brand-about__media,
.brand-about__note {
  flex: 1 1 0;
}

.brand-about__img {
  display: block;
  width: 100%;
  max-width: 532px;
  max-height: 531px;
  height: auto;
  border-radius: 6px;
}

.brand-about__note {
  align-self: center;
  text-align: center;
  border-radius: 8px;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 3vw, 24px);
  color: #5F534C;
  font-size: clamp(14px, 2.6vw, 25px);
  line-height: 1.5;
}

.brand-about__text {
  max-width: 1093px;
  margin: 80px auto 0;
  text-align: center;
  color: #4b3f3a;
  font-size: clamp(14px, 2.6vw, 24px);
  line-height: 1.5;
  font-family: Montserrat;

}


/* Final block */
.brand-final {
  background: #fff;
  padding: 48px 0 64px;
}

.brand-final__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .brand-final__grid {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }
}

.brand-final__left,
.brand-final__right {
  flex: 1 1 0;
  position: relative;
  align-self: start;
  text-align: center;
}

.brand-final__lead {
  color: #4b3f3a;
  font-size: clamp(14px, 2.6vw, 24px);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 520px;
  align-self: flex-start;
  padding-top: 40px;
}

.brand-final__title {
  color: #5F534C;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
  font-weight: bold;
  font-family: Montserrat;
  font-size: 24px;
}

.brand-final__logo {
  display: block;
  width: 723px;
  max-width: 725px;
  height: 358px;
  position: absolute;
  z-index: 2;
}

.brand-final__bg {
  display: block;
  width: 100%;
  max-width: 595px;
  max-height: 739px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}