/* Typography */
body {
    font-size: 1.125rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.section-heading {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: var(--spacing-lg);
}

.large-quote {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.2vw, 4rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.25;
    text-align: center;
    /* Constrain to ~6 of 12 cols (50% of 1400px container = 700px) */
    max-width: min(700px, 56%);
    margin: 0 auto;
    color: var(--color-text-light);
}

.quote-author {
    font-family: var(--font-sans);
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 400;
    margin-top: var(--spacing-md);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-style: normal;
    opacity: 0.75;
    display: block;
    text-align: center;
}

p {
    font-family: var(--font-sans);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
}

.highlight-text {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    display: block;
    margin-top: var(--spacing-md);
    opacity: 0.9;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* Smaller Desktop Adjustments */
@media (max-width: 1440px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 4rem);
    }
    .section-heading {
        font-size: clamp(1.5rem, 4.5vw, 2.75rem);
    }
    .large-quote {
        font-size: clamp(1.75rem, 3.5vw, 3rem);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 3rem);
    }
    .section-heading {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
}
