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

:root {
    --gold: #C9A84C;
    --gold-light: #E2C47A;
    --dark: #0D0D0B;
    --dark2: #141412;
    --dark3: #1C1C1A;
    --stone: #8A8A82;
    --stone-light: #BEBDB5;
    --white: #F8F8F6;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

nav.scrolled {
    background: rgba(13,13,11,0.97);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-btn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 12px 28px;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-btn:hover { background: var(--gold-light); }

/* HERO */
#hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(13,13,11,0.85) 40%, rgba(13,13,11,0.3) 100%),
        linear-gradient(to bottom, rgba(13,13,11,0.1) 0%, rgba(13,13,11,0.95) 100%),
        url('https://images.unsplash.com/photo-1621922688758-359fc0d2e538?w=1800&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 120px;
    max-width: 750px;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 200;
    line-height: 1;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--stone-light);
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 32px;
}

.btn-primary {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 18px 44px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
}

.btn-ghost::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--stone);
    transition: width 0.3s, background 0.3s;
}

.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::before { width: 60px; background: var(--gold); }

.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 120px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-stat {
    text-align: right;
    padding-right: 20px;
    border-right: 1px solid rgba(201,168,76,0.3);
}

.stat-num {
    display: block;
    font-size: 38px;
    font-weight: 200;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 4px;
}