/* ── FONT ── */
@font-face {
    font-family: 'BukhariScript';
    src: url('../fonts/bukhari-script.woff2') format('woff2'),
         url('../fonts/bukhari-script.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* dm-sans-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/dm-sans-v17-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/dm-sans-v17-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ── TOKENS ── */
:root {
    --blue-dark: #1a4a6e;
    --blue-mid: #2a6a94;
    --blue-light: #4a9bbf;
    --blue-pale: #d0ebf5;
    --coral: #c75a42;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --text-dark: #1a1a1a;
    --text-mid: #3a3a3a;
    --text-light: #7a7a7a;
    --nav-h: 72px;
    --f-script: 'BukhariScript', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: var(--nav-h);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(26, 74, 110, 0.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.nav-logo {
    font-family: var(--f-script);
    color: var(--cream);
    font-size: 1.8rem;
    text-shadow: 3px 3px 0 var(--coral);
    text-decoration: none;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(245, 240, 232, .8);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform .2s;
}

.nav-links a:hover, .nav-links a[aria-current="page"] {
    color: var(--cream);
}

.nav-links a:hover::after, .nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 14px 10px;
    background: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all .3s;
}

/* ── COMMON ── */
.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--f-script);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--blue-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.btn-primary {
    background: var(--coral);
    color: var(--cream);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .05em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform .2s, background .2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary:hover {
    background: #b04a34;
    transform: translateY(-2px);
}

/* ── SOCIAL ICONS ── */
.hero-si-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(245, 240, 232, .4);
    transition: border-color .2s, background .2s, transform .2s;
}

.hero-si-link:hover {
    border-color: var(--cream);
    background: rgba(245, 240, 232, .15);
    transform: translateY(-3px);
}

.hero-si-link svg {
    width: 20px;
    height: 20px;
}

.hero-social-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.si-yt {
    background: #ff0000;
}

.si-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.si-tt {
    background: #010101;
}

.si-fb {
    background: #1877f2;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: white;
    border: 1.5px solid var(--cream-dark);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    border-radius: 4px;
    min-width: 200px;
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-mid);
    box-shadow: 0 8px 24px rgba(42, 106, 148, .15);
}

/* ── NETWORK PILLS ── */
.network-callout {
    margin-top: 3rem;
    background: var(--blue-dark);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.network-callout p {
    color: rgba(245, 240, 232, .8);
    font-size: .95rem;
    margin-bottom: 1.5rem;
}

.network-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

.network-pill {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--cream);
    padding: .5rem 1.2rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s;
}

.network-pill:hover {
    background: rgba(255, 255, 255, .2);
}

/* ── FOOTER ── */
footer {
    background: #0f2a3f;
    color: rgba(245, 240, 232, .6);
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: .85rem;
}

.footer-logo {
    font-family: var(--f-script);
    color: var(--cream);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 0 var(--coral);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(245, 240, 232, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}

.footer-social a:hover {
    border-color: var(--cream);
    background: rgba(255, 255, 255, .1);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(245, 240, 232, .5);
    text-decoration: none;
    transition: color .2s;
}

.footer-nav a:hover {
    color: var(--cream);
}

/* ── FOCUS ── */
:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── PAGE: ACCUEIL ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a3d5c 0%, #2a6a94 45%, #3a8bb5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(199, 90, 66, .15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74, 155, 191, .2) 0%, transparent 50%);
}

.hero-logo {
    font-family: var(--f-script);
    font-size: clamp(4rem, 12vw, 9rem);
    color: var(--cream);
    text-shadow: 5px 5px 0 var(--coral), 8px 8px 0 rgba(199, 90, 66, .4);
    line-height: 1.1;
    position: relative;
    z-index: 1;
    animation: fadeDown .8s ease both;
}

.hero-tagline {
    font-size: clamp(.85rem, 1.8vw, 1rem);
    color: rgba(245, 240, 232, .8);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 1.2rem;
    position: relative;
    z-index: 1;
    animation: fadeUp .8s .2s ease both;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeUp .8s .4s ease both;
}

.date-banner {
    background: var(--coral);
    color: var(--cream);
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .05em;
}

.date-banner a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.social-section {
    background: var(--cream);
    padding: 5rem 2rem;
    text-align: center;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo-section {
    background: var(--blue-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.promo-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 3rem;
}

.promo-card .section-label {
    color: var(--blue-pale);
}

.promo-card .section-title {
    color: var(--cream);
    margin-bottom: .5rem;
}

.promo-date-badge {
    display: inline-block;
    background: var(--coral);
    color: white;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.promo-card p {
    color: rgba(245, 240, 232, .75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── PAGE: SPECTACLE ── */
.spectacle-hero {
    background: linear-gradient(135deg, #1a3d5c 0%, #2a6a94 60%, #3a8bb5 100%);
    padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * var(--nav-h));
}

.spectacle-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 80%, rgba(199, 90, 66, .2) 0%, transparent 60%);
}

.spectacle-hero .section-label {
    color: rgba(245, 240, 232, .7);
    position: relative;
    z-index: 1;
}

.spectacle-title {
    font-family: var(--f-script);
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--cream);
    text-shadow: 5px 5px 0 var(--coral), 8px 8px 0 rgba(199, 90, 66, .3);
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.spec-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.spectacle-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.spectacle-layout picture {
    display: block;
}

.affiche-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(26, 74, 110, .25);
    display: block;
}

.pitch-block {
    background: white;
    border-left: 5px solid var(--coral);
    padding: 2.5rem;
    border-radius: 0 8px 8px 0;
}

.pitch-block p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.pitch-block p + p {
    margin-top: 1rem;
}

.pitch-block .tagline {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-top: 1.5rem;
    line-height: 1.7;
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border: 1.5px solid var(--cream-dark);
    border-radius: 8px;
    padding: 1.8rem;
    text-align: center;
}

.info-card .ico {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.info-card .lbl {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: .4rem;
}

.info-card .val {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-dark);
}

.info-card .val a {
    color: var(--blue-mid);
    text-decoration: none;
}

.info-card .val a:hover {
    text-decoration: underline;
}

.resa-block {
    background: var(--blue-dark);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    color: var(--cream);
    margin-bottom: 2rem;
}

.resa-block h2 {
    font-family: var(--f-script);
    font-size: 2rem;
    margin-bottom: .75rem;
    text-shadow: 3px 3px 0 var(--coral);
}

.resa-block > p {
    color: rgba(245, 240, 232, .75);
    margin-bottom: 2rem;
}

.billetweb-wrap {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1.5px solid var(--cream-dark);
    text-align: left;
}

.map-section {
    margin-bottom: 3rem;
}

.map-section h2 {
    font-family: var(--f-script);
    font-size: 1.6rem;
    color: var(--blue-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(199, 90, 66, .3);
}

.map-embed {
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--cream-dark);
}

.map-address {
    margin-top: .6rem;
    text-align: center;
    font-size: .85rem;
    color: var(--blue-dark);
    opacity: .6;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.presse-block {
    background: white;
    border-radius: 12px;
    border: 1.5px solid var(--cream-dark);
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.presse-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-mid), var(--coral));
}

.presse-block h2 {
    font-family: var(--f-script);
    font-size: 1.6rem;
    color: var(--blue-dark);
    margin-bottom: 1.5rem;
}

.presse-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.presse-info {
    flex: 1;
    min-width: 240px;
}

.presse-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: .25rem;
}

.presse-agency {
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.presse-agency a {
    color: var(--blue-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--coral);
    padding-bottom: 1px;
    transition: color .2s, border-color .2s;
}

.presse-agency a:hover {
    color: var(--coral);
}

.presse-detail {
    font-size: .95rem;
    color: var(--text-mid);
    margin-bottom: .5rem;
}

.presse-detail a {
    color: var(--blue-mid);
    text-decoration: none;
}

.presse-detail a:hover {
    text-decoration: underline;
}

.dp-placeholder {
    background: var(--cream);
    border: 2px dashed var(--cream-dark);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 220px;
}

.dp-placeholder p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
}

.dp-placeholder strong {
    display: block;
    color: var(--blue-dark);
    font-size: 1rem;
    margin-bottom: .5rem;
}

/* ── PAGE: QUI SOMMES-NOUS ── */
.qui-hero {
    background: var(--blue-dark);
    padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
    text-align: center;
    margin-top: calc(-1 * var(--nav-h));
}

.qui-hero .section-title {
    color: var(--cream);
    text-shadow: 3px 3px 0 var(--coral);
}

.qui-hero .section-sub {
    color: rgba(245, 240, 232, .7);
}

.qui-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.bio-block {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    border: 1.5px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.bio-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-mid), var(--coral));
}

.portraits-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.portrait-card {
    text-align: center;
}

.portrait-card picture {
    display: block;
}

.portrait-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(26, 74, 110, .18);
    display: block;
    margin: 0 auto 1rem;
}

.portrait-name {
    font-family: var(--f-script);
    font-size: 1.4rem;
    color: var(--blue-dark);
    text-shadow: 2px 2px 0 rgba(199, 90, 66, .25);
}

.portrait-role {
    font-size: .85rem;
    color: var(--text-light);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .25rem;
}

.bio-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
}

.bio-text p + p {
    margin-top: 1.2rem;
}

/* ── PAGE: CONTACT ── */
.contact-hero {
    background: linear-gradient(135deg, #1a3d5c, #2a6a94);
    padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
    text-align: center;
    margin-top: calc(-1 * var(--nav-h));
}

.contact-hero .section-title {
    color: var(--cream);
    text-shadow: 3px 3px 0 var(--coral);
}

.contact-hero .section-sub {
    color: rgba(245, 240, 232, .75);
}

.contact-body {
    max-width: 620px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    border: 1.5px solid var(--cream-dark);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.contact-card-header {
    background: var(--blue-dark);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card-header span {
    font-size: 1.5rem;
}

.contact-card-header h2 {
    font-family: var(--f-script);
    color: var(--cream);
    font-size: 1.3rem;
    text-shadow: 2px 2px 0 var(--coral);
}

.contact-card-body {
    padding: 1.75rem 2rem;
}

.contact-card-body p {
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: .975rem;
}

.contact-social-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.contact-social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 1.1rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: border-color .2s, transform .15s;
}

.contact-social-item:hover {
    border-color: var(--blue-mid);
    transform: translateX(4px);
}

.contact-presse {
    background: var(--cream);
    border-radius: 8px;
    padding: 1.5rem;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(26, 74, 110, .98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .spectacle-layout {
        grid-template-columns: 1fr;
    }

    .affiche-img {
        max-width: 320px;
        margin: 0 auto;
    }

    .presse-contact {
        flex-direction: column;
    }

    .portraits-row {
        gap: 1rem;
    }

    .portrait-img {
        max-width: 150px;
    }
}
