/* RESET & TOKENS */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1aa;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8c2c;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* CUSTOM CURSOR */
.custom-cursor {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    position: fixed;
    top: -15px; left: -15px;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .cursor-follower {
    transform: scale(2);
    border-color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
}

/* TYPOGRAPHY */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: padding 0.3s ease, background 0.3s, border 0.3s, backdrop-filter 0.3s;
}

.nav-scrolled {
    padding: 1.5rem 4rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--gold);
}

.menu-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.menu-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.menu-links a:hover::after {
    width: 100%;
}

/* BUTTONS */
.btn-primary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
    outline: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-dark);
}

.btn-primary:hover::before {
    left: 0;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.4;
}

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

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.line {
    display: block;
    overflow: hidden;
}

.line span {
    display: block;
    transform: translateY(100%);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    opacity: 0;
    font-weight: 300;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 25px; height: 40px;
    border: 1px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px; height: 6px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* SERVICES */
.services {
    padding: 10rem 4rem;
}

.section-title {
    font-size: 4rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.line-decor {
    width: 60px; height: 1px;
    background: var(--gold);
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s, border-color 0.4s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: grayscale(40%) brightness(0.8);
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.1);
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.explore-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.explore-link .arrow {
    transition: transform 0.3s;
}

.service-card:hover .explore-link .arrow {
    transform: translateX(10px);
}

/* PARALLAX SECTION */
.parallax-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 150%;
    z-index: -1;
}

.parallax-bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.5;
}

.parallax-content {
    text-align: center;
}

.parallax-content h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.btn-secondary {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    outline: none;
}

.btn-secondary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ATELIER */
.atelier {
    padding: 10rem 4rem;
}

.atelier-split {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.atelier-text {
    flex: 1;
}

.atelier-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.atelier-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 700px;
    border-radius: 10px;
}

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

/* FOOTER */
.footer {
    padding: 6rem 4rem 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    color: rgba(161, 161, 170, 0.5);
    font-size: 0.8rem;
    margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .atelier-split { flex-direction: column; }
    .hero-title { font-size: 4rem; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .navbar { padding: 1.5rem 2rem; }
    .nav-scrolled { padding: 1rem 2rem; }
    .menu-links { display: none; }
    .hero-title { font-size: 3rem; }
}
