/* ============================================================
   MONKEY GALLERY — CSS Design System
   Hell, clean, schwarz/weiß mit Goldakzenten
   ============================================================ */

/* ─── LOCAL FONTS ────────────────────────────────────────── */
/* Inter – latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter – latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Playfair Display – normal, latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Playfair Display – normal, latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Playfair Display – italic, latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Playfair Display – italic, latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── TOKENS ────────────────────────────────────────────── */
:root {
    --white: #ffffff;
    --bg: #faf9f7;
    --bg-alt: #f4f2ee;
    --border: #e5e0d8;
    --text: #1a1a1a;
    --text-mid: #555555;
    --text-light: #888888;
    --gold: #c9a84c;
    --gold-dark: #a07830;
    --gold-light: #e8c96a;
    --black: #111111;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --nav-h: 76px;
    --max-w: 1140px;
    --r: 4px;
    --r-lg: 10px;
    --t: 0.28s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t);
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.15;
    font-weight: 700;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 400;
}

h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

p {
    max-width: 68ch;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--alt {
    background: var(--bg-alt);
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

.section--gold {
    background: var(--gold);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    gap: 2rem;
}

.nav__logo img {
    height: 58px;
    width: auto;
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    padding: 0.45rem 0.9rem;
    border-radius: var(--r);
    transition: color var(--t), background var(--t);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--text);
    background: var(--bg-alt);
}

/* Dropdown */
.nav__item {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    min-width: 160px;
    padding: 8px 0.5rem 0.5rem;
    display: none;
    z-index: 200;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
    display: block;
}

.nav__dropdown a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    border-radius: var(--r);
    transition: background var(--t), color var(--t);
}

.nav__dropdown a:hover {
    background: var(--bg-alt);
    color: var(--text);
}

.nav__cta {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.55rem 1.4rem;
    background: var(--black);
    color: var(--white) !important;
    border-radius: 20px;
    transition: background var(--t), transform var(--t);
}

.nav__cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t);
}

.nav__burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 99;
    transform: translateY(-110%);
    transition: transform var(--t);
}

.nav__mobile.open {
    transform: translateY(0);
}

.nav__mobile a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 0.65rem 1rem;
    border-radius: var(--r);
    display: block;
}

.nav__mobile a:hover {
    color: var(--text);
    background: var(--bg-alt);
}

/* ─── GOLD ACCENT LINE ───────────────────────────────────── */
.accent-line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem 0;
}

.accent-line--center {
    margin: 1rem auto;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
}

.btn--black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn--black:hover {
    background: transparent;
    color: var(--black);
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn--outline:hover {
    border-color: var(--black);
    color: var(--black);
}

.btn--sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.78rem;
}

/* ─── HERO (Fullscreen Video) ────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    height: calc(100vh - var(--nav-h) - 42px);
    /* minus banner */
    min-height: 520px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: 360px;
        height: 72vh;
    }
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.28) 55%,
            rgba(0, 0, 0, 0.08) 100%);
}

.hero__video-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    color: var(--white);
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero__video-content h1 {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero__video-content .accent-line {
    background: var(--gold);
}

/* ─── VIDEO WRAP (inline sections) ──────────────────────── */
.video-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}

.video-wrap video {
    display: block;
    width: 100%;
}

/* ─── OPENING TIMES BANNER ───────────────────────────────── */
.open-banner {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.open-banner strong {
    font-weight: 700;
}

/* ─── FEATURE GRID ───────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: box-shadow var(--t), transform var(--t);
}

.feature-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-dark);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.9rem;
    margin: 0;
}

/* Images in two-col sections: never distort */
.two-col img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: var(--r-lg);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.two-col--flip>*:first-child {
    order: 2;
}

.two-col--flip>*:last-child {
    order: 1;
}

@media (max-width: 768px) {

    .two-col--flip>*:first-child,
    .two-col--flip>*:last-child {
        order: unset;
    }
}

/* ─── GALLERY GRID ───────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem 1rem 0.75rem;
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity var(--t);
}

.gallery-item:hover .gallery-item__caption {
    opacity: 1;
}

/* ─── ARTIST GRID ────────────────────────────────────────── */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.artist-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: box-shadow var(--t), transform var(--t);
}

.artist-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.artist-card__img {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.artist-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-card__img img {
    transform: scale(1.05);
}

.artist-card__body {
    padding: 1rem 1.25rem 1.25rem;
}

.artist-card__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.artist-card__info {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ─── INSTAGRAM GRID ─────────────────────────────────────── */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

@media (max-width: 560px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.3s;
}

.insta-item:hover img {
    transform: scale(1.07);
    opacity: 0.85;
}

/* ─── TABLE ──────────────────────────────────────────────── */
.fact-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.fact-table tr {
    border-bottom: 1px solid var(--border);
}

.fact-table tr:last-child {
    border-bottom: none;
}

.fact-table td {
    padding: 0.7rem 0.5rem;
    vertical-align: top;
}

.fact-table td:first-child {
    color: var(--text-light);
    width: 42%;
    font-size: 0.82rem;
}

.fact-table td:last-child {
    font-weight: 500;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.form-group--full {
    grid-column: 1/-1;
}

label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
}

label .req {
    color: var(--gold-dark);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
select,
textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
    width: 100%;
    transition: border-color var(--t), box-shadow var(--t);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

textarea {
    resize: vertical;
    min-height: 130px;
}

select {
    cursor: pointer;
}

/* Honeypot – visually hidden */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    /* tabindex is an HTML attr, not CSS – set via aria-hidden on the element */
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.form-privacy a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-mid);
}

.form-checkbox input {
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--gold);
}

.form-success {
    display: none;
    border: 2px solid var(--gold);
    border-radius: var(--r-lg);
    padding: 2rem;
    text-align: center;
    color: var(--gold-dark);
    background: #fffbf0;
}

/* ─── IMPRESSIONS GRID ───────────────────────────────────── */
.impressions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 4px;
}

.impressions-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-alt);
    cursor: pointer;
}

.impressions-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.impressions-item:hover img {
    transform: scale(1.08);
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--t);
}

.lightbox__close:hover {
    color: var(--gold);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t);
}

.lightbox__prev {
    left: 1.5rem;
}

.lightbox__next {
    right: 1.5rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--gold);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 550px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__logo img {
    height: 50px;
    /* No forced white filter – logo looks fine on dark bg as-is */
    margin-bottom: 1.25rem;
}

.footer__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    max-width: 30ch;
}

.footer__quote cite {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    color: var(--gold);
    margin-top: 0.4rem;
    letter-spacing: 0.1em;
}

.footer__col-title {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer__link {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.55rem;
    transition: color var(--t);
}

.footer__link:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__socials {
    display: flex;
    gap: 0.75rem;
}

.footer__social {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--t);
}

.footer__social:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
    color: var(--white);
}

/* ─── LEGAL PAGES ─────────────────────────────────────────── */
.legal {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.legal h1 {
    margin-bottom: 0.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.legal-section h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.75rem 0 0.3rem;
}

.legal-section p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    max-width: 72ch;
}

.legal-section a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.4rem;
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ─── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
    padding: 4rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 58ch;
    margin-top: 0.75rem;
    font-weight: 300;
}

/* ─── MISC ───────────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.mt-xs {
    margin-top: 0.5rem;
}

.mt-sm {
    margin-top: 1rem;
}

.mt-md {
    margin-top: 1.75rem;
}

.mt-lg {
    margin-top: 2.5rem;
}

.mt-xl {
    margin-top: 4rem;
}

/* Back to top */
.btt {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--t);
    z-index: 90;
}

.btt.show {
    opacity: 1;
    transform: translateY(0);
}

.btt:hover {
    background: var(--gold);
}

/* Scroll fade-in */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {

    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .nav__mobile {
        display: flex;
    }
}

@media (max-width: 560px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .artist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}