:root {
    --bg: #fff;
    --text: #000;
    --subtext: #888;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body.loading {
    overflow: hidden;
}

#vibe-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease;
}

#vibe-preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

#vibe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7rem;
    z-index: 1000;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.logo-container:hover {
    opacity: 0.5;
}

.logo-icon {
    height: 55px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center designer under brand name */
}

.designer {
    font-size: 0.85rem;
    /* ~13% increase from 0.75rem */
    letter-spacing: 0.2rem;
    opacity: 0.9;
    margin-top: 0.1rem;
    font-weight: 500;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
}

.logo:hover {
    opacity: 0.5;
}

.nav-desktop ul {
    display: flex;
    gap: 4rem;
}

.nav-desktop a {
    font-size: 1.4rem;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}

.nav-desktop a:hover {
    border-bottom: 1px solid var(--text);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile ul {
    text-align: center;
}

.nav-mobile li {
    margin: 2rem 0;
}

.nav-mobile a {
    font-size: 2.4rem;
}

/* Main Layout */
main {
    margin-top: 100px;
}

.hero {
    width: 100%;
    margin-bottom: 5rem;
}

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

.section-title {
    padding: 10rem 0;
    text-align: center;
}

.section-title h5 {
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.credits h5 {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.credits a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transform: translateY(-2px);
    margin: 0 0.2rem;
    transition: opacity 0.3s ease;
}

.credits a:hover {
    opacity: 0.5;
}

.credits svg {
    display: block;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 8rem;
}

.swiper-slide {
    height: 80vh;
    transition: transform 0.4s ease;
    cursor: grab;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-active {
    transform: scale(1.05);
}

.editorial-text {
    width: 60%;
    max-width: 900px;
    margin: 15rem auto;
    text-align: center;
}

.jacket-details {
    margin-top: 2.5rem !important;
}

.btn-inquire {
    display: inline-block;
    padding: 1.5rem 4rem;
    margin-top: 4rem;
    border: 1px solid var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--text);
    transition: all 0.4s ease;
}

.btn-inquire:hover {
    background: var(--text);
    color: var(--bg);
}

.editorial-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.02rem;
}

.video-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 20rem;
}

video {
    width: 100%;
    background: #000;
}

footer {
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

footer img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-social-container {
    margin-top: 2rem;
}

.footer-social {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--text);
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-social:hover {
    opacity: 1;
}

.footer-copy {
    margin-top: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    color: #999;
}

/* Desktop-only adjustments */
@media screen and (max-width: 1450px) {
    header {
        padding: 0 4%;
        height: 80px;
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero img:nth-child(2) {
        display: none;
    }

    .swiper-slide {
        height: 60vh;
    }

    .editorial-text {
        width: 90%;
    }
}