/* --- LOCAL FONTS --- */
@font-face {
    font-family: 'Coolvetica Custom';
    src: url('assets/fonts/coolvetica.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bodoni Moda';
    font-style: normal;
    font-weight: 400;
    /* Regular */
    font-display: swap;
    /* Sorgt dafür, dass Text sofort sichtbar ist */
    /* Pfad zur Datei, die du hochgeladen hast */
    src: url('assets/fonts/bodoni-moda-v28-latin-regular.woff2') format('woff2');
}

/* --- VARIABLES --- */
:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --font-serif: 'Bodoni Moda', serif;
    --font-display: 'Coolvetica Custom', sans-serif;
    --font-text: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --tracking-std: 0.04em;
    --nav-padding: 50px;
    --nav-height: 120px;
    --ease-sharp: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    scroll-snap-type: none;
    overflow-y: visible
}

/* Added .cover-block and .project-section to the list */
a,
button,
.media-block,
.cover-block,
.project-section,
.menu-toggle,
.back-btn,
.filter-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
    cursor: pointer;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    padding: 0 var(--nav-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    mix-blend-mode: difference;
    color: #fff;
    pointer-events: none;
}

.navbar>* {
    pointer-events: all;
}

.brand {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: var(--tracking-std);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

/* --- DESKTOP NAV WIDGET --- */
.filter-widget {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: var(--tracking-std);
    user-select: none;
    transition: opacity 0.4s ease, visibility 0.4s;
    opacity: 1;
    visibility: visible;
}

.filter-widget.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.filter-widget.hidden-view {
    display: none !important;
}

.nav-arrow {
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.2s;
}

.nav-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
}

#project-counter {
    min-width: 100px;
    text-align: center;
    display: inline-block;
    position: relative;
}

/* --- BURGER MENU --- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    height: 40px;
    width: 40px;
    align-items: flex-end;
    z-index: 201;
}

.bar {
    width: 30px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s ease;
    transform-origin: center;
}

.menu-toggle:hover .bar:nth-child(2) {
    width: 20px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
    width: 30px;
}

/* --- MENU OVERLAY --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-sharp);
    background: #000;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-link {
    font-family: var(--font-serif);
    font-size: 4vw;
    font-weight: 400;
    font-style: italic;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.1s ease, transform 0.3s var(--ease-snappy), font-style 0.1s ease, color 0.3s ease;
    color: #fff;
    line-height: 1.1;
}

.menu-overlay.active .menu-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-sharp), transform 0.6s var(--ease-sharp), color 0.3s;
}

.menu-overlay.active .menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-link:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-link:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-link:hover {
    opacity: 0.7;
    font-style: normal;
    transform: translateX(10px);
}

.menu-mail {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: var(--tracking-std);
    text-transform: uppercase;
    font-style: normal;
    margin-top: 40px;
}

/* --- PAGE CONTENT --- */
.page-view {
    width: 100%;
    min-height: 100vh;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.page-view.active {
    display: block;
    opacity: 1;
}

/* --- MEDIA BLOCKS --- */
.media-block {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #000;
}

.media-block img,
.media-block video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease-sharp), opacity 0.5s;
    opacity: 0.8;
}

section:hover .media-block img,
section:hover .media-block video {
    transform: scale(1.02);
    opacity: 1;
}

/* --- COVER BLOCK --- */
.cover-block {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #000;
}

.cover-block img,
.cover-block video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease-sharp), opacity 0.5s;
    opacity: 0.8;
}

section:hover .cover-block img,
section:hover .cover-block video {
    transform: scale(1.02);
    opacity: 1;
}

/* --- PROJECT LABEL --- */
.project-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 20;
    color: #fff;
    mix-blend-mode: difference;
    pointer-events: none;
}

.p-title {
    font-family: var(--font-serif);
    font-size: 3.3rem;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
    font-style: normal;
    margin-left: -3px;
}

.p-cat {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: var(--tracking-std);
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
    font-style: normal;
}

/* --- LAYOUT GRIDS (HOME) --- */
section {
    position: relative;
    width: 100%;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.layout-fullscreen {
    height: 100vh;
}

.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

.layout-quad {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100vh;
}

.layout-tri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100vh;
}

.layout-asym {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 100vh;
}

.layout-asym2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 100vh;
}

/* --- DETAIL GRID SYSTEM (CSS Only) --- */
.detail-hero-grid {
    width: 100%;
    height: auto;
    min-height: 90vh;
    margin-bottom: 0;
    position: relative;
    display: grid;
    gap: 2px;
    background: #000;
    /* dense flow fills gaps automatically */
    grid-auto-flow: dense;
    align-items: start;
}

/* --- LAYOUT TIERS --- */

/* 1. SMALL (< 5 items) - 2 Cols */
/* Simple 2x2 Grid. No complex aspect ratio mixing. */
.layout-mode-small {
    grid-template-columns: repeat(2, 1fr) !important;
}

.layout-mode-small .grid-item {
    grid-column: span 1;
}

/* (Removed the nth-child odd rule to stop the stretching) */

/* 2. EDITORIAL (5 - 9 items) - 12 Cols */
.layout-mode-editorial {
    grid-template-columns: repeat(12, 1fr) !important;
}

.layout-mode-editorial .grid-item {
    grid-column: span 4;
}

/* Rhythm */
.layout-mode-editorial .grid-item:nth-child(10n+1) {
    grid-column: span 8;
    aspect-ratio: 16/9;
}

.layout-mode-editorial .grid-item:nth-child(10n+3) {
    grid-column: span 6;
}

.layout-mode-editorial .grid-item:nth-child(10n+4) {
    grid-column: span 6;
}

.layout-mode-editorial .grid-item:nth-child(10n+8) {
    grid-column: span 7;
}

.layout-mode-editorial .grid-item:nth-child(10n+9) {
    grid-column: span 5;
}

/* 3. MEDIUM (10 - 19 items) - 10 Cols */
.layout-mode-medium {
    grid-template-columns: repeat(10, 1fr) !important;
}

.layout-mode-medium .grid-item {
    grid-column: span 2;
}

.layout-mode-medium .grid-item:nth-child(7n+1) {
    grid-column: span 4;
    aspect-ratio: 1/1;
}

/* 4. COMPACT (20 - 50 items) - 8 Cols */
.layout-mode-compact {
    grid-template-columns: repeat(8, 1fr) !important;
}

.layout-mode-compact .grid-item {
    grid-column: span 1;
}

.layout-mode-compact .grid-item:nth-child(12n+1) {
    grid-column: span 2;
    aspect-ratio: 1/1;
}

/* 5. ARCHIVE / DENSE (50+ items) - 12 Cols */
.layout-mode-archive,
.layout-mode-dense {
    grid-template-columns: repeat(12, 1fr) !important;
}

.layout-mode-archive .grid-item,
.layout-mode-dense .grid-item {
    grid-column: span 1;
    aspect-ratio: 2/3 !important;
}

/* --- COMMON GRID ITEM --- */
.grid-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Default: Strict Portrait Priority */
    aspect-ratio: 2/3;
}

.grid-item img,
.grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-header,
.detail-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #000;
    color: #fff;
}

.detail-header {
    padding: 100px 40px 40px 40px;
}

.detail-content {
    padding: 40px 40px 150px 40px;
}

#detail-title {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-size: 4rem;
    margin-bottom: 20px;
    font-style: normal;
}

#detail-category {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: var(--tracking-std);
    color: #888;
    margin-bottom: 40px;
    font-style: normal;
}

.detail-content p {
    font-family: var(--font-text);
    font-style: italic;
    letter-spacing: var(--tracking-std);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 60px;
}

#view-detail {
    background: #000;
}

.back-btn {
    font-family: var(--font-display);
    display: inline-block;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666;
    padding: 0 0 5px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: var(--tracking-std);
    transition: 0.3s;
    color: #999;
    cursor: pointer;
}

.back-btn:hover {
    opacity: 1;
    color: #fff;
    border-color: #fff;
}

/* --- ABOUT PAGE --- */
.about-text-long {
    font-family: var(--font-text);
    font-style: oblique;
    letter-spacing: var(--tracking-std);
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
}

.about-contact-label {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: var(--tracking-std);
    color: #666;
    margin-bottom: 20px;
}

#view-about {
    padding-bottom: 100px;
}

/* 1. Default State: Everything allows the eye to scan easily */
.detail-hero-grid .grid-item img,
.detail-hero-grid .grid-item video {
    opacity: 0.85;
    /* Slightly transparent to blend with dark theme */
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Active State: Only the hovered item changes */
.detail-hero-grid .grid-item:hover img,
.detail-hero-grid .grid-item:hover video {
    opacity: 1;
    /* Full brightness */
    transform: scale(1.02);
    /* Very subtle lift */
    z-index: 2;
}

/* --- RESPONSIVE FIXES (MOBILE) --- */
@media (max-width: 768px) {
    :root {
        --nav-padding: 20px;
        --nav-height: 80px;
    }

    .navbar {
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 80px;
        padding-top: 0;
    }

    .filter-widget {
        display: none;
    }

    /* --- 1. HOME PAGE LAYOUTS --- */
    .layout-fullscreen,
    .layout-split,
    .layout-tri,
    .layout-asym,
    .layout-asym2 {
        height: 100dvh;
        display: grid;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
    }

    .layout-split .media-block:nth-of-type(n+2),
    .layout-split .cover-block:nth-of-type(n+2),
    .layout-tri .media-block:nth-of-type(n+2),
    .layout-tri .cover-block:nth-of-type(n+2),
    .layout-asym .media-block:nth-of-type(n+2),
    .layout-asym .cover-block:nth-of-type(n+2),
    .layout-asym2 .media-block:nth-of-type(n+2),
    .layout-asym2 .cover-block:nth-of-type(n+2) {
        display: none !important;
    }
    
    .hide-on-mobile,
    .grid-item:has(.hide-on-mobile) {
        display: none !important;
    }

    .layout-quad {
        height: 100dvh;
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr 1fr !important;
    }

    .layout-quad .media-block,
    .layout-quad .cover-block {
        width: 100%;
        height: 100%;
        display: block;
    }

    /* --- 2. FIX PROJECT LABELS --- */
    .project-label {
        display: block !important;
        bottom: 25px;
        left: 20px;
        z-index: 50;
        position: absolute;
    }

    .p-title {
        font-size: 2.2rem;
    }

    .p-cat {
        font-size: 0.77rem;
    }

    /* --- 3. MENU --- */
    .menu-link {
        font-size: 3rem;
    }

    .menu-mail {
        font-size: 1rem;
        margin-top: 20px;
    }

    /* Specific padding for About Page text on mobile */
    #view-about .detail-content,
    #view-about>div {
        padding-bottom: 250px !important;
        /* Increased from 150px */
        box-sizing: content-box;
        /* Force padding to add to the height */
    }

    /* --- 4. DETAIL VIEW: MOBILE OVERRIDES --- */
    .detail-hero-grid,
    .layout-mode-small,
    .layout-mode-editorial,
    .layout-mode-medium,
    .layout-mode-compact,
    .layout-mode-archive,
    .layout-mode-dense {
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-auto-rows: minmax(30vh, auto) !important;
        gap: 2px;
        order: 2;
        /* Ensures grid is at the bottom */
        margin-top: 20px;
        align-items: stretch !important;
        justify-content: stretch !important;

        /* FIX: Use Margin instead of Padding */
        margin-bottom: 20px !important;
        padding-bottom: 0 !important;

        /* FIX: Prevent grid from shrinking if content is large */
        flex-shrink: 0 !important;
    }

    .detail-hero-grid .grid-item {
        grid-column: span 1 !important;
        width: 100% !important;
        height: 100% !important;
        margin-bottom: 0;
        aspect-ratio: auto !important;
    }

    /* Shared "Normal Scroll" Views for Mobile */
    #view-detail.active,
    #view-about.active {
        display: flex !important;
        flex-direction: column;

        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh !important;

        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;

        scroll-snap-type: none !important;
        overscroll-behavior: auto;

        z-index: 100;
        background: #000;

        /* FIX: Remove padding here so we don't double-up space */
        padding-bottom: 0 !important;
    }

    /* --- REFINED MOBILE TYPOGRAPHY --- */
    .detail-header {
        order: -1;
        padding-top: 140px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .detail-content {
        order: 3;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 150px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #detail-category {
        font-size: 0.7rem !important;
        /* Slightly smaller for elegance */
        letter-spacing: 0.15em !important;
        /* More airy spacing */
        line-height: 1.4;

        /* Constrain width so long categories break nicely */
        max-width: 80%;
        margin-bottom: 25px !important;
        opacity: 0.8;
    }

    #detail-title {
        font-size: 2.5rem !important;
        /* Big and bold */
        line-height: 1.05 !important;
        /* Tighter stacking (looks better for Bodoni) */
        margin-bottom: 30px !important;

        /* Prevent single words hanging on a line */
        width: 100%;
        max-width: 90%;
    }

    /* The Description Text */
    .detail-content p {
        font-size: 0.88rem !important;
        /* Readable size */
        line-height: 1.5 !important;
        font-style: italic;
        color: #ccc;

        /* KEY FIX: Restrict width to mimic desktop "column" look */
        max-width: 320px !important;
        margin-bottom: 30px !important;
    }

    /* The Next Button */
    .back-btn {
        font-size: 1rem !important;
        letter-spacing: 0.1em !important;
        padding-bottom: 3px;
    }

    /* --- 5. TIKTOK SCROLL FIX (Mobile Only) --- */

    /* 1. Freeze the Document */
    html,
    body {
        height: 100% !important;
        width: 100%;
        overflow: hidden !important;
        /* Disable native browser scroll */
        position: fixed;
        /* Lock it in place */
    }

    /* 2. Make #view-home the actual "App Window" */
    #view-home {
        height: 100dvh;
        width: 100%;
        overflow-y: scroll;
        /* Allow internal scrolling */
        scroll-snap-type: y mandatory;
        /* Strict Snapping */
        scroll-behavior: auto;
        /* Instant snap response */
        overscroll-behavior-y: none;
        /* No rubber banding */
        -webkit-overflow-scrolling: touch;
        /* Smooth iOS momentum */
        position: absolute;
        top: 0;
        left: 0;
    }

    /* 3. The Sections */
    .project-section {
        height: 100dvh;
        width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        flex: none;
    }

    /* 4. Ensure Footer is reachable via Snap */
    footer {
        scroll-snap-align: end;
        min-height: 100px;
        padding-bottom: 80px;
    }
}

/* --- 5. TIKTOK SCROLL (Mobile Only) --- */
html {
    /* 1. Use 100dvh (Dynamic Viewport Height) */
    /* This automatically adjusts when the address bar shrinks/grows */
    height: 100dvh;
    width: 100%;

    /* 2. Strict Scroll Container */
    overflow-y: scroll;
    scroll-snap-type: y mandatory;

    /* 3. Stop the "Rubber Band" bounce effect */
    overscroll-behavior-y: none;

    /* 4. Optional: Changing smooth to auto makes it feel 'snappier' 
       like TikTok. 'smooth' can sometimes fight the snap physics. */
    scroll-behavior: auto;
}

body {
    /* Ensure body flows within the html container */
    min-height: 100dvh;
    overflow-y: visible;
    overflow-x: hidden;
    margin: 0;
}

/* Snap Points */
.project-section {
    /* Force sections to fill exactly one dynamic viewport */
    height: 100dvh;
    width: 100%;

    /* The core snap logic */
    scroll-snap-align: start;
    scroll-snap-stop: always;
    /* Forces it to stop at every single project */

    /* Clean up edges */
    position: relative;
    overflow: hidden;
}

/* Disable snap on Detail View so reading text is easy */
#view-detail {
    height: auto;
    overflow-y: visible;
    scroll-snap-align: none;
    display: none;
    /* Keep generic hide logic */
}

/* --- IMAGE LOADING STATE --- */
.grid-item img,
.grid-item video {
    opacity: 0;
    /* Start invisible */
    transition: opacity 0.6s ease-out, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    /* Keep zoom, add fade */
}

.grid-item.loaded img,
.grid-item.loaded video {
    opacity: 0.8;
    /* Target opacity (matches your hover effect base) */
}

/* Ensure hover still works */
section:hover .grid-item.loaded img,
section:hover .grid-item.loaded video {
    opacity: 1;
}

/* Makes highlighting text feel branded */
::selection {
    background: #ffffff;
    /* White background */
    color: #000000;
    /* Black text */
}

::-moz-selection {
    background: #ffffff;
    color: #000000;
}

/* --- LIGHTBOX --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-sharp);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox-content.loaded {
    opacity: 1;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.2s;
    z-index: 1001;
    padding: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 1.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- FOOTER --- */
.site-footer {
    padding: 50px 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    border-top: 1px solid #111;
}