/* =========================
   HERO
========================= */

.hp-hero {
  position: relative;
  min-height: calc(100vh + 100px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1712;
    width: 100%;
  max-width: 100%;
}

.hp-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
   width: 100%;
}

.hp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
    transition: opacity 1.4s ease;
    width: 100%;
}

.hp-hero.is-loaded .hp-hero__slide.is-active  {
  opacity: 1;
}

.hp-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    display: block;
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.35);
}

.hp-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 760px;
  padding: 40px 20px;
  transform: translateY(-210px);
}

.hp-hero__logo {
  max-width: 220px;
  height: auto;
  margin: 0px auto 40px;
}
.hp-hero__title-svg {
  max-width: 575px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 25px;
}

.hp-hero__text {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 40px;
}

.hp-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 26px;
  border-radius: 999px;
  background: #fff;
  color: #2b1c12;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.hp-hero__button:hover {
  transform: translateY(-2px);
  background: #f3eee8;
  color: #2b1c12;
}

.hp-hero__features {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  z-index: 4;
  width: min(1100px, calc(100% - 80px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  color: #fff;
}

.hp-hero__feature-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.hp-hero__feature-text {
  font-size: 14px;
  line-height: 1.35;
  opacity: .95;
  margin-top: 4px;
}

@media (max-width: 991.98px) {
  .hp-hero__features {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    bottom: 32px;
  }
}

@media (max-width: 575.98px) {
  .hp-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
}


/* Hero content fade only */

.hp-hero__content {
  opacity: 0;
  animation: heroContentFade 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes heroContentFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================
   HERO MOBILE FIX
========================= */


@media (max-width: 991.98px) {
  .hp-hero {
    min-height: auto;
    height: auto;
    display: block;
    padding-top: 0;
    background: #1f1712;
  }

  .hp-hero__slider {
    position: relative;
    height: 720px;
  }

  .hp-hero__slide {
    position: absolute;
    inset: 0;
  }

  .hp-hero__content {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 520px;
    padding: 0;
  }

  .hp-hero__logo {
    max-width: 150px;
    margin-bottom: 18px;
  }

  .hp-hero__title-svg {
    max-width: 300px;
    margin-bottom: 30px;
  }

  .hp-hero__text {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 22px;
  }

  .hp-hero__features {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: #1f1712;
    color: #fff;
    padding: 0 20px 34px;
  }

  .hp-hero__feature {
    padding: 30px 12px;
    /* border-top: 1px solid rgba(255,255,255,.18); */
  }

  .hp-hero__feature:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.18);
  }

  .hp-hero__feature-title {
    font-size: 14px;
  }

  .hp-hero__feature-text {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .hp-hero {
    min-height: 720px;
  }

  .hp-hero__logo {
    max-width: 170px;
    margin-bottom: 22px;
  }

  .hp-hero__text {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .hp-hero__slider {
    height: 640px;
  }

  .hp-hero__content {
    top: 125px;
  }
  .hp-hero__text {
    margin-bottom: 140px;
  }

   .hp-hero__logo {
    max-width: 80px;
  }

  .hp-hero__features {
    grid-template-columns: 1fr;
  }

  .hp-hero__feature:nth-child(odd) {
    border-right: none;
  }
}



/* =========================
   PRODUCTS SLIDER
========================= */

.w-2040 {
  max-width: 1500px;
  padding-left: 40px;
  padding-right: 40px;
}

/* =========================
   PRODUCTS SLIDER
========================= */

.w-2040 {
  max-width: 1500px;
  padding-left: 40px;
  padding-right: 40px;
}

.hp-products {
    background: #fff;
    padding-top: 120px;
    padding-bottom: 100px;
}

.hp-products__title {
  font-weight: 600;
  color: #151515;
}

.hp-products__subtitle {
  color: #9c7552;
  font-weight: 500;
}

.hp-products__slider {
  position: relative;
}

.hp-products__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 30px;
  padding-top: 10px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.hp-products__viewport::-webkit-scrollbar {
  display: none;
}

.hp-products__viewport.is-dragging {
  cursor: grabbing;
}

.hp-products__viewport.is-dragging a {
  pointer-events: none;
}

.hp-products__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hp-products__card {
  scroll-snap-align: none;
  text-decoration: none;
  color: inherit;
  flex: 0 0 calc((100% - 24px * 2) / 3);
}

.hp-products__card-inner {
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  position: relative;
}

.hp-products__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hp-products__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,.58) 100%
  );
}

.hp-products__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.hp-products__card:hover .hp-products__image img {
  transform: scale(1.07);
  transition: transform .7s ease;
}

.hp-products__card-title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 42px;
  z-index: 3;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.hp-products__bottom,
.hp-products__btn {
  display: none;
}

.hp-products__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 22px auto 0;
}

.hp-products__progress {
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(114,83,45,.10);
  overflow: hidden;
}

.hp-products__progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: #6f4f27;
  transition: width .45s cubic-bezier(.22,.61,.36,1);
}

.hp-products__arrows {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.hp-products__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(111,79,39,.22);
  position: relative;
  transition: transform 0.25s ease;
}
.hp-products__arrow:hover {
  transform: translateY(-3px);
}

.hp-products__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #9c7552;
  border-right: 2px solid #9c7552;
  transform: rotate(45deg);
}

.hp-products__arrow[data-hp-products-prev]::before {
  transform: rotate(-135deg);
}

@media (max-width: 1599.98px) {
  .hp-products__card {
    flex: 0 0 calc((100% - 24px * 2) / 3);
  }
}

@media (max-width: 1199.98px) {
  .hp-products__card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 575.98px) {
  .w-2040 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hp-products__card {
    flex-basis: 100%;
  }

  .hp-products__card-inner {
    /* height: 380px; */
  }

  .hp-products__nav {
    gap: 18px;
  }
}


/* CTA button under products */

.hp-products__cta {
  margin-top: 40px;
}

.hp-products__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid #9c7552;
  color: #9c7552;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease;
}

.hp-products__cta-btn:hover {
  background: #9c7552;
  color: #fff;
}


/* =========================
   FULL BANNER
========================= */

.hp-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hp-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hp-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.35);
}

.hp-banner__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-145px);
}

.hp-banner__eyebrow {
  font-size: 18px;
  /*opacity: .85;*/
  color:#D8B892;
  margin-bottom: 14px;
}

.hp-banner__title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 600;
}

@media (max-width: 767.98px) {
    .hp-banner__bg {
        left:-90px;
        top: -30px;
    }
    .hp-banner__content {
        transform: translateY(-95px);
    }
  .hp-banner {
    height: 520px;
  }

  .hp-banner__title {
    font-size: 26px;
  }

  .hp-banner__eyebrow {
    font-size: 14px;
  }
}

/* =========================
   HOME INTERIORS SPLIT
========================= */

.home-interiors {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.home-interiors__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-interiors__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-interiors__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(22, 10, 4, .68);
}

.home-interiors .container {
  position: relative;
  z-index: 3;
  max-width: 1120px;
}

.home-interiors__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "media content"
    "media nav";
  column-gap: 90px;
  row-gap: 40px;
  align-items: center;
}

.home-interiors__media {
  position: relative;
  height: 620px;
  border-radius: 14px;
  overflow: hidden;
  grid-area: media;
}

.home-interiors__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.home-interiors__slide.is-active {
  opacity: 1;
}

.home-interiors__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-interiors__content {
  position: relative;
  padding-top: 40px;
  grid-area: content;
}

.home-interiors__eyebrow {
  color: #b98c5b;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.home-interiors__title {
  font-size: 36px;
  line-height: 1.18;
  font-weight: 600;
  margin-bottom: 28px;
}

.home-interiors__desc {
  font-size: 18px;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 28px;
}

.home-interiors__list {
  font-size: 22px;
  line-height: 1.7;
  margin: 0;
  padding-left: 24px;
}

.home-interiors__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 520px);
  margin-top: 70px;
  grid-area: nav;
}

.home-interiors__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.65);
  position: relative;
  transition: transform 0.25s ease;
}
.home-interiors__arrow:hover {
  transform: translateY(-3px);
}

.home-interiors__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.home-interiors__arrow--prev::before {
  transform: rotate(-135deg);
}

.home-interiors__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.65);
  margin-left: 16px;
}

/* =========================
   HOME INTERIORS MOBILE
========================= */

@media (max-width: 991.98px) {
  .home-interiors {
    min-height: auto;
    padding: 80px 0;
  }

  .home-interiors__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
    "media"
    "nav"
    "content";
  gap: 34px;
  }

  .home-interiors__media {
    height: 520px;
    order: 1;
  }

  .home-interiors__content {
    order: 3;
    padding-top: 0;
  }

  .home-interiors__nav {
    order: 2;
    width: 100%;
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .home-interiors__line {
    order: 1;
    flex: 1;
    margin-left: 0;
  }

  .home-interiors__arrow--prev {
    order: 2;
  }

  .home-interiors__arrow--next {
    order: 3;
  }

  .home-interiors__title {
    font-size: 32px;
  }

  .home-interiors__desc {
    font-size: 16px;
  }

  .home-interiors__list {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .home-interiors {
    padding: 60px 0;
  }

  .home-interiors__media {
    height: 420px;
  }

  .home-interiors__title {
    font-size: 28px;
  }

  .home-interiors__desc {
    font-size: 15px;
  }

  .home-interiors__list {
    font-size: 17px;
  }
}

/* =========================
   HOME GALLERY SLIDER
========================= */

.home-gallery {
  background: #fff;
  padding: 120px 0;
  overflow: hidden;

  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.home-gallery__heading {
  max-width: 980px;
  margin: 0 auto 70px;
}

.home-gallery__eyebrow {
  color: #b98c5b;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.home-gallery__title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  color: #171717;
}

.home-gallery__slider {
  position: relative;
}

.home-gallery__viewport {
  overflow: hidden;
}

.home-gallery__track {
  display: flex;
  gap: 28px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.home-gallery__item {
  flex: 0 0 calc((100% - 28px) / 2);
  border-radius: 12px;
  overflow: hidden;
}

.home-gallery__item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.home-gallery__side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: none;
  background: transparent;
  z-index: 3;
}

.home-gallery__side-arrow--prev {
  left: -90px;
}

.home-gallery__side-arrow--next {
  right: -90px;
}

.home-gallery__side-arrow::before,
.home-gallery__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-top: 4px solid rgba(111,79,39,.16);
  border-right: 4px solid rgba(111,79,39,.16);
  transform: rotate(45deg);
}

.home-gallery__side-arrow--prev::before,
.home-gallery__arrow--prev::before {
  transform: rotate(-135deg);
}

.home-gallery__mobile-nav {
  display: none;
}

@media (max-width: 991.98px) {
  .home-gallery {
    padding: 80px 0;
  }

  .home-gallery__heading {
    margin-bottom: 40px;
  }

  .home-gallery__title {
    font-size: 32px;
  }

  .home-gallery__track {
    gap: 0;
  }

  .home-gallery__item {
    flex: 0 0 100%;
  }

  .home-gallery__item img {
    height: 420px;
  }

  .home-gallery__side-arrow {
    display: none;
  }

  .home-gallery__mobile-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
  }

  .home-gallery__line {
    flex: 1;
    height: 1px;
    background: rgba(111,79,39,.35);
  }

  .home-gallery__arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(111,79,39,.35);
    position: relative;
  }

  .home-gallery__arrow::before {
    width: 10px;
    height: 10px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-color: #6f4f27;
  }
}

@media (max-width: 575.98px) {
  .home-gallery__title {
    font-size: 28px;
  }

  .home-gallery__item img {
    height: 320px;
  }
}
