/*
Refine to a minimal, casual and sophisticated look.
- Headings: Poppins, Body: Montserrat (already loaded in HTML)
- Neutral palette and generous whitespace
*/

/* --- General & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    --bg: #ffffff;
    --ink: #111111;
    --muted: #555555;
    --line: #ECECEC;

    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

:root {
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-28: 28px;
    --space-32: 32px;
    --space-40: 40px;
    --space-64: 64px;
    --space-72: 72px;
    --space-96: 96px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

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

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 6.5vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 1rem; }
p { margin-bottom: 1.2rem; max-width: 72ch; }

section {
    padding: clamp(56px, 9vw, 112px) 0;
    border-bottom: 1px solid var(--line);
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    background-color: rgba(255,255,255,0.7);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header .logo img {
    height: 40px;
}

header nav {
    display: flex;
    gap: 35px;
}

header nav a {
    position: relative;
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}
header nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.25s ease;
}
header nav a:hover::after { width: 100%; }

/* --- Hero Section --- */
#hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom: none;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-text-container {
    position: relative;
    z-index: 2;
    background: var(--bg);
    padding: clamp(32px, 6vw, 64px) 5% clamp(24px, 4vw, 48px);
    width: 100%;
    border-top: 1px solid var(--line);
    text-align: center;
}

/* Hero typography per spec */
.hero-kicker {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(17, 17, 17, 0.65);
    margin-bottom: var(--space-16);
}
.hero-title {
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.05;
    font-size: clamp(44px, 7vw, 96px);
    max-width: 920px;
    margin: 0 auto var(--space-24) auto;
}
.hero-subhead {
    font-weight: 500;
    font-size: clamp(18px, 2.2vw, 28px);
    line-height: 1.25;
    margin: 0 auto var(--space-40) auto;
    color: var(--ink);
}
.hero-meta {
    font-weight: 500;
    font-size: clamp(14px, 1.4vw, 18px);
    margin: 0 auto var(--space-32) auto;
    color: #666;
}
.hero-description {
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--muted);
    margin: 0 auto var(--space-40) auto;
    max-width: 60ch;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
}
.cta-secondary {
    display: flex;
    gap: var(--space-12);
}

/* --- Text Section --- */
.text-section {
    text-align: center;
}
.text-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text-section h2 { font-size: clamp(28px, 4vw, 44px); }
.text-section p { font-size: clamp(16px, 1.3vw, 18px); color: var(--muted); }

/* --- Gallery Section (Swiper) --- */
.gallery-section {
    padding: clamp(56px, 9vw, 112px) 0;
    background-color: var(--bg);
}
.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    filter: saturate(0.8);
}

.gallery-swiper {
    padding: 2rem 0;
}

.gallery-swiper .swiper-slide {
    width: clamp(280px, 60vw, 960px);
    aspect-ratio: 3 / 2; /* tamaño consistente y elegante */
    overflow: hidden;
    display: flex;
    border-radius: 14px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery-swiper .swiper-slide-active { transform: scale(1.02); }

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.swiper-pagination-bullet { background: var(--ink) !important; opacity: 0.35; }
.swiper-pagination-bullet-active { opacity: 1; }

/* --- Info/Fechas Section --- */
#info .container, #fechas .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

#info h3, #fechas h3 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.map-container {
    margin-top: 2rem;
    filter: grayscale(1) contrast(1.05);
    opacity: 0.85;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

/* --- Buttons --- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 16px 24px;
    border-radius: 20px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}
.button-primary {
    background: #000;
    color: #fff;
}
.button-primary:hover { filter: brightness(0.9); }
.button-ghost { background: transparent; }
.button-ghost:hover { background: #000; color: #fff; }

/* --- Logos Section --- */
#organizadores {
    text-align: center;
    background-color: #FAFAFA;
}
#organizadores h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.logos-grid img { max-height: 42px; height: auto; }

/* --- Section titles & text center --- */
.text-section { text-align: center; }
.section-title {
    font-weight: 700;
    line-height: 1.15;
    font-size: clamp(24px, 3.5vw, 48px);
    margin: var(--space-64) auto var(--space-16);
}
.section-lead {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.55;
    margin: 0 auto;
    color: var(--muted);
}
.bullets {
    list-style: none;
    display: grid;
    gap: var(--space-12);
    margin: 0 auto;
    padding: 0;
    font-size: clamp(16px, 1.3vw, 18px);
    color: #555;
}

.program-module {
    margin: clamp(40px, 6vw, 72px) auto 0;
    max-width: 920px;
    text-align: left;
    display: grid;
    gap: clamp(24px, 4vw, 40px);
}

.program-header {
    text-align: center;
    display: grid;
    gap: var(--space-12);
}

.program-kicker {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.6);
}

.program-meta {
    font-size: clamp(18px, 2vw, 22px);
    letter-spacing: 0.04em;
    color: var(--ink);
}

.program-schedule {
    background: linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 42px rgba(17, 17, 17, 0.07);
    padding: clamp(24px, 4vw, 40px);
    display: grid;
    gap: clamp(20px, 3vw, 32px);
}

.program-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-12);
}

.program-tab {
    appearance: none;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    padding: 12px 18px;
    background: rgba(17, 17, 17, 0.04);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.55);
    cursor: pointer;
    transition: all 0.25s ease;
}

.program-tab:focus {
    outline: 3px solid rgba(17, 17, 17, 0.18);
    outline-offset: 2px;
}

.program-tab.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
}

.program-panels {
    display: grid;
}

.program-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.program-panel.is-active {
    display: block;
}

.program-events {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-16);
}

.program-events li {
    display: grid;
    gap: var(--space-8);
    font-size: clamp(16px, 1.4vw, 20px);
    color: #2f2f2f;
    padding-bottom: var(--space-16);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.program-events li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.program-events time {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.6);
}

.program-footnote {
    text-align: center;
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(17, 17, 17, 0.7);
    display: grid;
    gap: 6px;
}

.program-footnote a {
    color: inherit;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.details {
    display: grid;
    gap: var(--space-12);
    margin: var(--space-24) auto;
    font-size: clamp(16px, 1.4vw, 20px);
}
.detail-row { text-align: center; }
.detail-row strong {
    display: block;
    margin-bottom: var(--space-12);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.detail-schedule {
    padding: var(--space-24);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.03);
}
.detail-tickets {
    display: grid;
    gap: var(--space-12);
}
.ticket-prices {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-16);
}
.ticket-prices span {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(17, 17, 17, 0.04);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.ticket-note {
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(17, 17, 17, 0.65);
    margin: 0;
}
.schedule-grid {
    display: grid;
    gap: var(--space-16);
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.schedule-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-16);
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.05);
}
.schedule-day {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.schedule-time {
    font-weight: 500;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--ink);
}

/* --- Editorial sections (Artists & Press) --- */
.editorial-section {
    background: #F7F5F1;
}

.press-section {
    background: #FBFAF7;
}

.editorial-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-64);
}

.editorial-header {
    display: grid;
    gap: var(--space-24);
    max-width: 820px;
}

.editorial-kicker {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.55);
}

.editorial-lede {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.7;
    color: #3f3f3f;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.editorial-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f4ec 100%);
    border-radius: 32px;
    padding: clamp(32px, 5vw, 60px);
    border: 1px solid rgba(17, 17, 17, 0.04);
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07);
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 36px);
}

.editorial-card::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #111;
    margin-bottom: clamp(18px, 3vw, 28px);
}

.editorial-card h3 {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.58);
    margin-bottom: clamp(10px, 2vw, 16px);
}

.creator-list {
    column-count: 2;
    column-gap: clamp(28px, 5vw, 72px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.creator-entry {
    break-inside: avoid;
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    color: #232323;
}

.creator-entry::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.22);
    margin-right: 4px;
    margin-top: 6px;
}

.creator-entry a {
    color: inherit;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.25s ease;
}

.creator-entry a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(17, 17, 17, 0.25);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.creator-entry a:hover {
    color: var(--ink);
}

.creator-entry a:hover::after {
    transform: scaleX(1);
}

.creator-entry--text span {
    color: rgba(17, 17, 17, 0.5);
    font-style: italic;
}

.editorial-note {
    font-size: 0.95rem;
    color: rgba(17, 17, 17, 0.58);
    margin-top: clamp(16px, 3vw, 24px);
}

.press-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: clamp(28px, 5vw, 60px);
}

.press-card {
    background: #fff;
    border-radius: 22px;
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 22px 48px rgba(17, 17, 17, 0.06);
    display: grid;
    gap: var(--space-24);
}

.press-card blockquote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #1f1f1f;
    border-left: 3px solid #111;
    padding-left: var(--space-24);
}

.press-highlights {
    list-style: none;
    display: grid;
    gap: var(--space-12);
}

.press-highlights li {
    position: relative;
    padding-left: 20px;
    color: #3c3c3c;
}

.press-highlights li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
}

.press-meta {
    align-self: start;
    gap: var(--space-16);
}

.press-meta p {
    margin: 0;
}

.press-meta a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
    padding-bottom: 2px;
}

.press-meta a:hover {
    border-color: #111;
}

.press-note {
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding-top: var(--space-16);
}

/* --- Footer --- */
footer {
    background: var(--bg);
    color: #666;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--line);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-base {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.footer-logos {
    display: grid;
    gap: 2rem;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-logos-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-logos-title {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #444;
}

.footer-logos-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.footer-logos-list img {
    max-height: 56px;
    width: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #000;
}

/* Legal links */
.legal-links {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.legal-links a {
    color: #777;
    text-decoration: none;
}
.legal-links a:hover { color: #000; }

/* --- Responsive --- */
@media (max-width: 900px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2.1rem; }

    #info .container, #fechas .container {
        grid-template-columns: 1fr;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    header .logo img {
        height: 30px;
    }
    header nav {
        gap: 20px;
    }
    
    main {
        padding-top: 60px; /* Offset for fixed header */
    }

    #hero { min-height: 100vh; }
    .hero-image-container { display: block; }
    .hero-text-container {
        padding: 3rem 5% 2rem; /* reduce text block so se ve más imagen */
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    section {
        padding: 4rem 0;
    }

    .gallery-swiper .swiper-slide { width: 90%; aspect-ratio: 4 / 3; }

    .editorial-container { gap: var(--space-40); }
    .editorial-header { max-width: none; }
    .editorial-grid { grid-template-columns: 1fr; }
    .creator-list { column-count: 1; column-gap: 24px; }
    .creator-entry { padding: 10px 0; }
    .press-card { padding: 1.8rem; }
    .press-card blockquote { font-size: 1rem; }

    /* Ajustes móviles adicionales */
    #hero h1 { font-size: 2.5rem; }
    #hero h2 { font-size: 1.5rem; }
    .event-content, .info-columns { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; }
    .social-links { margin-top: 1rem; }
}

/* --- ART IN PLACE 2026 launch --- */
#hero {
    position: relative;
    min-height: max(720px, 100svh);
    justify-content: flex-end;
    overflow: hidden;
    background: #151515;
}

.hero-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.06) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, transparent 50%);
}

.hero-slide-2026 {
    background-position: center 46%;
    filter: saturate(0.9);
}

.hero-slide-poster {
    background-color: #161616;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: right center !important;
}

.hero-text-container {
    width: min(920px, 86%);
    margin: 0 5% clamp(48px, 8vh, 100px);
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
}

.hero-kicker,
.hero-title,
.hero-subhead,
.hero-meta {
    color: #fff;
    margin-left: 0;
    margin-right: 0;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.76);
}

.hero-title {
    max-width: none;
    margin-bottom: var(--space-16);
    font-size: clamp(54px, 9vw, 138px);
    letter-spacing: -0.06em;
}

.hero-title span {
    font-weight: 300;
}

.hero-subhead {
    max-width: 36ch;
    margin-bottom: var(--space-24);
    font-size: clamp(20px, 2.4vw, 34px);
}

.hero-meta {
    max-width: none;
    margin-bottom: var(--space-24);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    letter-spacing: 0.03em;
}

.hero-link,
.announcement-cta {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid currentColor;
    color: inherit;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.hero-link:hover {
    color: #111;
    background: #fff;
}

.hero-pagination {
    z-index: 4 !important;
    right: 5% !important;
    bottom: clamp(24px, 4vh, 48px) !important;
    left: auto !important;
    width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 2px;
    margin: 0 4px !important;
    border-radius: 0;
    background: #fff !important;
}

.announcement-section {
    padding: clamp(80px, 11vw, 150px) 5%;
    background: #f2f0ea;
}

.announcement-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 8vw, 130px);
    max-width: 1400px;
    margin: 0 auto;
}

.announcement-heading {
    position: sticky;
    top: 110px;
    align-self: start;
}

.announcement-heading h2 {
    max-width: 12ch;
    font-size: clamp(40px, 5.6vw, 78px);
}

.announcement-copy p {
    max-width: 63ch;
    font-size: clamp(16px, 1.4vw, 20px);
}

.announcement-copy .announcement-lead {
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(21px, 2.1vw, 30px);
    line-height: 1.45;
}

.announcement-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-24);
    margin-top: var(--space-40);
}

.announcement-cta {
    color: #fff;
    background: #111;
}

.announcement-cta:hover {
    color: #111;
    background: transparent;
}

.announcement-actions span {
    max-width: 30ch;
    color: #111;
    font-size: 0.88rem;
    font-weight: 500;
}

.archive-banner {
    scroll-margin-top: 70px;
    padding: 20px 5%;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    background: #111;
    color: #fff;
    text-align: center;
}

.archive-banner p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

@media (max-width: 1050px) {
    header nav {
        gap: 18px;
    }

    header nav a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    header {
        gap: 12px;
    }

    header .logo {
        flex: 0 0 auto;
    }

    header nav {
        justify-content: flex-end;
        gap: 14px;
    }

    header nav a:nth-child(3),
    header nav a:nth-child(4) {
        display: none;
    }

    main {
        padding-top: 0;
    }

    #hero {
        min-height: 100svh;
    }

    .hero-image-container::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.08) 78%);
    }

    .hero-slide-2026 {
        background-position: center;
    }

    .hero-slide-poster {
        background-position: center !important;
    }

    .hero-text-container {
        width: 90%;
        margin: 0 5% 74px;
        padding: 0;
    }

    .hero-title,
    #hero h1 {
        font-size: clamp(45px, 15vw, 70px);
    }

    .hero-subhead {
        max-width: 29ch;
    }

    .hero-pagination {
        right: auto !important;
        bottom: 24px !important;
        left: 5% !important;
    }

    .announcement-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .announcement-heading {
        position: static;
    }

    .announcement-heading h2 {
        max-width: 14ch;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
