:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --gold: #d4af37;
    --gold-light: #e5c550;
    --gold-dark: #b4922d;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.3);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --content-width: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--black);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 4rem;
}

/* font n stuff */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.section-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 4rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3rem;
    height: 1px;
    background-color: var(--gold);
}

/* button stuff */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.btn-outline:active {
    transform: translateY(0px);
}

.btn-solid,
.btn-gold {
    background-color: var(--gold);
    color: var(--black);
}

.btn-solid:hover,
.btn-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 146, 45, 0.3);
}

.btn-solid:active,
.btn-gold:active {
    transform: translateY(0px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(-20deg);
    transition: left 1s ease;
}

.btn:hover::before {
    left: 150%;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
}

.btn-text {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
    transition: letter-spacing 0.3s ease;
}

.btn-text:hover {
    letter-spacing: 0.12rem;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.btn-text:hover::after {
    width: 100%;
}

/* headr */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 4rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--white);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: var(--transition);
    margin-bottom: 5px;
}

.header.scrolled .logo-image {
    height: 38px;
}

.logo h1 {
    font-size: 2.4rem;
    margin: 0;
    letter-spacing: 0.3rem;
    transition: var(--transition);
}

.header.scrolled .logo h1 {
    font-size: 2.2rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 2rem;
}

.main-nav a {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--white);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(15, 15, 15, 0.98);
    z-index: 999;
    padding: 12rem 3rem 3rem;
    transition: right 0.4s ease;
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.active {
    right: 0;
}

.avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
    border: 1px solid var(--gold);
}

.username {
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-profile-trigger {
    display: flex;
    align-items: center;
    padding: 6px 16px;
}

.mobile-menu-nav ul {
    list-style: none;
    margin-bottom: 4rem;
}

.mobile-menu-nav li {
    margin-bottom: 2rem;
}

.mobile-menu-nav a {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    display: block;
    padding: 1rem 0;
    position: relative;
}

.mobile-menu-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.mobile-menu-nav a:hover::after,
.mobile-menu-nav a.active::after {
    width: 50px;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-buttons .btn {
    width: 100%;
    text-align: center;
}

.mobile-menu-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-footer p {
    font-size: 1.4rem;
    opacity: 0.6;
}

/* hero stuff */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.6));
}

.hero-content {
    max-width: 800px;
    padding: 0 4rem;
    margin-left: 10%;
    z-index: 1;
}

.hero-content h1 {
    font-size: 7rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 3.5rem;
    letter-spacing: 0.3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-indicator:active {
    transform: translateX(-50%) translateY(8px);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 1.5s infinite;
}

.arrow-scroll {
    margin-top: 1.5rem;
}

.arrow-scroll span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: arrowDown 1.5s infinite;
}

/* intro or welcome thing */
.intro-section {
    position: relative;
    padding: 15rem 0 10rem;
    background-color: var(--dark-gray);
    overflow: hidden;
    min-height: 60vh;
}

.intro-section .container {
    position: relative;
    z-index: 10;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.intro-content h2 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.intro-content p {
    font-size: 1.8rem;
    opacity: 0.9;
}

.luxury-divider {
    text-align: center;
    margin: 8rem 0 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.luxury-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.luxury-text-row {
    position: absolute;
    left: 0;
    width: 400%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8vw;
    transform-origin: left center;
    will-change: transform;
    white-space: nowrap;
}

.luxury-text-row:nth-child(1) {
    top: 20%;
    transform: translateX(-25%);
}

.luxury-text-row:nth-child(2) {
    top: 70%;
    transform: translateX(-25%);
}

.luxury-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(6rem, 10vw, 12rem);
    color: rgba(212, 175, 55, 0.08);
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
}

.diamond-separator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    position: relative;
    transform: rotate(45deg);
    margin: 0 20px;
}

.diamond-separator::before,
.diamond-separator::after {
    content: '';
    position: absolute;
    background-color: var(--gold);
    height: 1px;
    width: 100px;
}

.diamond-separator::before,
.diamond-separator::after {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.diamond-separator::before {
    right: 5px;
    transform-origin: right center;
}

.diamond-separator::after {
    left: 5px;
    transform-origin: left center;
}

.categories-section {
    padding: 10rem 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.category-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
    filter: brightness(0.4);
}

.category-background.automobiles {
    background-image: url('../media/ferrari.jpg');
}

.category-background.timepieces {
    background-image: url('../media/audemars.jpg');
}

.category-background.realestate {
    background-image: url('../media/penthouse.jpg');
}

.category-background.maritime {
    background-image: url('../media/amels.jpg');
}

.category-background.active {
    opacity: 1;
}

.category-card::before,
.category-card::after,
.category-card .border-top,
.category-card .border-bottom {
    content: '';
    position: absolute;
    background-color: var(--gold);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 2;
}

.category-card::before,
.category-card::after {
    height: 2px;
    width: 0;
    transition-property: width, opacity;
}

.category-card::before {
    height: 2px;
    width: 0;
    transition-property: width, opacity;
    top: 0;
    left: 0;
}

.category-card::after {
    height: 2px;
    width: 0;
    transition-property: width, opacity;
    bottom: 0;
    right: 0;
}

.category-card .border-top,
.category-card .border-bottom {
    width: 2px;
    height: 0;
    transition-property: height, opacity;
}

.category-card .border-top {
    width: 2px;
    height: 0;
    transition-property: height, opacity;
    top: 0;
    right: 0;
}

.category-card .border-bottom {
    width: 2px;
    height: 0;
    transition-property: height, opacity;
    bottom: 0;
    left: 0;
}

.category-card:hover::before {
    width: 100%;
    opacity: 1;
    transition-delay: 0s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.category-card:hover .border-top {
    height: 100%;
    opacity: 1;
    transition-delay: 0.2s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.category-card:hover::after {
    width: 100%;
    opacity: 1;
    transition-delay: 0.4s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.category-card:hover .border-bottom {
    height: 100%;
    opacity: 1;
    transition-delay: 0.6s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.category-card.blur {
    filter: blur(5px) brightness(0.5);
}

.category-card:hover {
    transform: translateY(-8px);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

.category-card:hover .category-content {
    transform: translateY(-10px);
}

.category-card .category-content h3,
.category-card .category-content p,
.category-card .category-content a {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.category-card:hover .category-content h3 {
    transform: translateY(-5px);
}

.category-card:hover .category-content p {
    transform: translateY(-5px);
    opacity: 0.95;
    transition-delay: 0.1s;
}

.category-card:hover .category-content a {
    transform: translateY(-5px);
    transition-delay: 0.2s;
}

.section-header {
    text-align: left;
    margin-bottom: 5rem;
}

.section-header.centered {
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.category-card {
    height: 50rem;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    box-sizing: content-box;
    border: 0;
}

.category-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4));
    z-index: 1;
}

.category-content {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem;
    z-index: 3;
    transition: transform 0.5s ease;
}

.category-content h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

/* featured cool */
.featured-listing {
    position: relative;
    padding: 15rem 0;
    overflow: hidden;
}

.featured-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: -1;
    background: url('https://newsroom.cdn.bugatti-media.com/8796d14c-7bd5-4e13-9679-4d7d4c32f286/original') no-repeat center center;
    background-size: cover;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.featured-background.in-view {
    opacity: 1;
    transform: translateX(0);
}

.featured-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.8) 30%, rgba(10, 10, 10, 0.6) 100%);
}

.featured-content {
    max-width: 700px;
    margin-left: 8%;
    padding-right: 4rem;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.featured-content>* {
    opacity: 0;
    transform: translateY(30px);
}

.featured-content.in-view>* {
    animation: fadeUp 0.8s forwards;
}

.featured-content.in-view .section-tag {
    animation-delay: 0.3s;
}

.featured-content.in-view h2 {
    animation-delay: 0.5s;
}

.featured-content.in-view p {
    animation-delay: 0.7s;
}

.featured-content.in-view .featured-meta {
    animation-delay: 0.9s;
}

.featured-content.in-view .btn {
    animation-delay: 1.1s;
}

.featured-content.in-view {
    opacity: 1;
    transform: translateX(0);
}

.featured-description {
    font-size: 1.9rem;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.featured-meta {
    display: flex;
    gap: 5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.meta-label {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
}

/* review */
.testimonials-section {
    padding: 10rem 0;
    background-color: var(--dark-gray);
    text-align: center;
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    z-index: 1;
    top: 0;
    left: 0;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

.testimonial-content {
    padding: 4rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.testimonial-slide.exit-to-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.testimonial-slide.exit-to-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

.testimonial-slide.enter-from-left {
    transform: translateX(-100%);
}

.testimonial-slide.enter-from-right {
    transform: translateX(100%);
}

.testimonial-slide.active .testimonial-content {
    animation: testimonialFadeIn 0.8s ease forwards;
}

.testimonial-slide.active .testimonial-author {
    opacity: 0;
    animation: authorSlideUp 0.6s ease forwards 0.3s;
}

.testimonial-slide.active .quote-mark.opening {
    opacity: 0;
    animation: quoteMarkIn 0.6s ease forwards 0.1s;
}

.testimonial-slide.active .quote-mark.closing {
    opacity: 0;
    animation: quoteMarkIn 0.6s ease forwards 0.2s;
}

.testimonial-content p {
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.quote-mark {
    font-family: 'Georgia', serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
}

.quote-mark.opening {
    top: 2rem;
    left: 2rem;
}

.quote-mark.closing {
    bottom: 6rem;
    right: 2rem;
}

.testimonial-author h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.testimonial-author span {
    font-size: 1.4rem;
    opacity: 0.7;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-arrow {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
    margin: 0 2rem;
}

.testimonial-reveal {
    position: relative;
    overflow: hidden;
}

.testimonial-reveal.in-view::before {
    transform: translateY(-100%);
}

.testimonial-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 3;
}

.testimonial-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-tag {
    transition-delay: 0.6s;
}

.testimonial-title {
    transition-delay: 0.8s;
}

.testimonial-reveal.in-view .testimonial-slide .quote-mark.opening {
    animation-delay: 0.7s;
}

.testimonial-reveal.in-view .testimonial-slide .quote-mark.closing {
    animation-delay: 0.8s;
}

.testimonial-reveal.in-view .testimonial-slide .testimonial-content {
    animation-delay: 0.2s;
}

.testimonial-reveal.in-view .testimonial-slide .testimonial-author {
    animation-delay: 0.5s;
}

.testimonial-controls {
    position: relative;
    z-index: 3;
}

@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.5);
}

/* call to my dick */
.cta-section {
    padding: 15rem 0;
    background-color: var(--black);
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.cta-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.6rem;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.cta-form .btn {
    border-radius: 0;
}

/* footr */
.site-footer {
    padding: 8rem 0 2rem;
    background-color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    opacity: 0.7;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 55px;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 8rem;
}

.footer-column h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--light-gray);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* mobile sucks */
@media screen and (max-width: 1200px) {
    html {
        font-size: 58%;
    }

    .categories-section .container {
        max-width: 1400px;
    }

    .filters-sidebar-wrapper {
        width: 320px;
    }

    .filters-sidebar {
        padding: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }

    .categories-inner {
        gap: 5rem;
    }

    .featured-background {
        width: 50%;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .featured-content {
        margin-left: 6%;
        max-width: 650px;
    }

    .featured-meta {
        gap: 4rem;
    }

    .luxury-text {
        font-size: clamp(5rem, 9vw, 10rem);
        gap: 6vw;
    }

    .luxury-text-row:nth-child(1) {
        top: 18%;
    }

    .luxury-text-row:nth-child(2) {
        top: 72%;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 56%;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-buttons {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 6rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 5rem;
    }

    .featured-background {
        width: 65%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .featured-content {
        margin-left: 4%;
        max-width: 600px;
        padding-right: 2rem;
    }

    .featured-meta {
        gap: 3rem;
    }

    .intro-section {
        padding: 12rem 0 8rem;
        min-height: 50vh;
    }

    .luxury-text {
        font-size: clamp(4rem, 8vw, 8rem);
        gap: 5vw;
    }

    .luxury-text-row:nth-child(1) {
        top: 15%;
    }

    .luxury-text-row:nth-child(2) {
        top: 75%;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 54%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .featured-background {
        width: 100%;
        clip-path: none;
    }

    .featured-content {
        margin-left: 0;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        background: rgba(10, 10, 10, 0.8);
        padding: 4rem 2rem;
        border-radius: 8px;
        margin: 0 auto;
        max-width: 90%;
    }

    .featured-meta {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .meta-item {
        text-align: center;
        min-width: auto;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        margin-bottom: 1.5rem;
        border-radius: 4px;
    }

    .footer-content {
        margin-bottom: 4rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .luxury-text-row:nth-child(1) {
        top: 18%;
    }

    .luxury-text-row:nth-child(2) {
        top: 68%;
    }

    .luxury-text {
        font-size: clamp(10vw, 18vw, 24vw);
        gap: 10vw;
    }

    .intro-section {
        padding: 15rem 0 10rem;
    }

    .testimonial-content {
        padding: 3rem 2rem;
    }

    .testimonial-content p {
        font-size: 1.8rem;
    }

    .quote-mark {
        font-size: 4rem;
    }

    .quote-mark.opening {
        top: 1rem;
        left: 1rem;
    }

    .quote-mark.closing {
        bottom: 5rem;
        right: 1rem;
    }

    .testimonial-slider {
        min-height: 350px;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 52%;
    }

    .container {
        padding: 0 2rem;
    }

    .hero-content {
        text-align: center;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .intro-section {
        min-height: 500px;
    }

    .testimonial-content p {
        font-size: 1.6rem;
    }

    .testimonial-slider {
        min-height: 400px;
    }

    .testimonial-author h4 {
        font-size: 1.6rem;
    }

    .luxury-text-row:nth-child(1) {
        top: 20%;
    }

    .luxury-text-row:nth-child(2) {
        top: 70%;
    }

    .luxury-text {
        gap: 12vw;
    }

    .logo-image {
        height: 35px;
    }

    .header.scrolled .logo-image {
        height: 30px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .header.scrolled .logo h1 {
        font-size: 1.8rem;
    }

    .footer-logo-image {
        height: 45px;
    }
}

@media screen and (min-width: 1400px) {

    .categories-section .container {
        max-width: 1600px;
    }

    .filters-sidebar-wrapper {
        width: 350px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4.5rem;
    }

    .categories-inner {
        gap: 6rem;
    }

    .product-card {
        min-height: 450px;
    }

    .product-image {
        height: 280px;
    }

    .featured-content {
        max-width: 800px;
        margin-left: 2%;
        padding-right: 6rem;
    }

    .featured-description {
        font-size: 2.1rem;
        margin-bottom: 5rem;
    }

    .featured-meta {
        gap: 6rem;
        margin-bottom: 5rem;
    }

    .meta-value {
        font-size: 3rem;
    }

    .featured-background {
        width: 60%;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@media screen and (min-width: 1600px) {
    .featured-content {
        max-width: 900px;
        margin-left: 3%;
        padding-right: 8rem;
    }

    .featured-description {
        font-size: 2.3rem;
    }

    .featured-meta {
        gap: 7rem;
    }

    .meta-value {
        font-size: 3.2rem;
    }

    .featured-background {
        width: 65%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .categories-section .container {
        max-width: 1800px;
    }

    .filters-sidebar-wrapper {
        width: 380px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5rem;
    }

    .categories-inner {
        gap: 7rem;
    }

    .product-image {
        height: 300px;
    }

    .filters-sidebar {
        padding: 3.5rem;
    }

    .filter-group {
        margin-bottom: 3rem;
    }

    .filter-options {
        gap: 1.5rem;
    }

    .option-label {
        font-size: 1.5rem;
        padding-left: 3.5rem;
    }

    .price-inputs {
        gap: 1.5rem;
    }

    .price-input input {
        padding: 1.4rem 1.4rem 1.4rem 3rem;
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1920px) {
    .featured-content {
        max-width: 1000px;
        margin-left: 1%;
        padding-right: 10rem;
    }

    .featured-background {
        width: 70%;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .categories-section .container {
        max-width: 2000px;
        padding: 0 4rem;
    }

    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5.5rem;
    }

    .filters-sidebar-wrapper {
        width: 400px;
    }

    .categories-inner {
        gap: 8rem;
    }
}