/* ============================================================
   LibriVivi — style.css
   Clean, maintainable stylesheet for the homepage
   ============================================================ */
/* --- CSS Variables --- */
:root {
    --dark: rgb(19, 23, 19);
    --light: rgb(247, 243, 240);
    --dark-50: rgba(19, 23, 19, 0.5);
    --dark-10: rgba(19, 23, 19, 0.1);
    --dark-05: rgba(19, 23, 19, 0.05);
    --light-50: rgba(247, 243, 240, 0.5);
    --light-45: rgba(247, 243, 240, 0.45);
    --light-10: rgba(247, 243, 240, 0.1);
    --font-heading: 'Bagoss Standard Medium', sans-serif;
    --font-body: 'Bagoss Standard Regular', sans-serif;
    --font-mono: 'Fragment Mono', monospace;
    --font-label: 'General Grotesque Mono Regular', monospace;
    --font-fallback: 'Inter', sans-serif;
    --section-pad: 120px;
    --content-max: 1440px;
    --gap: 14px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    font-weight: 385;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 520;
}

/* --- @font-face --- */
@font-face {
    font-family: 'Fragment Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(_assets/fonts/4iCr6K5wfMRRjxp0DA6-2CLnB4NHhg.woff2) format('woff2');
}

@font-face {
    font-family: 'General Grotesque Mono Regular';
    src: url("_assets/fonts/lw3NS7JlK2RsOIZE41wupSQFgco.woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Bagoss Standard Medium';
    src: url("_assets/fonts/71P7eLHIxhnwz43s92WyuKrlij8.woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 520;
}

@font-face {
    font-family: 'Bagoss Standard Regular';
    src: url("_assets/fonts/wIToJ1u8zFUcjwwnWZ7e4uUfC0.woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 385;
}

@font-face {
    font-family: 'Inter';
    src: url("_assets/fonts/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url("_assets/fonts/syRNPWzAMIrcJ3wIlPIP43KjQs.woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'Juana Alt';
    src: url('LV/fonts/JuanaAltBlack.woff2') format('woff2'),
       url('LV/fonts/JuanaAltBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Juana Alt';
    src: url('LV/fonts/JuanaAltRegular.woff2') format('woff2'),
       url('LV/fonts/JuanaAltRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Utilities --- */
.container {
    padding: 0 20px;
}

.label {
    font-family: var(--font-label);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.section-dark {
    background-color: var(--dark);
    color: var(--light);
}

.section-light {
    background-color: var(--light);
    color: var(--dark);
}

/* --- Reveal-footer layout ---
   The contact+footer are fixed behind everything (z-index 0).
   The main content sits above (z-index 1) with opaque backgrounds.
   When you scroll past the main content, the footer is revealed beneath. */
.main-content {
    position: relative;
    z-index: 1;
    margin-bottom: 350px;

    /* space for the fixed footer to be revealed */
}

.reveal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ============================================================
   1. NAVBAR
   ============================================================ */
/* Intro nav — sticky, independent of slides, stays above everything */
.intro-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 112px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent;
    transition: opacity 0.3s, background 0.3s;
}

.intro-nav.nav-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Dark variant — white ink for dark backgrounds (no bg change) */
.intro-nav.nav-light .navbar-links a {
    color: var(--light);
}

.intro-nav.nav-light .navbar-logo img {
    filter: brightness(0) invert(1);
}

.intro-nav.nav-light .navbar-hamburger span {
    background: var(--light);
}

.navbar-logo img {
    height: 22px;
    width: auto;
    margin-top: 0;
}

.navbar-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar-links a {
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
    transition: opacity 0.2s;
}

.navbar-links a:hover {
    opacity: 0.6;
}

.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.navbar-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--light);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark);
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100vh;
    min-height: 600px;

    /* background-image rimosso: applicato inline solo su .hero-1 della home
       (vedi index.html). Le pagine editorial coprono la hero con
       .lv-card.lv-banner → niente flash librivivi_home. */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 20px 100px;
}

/* Sticky hero slides — stack on top of each other */
.hero-slide {
    position: sticky;
    top: 0;
    z-index: 10;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 20px 138px;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.hero-slide-content .hero-slide-logo {
    height: 51px;
    width: auto;
    margin-bottom: 17px;
}

.hero-slide-content .hero-slide-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.4;
    color: var(--light);
    margin-top: 0;
}

.hero-slide-content .hero-slide-credit {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 12px;
}

.hero-slide-content .hero-slide-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 28px;
    border-radius: 40px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s;
}

.hero-slide-content .hero-slide-btn:hover {
    filter: brightness(1.1);
}

/* Light hero slide (e.g. ETHICAL PRINCIPLES) */
.hero-slide-light {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 138px;
}

.hero-slide-content-dark {
    color: var(--dark);
    max-width: 700px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide-content-dark h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-slide-content-dark h2 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 385;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 16px;
}

.hero-slide-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-50);
    margin-bottom: 8px;
}

.hero-slide-pill {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.15);
    color: var(--light);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 110px;
    width: auto;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 63px;
    letter-spacing: -0.02em;
    line-height: 0.98;
    color: var(--light);
    max-width: 800px;
    padding-left: 92px;
}

.hero h2 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 385;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--light);
    margin-top: 20px;
    padding-left: 92px;
}

/* Sections after sticky heroes need background + z-index ABOVE slides (z-index:10) to scroll over them */
.intro,
#productions,
.partners,
.formats,
.collective,
.journal,
.layout-split,
.layout-trio,
.layout-statement,
.layout-quad,
.layout-asymmetric {
    position: relative;
    z-index: 20;

    /* background-color: var(--light) */
}

.stats,
.awards,
.layout-quad {
    position: relative;
    z-index: 20;
}

/* ============================================================
   3. INTRO + CTA
   ============================================================ */
.intro {
    /* padding: 80px 0 140px */
    background-color: transparent;
}

.intro h1 {
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 900px;
    color: var(--dark);
}

.intro h2 {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: var(--dark-50);
    max-width: 700px;
    margin-top: 24px;
}

.intro .intro-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-50);
    max-width: 700px;
    margin-top: 20px;
}

.intro .btn-outline {
    display: inline-block;
    margin-top: 48px;
    padding: 14px 20px;
    border: 1px solid var(--dark);
    border-radius: 40px;
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark);
    transition: background 0.3s, color 0.3s;
}

.intro .btn-outline:hover {
    background: var(--dark);
    color: var(--light);
}

/* ============================================================
   3b. FILTER BAR (above productions grid)
   ============================================================ */
.filter-bar {
    display: flex;
    align-items: center;
    padding: 24px 0 28px;
    gap: 32px;
    border-bottom: 1px solid var(--dark-10);
    margin-bottom: 28px;
}

.filter-bar .filter-link {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--dark-50);
    text-decoration: none;
    transition: color 0.2s;
}

.filter-bar .filter-link:hover,
.filter-bar .filter-link.active {
    color: var(--dark);
}

.filter-bar .filter-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-bar .filter-icons button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.filter-bar .filter-icons button:hover,
.filter-bar .filter-icons button.active {
    opacity: 1;
}

.filter-bar .filter-icons svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark);
    fill: none;
    stroke-width: 1.2;
}

.filter-bar .filter-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 520;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-left: auto;
}

/* ============================================================
   3c. LAYOUT SECTIONS (5 variants inspired by Feixen / GDW)
   ============================================================ */
/* --- Layout 1: Image left + Text right (Feixen biography) --- */
.layout-split {
    padding: 100px 0;
}

.layout-split .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.layout-split-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 4px;
}

.layout-split-text {
    padding-top: 20px;
}

.layout-split-text .label {
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-50);
    margin-bottom: 20px;
}

.layout-split-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 520;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.layout-split-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-50);
    margin-bottom: 16px;
}

.layout-split-text .btn-outline {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 24px;
    border: 1px solid var(--dark);
    border-radius: 40px;
    font-family: var(--font-label);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark);
    transition: background 0.3s, color 0.3s;
}

.layout-split-text .btn-outline:hover {
    background: var(--dark);
    color: var(--light);
}

/* --- Layout 2: Three-column cards (Feixen services / GDW story) --- */
.layout-trio {
    padding: 100px 0;
}

.layout-trio-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 520;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 60px;
    max-width: 700px;
}

.layout-trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.layout-trio-card {
    display: flex;
    flex-direction: column;
}

.layout-trio-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.layout-trio-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 520;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.layout-trio-card .card-label {
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-50);
    margin-bottom: 12px;
}

.layout-trio-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-50);
}

/* --- Layout 3: Full-width statement + two offset columns (GDW instruction) --- */
.layout-statement {
    padding: 120px 0;
}

.layout-statement-hero {
    margin-bottom: 80px;
}

.layout-statement-hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 520;
    letter-spacing: -0.03em;
    line-height: 1.0;
    max-width: 900px;
}

.layout-statement-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.layout-statement-cols p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-50);
}

.layout-statement-cols .col-label {
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-50);
    margin-bottom: 16px;
    display: block;
}

/* --- Layout 4: Four-column feature grid (GDW statement / Feixen playlists) --- */
.layout-quad {
    padding: 100px 0;
}

.layout-quad-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 520;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.layout-quad-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-50);
    max-width: 500px;
    margin-bottom: 60px;
}

.layout-quad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.layout-quad-item {
    padding: 32px 24px;
    border: 1px solid var(--dark-10);
    border-radius: 4px;
    text-align: center;
}

.layout-quad-item .quad-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 520;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.layout-quad-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 520;
    margin-bottom: 10px;
}

.layout-quad-item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--dark-50);
}

/* Quad dark variant */
.section-dark .layout-quad-item {
    border-color: var(--light-10);
}

.section-dark .layout-quad-subtitle,
.section-dark .layout-quad-item p {
    color: var(--light-45);
}

/* --- Layout 5: Asymmetric 1/3 + 2/3 with large quote (Feixen exhibitions) --- */
.layout-asymmetric {
    padding: 100px 0;
}

.layout-asymmetric .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.layout-asymmetric-sidebar .label {
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-50);
    margin-bottom: 20px;
}

.layout-asymmetric-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 520;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 16px;
}

.layout-asymmetric-sidebar p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-50);
}

.layout-asymmetric-main blockquote {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 520;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 32px;
    padding-left: 32px;
    border-left: 3px solid var(--dark);
}

.layout-asymmetric-main p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-50);
    margin-bottom: 16px;
}

.layout-asymmetric-main img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 40px;
}

/* ============================================================
   3d. SVG ANIMATIONS — Sound World
   ============================================================ */
/* Container for animated elements */
.svg-anim {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.svg-anim svg {
    overflow: visible;
}

/* Gallery of animation variants — show all for selection */
.anim-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding: 48px 40px;
    border: 1px dashed var(--dark-10);
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
}

.anim-gallery::before {
    content: attr(data-label);
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--light);
    padding: 0 8px;
    font-family: var(--font-label);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-50);
}

.section-dark .anim-gallery {
    border-color: var(--light-10);
}

.section-dark .anim-gallery::before {
    background: var(--dark);
    color: var(--light-45);
}

.anim-gallery .anim-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 200px;
    padding: 24px;
    border: 1px solid var(--dark-05);
    border-radius: 6px;
    transition: border-color 0.2s;
}

.anim-gallery .anim-option:hover {
    border-color: var(--dark-50);
}

.section-dark .anim-gallery .anim-option {
    border-color: var(--light-10);
}

.section-dark .anim-gallery .anim-option:hover {
    border-color: var(--light-45);
}

.anim-gallery .anim-option svg {
    width: 180px;
    height: 180px;
}

.anim-gallery .anim-option .anim-tag {
    font-family: var(--font-label);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-50);
    background: var(--dark-05);
    padding: 3px 8px;
    border-radius: 3px;
}

.section-dark .anim-gallery .anim-option .anim-tag {
    color: var(--light-45);
    background: var(--light-10);
}

/* --- Animation: Ripple (expanding circles) --- */
@keyframes ripple {
    0% {
        r: 4;
        opacity: 0.8;
    }

    100% {
        r: 50;
        opacity: 0;
    }
}

.anim-ripple circle {
    animation: ripple 3s ease-out infinite;
}

.anim-ripple circle:nth-child(2) {
    animation-delay: 0.6s;
}

.anim-ripple circle:nth-child(3) {
    animation-delay: 1.2s;
}

.anim-ripple circle:nth-child(4) {
    animation-delay: 1.8s;
}

.anim-ripple circle:nth-child(5) {
    animation-delay: 2.4s;
}

/* --- Animation: Waveform (oscillating bars) --- */
@keyframes wave-bar {
    0%,
    100% {
        transform: scaleY(0.3);
    }

    50% {
        transform: scaleY(1);
    }
}

.anim-waveform rect {
    transform-origin: center;
    animation: wave-bar 1.2s ease-in-out infinite;
}

.anim-waveform rect:nth-child(1) {
    animation-delay: 0s;
}

.anim-waveform rect:nth-child(2) {
    animation-delay: 0.1s;
}

.anim-waveform rect:nth-child(3) {
    animation-delay: 0.2s;
}

.anim-waveform rect:nth-child(4) {
    animation-delay: 0.3s;
}

.anim-waveform rect:nth-child(5) {
    animation-delay: 0.4s;
}

.anim-waveform rect:nth-child(6) {
    animation-delay: 0.5s;
}

.anim-waveform rect:nth-child(7) {
    animation-delay: 0.6s;
}

.anim-waveform rect:nth-child(8) {
    animation-delay: 0.3s;
}

.anim-waveform rect:nth-child(9) {
    animation-delay: 0.15s;
}

/* --- Animation: Pulse ring --- */
@keyframes pulse-ring {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.anim-pulse circle {
    transform-origin: center;
}

.anim-pulse circle:nth-child(1) {
    animation: pulse-ring 2s ease-in-out infinite;
}

.anim-pulse circle:nth-child(2) {
    animation: pulse-ring 2s ease-in-out infinite 0.3s;
}

.anim-pulse circle:nth-child(3) {
    animation: pulse-ring 2s ease-in-out infinite 0.6s;
}

/* --- Animation: Orbiting dots --- */
@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.anim-orbit g {
    transform-origin: center;
}

.anim-orbit g:nth-child(1) {
    animation: orbit 6s linear infinite;
}

.anim-orbit g:nth-child(2) {
    animation: orbit 8s linear infinite reverse;
}

.anim-orbit g:nth-child(3) {
    animation: orbit 10s linear infinite;
}

/* --- Animation: Sine wave drawing --- */
@keyframes draw-wave {
    0% {
        stroke-dashoffset: 200;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -200;
    }
}

.anim-sine path {
    stroke-dasharray: 200;
    animation: draw-wave 4s linear infinite;
}

/* --- Animation: Vinyl spin --- */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.anim-vinyl .vinyl-disc {
    transform-origin: center;
    animation: spin 4s linear infinite;
}

/* --- Animation: Equalizer --- */
@keyframes eq-bar {
    0%,
    100% {
        height: 4px;
        y: 46px;
    }

    25% {
        height: 30px;
        y: 20px;
    }

    50% {
        height: 15px;
        y: 35px;
    }

    75% {
        height: 40px;
        y: 10px;
    }
}

.anim-equalizer rect {
    animation: eq-bar 1.4s ease-in-out infinite;
}

.anim-equalizer rect:nth-child(1) {
    animation-delay: 0s;
}

.anim-equalizer rect:nth-child(2) {
    animation-delay: 0.2s;
}

.anim-equalizer rect:nth-child(3) {
    animation-delay: 0.4s;
}

.anim-equalizer rect:nth-child(4) {
    animation-delay: 0.1s;
}

.anim-equalizer rect:nth-child(5) {
    animation-delay: 0.3s;
}

.anim-equalizer rect:nth-child(6) {
    animation-delay: 0.5s;
}

.anim-equalizer rect:nth-child(7) {
    animation-delay: 0.15s;
}

/* --- Animation: Morphing blob --- */
@keyframes morph {
    0% {
        d: path("M50,25 C60,10 80,10 85,25 C90,40 85,60 75,70 C65,80 45,80 35,70 C20,55 15,40 25,30 C30,20 40,15 50,25Z");
    }

    33% {
        d: path("M55,20 C70,15 85,20 80,35 C75,50 80,70 65,75 C50,85 30,75 25,60 C20,45 15,30 30,20 C40,15 45,18 55,20Z");
    }

    66% {
        d: path("M45,22 C55,10 75,15 82,30 C88,45 80,65 70,72 C55,82 35,80 28,65 C18,50 20,35 30,25 C38,18 40,20 45,22Z");
    }

    100% {
        d: path("M50,25 C60,10 80,10 85,25 C90,40 85,60 75,70 C65,80 45,80 35,70 C20,55 15,40 25,30 C30,20 40,15 50,25Z");
    }
}

.anim-blob path {
    animation: morph 8s ease-in-out infinite;
}

/* --- Animation: Sound circles (concentric, staggered) --- */
@keyframes circle-breathe {
    0%,
    100% {
        r: 10;
        stroke-opacity: 0.8;
    }

    50% {
        r: 14;
        stroke-opacity: 0.3;
    }
}

.anim-circles circle:nth-child(1) {
    animation: circle-breathe 2s ease-in-out infinite;
}

.anim-circles circle:nth-child(2) {
    animation: circle-breathe 2s ease-in-out infinite 0.4s;
}

.anim-circles circle:nth-child(3) {
    animation: circle-breathe 2s ease-in-out infinite 0.8s;
}

/* --- Animation: Frequency spectrum --- */
@keyframes freq {
    0%,
    100% {
        transform: scaleY(0.1);
    }

    50% {
        transform: scaleY(1);
    }
}

.anim-freq line {
    transform-origin: center;
    stroke-linecap: round;
    animation: freq 0.8s ease-in-out infinite;
}

.anim-freq line:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 0.7s;
}

.anim-freq line:nth-child(2) {
    animation-delay: 0.05s;
    animation-duration: 0.9s;
}

.anim-freq line:nth-child(3) {
    animation-delay: 0.1s;
    animation-duration: 0.6s;
}

.anim-freq line:nth-child(4) {
    animation-delay: 0.15s;
    animation-duration: 1.1s;
}

.anim-freq line:nth-child(5) {
    animation-delay: 0.2s;
    animation-duration: 0.8s;
}

.anim-freq line:nth-child(6) {
    animation-delay: 0.1s;
    animation-duration: 1.0s;
}

.anim-freq line:nth-child(7) {
    animation-delay: 0.05s;
    animation-duration: 0.75s;
}

/* --- Animation: Radar sweep --- */
@keyframes radar-sweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes radar-ping {
    0%,
    100% {
        opacity: 0;
        r: 3;
    }

    50% {
        opacity: 1;
        r: 5;
    }
}

.anim-radar .radar-arm {
    transform-origin: 50px 50px;
    animation: radar-sweep 3s linear infinite;
}

.anim-radar .radar-dot {
    animation: radar-ping 3s ease-in-out infinite;
}

.anim-radar .radar-dot:nth-child(4) {
    animation-delay: 0.8s;
}

.anim-radar .radar-dot:nth-child(5) {
    animation-delay: 1.6s;
}

/* --- Animation: Soundwave path (gentle) --- */
@keyframes path-flow {
    0% {
        stroke-dashoffset: 300;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.anim-soundpath path {
    stroke-dasharray: 8 4;
    animation: path-flow 6s linear infinite;
}

/* --- Animation: Spinning rings (3 axes) --- */
@keyframes ring-x {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}

@keyframes ring-y {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.anim-rings {
    perspective: 300px;
}

.anim-rings ellipse:nth-child(1) {
    animation: ring-x 5s linear infinite;
    transform-origin: center;
}

.anim-rings ellipse:nth-child(2) {
    animation: ring-y 7s linear infinite;
    transform-origin: center;
}

.anim-rings ellipse:nth-child(3) {
    animation: ring-x 9s linear infinite reverse;
    transform-origin: center;
}

/* --- Animation: Dot matrix wave --- */
@keyframes dot-wave {
    0%,
    100% {
        r: 1.5;
        opacity: 0.2;
    }

    50% {
        r: 3.5;
        opacity: 1;
    }
}

.anim-dotmatrix circle {
    animation: dot-wave 2s ease-in-out infinite;
}

/* --- Animation: Cassette reels --- */
@keyframes reel-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.anim-cassette .reel-l,
.anim-cassette .reel-r {
    transform-origin: center;
    animation: reel-spin 2s linear infinite;
}

.anim-cassette .reel-r {
    animation-direction: reverse;
}

/* --- Animation: Breathing square --- */
@keyframes breathe-sq {
    0%,
    100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) rotate(45deg);
        opacity: 1;
    }
}

.anim-breathe rect {
    transform-origin: center;
    animation: breathe-sq 4s ease-in-out infinite;
}

.anim-breathe rect:nth-child(2) {
    animation-delay: 0.5s;
}

.anim-breathe rect:nth-child(3) {
    animation-delay: 1.0s;
}

/* --- Animation: Audio meter (VU style) --- */
@keyframes vu-needle {
    0%,
    100% {
        transform: rotate(-40deg);
    }

    30% {
        transform: rotate(25deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(15deg);
    }
}

.anim-vu .vu-needle {
    transform-origin: 50px 70px;
    animation: vu-needle 2.5s ease-in-out infinite;
}

/* --- Layout sections: responsive --- */
@media (max-width: 1199px) {
    .layout-split .container {
        gap: 40px;
    }

    .layout-trio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .layout-quad-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layout-asymmetric .container {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 809px) {
    .filter-bar {
        flex-wrap: wrap;
        gap: 16px;
    }

    .filter-bar .filter-title {
        margin-left: 0;
        width: 100%;
        order: -1;
    }

    .layout-split .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .layout-trio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .layout-statement-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .layout-quad-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .layout-quad-item {
        padding: 24px 16px;
    }

    .layout-asymmetric .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================================
   4. PRODUCTIONS GRID (LV Cards System)
   ============================================================ */
.lv-grid *,
.lv-grid *::before,
.lv-grid *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: calc(100vw / 4 * 585 / 550);
    gap: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1920px) {
    .lv-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: calc(100vw / 6 * 585 / 550);
    }
}

@media (min-width: 1440px) and (max-width: 1919.98px) {
    .lv-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-auto-rows: calc(100vw / 5 * 585 / 550);
    }
}

@media (min-width: 810px) and (max-width: 1199.98px) {
    .lv-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: calc(100vw / 3 * 585 / 550);
    }
}

@media (min-width: 481px) and (max-width: 809.98px) {
    .lv-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: calc(100vw / 2 * 585 / 550);
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .lv-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: calc(100vw * 585 / 550);
        padding: 0;
        gap: 0;
    }

    .lv-2x1,
    .lv-2x2,
    .lv-3x2 {
        grid-column: span 1;
    }

    .lv-heading {
        font-size: 30px;
        line-height: 35px;
    }
}

/* Card sizes */
.lv-card {
    position: relative;

    /* overflow: hidden */
    border-radius: 0;
    transition: transform 0.3s ease;
}

.lv-1x2 {
    grid-row: span 2;
}

.lv-2x1 {
    grid-column: span 2;
}

.lv-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.lv-3x2 {
    grid-column: span 3;
    grid-row: span 2;
}

.lv-banner {
    grid-column: 1 / -1;
    grid-row: span 2;
}

/* Card inner */
.lv-inner {
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: transparent;
    border-radius: 0;

    /* overflow: hidden */
    transition: transform 1.3s ease;
    justify-content: flex-start;
}

.lv-card:hover > .lv-inner {
    transition-duration: 0.3s;
}

/* Overlays */
.lv-overlay-center {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 0;
    margin-bottom: 35px;
}

.lv-overlay-left {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 30px 25px 30px;
}

.lv-overlay-left-wide {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 30px 25px 30px;
}

/* Badges */
.lv-badge-tl {
    position: absolute;
    top: 30px;
    left: 30px;
}

.lv-badge-tr {
    top: 20px;
    right: 20px;
    position: absolute;
    text-align: right;
    height: 40px;
}

.lv-badge-tr-sm {
    top: 14px;
    right: 14px;
    position: absolute;
    text-align: right;
    height: 30px;
}

/* LV Typography */
.lv-heading {
    font-family: 'Juana Alt', serif;
    max-width: 100%;
    font-weight: 400;
    font-size: 40px;
    line-height: 36px;
    color: #fff;
    text-align: left;
    margin-bottom: 0;
}

.lv-heading-sm {
    font-family: 'Juana Alt', serif;
    max-width: 80%;
    font-size: 40px;
    line-height: 36px;
    color: #fff;
    text-align: left;
}

.lv-heading-lg {
    font-family: 'Juana Alt', serif;
    font-weight: 400;
    font-size: 90px;
    margin-bottom: 15px;
    line-height: 85px;
    color: #ffffff;
}

.lv-label {
    text-align: left;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 18px;
}

.lv-label b {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

.lv-label-lg {
    text-align: left;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 6px;
    text-transform: uppercase;
    line-height: 18px;
}

/* LV Buttons & Chips */
.lv-btn {
    background-color: white;
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer;
    color: black;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: filter 0.2s, transform 0.3s;
}

.lv-btn-lg {
    background-color: white;
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
    color: black;
    border: none;
    margin: 15px 0 0 0;
    display: inline-block;
    text-decoration: none;
    transition: filter 0.2s, transform 0.3s;
}

.lv-chip {
    background-color: white;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #e8bc66;
    text-transform: capitalize;
    white-space: nowrap;
    line-height: 12px;
    cursor: pointer;
    border: none;
}

.lv-btn:hover,
.lv-btn-lg:hover,
.lv-chip:hover {
    filter: brightness(1.1);
}

.lv-credit {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    margin-top: 8px;
}

/* LV Gradient animations */
@keyframes lv-gradient-shift {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 100% 0;
    }

    50% {
        background-position: 100% 100;
    }

    75% {
        background-position: 0 100%;
    }

    100% {
        background-position: 0 0;
    }
}

.lv-gradient-orange {
    background: linear-gradient(60deg, #e03c00 0%, #fc6500 50%, #c82100 100%);
    background-size: 300% 200%;
    animation: lv-gradient-shift 6s infinite ease-in-out;
}

.lv-gradient-blue {
    background: linear-gradient(60deg, #0051bb 0%, #378eff 50%, #005dd7 100%);
    background-size: 300% 200%;
    animation: lv-gradient-shift 6s infinite ease-in-out;
}

.lv-hover-scale:hover {
    filter: brightness(1.1);
}

/* ============================================================
   5. STATS
   ============================================================ */
.stats {
    padding: var(--section-pad) 0;
}

.stats-heading {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.02em;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.stat-item {
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* ============================================================
   6. PARTNERS
   ============================================================ */
.partners {
    padding: 80px 0;
    border-top: 1px solid var(--dark-10);
}

.partners-label {
    font-family: var(--font-label);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    opacity: 0.5;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 48px;
}

.partners-row img {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partners-row img:hover {
    opacity: 1;
}

/* ============================================================
   7. FORMATS SHOWCASE
   ============================================================ */
.formats {
    padding: var(--section-pad) 0;
}

.formats-intro {
    max-width: 700px;
    margin-bottom: 80px;
}

.formats-intro h2 {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.formats-intro p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.7;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.format-card {
}

.format-label {
    font-family: var(--font-label);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    opacity: 0.5;
}

.format-title {
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.format-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}

/* ============================================================
   8. COLLECTIVE
   ============================================================ */
.collective {
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--dark-10);
}

.collective h2 {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.collective-subtitle {
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.7;
    margin-bottom: 80px;
}

.collective-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collective-col h3 {
    font-size: 16px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.collective-col p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 4px;
    opacity: 0.7;
}

/* ============================================================
   9. AWARDS
   ============================================================ */
.awards {
    padding: var(--section-pad) 0;
}

.awards h2 {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.02em;
    margin-bottom: 80px;
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.award-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--light-10);
}

.award-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.award-desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.6;
}

.award-item:nth-child(odd) {
    padding-right: 20px;
    border-right: 1px solid var(--light-10);
}

.award-item:nth-child(even) {
    padding-left: 20px;
}

/* ============================================================
   10. JOURNAL
   ============================================================ */
.journal {
    padding: var(--section-pad) 0;
}

.journal h2 {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.journal-card {
    display: block;
    transition: opacity 0.3s;
}

.journal-card:hover {
    opacity: 0.8;
}

.journal-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
}

.journal-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.journal-card-date {
    font-family: var(--font-label);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

/* ============================================================
   11. CONTACT
   ============================================================ */
.contact {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 20px 60px;
}

.contact h2 {
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    max-width: 700px;
    margin-bottom: 40px;
    text-align: left;
}

.contact-email {
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 0.08em;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.contact-email:hover {
    opacity: 1;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
    padding: 20px;
    border-top: 1px solid var(--light-10);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 14px;
    width: auto;
    opacity: 0.5;
}

.footer-copy {
    font-family: var(--font-label);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
}

/* ============================================================
   RESPONSIVE — Tablet (810–1199px)
   ============================================================ */
@media (max-width: 1199px) {
    :root {
        --section-pad: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .intro-nav {
        padding: 16px 0;
    }

    .hero-slide-light {
        padding: 20px 40px 60px;
    }

    .hero {
        padding: 0 20px 80px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-slide-light {
        padding: 100px 40px 80px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 32px;
    }

    .formats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .collective-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .awards-list {
        grid-template-columns: 1fr;
    }

    .award-item:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .award-item:nth-child(even) {
        padding-left: 0;
    }

    .journal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ============================================================
   RESPONSIVE — Mobile (<810px)
   ============================================================ */
@media (max-width: 809px) {
    :root {
        --section-pad: 60px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navbar */
    .intro-nav {
        padding: 14px 0;
    }

    .hero-slide-light {
        padding: 16px 20px 40px;
    }

    .navbar-links {
        display: none;
    }

    .navbar-hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 0 20px 60px;
        height: 80vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-logo {
        height: 36px;
    }

    .hero-slide-light {
        padding: 80px 20px 70px;
    }

    .hero-slide {
        padding: 20px 20px;
    }

    .hero-slide-content-dark h1 {
        font-size: 28px;
    }

    /* Intro */
    .intro {
        padding: 60px 0 80px;
    }

    .intro h1 {
        font-size: 28px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Partners */
    .partners-row {
        gap: 24px 32px;
    }

    .partners-row img {
        height: 24px;
    }

    /* Formats */
    .formats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Collective */
    .collective-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Awards */
    .awards-list {
        grid-template-columns: 1fr;
    }

    .award-item:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .award-item:nth-child(even) {
        padding-left: 0;
    }

    /* Journal */
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Contact */
    .contact h2 {
        font-size: 28px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 16px;
    }
}
