/* ============================================================
   MAIN.CSS — Nostre Mar
   CSS complet de toutes les sections et pages
   ============================================================ */

/* ── CONTAINER GLOBAL ── */
.nm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.nm-container--narrow {
    max-width: 860px;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.nm-hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #FF6B00 0%, #FF9100 30%, #FFBA3B 60%, #FF6B00 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 48px 80px;
}

/* Soleil décoratif */
.nm-hero-sun {
    position: absolute;
    top: -80px; right: 120px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,186,59,.35) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nm-hero-sun-rays {
    position: absolute;
    top: -60px; right: 140px;
    width: 280px; height: 280px;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(255,255,255,.04),
        0 0 0 60px rgba(255,255,255,.025),
        0 0 0 90px rgba(255,255,255,.015);
    pointer-events: none;
}

/* Dunes décoratives */
.nm-hero-dunes {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 280px;
    overflow: hidden;
    pointer-events: none;
}

.nm-dune {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
}

.nm-dune-1 { width: 900px; height: 220px; background: #C2006E; opacity: .16; left: -100px; bottom: -40px; }
.nm-dune-2 { width: 700px; height: 180px; background: #9B0095; opacity: .14; right: -80px; bottom: -20px; }
.nm-dune-3 { width: 500px; height: 140px; background: #FF6B00; opacity: .12; left: 30%; bottom: -60px; }

/* Contenu hero */
.nm-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.nm-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194, 0, 110, .85);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 4px;
    padding: 6px 14px;
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
}

.nm-hero-edition {
    background: var(--violet);
    color: var(--white);
    border-radius: 50%;
    width: 72px; height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 3px solid rgba(255,255,255,.4);
    line-height: 1.2;
    flex-shrink: 0;
}

.nm-hero-edition strong {
    font-size: 22px;
    display: block;
}

.nm-hero-title {
    font-family: var(--font-title);
    font-size: clamp(80px, 14vw, 160px);
    font-weight: 900;
    color: var(--violet);
    line-height: .88;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 rgba(100,0,80,.2);
    margin-bottom: 0;
}

.nm-hero-title span {
    display: block;
}

.nm-hero-tagline {
    font-family: var(--font-title);
    font-size: clamp(22px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.1;
    margin-bottom: 28px;
    text-shadow: 2px 2px 0 rgba(100,0,60,.3);
}

.nm-hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.nm-hero-location {
    font-family: var(--font-title);
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.nm-hero-subloc {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 4px;
    margin-bottom: 24px;
}

.nm-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nm-hero-dates {
    font-family: var(--font-title);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(100,0,60,.2);
    text-align: right;
}

.nm-hero-cats-list {
    margin-top: 12px;
    text-align: right;
}

.nm-hero-cats-list span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.75;
}

.nm-hero-cats-list em {
    color: var(--violet);
    font-style: normal;
    font-weight: 900;
}

/* ============================================================
   SECTION PROGRAMME — HOMEPAGE
   ============================================================ */
.nm-programme-section {
    padding: 80px 0;
}

.nm-programme-section .nm-container {
    padding: 0 48px;
}

.nm-carousel-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

/* ============================================================
   À LA UNE — HOMEPAGE
   ============================================================ */
.nm-une-section {
    background: linear-gradient(150deg, var(--violet3) 0%, var(--violet) 50%, var(--violet2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.nm-une-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,186,59,.12);
    filter: blur(40px);
    pointer-events: none;
}

.nm-une-section .nm-container {
    position: relative;
    z-index: 1;
}

.nm-une-title {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.nm-une-sub {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin-bottom: 36px;
    font-weight: 500;
}

.nm-une-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.nm-une-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    cursor: none;
    transition: transform .2s, background .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.nm-une-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.1);
    color: inherit;
}

.nm-une-img {
    overflow: hidden;
    position: relative;
}

.nm-une-img-big  { height: 260px; }
.nm-une-img-sm   { height: 120px; }

.nm-une-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nm-une-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #3d1a08, #1a0a02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nm-une-body {
    padding: 16px 18px 18px;
}

.nm-une-badge {
    font-family: var(--font-title);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(255,186,59,.22);
    color: var(--orange3);
    padding: 3px 10px;
    border-radius: var(--radius);
    display: inline-block;
    margin-bottom: 10px;
}

.nm-une-card-title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.nm-une-card.nm-une-small .nm-une-card-title {
    font-size: 14px;
}

.nm-une-meta {
    font-size: 12px;
    color: rgba(255,255,255,.42);
    line-height: 1.55;
    font-weight: 500;
}

.nm-une-free {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-title);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(6,214,160,.18);
    color: #06D6A0;
    padding: 3px 10px;
    border-radius: var(--radius);
}

/* ============================================================
   PAGE BANNIÈRE (pages intérieures)
   ============================================================ */
.nm-page-banner {
    background: var(--dark);
    padding: 120px 48px 60px;
    position: relative;
    overflow: hidden;
}

.nm-page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, #FF6B00 0%, transparent 50%);
    opacity: .08;
    pointer-events: none;
}

.nm-page-banner--programme::after {
    content: 'PROGRAMME';
    position: absolute;
    right: -20px; bottom: -20px;
    font-family: var(--font-title);
    font-size: 160px;
    font-weight: 900;
    color: rgba(255,255,255,.03);
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
}

.nm-banner-eyebrow {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.nm-banner-title {
    font-family: var(--font-title);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: .9;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.nm-banner-sub {
    font-size: 15px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ============================================================
   PAGE PROGRAMME COMPLET
   ============================================================ */
.nm-programme-full {
    padding: 60px 0 80px;
}

.nm-prog-filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.nm-pill-tous {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.nm-pill-tous.active,
.nm-pill-tous:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.nm-pill-count {
    opacity: .6;
    font-weight: 600;
}

.nm-tarif-filters {
    display: flex;
    gap: 8px;
}

.nm-tarif-btn {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--radius);
    border: 1.5px solid rgba(0,0,0,.12);
    background: var(--white);
    color: var(--muted);
    cursor: none;
    transition: all .15s;
}

.nm-tarif-btn.active,
.nm-tarif-btn:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* Agenda chronologique */
.nm-day-separator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 20px;
}

.nm-day-label {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 900;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: -.3px;
    white-space: nowrap;
}

.nm-day-line {
    flex: 1;
    height: 2px;
    background: var(--orange);
    opacity: .3;
}

.nm-day-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

/* Card programme liste */
.nm-prog-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(0,0,0,.06);
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
    cursor: none;
}

.nm-prog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    color: inherit;
}

.nm-prog-card[data-hidden="true"] {
    display: none;
}

.nm-prog-card-img {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
}

.nm-prog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nm-prog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #2d1810, #0f0408);
}

.nm-prog-card-body {
    padding: 12px 0;
    flex: 1;
}

.nm-prog-card-title {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.2;
    margin: 6px 0 6px;
    letter-spacing: -.2px;
}

.nm-prog-card-excerpt {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.nm-prog-card-meta {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    border-left: 1.5px solid rgba(0,0,0,.05);
    min-width: 160px;
}

.nm-prog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.nm-meta-icon {
    font-size: 13px;
}

.nm-prog-meta-tarif {
    margin-top: 4px;
}

.nm-no-events {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   FICHE ÉVÉNEMENT
   ============================================================ */
.nm-event-hero {
    min-height: 420px;
    background: var(--dark) center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.nm-event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,8,0,.92) 0%, rgba(26,8,0,.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    width: 100%;
}

.nm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
    font-weight: 500;
}

.nm-breadcrumb a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
}

.nm-breadcrumb a:hover {
    color: var(--orange3);
}

.nm-event-hero-title {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: .95;
}

.nm-event-content {
    padding: 60px 0 80px;
}

.nm-event-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.nm-event-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.nm-event-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.nm-event-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink);
}

.nm-event-body h2, .nm-event-body h3 {
    font-family: var(--font-title);
    color: var(--violet);
    margin: 28px 0 12px;
    text-transform: uppercase;
}

.nm-event-body p { margin-bottom: 16px; }
.nm-event-body blockquote {
    border-left: 4px solid var(--orange);
    padding: 12px 20px;
    margin: 24px 0;
    background: var(--sand);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    color: var(--violet);
    font-weight: 500;
}

/* Sidebar sticky */
.nm-event-sidebar {
    position: sticky;
    top: 80px;
}

.nm-event-info-box {
    background: var(--white);
    border: 2px solid rgba(0,0,0,.07);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.nm-info-box-title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: -.3px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--orange);
}

.nm-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.nm-info-row:last-of-type {
    border-bottom: none;
}

.nm-info-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.nm-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nm-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
}

.nm-info-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: block;
}

.nm-maps-link {
    font-size: 12px;
    color: var(--violet);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    transition: color .15s;
}

.nm-maps-link:hover { color: var(--orange); }

.nm-info-cta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,.06);
}

.nm-resa-btn {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 15px;
}

.nm-free-badge {
    background: rgba(6,214,160,.1);
    color: #1B5E20;
    border: 1.5px solid rgba(6,214,160,.25);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.nm-info-share {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nm-share-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
}

.nm-share-btn {
    font-size: 11px;
    font-weight: 700;
    color: var(--violet);
    text-decoration: none;
    border: 1px solid var(--violet);
    padding: 3px 10px;
    border-radius: 20px;
    transition: all .15s;
}

.nm-share-btn:hover {
    background: var(--violet);
    color: var(--white);
}

.nm-back-link {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    transition: color .15s;
    padding: 12px 0;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nm-back-link:hover { color: var(--orange); }

/* Événements similaires */
.nm-similar-events {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 2px solid rgba(0,0,0,.06);
}

.nm-similar-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: -.3px;
    margin-bottom: 24px;
}

.nm-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.nm-similar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(0,0,0,.06);
    text-decoration: none;
    color: inherit;
    transition: transform .2s;
    cursor: none;
    display: block;
}

.nm-similar-card:hover {
    transform: translateY(-3px);
    color: inherit;
}

.nm-similar-card-img {
    height: 100px;
    overflow: hidden;
}

.nm-similar-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nm-similar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #2d1810, #0f0408);
}

.nm-similar-body {
    padding: 12px 14px;
}

.nm-similar-body h4 {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}

.nm-similar-body p {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 6px;
}

/* ============================================================
   PAGE LE FESTIVAL
   ============================================================ */
.nm-festival-manifeste {
    padding: 80px 48px;
    background: var(--cream);
}

.nm-manifeste-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 16px;
}

.nm-manifeste-col {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(0,0,0,.06);
    transition: transform .2s;
}

.nm-manifeste-col:hover { transform: translateY(-4px); }

.nm-manifeste-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.nm-manifeste-col h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--violet);
    letter-spacing: -.3px;
    margin-bottom: 12px;
}

.nm-manifeste-col p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.nm-festival-histoire {
    padding: 80px 48px;
    background: var(--sand);
}

.nm-histoire-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.nm-histoire-content {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink);
    margin-top: 16px;
}

.nm-histoire-content p { margin-bottom: 16px; }

.nm-histoire-quote {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.nm-histoire-quote::before {
    content: '"';
    position: absolute;
    top: -20px; left: 30px;
    font-size: 100px;
    font-family: var(--font-title);
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.nm-histoire-quote blockquote {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -.3px;
    line-height: 1.3;
    font-style: normal;
}

.nm-histoire-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255,255,255,.35);
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.nm-festival-timeline {
    padding: 80px 48px;
    background: var(--cream);
}

.nm-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    margin-top: 16px;
    padding-left: 80px;
}

.nm-timeline::before {
    content: '';
    position: absolute;
    left: 40px; top: 10px; bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--violet));
}

.nm-timeline-item {
    display: grid;
    grid-template-columns: 60px 20px 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.nm-timeline-year {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    text-align: right;
}

.nm-timeline-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--violet);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--violet);
    position: relative;
    left: -79px;
}

.nm-timeline-content h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}

.nm-timeline-content p {
    font-size: 13px;
    color: var(--muted);
}

.nm-festival-sos {
    padding: 80px 48px;
    background: var(--dark);
}

.nm-sos-block {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.nm-sos-logo {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 900;
    color: var(--orange3);
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    border: 3px solid var(--orange);
    padding: 20px;
    border-radius: var(--radius);
}

.nm-sos-text h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.nm-sos-text p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* ============================================================
   PAGE PARTENAIRES
   ============================================================ */
.nm-partners-section {
    padding: 60px 0 80px;
}

.nm-partners-intro {
    margin-bottom: 48px;
}

.nm-partners-group {
    margin-bottom: 48px;
}

.nm-partners-group-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--violet);
    letter-spacing: .06em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.nm-partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.nm-partners-dark {
    background: var(--dark);
    padding: 28px;
    border-radius: var(--radius-lg);
}

.nm-partner-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: background .2s, border-color .2s, transform .15s;
    text-decoration: none;
    cursor: none;
    min-height: 70px;
}

.nm-partner-tile:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-2px);
}

.nm-partner-tile img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .7;
    transition: opacity .2s;
}

.nm-partner-tile:hover img { opacity: 1; }

.nm-partner-tile-name {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.6);
    text-align: center;
}

.nm-become-partner {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--orange), var(--violet));
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.nm-become-partner-content h3 {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.nm-become-partner-content p {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.65;
}

.nm-become-partner-content .btn-primary {
    background: var(--dark);
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.nm-contact-section {
    padding: 60px 0 80px;
}

.nm-contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

.nm-contact-form-title {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 28px;
}

.nm-form-success {
    background: rgba(6,214,160,.12);
    border: 1.5px solid rgba(6,214,160,.3);
    color: #1B5E20;
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.nm-form-error {
    background: rgba(194,0,110,.08);
    border: 1.5px solid rgba(194,0,110,.25);
    color: var(--violet);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.nm-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nm-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nm-form-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink);
}

.nm-form-field input,
.nm-form-field select,
.nm-form-field textarea {
    border: 2px solid rgba(0,0,0,.1);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    transition: border-color .15s;
    outline: none;
}

.nm-form-field input:focus,
.nm-form-field select:focus,
.nm-form-field textarea:focus {
    border-color: var(--orange);
}

.nm-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A7060' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.nm-form-field textarea {
    resize: vertical;
    min-height: 140px;
}

/* Infos contact sidebar */
.nm-contact-info-block,
.nm-contact-social-block,
.nm-contact-presse-block {
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
}

.nm-contact-info-block h3,
.nm-contact-social-block h4,
.nm-contact-presse-block h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: -.2px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
}

.nm-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.nm-contact-info-item:last-child { border-bottom: none; }

.nm-ci-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.nm-contact-info-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 2px;
}

.nm-contact-info-item a,
.nm-contact-info-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

.nm-contact-info-item a:hover { color: var(--orange); }

.nm-contact-social-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nm-contact-social-link {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--violet);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .15s;
}

.nm-contact-social-link:hover { color: var(--orange); }

.nm-contact-presse-block p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* ============================================================
   INDEX / ARCHIVE
   ============================================================ */
.nm-archive-section {
    padding: 120px 0 80px;
}

.nm-archive-header {
    margin-bottom: 48px;
}

.nm-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.nm-post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(0,0,0,.06);
    transition: transform .2s;
}

.nm-post-card:hover { transform: translateY(-4px); }

.nm-post-card-img {
    display: block;
    height: 200px;
    overflow: hidden;
}

.nm-post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nm-post-card-body {
    padding: 20px;
}

.nm-post-card-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: -.3px;
    margin-bottom: 10px;
}

.nm-post-card-title a {
    color: inherit;
    text-decoration: none;
}

.nm-post-card-title a:hover { color: var(--orange); }

.nm-post-card-excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.nm-pagination {
    margin-top: 48px;
    text-align: center;
}

.nm-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.nm-pagination .page-numbers {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: var(--radius);
    border: 2px solid rgba(0,0,0,.1);
    color: var(--ink);
    text-decoration: none;
    transition: all .15s;
}

.nm-pagination .page-numbers.current,
.nm-pagination .page-numbers:hover {
    background: var(--violet);
    color: var(--white);
    border-color: var(--violet);
}

.nm-no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 1024px) {
    .nm-container { padding: 0 32px; }
    .nm-hero { padding: 100px 32px 60px; }
    .nm-une-grid { grid-template-columns: 1fr 1fr; }
    .nm-event-layout { grid-template-columns: 1fr 280px; }
    .nm-page-banner { padding: 120px 32px 50px; }
    .nm-festival-histoire { padding: 60px 32px; }
}

@media (max-width: 768px) {
    .nm-container { padding: 0 20px; }
    .nm-hero { padding: 90px 20px 50px; }
    .nm-hero-bottom { flex-direction: column; gap: 24px; }
    .nm-hero-bottom-right { text-align: left; }
    .nm-hero-dates { text-align: left; }
    .nm-hero-cats-list { text-align: left; }
    .nm-une-grid { grid-template-columns: 1fr; }
    .nm-event-layout { grid-template-columns: 1fr; }
    .nm-event-sidebar { position: static; }
    .nm-similar-grid { grid-template-columns: 1fr 1fr; }
    .nm-festival-manifeste,
    .nm-festival-histoire,
    .nm-festival-timeline { padding: 60px 20px; }
    .nm-manifeste-cols { grid-template-columns: 1fr; }
    .nm-histoire-layout { grid-template-columns: 1fr; }
    .nm-contact-layout { grid-template-columns: 1fr; }
    .nm-form-row { grid-template-columns: 1fr; }
    .nm-prog-card { grid-template-columns: 80px 1fr; }
    .nm-prog-card-meta { display: none; }
    .nm-partners-logos-grid { grid-template-columns: repeat(2, 1fr); }
    .nm-page-banner { padding: 100px 20px 40px; }
    .nm-sos-block { grid-template-columns: 1fr; text-align: center; }
    .nm-timeline { padding-left: 60px; }
}

@media (max-width: 480px) {
    .nm-hero-title { font-size: 64px; }
    .nm-similar-grid { grid-template-columns: 1fr; }
    .nm-partners-logos-grid { grid-template-columns: 1fr; }
}