:root {
    --accent: #fdc300;
    --black: #000000;
    --panel: #111111;
    --panel-soft: #181818;
    --line: #2c2c2c;
    --text: #f4f4f4;
    --muted: #aaaaaa;
    --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--black);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
button { font: inherit; }
code { color: var(--accent); font-size: .9em; }

.content-width,
.nav-container {
    width: min(calc(100% - 32px), var(--max-width));
    margin-left: auto;
    margin-right: auto;
}

/* Menu modernisé, sans changer l'esprit du site */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,.96);
    border-bottom: 1px solid #242424;
}
.nav-container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 18px;
}
.brand img {
    display: block;
    width: 132px;
    max-height: 72px;
    object-fit: contain;
}
.brand-date {
    display: block;
    padding-left: 17px;
    border-left: 1px solid #333;
    color: #999;
    font-size: 12px;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: .045em;
    white-space: nowrap;
}
.brand-date strong {
    display: block;
    color: var(--accent);
    font-size: 13px;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav a {
    display: block;
    padding: 10px 11px;
    border-radius: 5px;
    color: #dddddd;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .035em;
    transition: background .18s ease, color .18s ease;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    background: #171717;
}
.main-nav a.ticket-link {
    margin-left: 5px;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.main-nav a.ticket-link:hover,
.main-nav a.ticket-link.active {
    background: var(--accent);
    color: #000;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #111;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.page-main { min-height: 60vh; }

/* Accueil : la communication reste l'élément principal */
.home-visual {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid #282828;
    background: #090909;
}
.home-visual img,
.home-visual video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}
.home-content {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(270px, .75fr);
    gap: 22px;
    padding-top: 24px;
}
.intro-panel,
.event-panel,
.info-card,
.artist-card,
.host-card,
.edition-card,
.ticket-area {
    border: 1px solid var(--line);
    background: var(--panel);
}
.intro-panel,
.event-panel { padding: 26px; }
.eyebrow {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .13em;
}
h1,
h2,
h3,
p {
    overflow-wrap: break-word;
    word-break: normal;
}
h1 {
    margin: 0 0 13px;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}
h2 { line-height: 1.2; }
.lead {
    margin: 0;
    max-width: 760px;
    color: #dedede;
    font-size: 17px;
}
.lineup-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 21px;
}
.lineup-inline span {
    padding: 6px 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #090909;
    color: #f0f0f0;
    font-size: 13px;
    font-weight: 700;
}
.host-line { margin: 18px 0 0; color: #bdbdbd; }
.host-line strong { color: var(--accent); }
.event-panel h2 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 19px;
}
.event-facts { margin: 0 0 21px; }
.event-facts div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #292929;
}
.event-facts dt { color: #888; font-size: 13px; text-transform: uppercase; }
.event-facts dd { margin: 0; color: #fff; font-weight: 700; font-size: 14px; }
.button-primary {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    background: var(--accent);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.button-primary:hover { color: #000; background: #ffd633; }

.button-secondary {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #0b0b0b;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.button-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Affiche officielle sur la page d'accueil */
.home-poster {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--panel);
    text-align: center;
}
.home-poster-title { margin-bottom: 16px; }
.home-poster-title h2 {
    margin: 0;
    font-size: 24px;
}
.home-poster-link {
    display: block;
    width: min(100%, 620px);
    margin: 0 auto;
}
.home-poster-link img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #303030;
}
.home-ticket-widget {
    width: min(100%, 900px);
    margin: 22px auto 0;
    padding: 18px;
    border-top: 1px solid #303030;
    background: #0a0a0a;
    text-align: left;
}
.home-ticket-widget iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    border: 0;
}
.home-ticket-widget .weezevent-widget-integration {
    display: block;
    width: 100%;
    min-height: 62px;
    padding: 19px;
    border: 1px solid #303030;
    background: #050505;
    color: var(--accent);
    font-weight: 800;
    text-align: center;
}

.compact-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 38px;
}
.compact-links a {
    display: block;
    padding: 17px 18px;
    border: 1px solid #282828;
    background: #090909;
}
.compact-links strong { display: block; color: #fff; font-size: 14px; }
.compact-links span { color: #8d8d8d; font-size: 13px; }
.compact-links a:hover { border-color: var(--accent); }

/* Pages intérieures */
.page-heading {
    padding-top: 46px;
    padding-bottom: 23px;
    border-bottom: 1px solid #222;
}
.page-heading h1 { margin-bottom: 9px; }
.page-heading > p:last-child {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}
.artist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 24px;
}
.artist-card {
    min-height: 190px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    padding: 24px;
}
.artist-number {
    color: var(--accent);
    font-size: 18px;
    font-weight: 800;
}
.artist-subtitle {
    margin: 0 0 4px;
    color: #8e8e8e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .09em;
}
.artist-card h2 {
    margin: 0 0 9px;
    font-size: 23px;
}
.artist-card p:last-child {
    margin: 0;
    color: #c3c3c3;
    font-size: 14px;
}
.host-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 22px;
    margin-top: 14px;
    margin-bottom: 38px;
    padding: 24px;
    border-color: #5a4900;
}
.host-label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.host-card h2 { margin: 0 0 5px; font-size: 24px; }
.host-card p { margin: 0; color: #c2c2c2; }


/* Artistes actuels : photos PNG et vidéos intégrées sans alourdir la page */
.artist-list {
    display: grid;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 18px;
}
.artist-profile {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
}
.artist-photo {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: #080808;
}
.artist-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    object-position: center top;
}

/* Artiste gardé secret jusqu'à l'annonce d'octobre */
.artist-profile-surprise {
    border-color: rgba(253, 195, 0, .55);
    background: linear-gradient(90deg, #0a0a0a, var(--panel));
}
.artist-profile-surprise .artist-photo {
    background:
        radial-gradient(circle at 50% 36%, rgba(253, 195, 0, .30), rgba(253, 195, 0, .08) 38%, rgba(8, 8, 8, .96) 72%),
        #080808;
}
.artist-profile-surprise .artist-photo img {
    filter: brightness(0) saturate(0);
    opacity: .92;
    transform: scale(.98);
    transform-origin: center top;
}
.artist-profile-surprise .artist-profile-content h2 { color: var(--accent); }

.surprise-announcement {
    display: inline-block;
    max-width: 720px;
    margin: 17px 0 0;
    padding: 11px 14px;
    border-left: 3px solid var(--accent);
    background: #0b0b0b;
    color: #d4d4d4;
    font-size: 14px;
    line-height: 1.5;
}
.surprise-announcement strong { color: var(--accent); }
.artist-profile-content { padding: 25px; }
.artist-profile-content h2 {
    margin: 0 0 9px;
    font-size: 25px;
}
.artist-description {
    max-width: 720px;
    margin: 0;
    color: #c8c8c8;
    font-size: 14px;
}
.artist-video-title {
    margin: 21px 0 9px;
    color: #9c9c9c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.artist-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.artist-video-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #050505;
}
.artist-video-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-launch {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #050505;
    color: #fff;
    cursor: pointer;
}
.video-launch::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.05) 58%);
    transition: background .18s ease;
}
.video-launch:hover::after { background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0) 65%); }
.video-launch img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}
.video-launch:hover img { transform: scale(1.025); }
.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 50px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent);
    transform: translate(-50%, -50%);
}
.video-play::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 10px;
    border-left: 14px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.video-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}
.host-card {
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-items: start;
    gap: 0;
    padding: 0;
    overflow: hidden;
}
.host-photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    min-height: 390px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: #080808;
}
.host-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    object-position: center top;
}
.host-card .host-label {
    grid-column: 2;
    grid-row: 1;
    padding: 25px 25px 0;
}
.host-card > div:last-child {
    grid-column: 2;
    grid-row: 2;
    padding: 0 25px 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 38px;
}
.info-card { padding: 25px; }
.info-card h2 {
    margin: 24px 0 8px;
    color: var(--accent);
    font-size: 18px;
}
.info-card h2:first-child { margin-top: 0; }
.info-card p { color: #d0d0d0; }
.info-card ul { padding-left: 20px; color: #d0d0d0; }
.info-card a { color: var(--accent); }
.map {
    width: 100%;
    min-height: 370px;
    border: 0;
    filter: grayscale(.15) contrast(1.05);
}

/* Archives */

.current-edition-section { padding-top: 24px; }
.section-heading-inline,
.archive-section-heading { margin-bottom: 14px; }
.section-heading-inline h2,
.archive-section-heading h2 {
    margin: 0;
    font-size: 25px;
}
.current-edition-card {
    border-color: #4a3b00;
    box-shadow: inset 0 3px 0 var(--accent);
}
.current-edition-card .edition-poster img { border-color: #4a3b00; }
.edition-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.archive-section-heading {
    padding-top: 42px;
}
.editions-list { padding-top: 24px; padding-bottom: 38px; }
.edition-card {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 28px;
    padding: 24px;
}
.edition-card + .edition-card { margin-top: 20px; }
.edition-poster img {
    display: block;
    width: 100%;
    border: 1px solid #333;
}
.edition-date {
    margin: 0 0 5px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.edition-summary h2 { margin: 0 0 4px; font-size: 25px; }
.edition-place { margin: 0 0 15px; color: #888; font-size: 14px; }
.edition-summary > p { color: #c9c9c9; }
.edition-practical {
    padding: 12px 14px;
    border-left: 3px solid var(--accent);
    background: #0b0b0b;
}
.edition-details {
    margin-top: 20px;
    border-top: 1px solid #2d2d2d;
}
.edition-details summary {
    padding: 15px 0;
    color: var(--accent);
    font-weight: 800;
    cursor: pointer;
}
.archive-artists { display: grid; gap: 15px; padding-top: 5px; }
.archive-artist {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border: 1px solid #292929;
    background: #090909;
}
.archive-artist > img { display: block; width: 100%; }
.archive-artist h3 { margin: 0 0 7px; font-size: 21px; }
.archive-artist h4 { margin: 16px 0 6px; color: #aaa; font-size: 13px; text-transform: uppercase; }
.archive-artist p,
.archive-artist li { color: #bebebe; font-size: 14px; }
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 15px;
}
.video-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.edition-main-video {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #2d2d2d;
}
.edition-main-video h3 {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 18px;
}
.edition-main-video-frame {
    overflow: hidden;
    border: 1px solid #303030;
    background: #050505;
}
.edition-main-video-frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}
.poster-archives-heading {
    margin: 34px 0 16px;
    padding-top: 26px;
    border-top: 1px solid #2a2a2a;
}
.poster-archives-heading h3 {
    margin: 0 0 4px;
    font-size: 22px;
}
.poster-archives-heading p {
    margin: 0;
    color: #888;
    font-size: 14px;
}
.poster-archives-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.poster-archive-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #2d2d2d;
    background: #0d0d0d;
}
.poster-archive-image {
    display: grid;
    place-items: center;
    min-height: 280px;
    padding: 12px;
    background: #050505;
}
.poster-archive-image img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: contain;
}
.poster-archive-copy {
    padding: 17px 18px 18px;
    border-top: 1px solid #242424;
}
.poster-archive-copy h3 {
    margin: 0 0 5px;
    font-size: 20px;
}
.poster-archive-copy .edition-place {
    margin-bottom: 0;
}

/* Billetterie */
.ticket-area { min-height: 320px; margin-top: 24px; margin-bottom: 38px; padding: 25px; }
.ticket-area iframe { width: 100%; max-width: 100%; border: 0; }
.ticket-area .weezevent-widget-integration {
    display: block;
    width: 100%;
    min-height: 72px;
    padding: 22px;
    border: 1px solid #303030;
    background: #0a0a0a;
    color: var(--accent);
    font-weight: 800;
    text-align: center;
}
.ticket-placeholder {
    min-height: 265px;
    display: grid;
    place-content: center;
    text-align: center;
    border: 1px dashed #444;
    background: #0a0a0a;
}
.ticket-placeholder h2 { margin: 0 0 5px; font-size: 22px; }
.ticket-placeholder p { margin: 0; color: #888; }

/* Partenaires affichés dans leurs couleurs d'origine, sans carte ni cadre ajouté */
.partners {
    padding: 27px 0 34px;
    border-top: 1px solid #222;
    background: #080808;
}
.small-section-title {
    margin: 0 0 15px;
    color: #8d8d8d;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 11px;
}
.partner-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
}
.partner-logos img {
    display: block;
    max-width: 210px;
    max-height: 120px;
    object-fit: contain;
}
.partner-logo-tarmac img {
    width: 255px;
    max-width: 255px;
    max-height: none;
}

.site-footer {
    border-top: 1px solid #242424;
    background: #050505;
    color: #777;
    font-size: 12px;
}
.footer-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 900px) {
    .brand-date { display: none; }
    .menu-toggle { display: block; margin-left: auto; }
    .main-nav {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        padding: 13px 16px 18px;
        border-bottom: 1px solid #333;
        background: #080808;
    }
    .main-nav.open { display: block; }
    .main-nav ul { display: block; }
    .main-nav li + li { margin-top: 4px; }
    .main-nav a { padding: 12px; }
    .main-nav a.ticket-link { margin-left: 0; }

    /* Les blocs de l'accueil passent sur une seule colonne sur tablette/mobile. */
    .home-content { grid-template-columns: minmax(0, 1fr); }
    .home-content > * { min-width: 0; }

    .info-grid { grid-template-columns: minmax(0, 1fr); }
    .compact-links { grid-template-columns: minmax(0, 1fr); }
    .edition-card { grid-template-columns: 230px minmax(0, 1fr); }
    .artist-profile { grid-template-columns: 240px minmax(0, 1fr); }
    .host-card { grid-template-columns: 240px minmax(0, 1fr); }
}

@media (max-width: 680px) {
    .content-width,
    .nav-container {
        width: min(calc(100% - 24px), var(--max-width));
    }

    .nav-container { min-height: 72px; }
    .brand img { width: 108px; max-height: 58px; }
    .main-nav { top: 72px; }

    .home-visual {
        width: 100%;
        margin-top: 0;
        border-left: 0;
        border-right: 0;
    }
    .home-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding-top: 14px;
    }
    .intro-panel,
    .event-panel,
    .info-card,
    .artist-card,
    .host-card,
    .edition-card,
    .ticket-area { padding: 19px; }

    .intro-panel,
    .event-panel { min-width: 0; }
    .intro-panel h1 { font-size: 28px; }
    .lead { font-size: 16px; }
    .event-facts div { grid-template-columns: 68px minmax(0, 1fr); }
    .button-primary {
        width: 100%;
        max-width: 100%;
        padding: 10px 12px;
        line-height: 1.25;
        white-space: normal;
        text-align: center;
    }

    .artist-grid { grid-template-columns: minmax(0, 1fr); }
    .artist-card { min-height: 0; grid-template-columns: 37px minmax(0, 1fr); }
    .artist-profile { grid-template-columns: minmax(0, 1fr); }
    .artist-photo { min-height: 320px; max-height: 430px; }
    .artist-photo img { max-height: 430px; }
    .artist-video-grid { grid-template-columns: minmax(0, 1fr); }

    .host-card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        gap: 0;
        padding: 0;
    }
    .host-photo {
        grid-column: 1;
        grid-row: 1;
        min-height: 320px;
        height: 360px;
        max-height: 430px;
    }
    .host-photo img { max-height: 430px; }
    .host-card .host-label {
        grid-column: 1;
        grid-row: 2;
        align-self: auto;
        padding: 19px 19px 0;
    }
    .host-card > div:last-child {
        grid-column: 1;
        grid-row: 3;
        padding: 0 19px 19px;
    }

    .page-heading { padding-top: 32px; }
    .edition-card { grid-template-columns: minmax(0, 1fr); }
    .edition-poster { max-width: 310px; }
    .archive-artist { grid-template-columns: minmax(0, 1fr); }
    .archive-artist > img { max-width: 280px; }
    .video-grid { grid-template-columns: minmax(0, 1fr); }
    .poster-archives-grid { grid-template-columns: minmax(0, 1fr); }
    .poster-archive-image { min-height: 220px; }
    .poster-archive-image img { max-height: 520px; }


    .home-poster {
        margin-top: 14px;
        padding: 14px;
    }
    .home-poster-title h2 { font-size: 21px; }
    .home-ticket-widget { margin-top: 16px; padding: 12px; }
    .current-edition-section { padding-top: 18px; }
    .archive-section-heading { padding-top: 32px; }
    .edition-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }
    .edition-actions .button-primary,
    .edition-actions .button-secondary {
        width: 100%;
        max-width: 100%;
        padding: 10px 12px;
        text-align: center;
    }

    .partner-logos a { min-height: 0; }
    .partner-logos img { max-height: 108px; }
    .footer-inner {
        min-height: 88px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 3px;
    }
}

@media (max-width: 380px) {
    .content-width,
    .nav-container { width: min(calc(100% - 18px), var(--max-width)); }
    .intro-panel,
    .event-panel,
    .info-card,
    .artist-card,
    .host-card,
    .edition-card,
    .ticket-area { padding: 16px; }
    .host-card { padding: 0; }
    .host-card .host-label { padding: 16px 16px 0; }
    .host-card > div:last-child { padding: 0 16px 16px; }
    .intro-panel h1 { font-size: 25px; }
    .event-facts div { grid-template-columns: 60px minmax(0, 1fr); gap: 8px; }
}
