@font-face {
    font-family: 'Karla Local';
    src: url('../fonts/karla/Karla-VariableFont_wght.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'TT Drugs Trial Regular';
    src: url('../fonts/tt-drugs/TT Drugs Trial Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

:root {
    --bg: #120e0c;
    --home-panel: #120e0c;
    --text-heading: #e6e2da;
    --text-heading-soft: #8f7257;
    --text-body: #a8a39d;
    --border: #2a2a2a;
    --border-soft: rgba(230, 226, 218, 0.12);
    --accent: #b7a28d;
    --panel: #151515;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-gutter: stable;
}

body {
    background-color: var(--bg);
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.footer-meta-primary,
.footer-meta-secondary {
    display: block;
}

.footer-meta-separator {
    color: #5a524b;
}

.footer-legal {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-legal-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(183, 162, 141, 0.28);
    border-radius: 999px;
    background: rgba(18, 16, 14, 0.16);
    color: rgba(183, 162, 141, 0.88);
    cursor: pointer;
    transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.footer-legal-toggle:hover {
    border-color: rgba(183, 162, 141, 0.46);
    background: rgba(18, 16, 14, 0.24);
    color: rgba(214, 193, 171, 0.96);
}

.footer-legal-toggle[aria-expanded='true'] {
    border-color: rgba(183, 162, 141, 0.52);
    background: rgba(183, 162, 141, 0.1);
    color: rgba(214, 193, 171, 0.96);
    transform: translateY(-1px);
}

.footer-legal-icon {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    font-style: italic;
    transform: translateY(-1px);
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px 14px;
    margin-top: 0;
    line-height: 1.6;
    white-space: nowrap;
}

.footer-links a {
    color: #877969;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover {
    color: var(--text-heading);
}

.footer-links .footer-separator {
    color: #5a524b;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 6px 12px;
    }
}
