/* ================================
   JASSE — Shared components: buttons, manifesto, section-head, footer
   ================================ */

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    border-radius: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid var(--ink);
}

.btn:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Manifesto strip ---- */

.manifesto {
    background: var(--ink);
    color: var(--cream);
    padding: 32px 0;
    overflow: hidden;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.manifesto__track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 32px);
    font-style: italic;
    font-weight: 300;
}

.manifesto__track span {
    display: inline-flex;
    align-items: center;
    gap: 80px;
}

.manifesto__track .dot {
    color: var(--gold);
    font-size: 0.4em;
    vertical-align: middle;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Section header ---- */

.section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: end;
}

.section-head__meta .eyebrow {
    margin-bottom: 12px;
    display: block;
}

.section-head__title { margin-bottom: 24px; }

.section-head__title .italic {
    color: var(--gold-dark);
    font-weight: 300;
}

@media (max-width: 768px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }
}

/* ---- Footer ---- */

.footer {
    background: var(--cream);
    padding: 80px var(--gutter) 32px;
    border-top: 1px solid var(--rule);
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--rule);
}

.footer__brand h3 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer__brand h3 .dot { color: var(--gold); }

.footer__brand p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-muted);
    max-width: 380px;
}

.footer__col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 14px; }

.footer__col a {
    font-size: 15px;
    color: var(--ink-soft);
    transition: color 0.3s ease;
}

.footer__col a:hover { color: var(--gold-dark); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.footer__bottom-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer__brand { grid-column: span 2; }
    .footer__bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
}
