:root {
    /* High-Visibility Luxury Palette */
    --luxury-gold: #D4AF37;
    /* Vibrant focus gold */
    --luxury-gold-dark: #996515;
    --luxury-black: #000000;
    /* Absolute black for max contrast */
    --luxury-green-deep: #1B3022;
    /* Botanical anchor for psychological trust */
    --luxury-cream: #FAF9F6;
    /* Brighter, cleaner cream */
    --luxury-white: #FFFFFF;

    --text-dark: #000000;
    --text-muted: #444444;
    /* Darker than before */
    --bg-main: #FFFFFF;
    --bg-secondary: #FAF9F6;

    /* Typography - The soul of luxury */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing - Expansive and airy */
    --spacing-xs: 0.75rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 12rem;

    /* Psychology-Driven Effects */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-btn: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Stronger focal lift */
    --shadow-float: 0 30px 60px rgba(0, 0, 0, 0.12);
    --radius-none: 0;
    --radius-soft: 4px;
    /* More defined, less "pill-like" for luxury precision */
    --radius-pill: 500px;
    --transition-slow: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.8;
    letter-spacing: 0.01em;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Slightly heavier for presence */
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--luxury-black);
}

h1 {
    font-size: 5.5rem;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 2rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.luxury-tag {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
}

/* Reduced spacing for product shelves */
.products.section {
    padding-top: 2rem;
    padding-bottom: var(--spacing-lg);
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

/* Luxury Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-slow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--luxury-black);
    color: var(--luxury-white);
}

.btn-primary:hover {
    background: var(--luxury-gold);
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--luxury-black);
    /* Bolder border for presence */
    color: var(--luxury-black);
}

.btn-outline:hover {
    background: var(--luxury-black);
    color: var(--luxury-white);
}

.btn-gold {
    background: var(--luxury-gold);
    color: var(--luxury-white);
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.2, 1, 0.3, 1), transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}