:root {
    --bg-color: #030303;
    --text-color: #f7f7f7;
    --text-muted: #9e9e9e;
    --accent-gold: #c5a975;
    --accent-glow: rgba(197, 169, 117, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header & Logo */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0));
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.logo-container h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.4em;
    font-size: 1.4rem;
    color: var(--text-color);
    text-transform: uppercase;
}

/* Base Layout */
.section {
    min-height: 100vh;
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center 40%, #151515 0%, var(--bg-color) 60%);
    padding-top: 120px; /* Fix for header overlap */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-wrap: balance;
    color: #ffffff;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-down {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.scroll-down:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Content Layouts */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 8rem;
    max-width: 1300px;
    width: 100%;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.description {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.benefits {
    margin-top: 3rem;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.benefits li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Image Blocks */
.image-block {
    flex: 1;
    position: relative;
}

.image-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.image-block:hover img {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.02);
}

/* Final CTA Section */
.final-cta {
    flex-direction: column;
    text-align: center;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-cta h2 {
    font-size: 4rem;
}

.final-cta p {
    max-width: 600px;
    margin: 2rem auto 4rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--bg-color);
    text-decoration: none;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.cta-button:hover {
    background: #fff;
    color: var(--bg-color);
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

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

/* Media Queries */
@media (max-width: 1024px) {
    .content-wrapper, .content-wrapper.reverse {
        gap: 4rem;
    }
    .image-block img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .content-wrapper, .content-wrapper.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .benefits li {
        padding-left: 0;
    }
    .benefits li::before {
        display: none;
    }
    
    .hero h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .final-cta h2 { font-size: 2.8rem; }
    
    .section { padding: 6rem 5%; }
    .image-block img { height: 400px; }
}
