/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--deep);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ═══ DESIGN TOKENS ═══ */
:root {
    --deep: #080d18;
    --navy: #0c1222;
    --navy-mid: #131d35;
    --navy-light: #1a2847;
    --gold: #c8a44e;
    --gold-bright: #dfc06a;
    --gold-pale: #f0dda0;
    --gold-10: rgba(200,164,78,0.10);
    --gold-05: rgba(200,164,78,0.05);
    --text: #dfe6f0;
    --text-mid: #8494ad;
    --text-faint: #3d4f6b;
    --glass: rgba(12,18,34,0.65);
}

/* ═══ GRAIN OVERLAY ═══ */
body::after {
    content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, .sec-title, .price-val, .stat-num {
    font-family: 'Cormorant Garamond', serif;
}

/* ═══ SECTION PATTERN ═══ */
.sec {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.sec-eyebrow {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.sec-title {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sec-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 56px;
    font-weight: 300;
}

/* ═══ BUTTONS ═══ */
.btn {
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    border: none;
    display: inline-block;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b89430 100%);
    color: var(--deep);
    box-shadow: 0 4px 20px rgba(200,164,78,0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(200,164,78,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid var(--text-faint);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .sec {
        padding: 60px 20px;
    }

    .sec-title {
        font-size: 2rem;
    }
}
