.site-header {
    background: #fff;
    border-bottom: 1px solid rgba(21, 32, 27, .08);
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 16px;
}

.site-logo {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.site-logo .logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jade-600);
    flex-shrink: 0;
}

.site-logo:hover {
    color: var(--jade-700);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-nav a {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(21, 32, 27, .6);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: .5rem;
    transition: color .15s, background .15s;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--jade-700);
    background: var(--jade-50);
}

/* ---- Hero ---- */
.home-hero {
    padding: 80px 0 72px;
    text-align: center;
}

.home-hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--jade-600);
    margin-bottom: 16px;
}

.home-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 3.2vw, 3rem);
    color: var(--ink);
    line-height: 1.08;
    margin-bottom: 24px;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .home-hero h1 {
        white-space: normal;
        font-size: clamp(1.6rem, 6vw, 2.25rem);
    }
}

.home-hero-desc {
    font-size: 1.05rem;
    color: rgba(21, 32, 27, .65);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- Brand grid section ---- */
.brands-section {
    padding-bottom: 80px;
}

.brands-section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(21, 32, 27, .4);
    margin-bottom: 20px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .65);
    padding: 48px 0 32px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.footer-logo .logo-dot {
    background: var(--jade-400);
}

.footer-desc {
    font-size: .875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .5);
    max-width: 480px;
    flex: 1;
    text-align: center;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s, background .15s;
    overflow: hidden;
}

.footer-social-link:hover {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .06);
}

.footer-social-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: opacity .15s;
}

.footer-social-link:hover img {
    opacity: .85;
}

.footer-bottom {
    padding-top: 28px;
    text-align: center;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 16px;
}

.footer-policy-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-weight: 600;
    transition: color .15s;
}

.footer-policy-links a:hover {
    color: rgba(255, 255, 255, .85);
}

.footer-copy {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
}

/* ---- Responsive header nav ---- */
@media (max-width: 575.98px) {
    .header-nav a {
        padding: 5px 7px;
        font-size: .75rem;
    }

    .site-logo {
        font-size: 1rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-desc {
        text-align: center;
    }
}