/* css/layout.css */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.hidden {
    display: none !important;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-tint {
    background-color: var(--bg-tertiary);
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    :root {
        --section-padding: 60px;
    }
}

.section-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.section-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 2.5rem;
    max-width: 20ch;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 55ch;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Quote Section */
.quote-section {
    padding: clamp(140px, 15vw, 220px) 0;
    background-color: var(--bg-primary);
}

.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
    line-height: 1.15;
    text-align: center;
    max-width: 22ch;
    margin: 0 auto;
    color: var(--text-primary);
    font-weight: 400;
}