:root {
    --black: #0a0a0a;
    --soft-black: #111111;
    --white: #ffffff;
    --smoke: #f5f5f5;
    --cement: #d7d7d7;
    --gray: #8e8e8e;
    --gold: #c8a86b;
    --border: #1f1f1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section {
    position: relative;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.luxury {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .06em;
}

.gold {
    color: var(--gold);
}

.section-padding {
    padding: 120px 0;
}

.section-dark {
    background: var(--black);
    color: white;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
}

.massive-title {
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.06em;
}

.big-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.05em;
}

.editorial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.btn-premium {
    background: #111;
    color: white;
    border: none;
    padding: 16px 28px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: .35s ease;
    border-radius: 0;
}

.btn-premium:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-3px);
}

.btn-outline-premium {
    border: 1px solid #ccc;
    color: #111;
    padding: 16px 28px;
    font-weight: 700;
    transition: .35s ease;
    border-radius: 0;
}

.btn-outline-premium:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ticker */

.ticker {
    background: #0d0d0d;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    padding: 14px 40px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    opacity: .85;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* navbar */

.navbar-custom {
    padding: 22px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.brand {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.04em;
    color: #111;
}

.brand span {
    color: var(--gold);
}

/* hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy p {
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 35px 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 0;
}

.hero-stat span {
    color: #777;
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* collage */

.hero-collage {
    position: relative;
    height: 760px;
}

.floating-card {
    position: absolute;
    overflow: hidden;
    background: #eee;
    transition: .5s ease;
}

.floating-card img {
    height: 100%;
}

.floating-card:hover {
    transform: translateY(-8px);
}

.card-1 {
    width: 52%;
    height: 65%;
    left: 0;
    top: 0;
}

.card-2 {
    width: 40%;
    height: 40%;
    right: 0;
    top: 8%;
}

.card-3 {
    width: 48%;
    height: 38%;
    right: 0;
    bottom: 8%;
}

.card-4 {
    width: 38%;
    height: 24%;
    left: 10%;
    bottom: 0;
}

.gold-line {
    position: absolute;
    width: 160px;
    height: 1px;
    background: var(--gold);
    top: 4%;
    right: 8%;
    opacity: .7;
}

/* collage section */

.lookbook-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
}

.lookbook-main {
    height: 760px;
}

.lookbook-side {
    display: grid;
    gap: 30px;
}

.lookbook-side .box {
    height: 365px;
}

.lookbook-grid img {
    height: 100%;
    transition: 1s ease;
}

.lookbook-grid img:hover {
    transform: scale(1.05);
}

/* differentiators */

.feature-block {
    padding: 70px 0;
    border-top: 1px solid #ececec;
}

.feature-block:last-child {
    border-bottom: 1px solid #ececec;
}

.feature-number {
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 900;
    color: #ededed;
    line-height: 1;
}

.feature-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.05em;
    margin-bottom: 25px;
}

/* brand section */

.brand-section {
    background: #111;
    color: white;
    overflow: hidden;
}

.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.brand-image {
    height: 760px;
    overflow: hidden;
}

.brand-image img {
    height: 100%;
}

.brand-list {
    margin-top: 40px;
}

.brand-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.brand-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

/* timeline */

.timeline-wrap {
    overflow-x: auto;
    padding-bottom: 10px;
}

.timeline {
    min-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    height: 1px;
    background: #d8d8d8;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #111;
}

.step-dot {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    margin: 22px 0;
}

.step h4 {
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.03em;
}

.step p {
    color: #666;
    line-height: 1.7;
}

/* products */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.product {
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
}

.product-image {
    height: 460px;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    transition: 1s ease;
}

.product:hover img {
    transform: scale(1.08);
}

.product-info {
    padding: 26px;
    background: white;
}

.product-info h4 {
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -.03em;
}

.product-info span {
    color: #777;
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* social proof */

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.proof {
    padding: 45px;
    background: #131313;
    border: 1px solid rgba(255, 255, 255, .06);
}

.proof h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.proof p {
    color: #a7a7a7;
    line-height: 1.7;
    margin: 0;
}

/* faq */

.faq-item {
    padding: 35px 0;
    border-bottom: 1px solid #ececec;
}

.faq-item h4 {
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -.03em;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0;
}

/* cta */

.cta {
    background: #0b0b0b;
    color: white;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    padding: 140px 0;
}

.cta-inner::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 107, .12);
    right: -200px;
    top: -200px;
}

.cta-inner::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .05);
    left: -120px;
    bottom: -120px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--gold);
    color: black;
    padding: 22px 40px;
    font-weight: 900;
    letter-spacing: .04em;
    margin-top: 40px;
    transition: .35s ease;
}

.cta-btn:hover {
    transform: translateY(-5px);
    background: white;
    color: black;
}

/* footer */

footer {
    background: #050505;
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 20px;
}

.footer-info {
    color: #9d9d9d;
    line-height: 2;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .08);
    color: white;
    transition: .35s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: #777;
    font-size: .9rem;
}

/* reveal */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive */

@media(max-width:1200px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:992px) {

    .hero {
        padding: 100px 0;
    }

    .hero-grid,
    .brand-grid,
    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .hero-collage {
        height: 650px;
    }

    .lookbook-main {
        height: 520px;
    }

    .brand-image {
        height: 520px;
    }

    .section-padding {
        padding: 90px 0;
    }

}

@media(max-width:768px) {

    .hero-collage {
        height: 520px;
    }

    .product-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 22px;
    }

    .floating-card {
        border-radius: 0;
    }

    .btn-premium,
    .btn-outline-premium {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
    }

    .proof {
        padding: 35px;
    }

    .massive-title {
        font-size: 3.4rem;
    }

}