.home-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  background: #f0e7d9;
  color: #172c26;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  z-index: 1;
  transition:
    opacity 0.75s ease,
    visibility 0s linear 0.75s;
}
.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 2;
  transition:
    opacity 0.75s ease,
    visibility 0s linear 0s;
}
.hero-slide-content {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 160px), 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 38px 0 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.hero-slide-content a {
  pointer-events: auto;
}
.hero-slide-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23, 44, 38, 0.52);
}
.hero-slide-top span:nth-child(2) {
  text-align: center;
}
.hero-slide-top span:last-child {
  text-align: right;
}
.hero-slide-number {
  color: #bd6f55;
}
.hero-slide-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(23, 44, 38, 0.43);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-kicker {
  display: block;
  margin-bottom: 27px;
  color: #bd6f55;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 44, 38, 0.4);
  color: #172c26;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.hero-slide-link strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(23, 44, 38, 0.4);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 400;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}
.hero-slide-link:hover {
  color: #bd6f55;
  border-color: #bd6f55;
}
.hero-slide-link:hover strong {
  background: #bd6f55;
  border-color: #bd6f55;
  color: #f0e7d9;
  transform: translate(4px, -4px);
}
.hero-one-image {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 47%;
  height: 74%;
  z-index: 4;
  border-radius: 180px 180px 18px 18px;
  overflow: hidden;
  box-shadow: 25px 30px 70px rgba(23, 44, 38, 0.18);
  transform: translateX(35px);
  opacity: 0;
  transition:
    opacity 0.9s ease 0.15s,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.hero-slide.is-active .hero-one-image {
  opacity: 1;
  transform: translateX(0);
}
.hero-one-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.is-active .hero-one-image img {
  transform: scale(1);
}
.hero-one-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 44, 38, 0.03),
    rgba(23, 44, 38, 0.3)
  );
}
.hero-image-number {
  position: absolute;
  right: 25px;
  bottom: 22px;
  z-index: 2;
  color: #f0e7d9;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}
.hero-shape {
  position: absolute;
  pointer-events: none;
}
.hero-one-circle {
  left: -120px;
  bottom: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #d7aaa0;
}
.hero-one-ring {
  right: 5%;
  top: 8%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(189, 111, 85, 0.5);
  border-radius: 50%;
}
.hero-one-accent {
  position: absolute;
  right: 5%;
  bottom: 15%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(23, 44, 38, 0.5);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.hero-one-main {
  width: 52%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 4vw;
  transform: translateY(35px);
  opacity: 0;
  transition:
    opacity 0.8s ease 0.3s,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.hero-slide.is-active .hero-one-main {
  opacity: 1;
  transform: translateY(0);
}
.hero-one-main h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 8.5vw, 130px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.05em;
}
.hero-one-main h1 em {
  font-style: italic;
  color: #bd6f55;
}
.hero-one-main p {
  max-width: 320px;
  margin-top: 35px;
  color: rgba(23, 44, 38, 0.62);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.85;
}
.hero-slide-two {
  background: #172c26;
  color: #f0e7d9;
}
.hero-slide-two .hero-slide-content {
  color: #f0e7d9;
}
.hero-slide-two .hero-slide-top {
  color: rgba(240, 231, 217, 0.55);
}
.hero-slide-two .hero-slide-bottom {
  color: rgba(240, 231, 217, 0.42);
}
.hero-slide-two .hero-slide-link {
  color: #f0e7d9;
  border-color: rgba(240, 231, 217, 0.4);
}
.hero-slide-two .hero-slide-link strong {
  border-color: rgba(240, 231, 217, 0.4);
}
.hero-slide-two .hero-slide-link:hover {
  color: #d7aaa0;
  border-color: #d7aaa0;
}
.hero-slide-two .hero-slide-link:hover strong {
  background: #d7aaa0;
  border-color: #d7aaa0;
  color: #172c26;
}
.hero-two-image {
  position: absolute;
  left: 8%;
  top: 10%;
  width: 36%;
  height: 80%;
  z-index: 4;
  overflow: hidden;
  border-radius: 250px 250px 22px 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  transform: translateX(-35px);
  opacity: 0;
  transition:
    opacity 0.9s ease 0.15s,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.hero-slide.is-active .hero-two-image {
  opacity: 1;
  transform: translateX(0);
}
.hero-two-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-two-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 44, 38, 0.05),
    rgba(23, 44, 38, 0.45)
  );
}
.hero-image-label {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
  color: #f0e7d9;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.18em;
}
.hero-two-circle {
  position: absolute;
  right: -130px;
  top: -130px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(215, 170, 160, 0.35);
}
.hero-two-circle-small {
  position: absolute;
  right: 14%;
  bottom: 8%;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #d7aaa0;
}
.hero-two-side-text {
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: 5;
  color: rgba(240, 231, 217, 0.28);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-two-main {
  width: 55%;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 5vw;
  transform: translateX(35px);
  opacity: 0;
  transition:
    opacity 0.8s ease 0.3s,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.hero-slide.is-active .hero-two-main {
  opacity: 1;
  transform: translateX(0);
}
.hero-two-main h1 {
  font-family: var(--font-display);
  font-size: clamp(74px, 8.7vw, 132px);
  font-weight: 500;
  line-height: 0.77;
  letter-spacing: -0.05em;
}
.hero-two-main h1 em {
  font-style: italic;
  color: #d7aaa0;
}
.hero-two-main p {
  max-width: 310px;
  margin-top: 35px;
  color: rgba(240, 231, 217, 0.62);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.85;
}
.hero-slide-three {
  background: #e6d9c8;
}
.hero-three-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 44, 38, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 44, 38, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-three-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 43%;
  height: 72%;
  border: 1px solid rgba(23, 44, 38, 0.28);
  transform: translate(-4%, -50%) rotate(3deg);
}
.hero-three-image {
  position: absolute;
  left: 53%;
  top: 50%;
  width: 38%;
  height: 68%;
  z-index: 4;
  overflow: hidden;
  transform: translate(-4%, -50%) rotate(-2deg) scale(0.95);
  opacity: 0;
  box-shadow: 20px 25px 60px rgba(23, 44, 38, 0.16);
  transition:
    opacity 0.9s ease 0.15s,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.hero-slide.is-active .hero-three-image {
  opacity: 1;
  transform: translate(-4%, -50%) rotate(-2deg) scale(1);
}
.hero-three-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-three-small-image {
  position: absolute;
  right: 8%;
  bottom: 13%;
  width: 130px;
  height: 170px;
  z-index: 6;
  overflow: hidden;
  border: 7px solid #e6d9c8;
  box-shadow: 10px 15px 35px rgba(23, 44, 38, 0.15);
  transform: rotate(6deg);
  transition: transform 0.4s ease;
}
.hero-three-small-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-three-square {
  position: absolute;
  right: 6%;
  top: 13%;
  width: 70px;
  height: 70px;
  border: 1px solid #bd6f55;
  transform: rotate(45deg);
}
.hero-three-main {
  width: 50%;
  margin-top: auto;
  margin-bottom: auto;
  transform: translateY(35px);
  opacity: 0;
  transition:
    opacity 0.8s ease 0.3s,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.hero-slide.is-active .hero-three-main {
  opacity: 1;
  transform: translateY(0);
}
.hero-three-main h1 {
  font-family: var(--font-display);
  font-size: clamp(70px, 8.5vw, 128px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.05em;
}
.hero-three-main h1 em {
  font-style: italic;
  color: #bd6f55;
}
.hero-three-main p {
  max-width: 300px;
  margin-top: 35px;
  color: rgba(23, 44, 38, 0.6);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.85;
}
.hero-three-caption {
  position: absolute;
  right: 9%;
  bottom: 10%;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(23, 44, 38, 0.48);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-slide-four {
  background: #d7aaa0;
  color: #172c26;
}
.hero-four-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66%;
  height: 76%;
  z-index: 3;
  overflow: hidden;
  border-radius: 240px 0 0 0;
}
.hero-four-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-four-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(215, 170, 160, 0.7),
      rgba(215, 170, 160, 0) 35%
    ),
    linear-gradient(180deg, rgba(23, 44, 38, 0.05), rgba(23, 44, 38, 0.3));
}
.hero-four-circle {
  position: absolute;
  left: 7%;
  top: 19%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #f0e7d9;
  mix-blend-mode: normal;
}
.hero-four-ring {
  position: absolute;
  left: 11%;
  top: 25%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(23, 44, 38, 0.28);
  border-radius: 50%;
}
.hero-four-strip {
  position: absolute;
  right: 6%;
  top: 15%;
  z-index: 6;
  display: flex;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right center;
  color: rgba(23, 44, 38, 0.5);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.hero-four-strip span {
  padding: 7px 11px;
  border: 1px solid rgba(23, 44, 38, 0.22);
  border-radius: 20px;
}
.hero-four-main {
  width: 52%;
  margin-top: auto;
  margin-bottom: auto;
  transform: translateY(35px);
  opacity: 0;
  transition:
    opacity 0.8s ease 0.3s,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.hero-slide.is-active .hero-four-main {
  opacity: 1;
  transform: translateY(0);
}
.hero-four-label {
  display: flex;
  gap: 30px;
  margin-bottom: 27px;
  color: #bd6f55;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.hero-four-main h1 {
  font-family: var(--font-display);
  font-size: clamp(76px, 8.8vw, 134px);
  font-weight: 500;
  line-height: 0.77;
  letter-spacing: -0.05em;
}
.hero-four-main h1 em {
  font-style: italic;
  color: #bd6f55;
}
.hero-four-main p {
  max-width: 300px;
  margin-top: 35px;
  color: rgba(23, 44, 38, 0.62);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.85;
}
.hero-four-meta {
  position: absolute;
  right: 7%;
  bottom: 9%;
  z-index: 6;
  display: flex;
  gap: 30px;
  color: rgba(23, 44, 38, 0.5);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.hero-slider-button {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(23, 44, 38, 0.4);
  border-radius: 50%;
  background: rgba(240, 231, 217, 0.22);
  color: #172c26;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}
.hero-slider-button-prev {
  left: 25px;
}
.hero-slider-button-next {
  right: 25px;
}
.hero-slider-button:hover {
  background: #172c26;
  border-color: #172c26;
  color: #f0e7d9;
  transform: translateY(-50%) scale(1.06);
}
.hero-slider-controls {
  position: absolute;
  right: 42px;
  bottom: 38px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-slider-count {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #172c26;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hero-slider-count span:first-child {
  color: #bd6f55;
}
.hero-count-divider {
  width: 30px;
  height: 1px;
  background: rgba(23, 44, 38, 0.3);
}
.hero-slider-progress {
  width: 100px;
  height: 1px;
  background: rgba(23, 44, 38, 0.2);
}
.hero-slider-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #bd6f55;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
  transform: translateX(-50%);
}
.hero-slider-dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 1px solid rgba(23, 44, 38, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}
.hero-slider-dot.is-active {
  width: 27px;
  border-color: #bd6f55;
  background: #bd6f55;
  border-radius: 5px;
}
.hero-scroll-indicator {
  position: absolute;
  left: 42px;
  bottom: 38px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(23, 44, 38, 0.45);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.hero-scroll-indicator i {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(23, 44, 38, 0.3);
  overflow: hidden;
  position: relative;
}
.hero-scroll-indicator i::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #bd6f55;
  animation: heroScrollLine 2.5s ease-in-out infinite;
}
@keyframes heroScrollLine {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@media (max-width: 1100px) {
  .hero-slide-content {
    width: calc(100% - 120px);
  }
  .hero-one-image {
    right: 5%;
    width: 48%;
  }
  .hero-one-main {
    width: 54%;
    padding-left: 2vw;
  }
  .hero-two-image {
    left: 5%;
    width: 39%;
  }
  .hero-two-main {
    width: 57%;
  }
  .hero-three-image {
    left: 55%;
    width: 39%;
  }
  .hero-three-main {
    width: 54%;
  }
  .hero-four-image {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .home-hero {
    min-height: 620px;
  }
  .hero-slide-content {
    width: calc(100% - 40px);
    padding: 23px 0 25px;
  }
  .hero-slide-top {
    grid-template-columns: 1fr 1fr;
    font-size: 6px;
  }
  .hero-slide-top span:nth-child(2) {
    text-align: right;
  }
  .hero-slide-top span:last-child {
    display: none;
  }
  .hero-slide-bottom {
    font-size: 6px;
  }
  .hero-slide-bottom span:last-child {
    display: none;
  }
  .hero-kicker {
    font-size: 6px;
    margin-bottom: 20px;
  }
  .hero-one-image {
    right: 5%;
    top: 8%;
    width: 63%;
    height: 55%;
    border-radius: 120px 120px 15px 15px;
  }
  .hero-one-main {
    width: 100%;
    padding: 0;
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .hero-one-main h1,
  .hero-two-main h1,
  .hero-three-main h1,
  .hero-four-main h1 {
    font-size: clamp(55px, 15vw, 88px);
    line-height: 0.8;
  }
  .hero-one-main p,
  .hero-two-main p,
  .hero-three-main p,
  .hero-four-main p {
    max-width: 270px;
    margin-top: 23px;
    font-size: 9px;
    line-height: 1.75;
  }
  .hero-one-circle {
    width: 260px;
    height: 260px;
    left: -110px;
    bottom: 70px;
  }
  .hero-one-ring {
    width: 70px;
    height: 70px;
    right: 4%;
    top: 7%;
  }
  .hero-one-accent {
    right: 3%;
    bottom: 35%;
    font-size: 5px;
  }
  .hero-slide-two .hero-slide-content {
    color: #f0e7d9;
  }
  .hero-two-image {
    left: 7%;
    top: 7%;
    width: 53%;
    height: 58%;
    border-radius: 150px 150px 14px 14px;
  }
  .hero-two-main {
    width: 100%;
    padding: 0;
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .hero-two-circle {
    width: 270px;
    height: 270px;
    right: -130px;
    top: -80px;
  }
  .hero-two-circle-small {
    width: 50px;
    height: 50px;
    right: 8%;
    bottom: 26%;
  }
  .hero-two-side-text {
    display: none;
  }
  .hero-three-frame {
    left: 28%;
    top: 8%;
    width: 65%;
    height: 52%;
    transform: rotate(3deg);
  }
  .hero-three-image {
    left: 31%;
    top: 9%;
    width: 58%;
    height: 49%;
    transform: rotate(-2deg) scale(0.95);
  }
  .hero-slide.is-active .hero-three-image {
    transform: rotate(-2deg) scale(1);
  }
  .hero-three-small-image {
    width: 70px;
    height: 90px;
    right: 7%;
    bottom: 31%;
    border-width: 4px;
  }
  .hero-three-square {
    width: 40px;
    height: 40px;
    right: 5%;
    top: 9%;
  }
  .hero-three-main {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 28px;
  }
  .hero-three-caption {
    right: 5%;
    bottom: 29%;
    font-size: 5px;
  }
  .hero-four-image {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 58%;
    border-radius: 130px 0 0 0;
  }
  .hero-four-circle {
    left: 5%;
    top: 11%;
    width: 130px;
    height: 130px;
  }
  .hero-four-ring {
    left: 9%;
    top: 14%;
    width: 190px;
    height: 190px;
  }
  .hero-four-strip {
    right: 3%;
    top: 7%;
    font-size: 5px;
  }
  .hero-four-main {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .hero-four-meta {
    right: 5%;
    bottom: 31%;
    gap: 12px;
    font-size: 5px;
  }
  .hero-slider-button {
    top: auto;
    bottom: 24px;
    width: 42px;
    height: 42px;
    font-size: 15px;
    transform: none;
  }
  .hero-slider-button:hover {
    transform: scale(1.05);
  }
  .hero-slider-button-prev {
    left: 18px;
  }
  .hero-slider-button-next {
    right: 18px;
  }
  .hero-slider-controls {
    right: 18px;
    bottom: 28px;
    gap: 12px;
  }
  .hero-slider-progress {
    width: 55px;
  }
  .hero-slider-dots {
    bottom: 72px;
  }
  .hero-slider-dot.is-active {
    width: 20px;
  }
  .hero-scroll-indicator {
    display: none;
  }
}
@media (max-width: 420px) {
  .hero-slide-content {
    width: calc(100% - 34px);
  }
  .hero-one-main h1,
  .hero-two-main h1,
  .hero-three-main h1,
  .hero-four-main h1 {
    font-size: 52px;
  }
  .hero-slider-button-prev {
    left: 15px;
  }
  .hero-slider-button-next {
    right: 15px;
  }
  .hero-slider-controls {
    right: 15px;
  }
  .hero-slider-progress {
    width: 45px;
  }
  .hero-one-image {
    height: 52%;
  }
  .hero-two-image {
    height: 54%;
  }
  .hero-three-image {
    height: 46%;
  }
  .hero-three-frame {
    height: 49%;
  }
  .hero-four-image {
    height: 54%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-one-image,
  .hero-two-image,
  .hero-three-image,
  .hero-one-main,
  .hero-two-main,
  .hero-three-main,
  .hero-four-main,
  .hero-slider-button {
    transition: none;
  }
  .hero-slider-progress span {
    transition: none;
  }
  .hero-scroll-indicator i::after {
    animation: none;
  }
}

@media (max-width: 767px) {
  .home-hero {
    height: 100svh;
    min-height: 600px;
    max-height: 900px;
  }
  .hero-slide-content {
    width: calc(100% - 34px);
    padding: 24px 0 24px;
  }
  .hero-slide-top {
    grid-template-columns: 1fr 1fr;
    font-size: 5.5px;
    letter-spacing: 0.16em;
  }
  .hero-slide-top span:nth-child(2) {
    text-align: right;
  }
  .hero-slide-top span:last-child {
    display: none;
  }
  .hero-slide-bottom {
    font-size: 5.5px;
    letter-spacing: 0.15em;
  }
  .hero-slide-bottom span:last-child {
    display: none;
  }
  .hero-kicker {
    font-size: 5.5px;
    letter-spacing: 0.2em;
    margin-bottom: 17px;
  }
  .hero-slide-link {
    gap: 10px;
    margin-top: 22px;
    padding-bottom: 8px;
    font-size: 6px;
  }
  .hero-slide-link strong {
    width: 27px;
    height: 27px;
    font-size: 11px;
  }
  .hero-slider-button {
    top: auto;
    bottom: 22px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    transform: none;
  }
  .hero-slider-button:hover {
    transform: scale(1.04);
  }
  .hero-slider-button-prev {
    left: 16px;
  }
  .hero-slider-button-next {
    right: 16px;
  }
  .hero-slider-controls {
    right: 16px;
    bottom: 27px;
    gap: 10px;
  }
  .hero-slider-count {
    gap: 7px;
    font-size: 5.5px;
  }
  .hero-count-divider {
    width: 18px;
  }
  .hero-slider-progress {
    width: 45px;
  }
  .hero-slider-dots {
    bottom: 76px;
    gap: 6px;
  }
  .hero-slider-dot {
    width: 4px;
    height: 4px;
  }
  .hero-slider-dot.is-active {
    width: 19px;
  }
  .hero-scroll-indicator {
    display: none;
  }

  /* SLIDE ONE */
  .hero-one-image {
    right: 4%;
    top: 9%;
    width: 67%;
    height: 47%;
    border-radius: 100px 100px 13px 13px;
    box-shadow: 15px 20px 45px rgba(23, 44, 38, 0.16);
    transform: translateX(25px);
  }
  .hero-slide.is-active .hero-one-image {
    transform: translateX(0);
  }
  .hero-one-image img {
    object-position: center center;
  }
  .hero-image-number {
    right: 16px;
    bottom: 14px;
    font-size: 28px;
  }
  .hero-one-main {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0 3px 70px;
    transform: translateY(25px);
  }
  .hero-one-main h1 {
    font-size: clamp(52px, 16vw, 76px);
    line-height: 0.79;
    letter-spacing: -0.055em;
  }
  .hero-one-main p {
    max-width: 245px;
    margin-top: 18px;
    font-size: 8.5px;
    line-height: 1.7;
  }
  .hero-one-circle {
    left: -105px;
    bottom: 50px;
    width: 230px;
    height: 230px;
  }
  .hero-one-ring {
    right: 3%;
    top: 7%;
    width: 58px;
    height: 58px;
  }
  .hero-one-accent {
    right: 2%;
    bottom: 30%;
    font-size: 4.5px;
    letter-spacing: 0.18em;
  }

  /* SLIDE TWO */
  .hero-slide-two .hero-slide-content {
    color: #f0e7d9;
  }
  .hero-two-image {
    left: 5%;
    top: 8%;
    width: 57%;
    height: 51%;
    border-radius: 120px 120px 13px 13px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.23);
    transform: translateX(-25px);
  }
  .hero-slide.is-active .hero-two-image {
    transform: translateX(0);
  }
  .hero-image-label {
    left: 16px;
    bottom: 17px;
    font-size: 5.5px;
    line-height: 1.6;
  }
  .hero-two-main {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0 3px 70px;
    transform: translateX(25px);
  }
  .hero-two-main h1 {
    font-size: clamp(54px, 16vw, 78px);
    line-height: 0.79;
    letter-spacing: -0.055em;
  }
  .hero-two-main p {
    max-width: 245px;
    margin-top: 18px;
    font-size: 8.5px;
    line-height: 1.7;
  }
  .hero-two-circle {
    right: -125px;
    top: -95px;
    width: 300px;
    height: 300px;
  }
  .hero-two-circle-small {
    right: 8%;
    bottom: 25%;
    width: 42px;
    height: 42px;
  }
  .hero-two-side-text {
    display: none;
  }

  /* SLIDE THREE */
  .hero-three-grid {
    background-size: 45px 45px;
  }
  .hero-three-frame {
    left: 24%;
    top: 7%;
    width: 69%;
    height: 49%;
    transform: rotate(3deg);
  }
  .hero-three-image {
    left: 28%;
    top: 8%;
    width: 61%;
    height: 46%;
    box-shadow: 12px 16px 35px rgba(23, 44, 38, 0.15);
    transform: rotate(-2deg) scale(0.95);
  }
  .hero-slide.is-active .hero-three-image {
    transform: rotate(-2deg) scale(1);
  }
  .hero-three-small-image {
    right: 7%;
    bottom: 30%;
    width: 63px;
    height: 82px;
    border-width: 4px;
    box-shadow: 7px 10px 22px rgba(23, 44, 38, 0.13);
  }
  .hero-three-square {
    right: 5%;
    top: 8%;
    width: 35px;
    height: 35px;
  }
  .hero-three-main {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0 3px 70px;
    transform: translateY(25px);
  }
  .hero-three-main h1 {
    font-size: clamp(51px, 15.5vw, 75px);
    line-height: 0.79;
    letter-spacing: -0.055em;
  }
  .hero-three-main p {
    max-width: 240px;
    margin-top: 18px;
    font-size: 8.5px;
    line-height: 1.7;
  }
  .hero-three-caption {
    right: 5%;
    bottom: 27%;
    font-size: 4.5px;
    letter-spacing: 0.18em;
  }

  /* SLIDE FOUR */
  .hero-four-image {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    border-radius: 105px 0 0 0;
  }
  .hero-four-image img {
    object-position: center center;
  }
  .hero-four-image::after {
    background:
      linear-gradient(
        90deg,
        rgba(215, 170, 160, 0.75),
        rgba(215, 170, 160, 0) 48%
      ),
      linear-gradient(180deg, rgba(23, 44, 38, 0.03), rgba(23, 44, 38, 0.3));
  }
  .hero-four-circle {
    left: 4%;
    top: 10%;
    width: 110px;
    height: 110px;
  }
  .hero-four-ring {
    left: 8%;
    top: 13%;
    width: 165px;
    height: 165px;
  }
  .hero-four-strip {
    right: 2%;
    top: 7%;
    gap: 7px;
    font-size: 4.5px;
  }
  .hero-four-strip span {
    padding: 5px 8px;
  }
  .hero-four-main {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0 3px 70px;
    transform: translateY(25px);
  }
  .hero-four-label {
    gap: 18px;
    margin-bottom: 17px;
    font-size: 5.5px;
  }
  .hero-four-main h1 {
    font-size: clamp(53px, 16vw, 78px);
    line-height: 0.79;
    letter-spacing: -0.055em;
  }
  .hero-four-main p {
    max-width: 245px;
    margin-top: 18px;
    font-size: 8.5px;
    line-height: 1.7;
  }
  .hero-four-meta {
    right: 5%;
    bottom: 26%;
    gap: 10px;
    font-size: 4.5px;
  }

  /* MOBILE CONTROLS */
  .hero-slider-button {
    background: rgba(240, 231, 217, 0.35);
    backdrop-filter: blur(8px);
  }
  .hero-slider-button-prev {
    left: 14px;
  }
  .hero-slider-button-next {
    right: 14px;
  }
  .hero-slider-controls {
    right: 14px;
    bottom: 25px;
  }
  .hero-slider-progress {
    width: 42px;
  }
  .hero-slider-dots {
    bottom: 69px;
  }

  /* SMALL MOBILE */
  @media (max-height: 700px) {
    .hero-slide-content {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .hero-one-image {
      top: 8%;
      height: 43%;
    }
    .hero-two-image {
      top: 7%;
      height: 46%;
    }
    .hero-three-frame {
      top: 6%;
      height: 45%;
    }
    .hero-three-image {
      top: 7%;
      height: 42%;
    }
    .hero-four-image {
      height: 46%;
    }
    .hero-one-main,
    .hero-two-main,
    .hero-three-main,
    .hero-four-main {
      padding-bottom: 62px;
    }
    .hero-one-main p,
    .hero-two-main p,
    .hero-three-main p,
    .hero-four-main p {
      margin-top: 14px;
    }
    .hero-slider-dots {
      bottom: 63px;
    }
    .hero-three-small-image {
      bottom: 28%;
    }
    .hero-three-caption {
      bottom: 25%;
    }
    .hero-four-meta {
      bottom: 24%;
    }
  }
}

@media (max-width: 420px) {
  .home-hero {
    min-height: 570px;
  }
  .hero-slide-content {
    width: calc(100% - 28px);
    padding: 20px 0 20px;
  }
  .hero-slide-top {
    font-size: 5px;
  }
  .hero-slide-bottom {
    font-size: 5px;
  }
  .hero-one-main,
  .hero-two-main,
  .hero-three-main,
  .hero-four-main {
    padding-bottom: 61px;
  }
  .hero-one-main h1,
  .hero-two-main h1,
  .hero-three-main h1,
  .hero-four-main h1 {
    font-size: 51px;
    line-height: 0.8;
  }
  .hero-one-main p,
  .hero-two-main p,
  .hero-three-main p,
  .hero-four-main p {
    max-width: 225px;
    font-size: 8px;
    line-height: 1.68;
  }
  .hero-one-image {
    right: 3%;
    top: 9%;
    width: 70%;
    height: 45%;
    border-radius: 85px 85px 11px 11px;
  }
  .hero-one-circle {
    left: -115px;
    bottom: 45px;
    width: 215px;
    height: 215px;
  }
  .hero-one-ring {
    width: 50px;
    height: 50px;
  }
  .hero-one-accent {
    bottom: 29%;
    font-size: 4px;
  }
  .hero-two-image {
    left: 4%;
    top: 8%;
    width: 59%;
    height: 49%;
    border-radius: 105px 105px 11px 11px;
  }
  .hero-two-circle {
    right: -135px;
    top: -105px;
    width: 285px;
    height: 285px;
  }
  .hero-two-circle-small {
    width: 38px;
    height: 38px;
  }
  .hero-three-frame {
    left: 21%;
    top: 7%;
    width: 73%;
    height: 47%;
  }
  .hero-three-image {
    left: 25%;
    top: 8%;
    width: 65%;
    height: 44%;
  }
  .hero-three-small-image {
    right: 5%;
    bottom: 28%;
    width: 56px;
    height: 73px;
    border-width: 3px;
  }
  .hero-three-square {
    width: 31px;
    height: 31px;
  }
  .hero-three-caption {
    right: 4%;
    bottom: 25%;
    font-size: 4px;
  }
  .hero-four-image {
    height: 48%;
    border-radius: 90px 0 0 0;
  }
  .hero-four-circle {
    width: 95px;
    height: 95px;
  }
  .hero-four-ring {
    width: 145px;
    height: 145px;
  }
  .hero-four-strip {
    font-size: 4px;
  }
  .hero-four-strip span {
    padding: 4px 7px;
  }
  .hero-four-label {
    gap: 14px;
    font-size: 5px;
  }
  .hero-four-meta {
    bottom: 24%;
    font-size: 4px;
  }
  .hero-slider-button {
    width: 37px;
    height: 37px;
    font-size: 13px;
  }
  .hero-slider-button-prev {
    left: 11px;
  }
  .hero-slider-button-next {
    right: 11px;
  }
  .hero-slider-controls {
    right: 11px;
    bottom: 24px;
  }
  .hero-slider-count {
    font-size: 5px;
  }
  .hero-slider-progress {
    width: 36px;
  }
  .hero-slider-dots {
    bottom: 65px;
  }
  .hero-slider-dot.is-active {
    width: 17px;
  }
}

@media (max-width: 360px) {
  .hero-one-main,
  .hero-two-main,
  .hero-three-main,
  .hero-four-main {
    padding-bottom: 57px;
  }
  .hero-one-main h1,
  .hero-two-main h1,
  .hero-three-main h1,
  .hero-four-main h1 {
    font-size: 47px;
  }
  .hero-one-main p,
  .hero-two-main p,
  .hero-three-main p,
  .hero-four-main p {
    font-size: 7.5px;
    max-width: 210px;
  }
  .hero-one-image {
    height: 42%;
  }
  .hero-two-image {
    height: 45%;
  }
  .hero-three-frame {
    height: 43%;
  }
  .hero-three-image {
    height: 40%;
  }
  .hero-four-image {
    height: 45%;
  }
  .hero-slider-button {
    width: 34px;
    height: 34px;
  }
  .hero-slider-controls {
    gap: 7px;
  }
  .hero-slider-progress {
    width: 30px;
  }
  .hero-slider-dots {
    bottom: 61px;
  }
}
