:root {
    --bg: #0f0f0f;
    --text: #ffffff;
    --accent: #e0fe52;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --pad-x: 5%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

/* --- Custom Cursor --- */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem var(--pad-x);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(15,15,15,0.9), transparent);
}

.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.menu-btn { font-weight: 700; cursor: pointer; }

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem var(--pad-x) 2rem;
    position: relative;
    gap: 2rem;
}

.hero-content { flex: 1; z-index: 2; }
.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.hero-content p { font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 400px; opacity: 0.8; }
.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.cta-btn:hover { transform: scale(1.05); }
.hero-img-container { width: 45%; height: 75vh; position: relative; overflow: hidden; border-radius: 20px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }

/* --- Services --- */
.services { padding: 5rem var(--pad-x); }
.section-header h2 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 1rem; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.service-card { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; transition: border-color 0.3s; }
.service-card:hover { border-color: var(--accent); }
.service-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-card p { opacity: 0.6; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }
.price { font-family: var(--font-head); color: var(--accent); font-size: 1.2rem; }

/* --- Lookbook (Swiper) --- */
.lookbook { padding: 5rem 0; overflow: hidden; }
.lookbook h2 { padding-left: var(--pad-x); font-family: var(--font-head); font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 3rem; }

/* Specific styles for the lookbook swiper */
.lookbook-swiper { width: 100%; height: 500px; padding-bottom: 3rem; }
.lookbook-swiper .swiper-slide { 
    width: 400px; 
    height: 100%; 
    border-radius: 10px; 
    overflow: hidden; 
} 
.lookbook-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.lookbook-swiper .swiper-slide-active img { filter: grayscale(0%); transform: scale(1.05); }

/* --- Testimonials Section (New) --- */
.testimonials {
    padding: 5rem var(--pad-x);
    background: #141414; /* Slightly different background shade */
    overflow: hidden;
}
.testimonial-swiper {
    padding: 3rem 0;
}
/* Reset specific swiper styles for testimonials */
.testimonial-swiper .swiper-slide {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    opacity: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 15px 15px 0;
    max-width: 600px;
    margin-right: 2rem; /* Spacing between cards in the ticker */
    cursor: grab;
}
.testimonial-card:active { cursor: grabbing; }

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.client-name {
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 800;
}


/* --- Footer --- */
footer {
    padding: 4rem var(--pad-x);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
footer h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 1rem; color: var(--accent); }
.credits {
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 1px;
    margin-top: 2rem;
}


/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .hero-img-container { height: 60vh; }
}

@media (max-width: 768px) {
    .cursor { display: none; }
    body { cursor: auto; }
    .hero { flex-direction: column-reverse; justify-content: center; padding-top: 6rem; }
    .hero-content { width: 100%; text-align: center; margin-top: 2rem; }
    .hero-content p { margin: 0 auto 2rem auto; }
    .hero-img-container { width: 100%; height: 50vh; }
    
    /* Lookbook adjustments */
    .lookbook-swiper { height: 400px; }
    .lookbook-swiper .swiper-slide { width: 85vw; }

    /* Testimonial adjustments */
    .testimonial-card { max-width: 85vw; padding: 2rem; }
}

@media (max-width: 480px) {
    nav { padding: 1.5rem var(--pad-x); }
    .hero-content h1 { font-size: 3rem; }
    .section-header h2, .lookbook h2 { font-size: 2.5rem; }
    .service-grid { grid-template-columns: 1fr; gap: 2rem; }
    footer h2 { font-size: 2rem; }
}