@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
}

.text-gold {
    color: var(--primary-gold);
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.lead {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: var(--muted);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
