/* Lone Star Building Co - Global Styles
   Palette: Option 3 - Warm Concrete & Burnt Rust
   Background:  #E8E3DA (warm concrete)
   Accent:      #B54A2E (burnt rust)
   Dark:        #2C2520 (dark earth)
   Headings:    Outfit
   Body:        Space Grotesk
*/

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: #2C2520;
    background: #E8E3DA;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

a {
    color: #B54A2E;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Footer --- */

.site-footer {
    background: #2C2520;
    border-top: 1px solid rgba(232,227,218,0.08);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__star {
    width: 18px;
    height: 18px;
}

.footer__copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #E8E3DA;
    opacity: 0.3;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #E8E3DA;
    opacity: 0.3;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
}

.footer__link:hover {
    opacity: 0.6;
}

/* --- Legal pages --- */

.legal {
    background: #E8E3DA;
    padding: 120px 64px 96px;
}

.legal__inner {
    max-width: 760px;
    margin: 0 auto;
}

.legal__eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B54A2E;
    margin: 0 0 24px;
}

.legal__heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #2C2520;
    margin: 0 0 16px;
}

.legal__updated {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: #2C2520;
    opacity: 0.5;
    margin: 0 0 56px;
}

.legal__body h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #2C2520;
    margin: 40px 0 12px;
}

.legal__body p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2C2520;
    margin: 0 0 16px;
}

.legal__body a {
    color: #B54A2E;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal__back {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(44,37,32,0.12);
}

.legal__back a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B54A2E;
    text-decoration: none;
}

@media (max-width: 767px) {
    .legal {
        padding: 88px 24px 64px;
    }
}

@media (max-width: 767px) {
    .footer__inner {
        padding: 24px;
        flex-direction: column;
        gap: 12px;
    }
}
