/* ================================================
   COMPONENTS — Global Shared Styles
   Loads on every page. Contains utility classes
   used by home, airbnb, and any future templates.
   ================================================ */

/* ── Body offset for fixed header ──────────────── */

body {
    padding-top: 88px;
}

/* ── Section Eyebrow ───────────────────────────── */

.section-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.section-eyebrow--light {
    color: var(--color-primary);
}

/* ── Section Title ─────────────────────────────── */

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-secondary);
    line-height: 1.15;
    margin: 0 0 20px;
}

.section-title--light {
    color: var(--color-text-light);
}

/* ── Section Divider ───────────────────────────── */

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--color-primary);
    margin-bottom: 32px;
}

/* ── Section Header (centred block) ────────────── */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-header--light .section-title {
    color: var(--color-text-light);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}
