/* ==========================================================================
   Viltgroen — Layout: Container, Sections, Grids, Two-Col
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s-24);
}

/* Sections */
.section {
    padding: var(--s-80) 0;
}

.section--surface {
    background-color: var(--c-surface);
}

.section--special {
    background-color: var(--c-special);
}

.section--compact {
    padding: var(--s-48) 0;
}

/* Centered text column */
.text-center {
    text-align: center;
}

.text-col {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-col--narrow {
    max-width: 480px;
}

.text-col--wide {
    max-width: 700px;
}

/* Section header */
.section__header {
    margin-bottom: var(--s-48);
}

.section__header h2 {
    margin-bottom: var(--s-16);
}

.section__header p {
    color: var(--c-text-dim);
}

/* Grids */
.grid {
    display: grid;
    gap: var(--s-24);
}

.grid--2 {
    grid-template-columns: 1fr;
}

.grid--3 {
    grid-template-columns: 1fr;
}

.grid--4 {
    grid-template-columns: 1fr;
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-48);
    align-items: start;
}

.two-col--center {
    align-items: center;
}

.two-col--40-60 {
    grid-template-columns: 1fr;
}

.two-col--50-50 {
    grid-template-columns: 1fr;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-dim);
    opacity: 0.5;
    margin-bottom: var(--s-32);
    padding-top: calc(var(--header-h) + var(--s-24));
}

.breadcrumbs a {
    color: var(--c-text-dim);
    transition: color var(--dur) var(--ease);
}

.breadcrumbs a:hover {
    color: var(--c-white);
}

.breadcrumbs__sep {
    margin: 0 var(--s-8);
}

/* Pull quote */
.pull-quote {
    font-family: var(--f-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--c-white);
    border-left: 2px solid var(--c-accent);
    padding-left: var(--s-24);
    max-width: 700px;
    margin: var(--s-48) auto;
}

.pull-quote__attr {
    display: block;
    font-family: var(--f-body);
    font-size: 0.875rem;
    color: var(--c-text-dim);
    margin-top: var(--s-16);
}

/* Spacer */
.spacer-sm { height: var(--s-24); }
.spacer-md { height: var(--s-48); }
.spacer-lg { height: var(--s-80); }
