/* ==========================================================================
   Site Footer
   Mobile-first, breakpoints at 768px and 1024px
   ========================================================================== */

.site-footer {
    background-color: #0D0D0D;
    color: var(--color-off-white);
}

.site-footer__inner {
    max-width: var(--grid-max-width);
    margin: 0 auto;
    padding: 0 var(--grid-margin);
}

/* ── Orange accent top border ── */
.site-footer__accent {
    height: 3px;
    background: linear-gradient(90deg, #C94E00 0%, #FFAA2F 50%, #FFD495 100%);
}

/* ── Statement row ── */
.site-footer__statement {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 60px 0 48px;
}

.site-footer__wordmark {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: var(--weight-medium);
    line-height: 1.1;
    color: var(--color-off-white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
    margin-bottom: 14px;
}

.site-footer__wordmark:hover {
    color: var(--color-primary-orange);
}

.site-footer__strapline {
    font-family: var(--font-body);
    font-size: var(--body-regular-size);
    font-weight: var(--weight-regular);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* ── Get in touch CTA ── */
.site-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: var(--body-small-size);
    font-weight: var(--weight-semibold);
    color: var(--color-primary-orange);
    text-decoration: none;
    border: 1px solid rgba(255, 170, 47, 0.35);
    border-radius: 100px;
    padding: 10px 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__cta:hover {
    background-color: var(--color-primary-orange);
    border-color: var(--color-primary-orange);
    color: var(--color-white);
}

/* ── Divider ── */
.site-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* ── Grid ── */
.site-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Column ── */
.site-footer__col-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: var(--weight-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-orange);
    margin-bottom: 20px;
}

/* ── Nav list ── */
.site-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__nav-list li a {
    font-family: var(--font-body);
    font-size: var(--body-regular-size);
    font-weight: var(--weight-regular);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__nav-list li a:hover {
    color: var(--color-off-white);
}

/* ── Contact list ── */
.site-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__contact-link {
    font-family: var(--font-body);
    font-size: var(--body-regular-size);
    font-weight: var(--weight-regular);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-link:hover {
    color: var(--color-primary-orange);
}

.site-footer__address {
    font-family: var(--font-body);
    font-size: var(--body-small-size);
    font-weight: var(--weight-regular);
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    margin-top: 4px;
}

/* ── Newsletter ── */
.site-footer__newsletter-sub {
    font-family: var(--font-body);
    font-size: var(--body-small-size);
    font-weight: var(--weight-regular);
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    line-height: 1.6;
}

.site-footer__newsletter-row {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.2s ease;
}

.site-footer__newsletter-row:focus-within {
    border-color: var(--color-primary-orange);
}

.site-footer__newsletter-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: var(--body-small-size);
    color: var(--color-off-white);
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 14px;
    min-width: 0;
}

.site-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.site-footer__newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    flex-shrink: 0;
    background-color: var(--color-primary-orange);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.site-footer__newsletter-btn:hover {
    background-color: var(--color-orange-dark);
}

.site-footer__newsletter-feedback {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--weight-medium);
    margin-top: 10px;
    min-height: 1.4em;
}

.site-footer__newsletter-feedback.is-success { color: #68D391; }
.site-footer__newsletter-feedback.is-error   { color: #FC8181; }

/* ── Bottom bar ── */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 16px;
}

.site-footer__copyright {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--weight-regular);
    color: rgba(255, 255, 255, 0.25);
}

.site-footer__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--body-small-size);
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__linkedin svg {
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.site-footer__linkedin:hover {
    color: var(--color-off-white);
}

/* ==========================================================================
   Desktop (≥ 768px)
   ========================================================================== */

@media (min-width: 768px) {

    .site-footer__statement {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 72px 0 56px;
    }

    .site-footer__statement-left {
        flex: 1;
    }

    .site-footer__cta {
        align-self: flex-end;
        flex-shrink: 0;
        margin-bottom: 6px;
    }

    .site-footer__grid {
        flex-direction: row;
        gap: 0;
    }

    .site-footer__col {
        flex: 1;
        padding-right: 40px;
    }

    .site-footer__col--newsletter {
        flex: 1.2;
        padding-right: 0;
    }
}

/* ==========================================================================
   Desktop large (≥ 1024px)
   ========================================================================== */

@media (min-width: 1024px) {

    .site-footer__col {
        padding-right: 60px;
    }
}
