/* ============================================================
   BRAJOLA CRAFTS — Global Design System v2 (Mobile First)
   ============================================================ */

/* --- Custom Properties --- */
:root {
    /* Core palette */
    --clr-bg:          #0A0A0A;
    --clr-surface:     #111111;
    --clr-card:        #181818;
    --clr-card-hover:  #1F1F1F;
    --clr-accent:      #C9A86C;
    --clr-accent-dim:  rgba(201,168,108,0.10);
    --clr-accent-mid:  rgba(201,168,108,0.35);
    --clr-text:        #F0EFE9;
    --clr-text-muted:  #7A7A72;
    --clr-text-light:  #B0AFA7;
    --clr-border:      rgba(255,255,255,0.08);
    --clr-border-gold: rgba(201,168,108,0.22);

    /* Light sections */
    --clr-light-bg:    #F6F5F1;
    --clr-light-text:  #0A0A0A;
    --clr-light-muted: #5A5A52;
    --clr-light-border: rgba(0,0,0,0.08);

    /* Card on light */
    --clr-white-card:  #FFFFFF;
    --clr-white-shadow: 0 2px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    --clr-white-shadow-hover: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);

    /* Typography */
    --font-heading: 'Syne', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Layout */
    --container:    1200px;
    --radius:       8px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-pill:  999px;

    /* Spacing */
    --section-gap:    clamp(72px, 10vw, 140px);
    --section-gap-sm: clamp(48px, 6vw, 88px);

    /* Motion */
    --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast:    160ms;
    --dur-base:    280ms;
    --dur-slow:    520ms;

    /* Z-index */
    --z-preloader:  1000;
    --z-header:     100;
    --z-mobile-nav: 200;
    --z-float:      50;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--clr-text);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}
@media (min-width: 640px)  { .container { padding-inline: 32px; } }
@media (min-width: 1024px) { .container { padding-inline: 48px; } }

/* --- Scroll Reveal --- */
.js-ready [data-reveal] {
    opacity: 0;
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.js-ready [data-reveal="up"]    { transform: translateY(36px); }
.js-ready [data-reveal="left"]  { transform: translateX(-36px); }
.js-ready [data-reveal="right"] { transform: translateX(36px); }
.js-ready [data-reveal="scale"] { transform: scale(0.95); }
.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* --- Typography Scale --- */
.text-hero {
    font-family: var(--font-heading);
    font-size: clamp(44px, 10vw, 108px);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.04em;
}
.text-display {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
}
.text-heading {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.text-body-lg {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.78;
    color: var(--clr-text-light);
}
.text-accent  { color: var(--clr-accent); }
.text-grad {
    background: linear-gradient(135deg, #E8C980, #C9A86C, #A8803A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons (pill shape) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    transition: transform var(--dur-base) var(--ease-spring),
                box-shadow var(--dur-base) var(--ease-out),
                background var(--dur-base) var(--ease-out),
                border-color var(--dur-base) var(--ease-out),
                color var(--dur-base) var(--ease-out);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}
.btn--primary {
    background: linear-gradient(135deg, #D9B87A 0%, #C9A86C 50%, #B8943A 100%);
    color: #0A0A0A;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(201,168,108,0.25);
}
.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(201,168,108,0.40);
}
.btn--outline {
    background: transparent;
    color: var(--clr-text);
    border-color: var(--clr-border);
}
.btn--outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: var(--clr-accent-dim);
    transform: translateY(-1px);
}
.btn--outline-dark {
    background: transparent;
    color: var(--clr-light-text);
    border-color: var(--clr-light-border);
}
.btn--outline-dark:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: var(--clr-accent-dim);
    transform: translateY(-1px);
}
.btn--ghost {
    background: transparent;
    color: var(--clr-accent);
    border-color: transparent;
    padding-left: 0; padding-right: 0;
}
.btn--ghost:hover { gap: 14px; }
.btn--ghost-dark {
    background: transparent;
    color: var(--clr-light-text);
    border-color: transparent;
    padding-left: 0; padding-right: 0;
}
.btn--ghost-dark:hover { gap: 14px; color: var(--clr-accent); }
.btn--sm  { padding: 10px 20px; font-size: 13px; }
.btn--lg  { padding: 17px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }
.btn__arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* --- Section Utilities --- */
.section     { padding-block: var(--section-gap); }
.section--sm { padding-block: var(--section-gap-sm); }

.section--dark    { background: var(--clr-bg); }
.section--surface { background: var(--clr-surface); }

.section--light {
    background: var(--clr-light-bg);
    color: var(--clr-light-text);
}
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 { color: var(--clr-light-text); }
.section--light .text-body-lg { color: var(--clr-light-muted); }
.section--light .section__eyebrow { color: var(--clr-accent); }
.section--light .section__eyebrow::before { background: var(--clr-accent); }

/* --- Section Labels --- */
.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 16px;
}
.section__eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--clr-accent);
    flex-shrink: 0;
}
.section__header      { margin-bottom: clamp(36px, 5vw, 64px); }
.section__header--center {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: clamp(36px, 5vw, 64px);
}
.section__header--center .section__eyebrow { justify-content: center; }

/* --- Tag / Badge --- */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    border: 1px solid var(--clr-border-gold);
    color: var(--clr-accent);
    background: var(--clr-accent-dim);
}

/* --- Grain overlay utility --- */
.grain-overlay {
    position: relative;
}
.grain-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 1;
}
.grain-overlay > * { position: relative; z-index: 2; }

/* --- White Card (for light sections) --- */
.card-white {
    background: var(--clr-white-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--clr-white-shadow);
    transition: box-shadow var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out);
}
.card-white:hover {
    box-shadow: var(--clr-white-shadow-hover);
    transform: translateY(-3px);
}

/* --- CTA Block --- */
.cta-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: clamp(52px, 8vw, 100px) clamp(24px, 5vw, 80px);
    border: 1px solid var(--clr-border-gold);
    text-align: center;
}
.cta-block__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 120% at 50% 110%, rgba(201,168,108,0.13) 0%, transparent 60%),
        var(--clr-surface);
    z-index: 0;
}
.cta-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}
.cta-block__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.cta-block__content .text-display { max-width: 640px; }
.cta-block__content .text-body-lg { max-width: 500px; }
.cta-block__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-top: 6px;
}
.cta-block__actions .btn { justify-content: center; width: 100%; }
.cta-block__actions .btn svg { width: 18px; height: 18px; }
@media (min-width: 540px) {
    .cta-block__actions { flex-direction: row; max-width: none; width: auto; }
    .cta-block__actions .btn { width: auto; }
}

/* --- Preloader --- */
.preloader {
    position: fixed; inset: 0;
    background: var(--clr-bg);
    z-index: var(--z-preloader);
    display: flex; align-items: center; justify-content: center;
    transition: opacity var(--dur-slow) var(--ease-out), visibility var(--dur-slow) var(--ease-out);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader__logo { display: flex; flex-direction: column; align-items: center; }
.preloader__word {
    font-family: var(--font-heading);
    font-size: clamp(24px, 6vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    display: block;
}
.preloader__word:nth-child(2) { color: var(--clr-accent); }
.preloader__bar { width: 80px; height: 1.5px; background: var(--clr-border); border-radius: 999px; overflow: hidden; }
.preloader__fill { height: 100%; width: 0%; background: var(--clr-accent); border-radius: 999px; animation: fill-bar 0.5s ease forwards 0.1s; }
@keyframes fill-bar { to { width: 100%; } }

/* --- Site Header --- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: var(--z-header);
    padding-block: 20px;
    border-bottom: 1px solid transparent;
    transition: padding var(--dur-base) var(--ease-out),
                background var(--dur-base) var(--ease-out),
                border-color var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
    padding-block: 13px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: var(--clr-border);
}
.header__inner { display: flex; align-items: center; gap: 20px; }
.header__logo { flex-shrink: 0; }
.header__logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    display: block;
}
.header__logo-text em { font-style: normal; color: var(--clr-accent); }

/* Nav hidden on mobile */
.header__nav { display: none; }
.header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.header__whatsapp { display: none; }

/* Mobile toggle */
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius); }
.menu-toggle__bar {
    display: block; width: 22px; height: 1.5px;
    background: var(--clr-text); border-radius: 1px;
    transform-origin: center;
    transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.menu-toggle.is-active .menu-toggle__bar:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle.is-active .menu-toggle__bar:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

@media (min-width: 1025px) {
    .header__logo-text { font-size: 20px; }
    .header__nav { display: flex; flex: 1; justify-content: center; }
    .header__actions { margin-left: 0; }
    .header__whatsapp { display: inline-flex; }
    .menu-toggle { display: none; }
}

/* Home hero is light — header floats over it before scroll, so flip contrast */
body.home .site-header:not(.is-scrolled) .header__logo-text { color: var(--clr-light-text); }
body.home .site-header:not(.is-scrolled) .nav__link { color: var(--clr-light-muted); }
body.home .site-header:not(.is-scrolled) .nav__link:hover,
body.home .site-header:not(.is-scrolled) .nav__item.is-active .nav__link { color: var(--clr-light-text); }
body.home .site-header:not(.is-scrolled) .header__whatsapp { color: var(--clr-light-text); border-color: var(--clr-light-border); }
body.home .site-header:not(.is-scrolled) .menu-toggle__bar { background: var(--clr-light-text); }

.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-light);
    border-radius: var(--radius-pill);
    transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 14px; right: 14px;
    height: 1px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover, .nav__item.is-active .nav__link { color: var(--clr-text); }
.nav__link:hover::after, .nav__item.is-active .nav__link::after { transform: scaleX(1); }

/* --- Mobile Navigation --- */
.mobile-nav {
    position: fixed; inset: 0;
    z-index: var(--z-mobile-nav);
    visibility: hidden;
    pointer-events: none;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.75);
    opacity: 0;
    backdrop-filter: blur(6px);
    transition: opacity var(--dur-base) var(--ease-out);
}
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__inner {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(340px, 90vw);
    background: var(--clr-surface);
    border-left: 1px solid var(--clr-border);
    display: flex; flex-direction: column;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
}
.mobile-nav.is-open .mobile-nav__inner { transform: translateX(0); }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-nav__logo { font-family: var(--font-heading); font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: var(--clr-text); }
.mobile-nav__logo em { font-style: normal; color: var(--clr-accent); }
.mobile-nav__close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius); background: var(--clr-card); position: relative;
}
.mobile-nav__close span { position: absolute; width: 16px; height: 1.5px; background: var(--clr-text); border-radius: 1px; }
.mobile-nav__close span:first-child { transform: rotate(45deg); }
.mobile-nav__close span:last-child  { transform: rotate(-45deg); }
.mobile-nav__nav { flex: 1; overflow-y: auto; }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__list .nav__link {
    font-size: 26px;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 16px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text-light);
    letter-spacing: -0.02em;
}
.mobile-nav__list .nav__link::after { display: none; }
.mobile-nav__list .nav__link:hover { color: var(--clr-accent); }
.mobile-nav__footer { margin-top: 32px; flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav__whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 14px 24px;
    font-size: 14px; font-weight: 600;
    border-radius: var(--radius-pill);
    transition: background var(--dur-fast) var(--ease-out);
}
.mobile-nav__whatsapp:hover { background: #1ebe5d; }
.mobile-nav__whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 20px;
    z-index: var(--z-float);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.whatsapp-float__icon { width: 26px; height: 26px; fill: #fff; }
.whatsapp-float__pulse {
    position: absolute; inset: 0;
    border-radius: 50%; background: #25D366;
    animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.8); opacity: 0; } }

/* --- Prose Block (multi-paragraph centered copy) --- */
.prose-block { display: flex; flex-direction: column; gap: 16px; max-width: 700px; margin-inline: auto; }
.prose-block .text-heading { margin-bottom: 4px; }

/* --- Question / Checklist List (Home + Work pages) --- */
.approach-questions {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
    max-width: 500px; margin: 4px auto 0; text-align: center;
}
.approach-questions li {
    font-family: var(--font-heading);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    color: var(--clr-text);
}

/* --- Filter Buttons (Work page + Insights page) --- */
.work-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(28px, 4vw, 56px);
}
.work-filter {
    background: var(--clr-white-card);
    border: 1px solid var(--clr-light-border);
    color: var(--clr-light-muted);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out),
                background var(--dur-fast) var(--ease-out);
}
.work-filter:hover,
.work-filter.is-active {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: var(--clr-accent-dim);
}

/* --- Site Footer --- */
.site-footer {
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    padding-top: clamp(52px, 8vw, 100px);
}
.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(40px, 5vw, 64px);
    border-bottom: 1px solid var(--clr-border);
}
@media (min-width: 1024px) { .footer__top { grid-template-columns: 1fr 1.6fr; gap: 80px; } }
.footer__logo {
    display: block; font-family: var(--font-heading);
    font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--clr-text); margin-bottom: 14px;
}
.footer__logo em { font-style: normal; color: var(--clr-accent); }
.footer__tagline { font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
    width: 36px; height: 36px; border-radius: var(--radius-pill);
    border: 1px solid var(--clr-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-text-muted);
    transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.footer__social:hover { border-color: var(--clr-accent); color: var(--clr-accent); background: var(--clr-accent-dim); }
.footer__social svg { width: 15px; height: 15px; }
.footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (min-width: 640px) { .footer__links { grid-template-columns: repeat(4, 1fr); } }
.footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 16px; }
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__list a, .footer__list-text { font-size: 14px; color: var(--clr-text-light); transition: color var(--dur-fast) var(--ease-out); }
.footer__list a:hover { color: var(--clr-accent); }
.footer__bottom {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 12px; padding-block: 22px;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__copy, .footer__credit { font-size: 12px; color: var(--clr-text-muted); }
.footer__credit a { color: var(--clr-accent); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: var(--clr-text-muted); transition: color var(--dur-fast) var(--ease-out); }
.footer__legal a:hover { color: var(--clr-accent); }
