:root {
    --ink: #07152f;
    --coal: #0b1b3f;
    --navy: #102f68;
    --blue: #1f5ea8;
    --sky: #eaf3ff;
    --stone: #f5f8fc;
    --paper: #ffffff;
    --muted: #647086;
    --line: rgba(7, 21, 47, .12);
    --red: #d9222a;
    --red-dark: #a7111b;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(7, 21, 47, .18);
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--stone);
    font-family: var(--font-sans);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 50%;
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr) auto;
    gap: clamp(16px, 2.4vw, 34px);
    align-items: center;
    width: 100%;
    min-height: 92px;
    padding: 8px max(22px, calc((100vw - 1240px) / 2));
    color: var(--white);
    background: linear-gradient(180deg, rgba(7, 21, 47, .78), rgba(7, 21, 47, .42));
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(20px);
    transform: translateX(-50%);
}

.site-header.scrolled {
    background: rgba(7, 21, 47, .96);
    box-shadow: 0 18px 50px rgba(3, 9, 24, .22);
}

.brand-logo {
    display: grid;
    place-items: center;
    width: 136px;
    height: 74px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .36));
}

.brand img,
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 36px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}

.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0;
    white-space: nowrap;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.social-link {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--red);
    border-color: rgba(255, 255, 255, .34);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link svg rect,
.social-link svg circle,
.social-link svg path {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link svg path {
    stroke-width: 0;
}

.social-link svg rect,
.social-link svg circle,
.social-link svg path[d="M16.9 7.2h.1"] {
    fill: none;
    stroke-width: 1.9;
}

.header-call,
.primary-button,
.secondary-button,
.ghost-button,
.bouton-fantome {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.header-call,
.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--red));
    font-weight: 800;
}

.secondary-button,
.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .24);
}

.ghost-button,
.bouton-fantome {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.bouton-fantome:hover,
.header-call:hover {
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 4px;
    background: transparent;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: 150px max(24px, calc((100vw - 1240px) / 2)) 132px;
    color: var(--white);
}

.hero-slider,
.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.04);
    animation: hero-diaporama 18s infinite;
    animation-delay: calc(var(--slide-index) * 6s);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(3, 9, 24, .92), rgba(7, 21, 47, .72) 44%, rgba(7, 21, 47, .24)),
        linear-gradient(0deg, rgba(3, 9, 24, .9), rgba(3, 9, 24, .08) 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
}

.hero-main-copy {
    display: grid;
    gap: 18px;
    align-content: end;
    max-width: 760px;
}

.eyebrow,
.meta {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(52px, 8vw, 122px);
    font-weight: 900;
    line-height: .88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-kicker {
    margin: 0;
    color: var(--white);
    font-size: clamp(22px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.hero-lede {
    width: min(620px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-panel {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1240px, 100%);
    border: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 0;
    background: rgba(7, 21, 47, .78);
    backdrop-filter: blur(20px);
    transform: translateX(-50%);
}

.hero-panel div {
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.hero-panel div:last-child {
    border-right: 0;
}

.hero-panel strong {
    display: block;
    color: var(--red);
    font-size: 28px;
}

.hero-panel span {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

@keyframes hero-diaporama {
    0%,
    28% {
        opacity: 1;
        transform: scale(1);
    }

    34%,
    100% {
        opacity: 0;
        transform: scale(1.04);
    }
}

.search-band,
.about-band,
.services,
.realisations,
.company-video,
.management,
.contact {
    padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
    display: grid;
    grid-template-columns: minmax(180px, 300px) 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 34px;
}

.section-head-simple {
    display: block;
    margin-bottom: 24px;
}

.section-head h2,
.realisations h2,
.company-video h2,
.management h2,
.contact h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-band {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, .72fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
    background: var(--paper);
}

.about-copy {
    display: grid;
    gap: 18px;
}

.about-copy h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 68px);
    line-height: .96;
    text-transform: uppercase;
}

.about-copy p {
    width: min(690px, 100%);
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.about-copy .primary-button {
    width: max-content;
    margin-top: 8px;
}

.about-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.about-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.about-stamp {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 3px;
    min-width: 210px;
    padding: 18px;
    color: var(--white);
    background: rgba(7, 21, 47, .82);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
}

.about-stamp strong {
    color: var(--red);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .08em;
}

.about-stamp span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.engagement-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 12px;
    background: var(--line);
}

.engagement-card {
    display: grid;
    gap: 14px;
    padding: 30px;
    background: var(--stone);
}

.engagement-card span {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
}

.engagement-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
}

.engagement-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.controles-opportunites {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 380px);
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.search-band {
    background: linear-gradient(180deg, var(--stone), var(--paper));
}

.segmented {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.segmented button {
    min-width: 96px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, .52);
    cursor: pointer;
}

.segmented button.active {
    color: var(--white);
    background: var(--ink);
}

.search-input {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.search-input input,
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    border-radius: 4px;
    outline: none;
}

.search-input input:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(31, 94, 168, .16);
}

.result-line {
    margin-bottom: 18px;
    color: var(--muted);
}

.grille-opportunites {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.grille-opportunites.loading {
    opacity: .55;
}

.empty-state {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--muted);
}

.carte-opportunite,
.service-tile {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 10px 36px rgba(32, 25, 16, .08);
}

.carte-opportunite {
    display: grid;
    align-content: start;
    overflow: hidden;
    min-height: 100%;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.carte-opportunite:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 94, 168, .22);
    box-shadow: 0 24px 70px rgba(7, 21, 47, .16);
}

.media-opportunite {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.media-opportunite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.carte-opportunite:hover .media-opportunite img {
    transform: scale(1.05);
}

.media-opportunite span {
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: auto;
    padding: 9px 12px;
    color: var(--white);
    background: rgba(7, 21, 47, .82);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.corps-opportunite {
    display: grid;
    gap: 20px;
    padding: 24px;
}

.corps-opportunite h3,
.service-tile h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.corps-opportunite p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.details-opportunite,
.pied-opportunite {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.details-opportunite {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.details-opportunite span {
    padding: 7px 9px;
    background: rgba(31, 94, 168, .08);
    border: 1px solid rgba(31, 94, 168, .1);
    border-radius: 0;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.services {
    background: var(--ink);
    color: var(--white);
}

.services .section-head h2 {
    color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.16);
}

.service-tile {
    padding: 32px;
    color: var(--white);
    background: var(--coal);
    border: 0;
    box-shadow: none;
}

.service-tile span {
    color: var(--red);
    font-weight: 900;
}

.service-tile p {
    color: rgba(255,255,255,.7);
    line-height: 1.65;
}

.realisations {
    overflow: hidden;
    background: var(--paper);
}

.album-shell {
    position: relative;
}

.album-viewport {
    width: calc(100vw - max(24px, calc((100vw - 1180px) / 2)));
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
    padding: 4px 0 18px;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.album-viewport::-webkit-scrollbar {
    display: none;
}

.album-track {
    display: flex;
    width: max-content;
    gap: 16px;
}

.album-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--white);
    background: rgba(7, 21, 47, .84);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    box-shadow: 0 18px 44px rgba(7, 21, 47, .26);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.album-control:hover {
    background: var(--red);
    border-color: rgba(255, 255, 255, .38);
    transform: translateY(-50%) scale(1.04);
}

.album-control svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.album-control-prev {
    left: 12px;
}

.album-control-next {
    right: 12px;
}

.album-card {
    position: relative;
    flex: 0 0 clamp(250px, 30vw, 410px);
    height: clamp(260px, 33vw, 420px);
    margin: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border: 1px solid rgba(7, 21, 47, .08);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(7, 21, 47, .12);
    scroll-snap-align: start;
}

.album-featured {
    flex-basis: clamp(310px, 38vw, 520px);
}

.album-wide {
    flex-basis: clamp(300px, 36vw, 500px);
}

.album-tall {
    flex-basis: clamp(210px, 23vw, 320px);
}

.album-card::after {
    content: "";
    position: absolute;
    inset: 38% 0 0;
    background: linear-gradient(0deg, rgba(3, 9, 24, .82), rgba(3, 9, 24, 0));
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease, filter .75s ease;
}

.album-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.03);
}

.album-card figcaption {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 14px;
}

.album-card figcaption strong {
    display: inline-flex;
    max-width: 100%;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(7, 21, 47, .78);
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.company-video {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(420px, 1.28fr);
    gap: 48px;
    align-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--ink), var(--navy));
}

.video-copy {
    display: grid;
    gap: 18px;
}

.video-copy p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.65;
}

.video-frame {
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
}

.video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--ink);
    object-fit: cover;
}

.management {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 48px;
    align-items: center;
    background: var(--paper);
}

.management-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 26px 0;
    list-style: none;
}

.check-list li {
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: inset 0 0 0 4px var(--paper);
    border: 1px solid var(--red);
}

.management-image {
    overflow: hidden;
    box-shadow: var(--shadow);
}

.management-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.contact {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: start;
    background: var(--navy);
    color: var(--white);
}

.contact-info p {
    color: rgba(255,255,255,.76);
    font-size: 18px;
}

.contact-info a {
    display: inline-block;
    margin-top: 14px;
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
}

.lead-form {
    display: grid;
    gap: 14px;
    padding: 26px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.lead-form textarea {
    resize: vertical;
}

.champ-telephone {
    display: grid;
    gap: 8px;
}

.telephone-compose {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    overflow: hidden;
    min-height: 48px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.telephone-compose select,
.telephone-compose input {
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    color: var(--ink);
    background: transparent;
    border: 0;
}

.telephone-compose select {
    border-right: 1px solid var(--line);
    font-weight: 900;
}

.telephone-compose input:focus,
.telephone-compose select:focus {
    outline: 2px solid rgba(31, 94, 168, .18);
    outline-offset: -2px;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--blue);
    font-weight: 800;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr;
    align-items: center;
    gap: 28px;
    padding: 40px max(24px, calc((100vw - 1180px) / 2)) 88px;
    color: rgba(255,255,255,.72);
    background: var(--ink);
}

.site-footer img {
    width: 172px;
    height: 90px;
    object-fit: contain;
    padding: 0;
    background: transparent;
    border-radius: 0;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}

.site-footer nav,
.site-footer address {
    display: grid;
    gap: 10px;
    font-style: normal;
}

.site-footer a {
    color: var(--red);
    font-weight: 900;
}

.footer-socials {
    padding-top: 4px;
}

.footer-socials .social-link {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.barre-mobile {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    background: rgba(7, 21, 47, .94);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.barre-mobile a {
    display: grid;
    place-items: center;
    min-height: 42px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    border-radius: 5px;
    background: rgba(255,255,255,.08);
}

.barre-mobile a:nth-child(3) {
    background: var(--red);
}

.reveal,
.reveler {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible,
.reveler.visible {
    opacity: 1;
    transform: none;
}

.fiche-hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 150px max(24px, calc((100vw - 1180px) / 2)) 72px;
    color: var(--white);
}

.fiche-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fiche-contenu {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    width: min(760px, 100%);
}

.fiche-contenu h1,
.page-simple h1,
.admin h1 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(38px, 5.8vw, 78px);
    line-height: 1;
}

.fiche-contenu p {
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 21px;
    line-height: 1.45;
}

.fiche-contenu strong {
    color: var(--white);
    font-size: 30px;
}

.fiche-details,
.page-simple {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 380px);
    gap: 36px;
    padding: 96px max(24px, calc((100vw - 1180px) / 2));
    background: var(--paper);
}

.fiche-details h2,
.page-simple h1 {
    margin: 0 0 20px;
    font-family: var(--font-sans);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
}

.fiche-details p,
.page-simple p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.fiche-details aside {
    display: grid;
    align-content: start;
    gap: 10px;
}

.fiche-details aside span {
    padding: 14px 16px;
    background: var(--sky);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-weight: 800;
}

.champ-cache {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.modale-opportunite {
    width: min(1040px, calc(100% - 28px));
    max-height: min(860px, calc(100svh - 28px));
    padding: 0;
    color: var(--ink);
    background: var(--paper);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 40px 120px rgba(0,0,0,.42);
}

.modale-opportunite::backdrop {
    background: rgba(3, 9, 24, .72);
    backdrop-filter: blur(8px);
}

.modale-grille {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    min-height: 620px;
}

.modale-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modale-contenu {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 30px;
    overflow: auto;
}

.modale-contenu h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.05;
}

.modale-contenu p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.modale-contenu strong {
    color: var(--blue);
    font-size: 24px;
}

.formulaire-modale {
    padding: 18px;
    box-shadow: none;
    background: var(--sky);
}

.fermer-modale {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: rgba(7, 21, 47, .86);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.page-admin {
    background: var(--sky);
}

.admin {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 80px;
}

.admin-entete,
.admin-carte {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(7, 21, 47, .08);
}

.admin-entete {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 18px;
    margin-bottom: 18px;
}

.admin-grille {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 18px;
}

.admin-carte {
    padding: 24px;
}

.formulaire-admin {
    display: grid;
    gap: 14px;
}

.formulaire-admin label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.formulaire-admin input,
.formulaire-admin select,
.formulaire-admin textarea,
.champ-slug-auto {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.champ-slug-auto {
    display: grid;
    align-content: center;
    gap: 4px;
}

.champ-slug-auto span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.champ-slug-auto strong {
    color: var(--blue);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.admin-ligne {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.admin-titre-ligne {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.admin-liste {
    display: grid;
    gap: 10px;
    margin: 16px 0 28px;
}

.admin-liste article {
    display: grid;
    gap: 5px;
    padding: 14px;
    background: var(--sky);
    border: 1px solid var(--line);
}

.admin-liste span,
.admin-liste a,
.aide-admin {
    color: var(--muted);
    font-size: 13px;
}

.alerte {
    padding: 14px 16px;
    border-radius: 4px;
    font-weight: 800;
}

.alerte.succes {
    background: rgba(31, 94, 168, .1);
    color: var(--blue);
}

.alerte.erreur {
    background: rgba(217, 34, 42, .1);
    color: var(--red-dark);
}

.page-admin-connexion {
    min-height: 100vh;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(7, 21, 47, .94), rgba(16, 47, 104, .9)),
        url("huit.jpeg") center / cover;
}

.admin-connexion {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    min-height: 100vh;
}

.admin-connexion-visuel {
    display: grid;
    align-content: space-between;
    padding: 46px max(32px, calc((100vw - 1180px) / 2)) 54px 54px;
    color: var(--white);
}

.admin-logo-connexion,
.admin-logo {
    display: inline-flex;
    align-items: center;
}

.admin-logo-connexion img {
    width: 190px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .32));
}

.admin-connexion-visuel h1 {
    width: min(680px, 100%);
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(48px, 7vw, 94px);
    line-height: .96;
}

.admin-connexion-visuel p:not(.eyebrow) {
    width: min(560px, 100%);
    color: rgba(255, 255, 255, .78);
    font-size: 20px;
    line-height: 1.55;
}

.admin-connexion-carte {
    display: grid;
    align-content: center;
    gap: 24px;
    padding: 44px;
    background: rgba(255, 255, 255, .96);
    border-left: 1px solid rgba(255, 255, 255, .26);
    box-shadow: -28px 0 80px rgba(0, 0, 0, .2);
}

.admin-connexion-carte h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 40px;
}

.admin-shell {
    display: grid;
    grid-template-columns: 288px minmax(0, 1fr);
    min-height: 100vh;
    background: #f3f7fc;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    height: 100vh;
    padding: 26px 18px;
    color: var(--white);
    background: linear-gradient(180deg, var(--ink), var(--navy));
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.admin-logo {
    min-height: 94px;
    padding: 4px 8px;
}

.admin-logo img {
    width: 176px;
    height: 92px;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .28));
}

.admin-navigation {
    display: grid;
    align-content: start;
    gap: 8px;
}

.admin-navigation a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 14px;
    color: rgba(255, 255, 255, .76);
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
}

.admin-navigation a span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
}

.admin-navigation a.actif,
.admin-navigation a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .14);
}

.admin-navigation a.actif span {
    background: var(--red);
}

.admin-sidebar-bas {
    display: grid;
    gap: 10px;
}

.admin-sidebar-bas .bouton-fantome {
    width: 100%;
    color: var(--white);
    border-color: rgba(255, 255, 255, .2);
}

.admin-sidebar-bas form {
    margin: 0;
}

.admin-contenu {
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 28px clamp(18px, 4vw, 46px) 56px;
}

.admin-barre-haut {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    min-height: 92px;
    padding: 22px 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(7, 21, 47, .07);
}

.admin-barre-haut h1,
.admin-carte h2 {
    margin: 0;
    font-family: var(--font-sans);
}

.admin-barre-haut h1 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
}

.admin-profil {
    display: grid;
    justify-items: end;
    gap: 4px;
    color: var(--muted);
    font-size: 13px;
}

.admin-profil strong {
    color: var(--blue);
    text-transform: uppercase;
}

.admin-statistiques {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-statistiques article {
    display: grid;
    gap: 12px;
    padding: 22px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(7, 21, 47, .06);
}

.admin-statistiques span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-statistiques strong {
    color: var(--blue);
    font-size: 42px;
    line-height: 1;
}

.admin-grille-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 18px;
}

.admin-tableau-wrap {
    width: 100%;
    overflow: auto;
}

.admin-tableau {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.admin-tableau th,
.admin-tableau td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-tableau th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-tableau td {
    color: var(--ink);
    font-size: 14px;
}

.admin-tableau td a {
    color: var(--blue);
    font-weight: 800;
}

.admin-annonce-cellule {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.admin-annonce-cellule img {
    width: 82px;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
}

.admin-annonce-cellule span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.admin-actions form {
    margin: 0;
}

.bouton-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    color: var(--red-dark);
    background: rgba(217, 34, 42, .08);
    border: 1px solid rgba(217, 34, 42, .18);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 800;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 28px;
    padding: 0 10px;
    color: var(--blue);
    background: rgba(31, 94, 168, .1);
    border: 1px solid rgba(31, 94, 168, .16);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.statut-brouillon,
.statut-archivee {
    color: var(--muted);
    background: rgba(100, 112, 134, .1);
}

.statut-publiee,
.statut-traitee {
    color: var(--blue);
    background: rgba(31, 94, 168, .12);
}

.statut-nouvelle {
    color: var(--red-dark);
    background: rgba(217, 34, 42, .1);
}

.admin-formulaire-large {
    display: grid;
    gap: 18px;
}

.admin-formulaire-grille {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-apercu-image {
    overflow: hidden;
    width: min(440px, 100%);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-apercu-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.admin-demandes {
    display: grid;
    gap: 12px;
}

.admin-filtres {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    margin: 20px 0;
    padding: 16px;
    background: var(--sky);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-filtres label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-filtres input,
.admin-filtres select {
    min-width: 0;
    min-height: 42px;
    padding: 9px 11px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.admin-demandes article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 18px;
    background: var(--sky);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-demandes h3 {
    margin: 10px 0 4px;
    font-size: 20px;
}

.admin-demandes p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.admin-demandes a {
    color: var(--blue);
    font-weight: 900;
}

.admin-demandes select {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.statut-admin {
    min-height: 22px;
    margin: 0;
    color: var(--blue);
    font-weight: 900;
}

.chargement-admin {
    opacity: .58;
    pointer-events: none;
}

.modale-whatsapp {
    width: min(560px, calc(100% - 28px));
    padding: 0;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .36);
}

.modale-whatsapp::backdrop {
    background: rgba(3, 9, 24, .68);
    backdrop-filter: blur(8px);
}

.modale-whatsapp-contenu {
    display: grid;
    gap: 16px;
    padding: 28px;
    background: var(--paper);
}

.modale-whatsapp-contenu h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 34px;
}

.modale-whatsapp textarea {
    width: 100%;
    resize: vertical;
    padding: 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 116px 1fr auto;
        min-height: 70px;
        padding: 6px 16px;
    }

    .nav,
    .header-actions {
        display: none;
    }

    .menu-button {
        display: block;
        justify-self: end;
    }

    .nav.open {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 12px;
        background: rgba(7, 21, 47, .96);
        border: 1px solid rgba(255,255,255,.16);
    }

    .nav.open a {
        padding: 14px 8px;
    }

    .hero {
        min-height: auto;
        display: block;
        padding-top: 120px;
        padding-bottom: 34px;
    }

    .hero-panel {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 26px;
        grid-template-columns: 1fr;
        transform: none;
    }

    .hero-content {
        padding-top: 36px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-panel div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .hero-panel div:last-child {
        border-bottom: 0;
    }

    .section-head,
    .controles-opportunites,
    .about-band,
    .company-video,
    .management,
    .contact,
    .fiche-details,
    .admin-grille,
    .admin-entete {
        grid-template-columns: 1fr;
    }

    .grille-opportunites,
    .service-grid,
    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .about-visual,
    .about-visual img {
        min-height: 360px;
    }

    .album-viewport {
        width: calc(100vw - 24px);
        margin-right: -24px;
        overflow-x: auto;
        mask-image: none;
        scroll-snap-type: x mandatory;
    }

    .album-card {
        flex-basis: min(76vw, 330px);
        height: 300px;
        scroll-snap-align: start;
    }

    .album-control {
        width: 46px;
        height: 46px;
    }

    .album-featured,
    .album-wide {
        flex-basis: min(82vw, 360px);
    }

    .album-tall {
        flex-basis: min(66vw, 280px);
    }

    .management {
        gap: 28px;
    }

    .management-image {
        order: -1;
    }

    .site-footer {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .brand-logo {
        width: 116px;
        height: 60px;
    }

    .brand-logo img {
        width: 100%;
        height: 100%;
    }

    .admin-ligne {
        grid-template-columns: 1fr;
    }

    .barre-mobile {
        display: grid;
    }

    .modale-grille {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .modale-media {
        height: 260px;
    }

    .modale-contenu {
        padding: 22px;
    }

    .admin-connexion {
        grid-template-columns: 1fr;
    }

    .admin-connexion-visuel {
        min-height: 44vh;
        padding: 26px 22px;
    }

    .admin-connexion-carte {
        padding: 28px 22px 42px;
        box-shadow: none;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
        gap: 16px;
    }

    .admin-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .admin-sidebar-bas,
    .admin-barre-haut,
    .admin-demandes article {
        grid-template-columns: 1fr;
    }

    .admin-barre-haut {
        display: grid;
    }

    .admin-profil {
        justify-items: start;
    }

    .admin-statistiques,
    .admin-grille-dashboard,
    .admin-formulaire-grille,
    .admin-filtres,
    .champ-telephone {
        grid-template-columns: 1fr;
    }

    .admin-contenu {
        padding: 18px 14px 90px;
    }

    .telephone-compose {
        grid-template-columns: 104px minmax(0, 1fr);
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .nav {
        gap: 12px;
        font-size: 11px;
        letter-spacing: .04em;
    }

    .header-socials {
        display: none;
    }

    .header-call {
        padding: 0 12px;
        font-size: 12px;
    }

    .grille-opportunites {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .album-card,
    .album-featured,
    .album-wide,
    .album-tall {
        flex-basis: 78vw;
        height: 280px;
    }

    .album-card figcaption {
        left: 14px;
        right: 14px;
    }

    .album-card figcaption strong {
        font-size: 12px;
    }

    .album-control-prev {
        left: 6px;
    }

    .album-control-next {
        right: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .hero-slide:first-child {
        opacity: 1;
        transform: none;
    }
}
