* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #f7f4ef;
    color: #111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    width: 100%;
    display: block;
}

/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: transparent;
}

.nav {
    width: 100%;

    display: flex;
    justify-content: flex-end;

    padding: 42px 70px;
}

.nav ul {
    display: flex;
    align-items: center;

    gap: 54px;

    list-style: none;
}

.nav ul li a {
    position: relative;

    color: #fff;

    font-size: 18px;
    font-weight: 400;

    letter-spacing: .3px;

    text-decoration: none;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, .35);

    transition: .35s;
}

.nav ul li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #d2b48c;

    transition: .35s;
}

.nav ul li a:hover {
    color: #d2b48c;
}

.nav ul li a:hover::after {
    width: 100%;
}

/* DROPDOWN */

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;

    top: 38px;
    left: 0;

    width: 260px;

    background: #fff;

    border-radius: 0 0 14px 14px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .3s ease;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);

    padding: 0;

    display: block !important;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown li {
    width: 100%;

    list-style: none;

    display: block !important;
}

.dropdown li a {
    display: block;

    width: 100%;

    padding: 18px 24px;

    color: #444 !important;

    font-size: 15px !important;

    font-weight: 400;

    text-shadow: none !important;

    background: #fff;

    border-bottom:
        1px solid rgba(0, 0, 0, .06);

    transition: .25s;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: #faf7f2;

    color: #b08a57 !important;
}

/* =========================================
   HERO
========================================= */

.hero {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 820px;
}

.hero-left {
    padding: 60px;
    background: #f7f4ef;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 4px;
}

.brand-sub {
    margin-top: 10px;
    color: #b08a57;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-left h1 {
    margin-top: 55px;
    font-family: "Cormorant Garamond", serif;
    font-size: 110px;
    line-height: .9;
    font-weight: 500;
    letter-spacing: -3px;
}

.hero-left h1 span {
    color: #b08a57;
}

.hero-small {
    margin-top: 35px;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 500;
}

.line {
    width: 65px;
    height: 2px;
    background: #b08a57;
    margin: 35px 0;
}

.hero-left p {
    max-width: 380px;
    line-height: 2;
    color: #666;
    font-size: 16px;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   FEATURE BAR
========================================= */

.feature-bar {
    background: #111;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.feature {
    padding: 38px 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.feature:last-child {
    border: none;
}

.feature h3 {
    color: #b08a57;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
}

.feature p {
    color: #ddd;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================================
   DESIGN SECTION
========================================= */

.design-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.design-text {
    background: #121212;
    color: #fff;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design-text span {
    color: #b08a57;
    letter-spacing: 2px;
    font-size: 13px;
}

.design-text h2 {
    margin-top: 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 500;
}

.small-line {
    width: 55px;
    height: 2px;
    background: #b08a57;
    margin: 28px 0;
}

.design-text p {
    color: #ccc;
    line-height: 2;
    font-size: 15px;
}

.design-card {
    position: relative;
    overflow: hidden;
}

.design-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.design-card:hover img {
    transform: scale(1.04);
}

.label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 16px;
    letter-spacing: 2px;
}

/* =========================================
   WHY SECTION
========================================= */

.why {
    padding: 44px 42px;

    background: #fff;
}

.why-title {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 34px;

    letter-spacing: -.2px;
}

.why-title span {
    color: #b08a57;
}

.why-wrapper {
    display: grid;

    grid-template-columns:
        36% 64%;

    align-items: center;

    gap: 30px;
}

.why-left {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    column-gap: 34px;
    row-gap: 18px;
}

.why-list {
    font-size: 15px;

    color: #222;

    line-height: 1.3;
}

.why-right {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    align-items: center;
}

.why-box {
    min-height: 125px;

    padding: 0 34px;

    border-left:
        1px solid rgba(0, 0, 0, .10);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-icon {
    margin-bottom: 14px;
}

.why-icon img {
    width: 34px;
}

.why-box h3 {
    font-size: 14px;

    line-height: 1.4;

    margin-bottom: 8px;

    font-weight: 700;

    letter-spacing: .3px;
}

.why-box p {
    color: #666;

    line-height: 1.55;

    font-size: 12px;

    max-width: 160px;
}

/* =========================================
   FOOTER
========================================= */

.lux-footer {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.footer-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .58);
}

.footer-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: #fff;

    padding: 20px;
}

.footer-content span {
    color: #c7a57a;
    letter-spacing: 3px;
    font-size: 11px;
}

.footer-content h2 {
    margin-top: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: 88px;
    line-height: .95;
    font-weight: 500;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: #c7a57a;
    margin: 35px 0;
}

.footer-content p {
    color: #ddd;
    font-size: 14px;
    letter-spacing: 2px;
}

.footer-content a {
    margin-top: 45px;

    border: 1px solid rgba(255, 255, 255, .3);

    padding: 16px 34px;

    color: #fff;

    letter-spacing: 2px;
    font-size: 11px;

    transition: .4s;
}

.footer-content a:hover {
    background: #fff;
    color: #111;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px) {

    .hero,
    .feature-bar,
    .design-section {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 40px 25px;
    }

    .brand {
        font-size: 34px;
    }

    .hero-left h1 {
        font-size: 72px;
    }

    .hero-small {
        font-size: 20px;
    }

    .design-text {
        padding: 40px 25px;
    }

    .why {
        padding: 50px 25px;
    }

    .why-title {
        font-size: 38px;
    }

    .why-wrapper,
    .why-left,
    .why-right {
        grid-template-columns: 1fr;
    }

    .why-box {
        border: none;
        padding: 30px 0;
    }

    .nav {
        justify-content: center;
        padding: 28px 20px;
    }

    .nav ul {
        gap: 24px;
    }

    .nav ul li a {
        font-size: 15px;
    }

    .dropdown {
        width: 220px;
    }

    .footer-content h2 {
        font-size: 58px;
    }

}

/* =====================================
   ULTRA LUXURY 3D HERO
===================================== */

.hero-right {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* WRAP */

.parallax-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    perspective: 1800px;
}

/* IMAGE */

.parallax-img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform-style: preserve-3d;

    will-change: transform;

    transition:
        transform .15s linear;

    transform:
        scale(1.08);

    filter:
        brightness(.88) contrast(1.05) saturate(1.05);

    animation:
        cinematicZoom 12s ease-in-out infinite;
}

/* CINEMATIC ZOOM */

@keyframes cinematicZoom {

    0% {
        transform:
            scale(1.08);
    }

    50% {
        transform:
            scale(1.14);
    }

    100% {
        transform:
            scale(1.08);
    }

}

/* LIGHT */

.parallax-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at var(--x) var(--y),
            rgba(255, 255, 255, .12),
            transparent 30%);

    mix-blend-mode: screen;

    pointer-events: none;

    z-index: 3;
}

/* GLASS */

.glass-reflection {
    position: absolute;

    top: 0;
    left: -30%;

    width: 40%;
    height: 100%;

    background:
        linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, .08),
            transparent);

    transform:
        skewX(-20deg);

    animation:
        glassMove 8s ease-in-out infinite;

    z-index: 4;
}

@keyframes glassMove {

    0% {
        left: -40%;
    }

    100% {
        left: 120%;
    }

}

/* SHADOW */

.hero-right::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(120deg,
            transparent,
            rgba(0, 0, 0, .18),
            transparent);

    animation:
        movingShadow 10s linear infinite;
}

@keyframes movingShadow {

    0% {
        transform:
            translateX(-30%);
    }

    100% {
        transform:
            translateX(30%);
    }

}

/* ===================================
   LUXURY GALLERY
=================================== */

.lux-gallery {
    padding: 90px 0;

    background: #f7f4ef;
}

/* TITLE */

.gallery-title {
    padding: 0 70px;

    margin-bottom: 38px;

    font-size: 14px;
    letter-spacing: 4px;

    color: #999;
}

/* SLIDER */

.gallery-slider{
  display:flex;

  gap:24px;

  width:max-content;

  animation:
  autoSlide 40s linear infinite;
}

/* HIDE SCROLL */

.gallery-slider::-webkit-scrollbar {
    display: none;
}

/* ITEM */

.gallery-item {
    min-width: 820px;

    height: 480px;

    overflow: hidden;

    border-radius: 20px;

    flex: none;

    position: relative;

    background: #000;
}

/* IMAGE */

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s ease,
        filter .6s ease;

    filter:
        brightness(.92);
}

/* HOVER */

.gallery-item:hover img {

    transform:
        scale(1.06);

    filter:
        brightness(1);
}
.gallery-item::after{
  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.25),
    transparent 40%
  );

  opacity:0;

  transition:.4s;
}

.gallery-item:hover::after{
  opacity:1;
}

/* ===================================
   CINEMATIC AUTO GALLERY
=================================== */

.gallery-track{
  overflow:hidden;

  width:100%;

  position:relative;
}

/* AUTO MOVE */

.gallery-slider{
  display:flex;

  gap:24px;

  width:max-content;

  animation:
  autoGallery 45s linear infinite;
}

/* PAUSE HOVER */

.gallery-slider:hover{
  animation-play-state:paused;
}

/* LOOP */

@keyframes autoGallery{

0%{
  transform:
  translateX(0);
}

100%{
  transform:
  translateX(-50%);
}

}

/* IMAGE */

.gallery-item{
  min-width:820px;

  height:520px;

  border-radius:0px;

  overflow:hidden;

  position:relative;

  background:#000;

  flex:none;
}

/* IMAGE */

.gallery-item img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:
  transform 1.4s ease,
  filter .6s ease;

  filter:
  brightness(.94);
}

/* HOVER */

.gallery-item:hover img{

  transform:
  scale(1.05);

  filter:
  brightness(1);
}

/* CINEMATIC OVERLAY */

.gallery-item::after{
  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.28),
    transparent 42%
  );

  opacity:0;

  transition:.4s;
}

.gallery-item:hover::after{
  opacity:1;
}
.design-card{
    text-decoration:none;
    color:inherit;
    display:block;
    cursor:pointer;
}