    @font-face {
        font-family: 'Body Grotesque Fit';
        src: url('./well-assets/Body_Grotesque_Fit_Trial_Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'Open Sauce Sans';
        src: url('./well-assets/OpenSauceSans-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    :root {
        --bg: #f5f3ef;
        --bg-dark: #1e1c2a;
        --ink: #1e1c2a;
        --ink-mid: #4a4740;
        --ink-light: #8a8478;
        --sage: #5a6b5e;
        --periwinkle: #aeb2cd;
        --periwinkle-light: #d4d7e8;
        --rule: rgba(30, 28, 42, 0.15);
        --serif: 'Body Grotesque Fit', Georgia, sans-serif;
        --sans: 'Open Sauce Sans', sans-serif;
    }

    /* ── NAV ── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 1.4rem 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(245, 243, 239, 0.92);
        backdrop-filter: blur(8px);
        border-bottom: 0.5px solid var(--rule);
    }

    .nav-logo {
        font-family: var(--sans);
        font-weight: 200;
        font-size: 13px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--ink-mid);
        text-decoration: none;
    }

    .nav-link {
        font-family: var(--sans);
        font-weight: 200;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ink-light);
        text-decoration: none;
        transition: color 0.2s;
    }

    .nav-link:hover {
        color: var(--ink);
    }

    /* ── FOOTER ── */
    .footer-2 {
        background: var(--ink);
        padding: 4rem 3rem;
        color: rgba(245, 243, 239, 0.5);
    }

    .footer-2 .footer-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .footer-brand {
        font-family: var(--sans);
        font-weight: 200;
        font-size: 12px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(245, 243, 239, 0.9);
        margin-bottom: 0.8rem;
        display: block;
    }

    .footer-tagline {
        font-family: var(--serif);
        font-size: 15px;
        color: rgba(245, 243, 239, 0.4);
        line-height: 1.6;
    }

    .footer-col-title {
        font-family: var(--sans);
        font-weight: 200;
        font-size: 10px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(245, 243, 239, 0.35);
        margin-bottom: 1.2rem;
    }

    .footer-col a {
        display: block;
        font-family: var(--sans);
        font-weight: 200;
        font-size: 13px;
        color: rgba(245, 243, 239, 0.6);
        text-decoration: none;
        margin-bottom: 0.6rem;
        transition: color 0.2s;
        letter-spacing: 0.03em;
    }

    .footer-col a:hover {
        color: rgba(245, 243, 239, 0.95);
    }

    .footer-bottom {
        max-width: 1100px;
        margin: 3rem auto 0;
        padding-top: 2rem;
        border-top: 0.5px solid rgba(245, 243, 239, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom span {
        font-family: var(--sans);
        font-weight: 200;
        font-size: 11px;
        color: rgba(245, 243, 239, 0.25);
        letter-spacing: 0.08em;
    }

    @media (max-width: 768px) {
       .footer-2 .footer-inner {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
        nav {
            padding: 1.2rem 1.5rem;
        }



        .footer-2 {
            padding: 2rem 1.5rem;
            flex-direction: column;
            align-items: flex-start;
        }
    }