/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #E2C275;
    --gold-light: #F0D48A;
    --gold-dark: #D4A84B;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-card: #1A1A1A;
    --black-border: #2A2A2A;
    --white: #FFFFFF;
    --gray-light: #E0E0E0;
    --gray: #A0A0A0;
    --gray-dark: #666666;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
svg { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITY ===== */
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title em {
    font-style: italic;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 55%, #E2C275 80%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 600px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 25%, #D4A84B 50%, #E2C275 75%, #F0D48A 100%);
    background-size: 200% 200%;
    color: var(--black);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 2px 12px rgba(226, 194, 117, 0.25);
}
.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(226, 194, 117, 0.4);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #F0D48A, #D4A84B, #E2C275);
    margin: 20px 0;
}

/* Grayscale images */
.img-grayscale {
    filter: grayscale(100%) brightness(0.85);
    transition: filter 0.5s ease;
}
.img-grayscale:hover {
    filter: grayscale(60%) brightness(0.95);
}

/* ===== INLINE SECTION CTA ===== */
.section-cta {
    margin-top: 36px;
}
