:root {
    --primary-black: #000000;
    --secondary-black: #050505;
    --accent-gold: #d1c8ac;
    --light-gold: #D4AF37;
    --text-light: #d1c8ac;
    --text-muted: rgba(209, 200, 172, 0.7);
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--secondary-black);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .loader-logo {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-logo {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    to { width: 100%; }
}

.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
    filter: blur(10px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(209, 200, 172, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.smoke-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(209, 200, 172, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.hero-content {
    position: relative;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.hero-logo-wrapper {
    margin-bottom: 2.5rem;
}

.brand-logo {
    max-width: 220px;
    filter: drop-shadow(0 0 20px rgba(209, 200, 172, 0.2));
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(209, 200, 172, 0.4));
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordAppear 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.6s; }
.hero-title .word:nth-child(2) { animation-delay: 0.8s; }
.hero-title .word:nth-child(3) { animation-delay: 1.0s; }
.hero-title .word:nth-child(4) { animation-delay: 1.2s; }

@keyframes wordAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    opacity: 0.6;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollAnim 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

@keyframes scrollAnim {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Buttons */
.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-black);
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-black);
    width: 100%;
    margin-top: 1rem;
}

/* About Section */
.about {
    background: var(--primary-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.eyebrow {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    font-family: 'Josefin Sans', sans-serif;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid rgba(197, 179, 88, 0.2);
}

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

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-gold);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--secondary-black);
    padding: 4rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid var(--accent-gold);
    text-align: center;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.modal-content p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

input[type="email"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
}

input:focus {
    outline: 1px solid var(--accent-gold);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-logo-wrapper { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 1.2s; }
.cta-group { 
    animation-delay: 1.4s;
    margin-top: 3rem;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
