@font-face {
    font-family: 'Tinos';
    src: url('Tinos/Tinos-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tinos';
    src: url('Tinos/Tinos-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tinos';
    src: url('Tinos/Tinos-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tinos';
    src: url('Tinos/Tinos-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

html {
    background: #000 url('background.webp') top center / cover no-repeat;
}

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

body {
    background: transparent;
    font-family: 'Tinos', serif;
    color: #fff;
}

a {
    color: #fff;
}

iframe {
    width: calc(100% - 3rem);
    max-width: 560px;
    aspect-ratio: 16 / 9;
    height: auto;
}

footer {
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-menu {
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}
.footer-menu a {
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.8;
}
.footer-menu a:hover {
    opacity: 1;
}

.copyright {

}

/* ── Skip link ─────────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    font-size: 0.875rem;
    text-decoration: none;
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.15s ease;
}
.skip-link:focus {
    transform: translateY(0);
}

/* ── Site navigation ────────────────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 0.5rem 1.5rem;
    background: #000;
}

.site-nav::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 3rem;
    background: linear-gradient(to bottom, #000, transparent);
    pointer-events: none;
}

.nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    display: block;
    height: clamp(50px, 5vw, 60px);
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    opacity: 1;
}

.nav-menu a[aria-current="page"] {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 4px;
}

.nav-toggle svg {
    display: block;
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ── Mobile nav (≤640px) ────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem 1.5rem 1.5rem;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }
}