:root {
    --bg-dark: #0a0a0a;
    --text-light: #f5f5f5;
    --accent: #d4a373;
    /* Muted Gold/Misty */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --spacing: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom */
}

html,
body {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* Veil Loader */
.veil-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.5rem;
}

.aura-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Atmosphere Background */
.atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2a1b3d 0%, transparent 70%);
    top: -10%;
    left: -5%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s infinite alternate-reverse;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #3d2b1f 0%, transparent 60%);
    bottom: -15%;
    right: -10%;
    filter: blur(120px);
    opacity: 0.35;
    animation: float 30s infinite alternate;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

/* Custom Cursor */
.cursor-light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: overlay;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s;
}

body.hovering .cursor-light {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Nav */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    /* mix-blend-mode removed for better visibility */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.nav-links,
.nav-actions {
    display: flex;
    gap: 2rem;
}

.nav-links a,
.nav-actions a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover,
.nav-actions a:hover {
    opacity: 0.7;
}

.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.2rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.image-mask::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.4);
    /* Dark Overlay */
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.hero-title-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 300;
    line-height: 0.9;
    color: #fff;
    mix-blend-mode: overlay;
}

.line {
    display: block;
}

.italic {
    font-style: italic;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 0.8rem;
    z-index: 2;
}

.scroll-indicator .line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

/* Prologue */
.prologue-section {
    padding: 10rem 4rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.statement-text {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.4;
    max-width: 900px;
    color: #ccc;
    font-weight: 300;
}

/* Lookbook Horizontal */
.lookbook-section {
    padding: 5rem 0;
    overflow: hidden;
}

.section-header {
    padding: 0 4rem;
    margin-bottom: 5rem;
    display: flex;
    justify-content: flex-start;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
}

.section-header span {
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 2rem;
    opacity: 0.6;
    align-self: flex-end;
    margin-bottom: 1rem;
}

.look-gallery {
    display: flex;
    gap: 8rem;
    padding-left: 10rem;
    /* Staggered start */
    padding-bottom: 5rem;
}

.look-card {
    flex: 0 0 500px;
    position: relative;
}

.look-card.offset-down {
    margin-top: 8rem;
}

.img-box {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: grayscale(30%);
}

.look-card:hover .img-box img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.look-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.look-card:hover .look-overlay {
    opacity: 1;
}

.view-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.look-meta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #ccc;
}

/* Visual Break */
.visual-break {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 10rem 0;
}

.break-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.break-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) sepia(20%);
}

.break-content {
    z-index: 2;
    position: relative;
}

.break-content h2 {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    font-size: 0.9rem;
}

/* Shop Grid */
.shop-grid-section {
    padding: 5rem 4rem;
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.grid-header h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
}

.filters button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-left: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.filters button:hover,
.filters button.active {
    border-color: #fff;
    color: #fff;
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.shop-item {
    cursor: pointer;
}

.s-img {
    height: 600px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #1a1a1a;
}

.s-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: grayscale(50%);
}

.shop-item:hover .s-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.s-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 8rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0d0d0d;
    color: #888;
}

.f-top {
    text-align: center;
    margin-bottom: 5rem;
}

.f-top h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ccc;
    font-weight: 300;
}

.input-line {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.input-line input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 0.5rem 1rem;
    width: 300px;
    color: #fff;
    font-family: var(--font-sans);
    outline: none;
}

.input-line button {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    cursor: pointer;
}

.f-mid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.col a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.col a:hover {
    color: #fff;
}

.right-align {
    text-align: right;
}

.f-bot {
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

/* Response */
@media (max-width: 1024px) {
    .look-gallery {
        flex-direction: column;
        padding-left: 0;
    }

    .look-card.offset-down {
        margin-top: 0;
    }

    .shop-items {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 5rem;
    }

    .f-mid {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .right-align {
        text-align: center;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    /* Full frame, no cut */
}

/* --- New Sections CSS --- */

/* Atelier / Philosophy Section */
.atelier-section {
    display: flex;
    min-height: 80vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.atelier-visual,
.atelier-content {
    flex: 1;
    position: relative;
}

.atelier-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.atelier-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background: #0f0f0f;
}

.atelier-content .eyebrow {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.atelier-content h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.atelier-content p {
    font-family: var(--font-sans);
    line-height: 1.8;
    color: #aaa;
    max-width: 400px;
    margin-bottom: 3rem;
}

.text-link {
    font-family: var(--font-sans);
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    width: fit-content;
    padding-bottom: 5px;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Journal Section */
.journal-section {
    padding: 8rem 4rem;
    background: var(--bg-dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
}

.view-all {
    color: #888;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.view-all:hover {
    color: #fff;
    border-color: #fff;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.journal-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.j-img {
    height: 400px;
    overflow: hidden;
}

.j-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: grayscale(40%);
}

.journal-card:hover .j-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.j-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.j-meta .date {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.j-meta h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

.read-more {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive updates for new sections */
@media (max-width: 1024px) {
    .atelier-section {
        flex-direction: column;
    }

    .atelier-visual {
        height: 50vh;
    }

    .atelier-content {
        padding: 4rem 2rem;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {

    /* Layout & Spacing */
    .nav-bar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        background: rgba(0, 0, 0, 0.8);
        /* Better visibility on mobile */
    }

    .nav-links,
    .nav-actions {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .scroll-indicator {
        left: 2rem;
        bottom: 2rem;
    }

    .prologue-section {
        padding: 4rem 1.5rem;
    }

    .statement-text {
        font-size: 1.8rem;
    }

    /* Lookbook Fix */
    .lookbook-section {
        padding: 3rem 0;
    }

    .section-header {
        padding: 0 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .section-header span {
        margin-left: 0;
        align-self: flex-start;
    }

    .look-gallery {
        padding-left: 0;
        gap: 4rem;
    }

    .look-card {
        flex: 0 0 100%;
        /* Fix rigid width */
        width: 100%;
        padding: 0 1rem;
    }

    .img-box {
        height: 60vh;
    }

    /* Visual Break */
    .visual-break {
        margin: 5rem 0;
        height: 70vh;
    }

    .break-content h2 {
        font-size: 3.5rem;
    }

    /* Shop Grid */
    .shop-grid-section {
        padding: 3rem 1.5rem;
    }

    .shop-items {
        gap: 3rem;
    }

    .grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filters button {
        margin-left: 0;
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    /* Atelier */
    .atelier-content {
        padding: 3rem 1.5rem;
    }

    .atelier-content h2 {
        font-size: 2.5rem;
    }

    /* Journal */
    .journal-section {
        padding: 3rem 1.5rem;
    }

    .journal-grid {
        gap: 3rem;
    }

    /* Footer */
    footer {
        padding: 4rem 1.5rem;
    }

    .f-top h2 {
        font-size: 2rem;
    }

    .input-line {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .input-line input,
    .input-line button {
        width: 100%;
    }
}