/* ============================================================
   Layout: header + footer chrome
   Loaded on every page (header/footer are global).
   ============================================================ */

/* Footer brand column */
.footer-tagline {
    font-size: 0.8375rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 260px;
}

.footer-contact {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a,
.footer-contact span {
    font-size: 0.8375rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact span {
    color: rgba(139, 147, 168, 0.7);
    align-items: flex-start;
}

.footer-contact i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-contact span i {
    margin-top: 2px;
}

/* GDPR banner */
.gdpr-banner-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.gdpr-banner-actions .dvs-btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

.gdpr-banner-actions .dvs-btn-primary {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

/* Header bits */
.header-logo-link {
    text-decoration: none;
}

.header-icon-sm {
    width: 18px;
    height: 18px;
}

.header-divider {
    border-top: 1px solid var(--line);
}

/* 404 page */
.section--404 {
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.s404-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0.75rem 0 1rem;
}

.s404-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Footer social links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--orange-dim);
}

.footer-social-link i {
    width: 18px;
    height: 18px;
}
