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

:root {
    --cream: #F2EDE4;
    --ink: #1A1A1A;
    --ink-light: #5A5650;
    --accent: #C8A97E;
    --accent-deep: #8B5E3C;
    --warm-mid: #E8E0D5;
    --dark: #141210;
    --pad: clamp(20px, 5vw, 48px);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ── ACCESSIBILITÉ ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--pad);
    background: var(--ink);
    color: var(--cream);
    padding: 8px 16px;
    font-size: 13px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent-deep);
    outline-offset: 3px;
    border-radius: 2px;
}


/* ════════════════════════════════════════
   HEADER & NAVIGATION
════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--cream);
}

/* Fix: article > header must NOT be fixed */
article > header.project-header {
    position: static;
}

header > nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px var(--pad);
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--ink);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-decoration: none;
    font-weight: 400;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header > nav .nav-links {
        position: fixed;
        inset: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        z-index: 105;
        display: flex;
    }

    header > nav .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .nav-links a::after {
        display: none;
    }
}

/* ── TICKER ── */
.ticker-bar {
    border-top: 1px solid rgba(26, 26, 26, 0.15);
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px var(--pad);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--ink-light);
    background: var(--cream);
}

.ticker-center {
    text-align: center;
}

@media (max-width: 600px) {
    .ticker-center {
        display: none;
    }
}

/* ════════════════════════════════════════
   COMPOSANTS PARTAGÉS
════════════════════════════════════════ */

/* Section label */
.section-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink-light);
}

/* CTA bouton */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 13px 26px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    color: var(--ink);
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--ink);
    color: var(--cream);
}

.cta-btn.cta-light {
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn.cta-light:hover {
    background: var(--cream);
    color: var(--ink);
}

.cta-btn svg {
    transition: transform 0.3s;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
    border-top: 4px solid;
    border-image: linear-gradient(to right, #F5D76E, #E8885E, #C24A4A, #8B3A8A, #3A6B8A, #3A8A6B) 1;
    padding: clamp(40px, 6vw, 64px) var(--pad) clamp(32px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 24px;
}

.footer-brand .logo-large {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
}

.footer-brand small {
    font-size: 11px;
    color: var(--ink-light);
    letter-spacing: 0.04em;
}

.footer-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--ink);
    font-size: 10px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
    background: var(--ink);
    color: var(--cream);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-nav a {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink);
    text-decoration: none;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 0.3s;
}

.footer-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    footer {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        row-gap: 40px;
    }

    .footer-socials {
        justify-self: end;
    }

    .footer-nav {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px 24px;
    }

    .footer-nav a::after {
        right: auto;
        left: 0;
    }
}

@media (max-width: 420px) {
    footer {
        grid-template-columns: 1fr;
    }

    .footer-socials {
        justify-self: start;
    }
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 {
    animation-delay: 0.08s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.32s;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes expandBody {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }

    .logos-track, .skills-track {
        animation: none;
    }

    .logos-track-wrap {
        overflow-x: auto;
    }
}

/* ════════════════════════════════════════
   PAGE — ACCUEIL (index)
════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    padding: clamp(140px, 22vw, 200px) var(--pad) 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(44px, 8.5vw, 108px);
    line-height: 0.93;
    letter-spacing: -0.03em;
    max-width: 90vw;
    text-transform: uppercase;
    margin-bottom: clamp(32px, 5vw, 60px);
}

.hero-headline em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--accent-deep);
}

.hero-sub {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.hero-sub p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.65;
    max-width: 480px;
    color: var(--ink-light);
    font-weight: 300;
}

.scroll-hint {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--ink-light);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-hint::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--ink-light);
}

/* Works grid */
.works-section {
    padding: 0 var(--pad) clamp(60px, 10vw, 120px);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

@media (max-width: 900px) {
    .works-grid {
        grid-template-columns: 1fr 1fr;
    }

    .work-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 560px) {
    .works-grid {
        grid-template-columns: 1fr;
    }

    .work-card:nth-child(3) {
        display: block;
    }

    .work-card {
        aspect-ratio: 4/5 !important;
    }
}

.work-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #2a2520;
}

.work-card-mock {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card-mock,
.proj-card-bg {
    background-size: cover !important;
    background-position: center !important;
}


.work-card:hover .work-card-mock {
    transform: scale(1.05);
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(18px, 3vw, 28px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    color: #fff;
}

.work-client {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.work-title {
    font-size: 13px;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    opacity: 0.85;
    margin-bottom: 12px;
}

.work-type {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.work-type::before {
    content: '→';
}

/* List section */
.list-section {
    padding: 0 var(--pad) clamp(60px, 10vw, 120px);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.list-section > nav {
    display: flex;
    flex-direction: column;
    position: static;
    background: none;
    padding: 0;
    opacity: 1;
    pointer-events: all;
}

.list-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    transition: background 0.2s, padding-left 0.2s;
    text-decoration: none;
    color: inherit;
}

.list-item:hover {
    background: rgba(200, 169, 126, 0.08);
    padding-left: 8px;
}

@media (max-width: 768px) {
    .list-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        row-gap: 4px;
        column-gap: 16px;
    }

    .list-project {
        display: none;
    }

    .list-type {
        grid-column: 1;
        grid-row: 2;
    }

    .list-arrow {
        grid-row: span 2;
        align-self: center;
    }
}

.list-client {
    font-weight: 700;
    font-size: clamp(12px, 1.4vw, 14px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.list-project {
    font-size: 13px;
    color: var(--ink-light);
}

.list-type {
    font-size: 12px;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--ink-light);
}

.list-arrow {
    font-size: 16px;
    color: var(--ink-light);
    transition: transform 0.2s, color 0.2s;
}

.list-item:hover .list-arrow {
    transform: translateX(5px);
    color: var(--ink);
}

/* About / manifesto */
.about-section {
    padding: clamp(60px, 10vw, 120px) var(--pad);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.manifesto-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 4.5vw, 64px);
    line-height: 1.2;
    font-weight: 400;
    font-style: italic;
}

.about-body p {
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 1.8;
    color: var(--ink-light);
    margin-bottom: 18px;
}

.about-body p strong {
    color: var(--ink);
    font-weight: 500;
}

/* Services (home) */
.services-section {
    padding: clamp(60px, 8vw, 80px) var(--pad) clamp(60px, 10vw, 120px);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: clamp(28px, 4vw, 48px) clamp(22px, 3.5vw, 40px);
    background: var(--warm-mid);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--accent-deep);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-num {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 28px;
    font-weight: 500;
}

.service-name {
    font-weight: 700;
    font-size: clamp(16px, 2vw, 22px);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.service-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink-light);
}

/* ════════════════════════════════════════
   PAGE — HERO INTÉRIEUR (services & contact)
════════════════════════════════════════ */
.page-hero {
    padding: clamp(130px, 20vw, 180px) var(--pad) 0;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
}

@media (max-width: 768px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.page-hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 8.5vw, 120px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.page-hero h1 em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--accent-deep);
    display: block;
}

.page-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    padding-bottom: 6px;
}

.page-hero-right p {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.75;
    color: var(--ink-light);
    max-width: 440px;
}

/* ════════════════════════════════════════
   PAGE — SERVICES (détail)
════════════════════════════════════════ */
.manifesto-band {
    padding: clamp(60px, 3vw, 100px) var(--pad);
    text-align: center;
}

.manifesto-band .globe {
    font-size: 28px;
    margin-bottom: 24px;
    display: block;
    opacity: 0.5;
}

.manifesto-band h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 820px;
    margin: 0 auto 32px;
}

.manifesto-band p {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.75;
    color: var(--ink-light);
    max-width: 640px;
    margin: 0 auto;
}

/* Clients / logos défilants */
.clients-band {
    margin-top: 4vw;
    padding: clamp(48px, 6vw, 0px) var(--pad);
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    overflow: hidden;
}

.clients-band-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.clients-band-label::before, .clients-band-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(26, 26, 26, 0.12);
}

.logos-track-wrap {
    overflow: hidden;
}

.logos-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-sep {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ink);
    opacity: 0.15;
    flex-shrink: 0;
}

.logos-track {
    display: flex;
    align-items: center;
    animation: scrollLogos 22s linear infinite;
    width: max-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    width: 200px;
    font-size: clamp(12px, 1.3vw, 15px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.45;
    white-space: nowrap;
    transition: opacity 0.3s;
    padding: 0 clamp(28px, 3.5vw, 52px)
}

.logo-item:hover {
    opacity: 1;
}

/* Services accordéon */
.services-page-section {
    padding: 0 var(--pad) clamp(60px, 8vw, 100px);
}

.services-header {
    padding: clamp(48px, 6vw, 72px) 0 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.services-header-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding-bottom: clamp(32px, 4vw, 48px);
}

@media (max-width: 600px) {
    .services-header-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.services-header-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    padding-top: 4px;
}

.services-header-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
}

.service-row {
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.service-row-header {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: clamp(20px, 3vw, 28px) 0;
    cursor: pointer;
    transition: background 0.2s;
    list-style: none;
}

.service-row-header::-webkit-details-marker, .service-row-header::marker {
    display: none;
}

details[open] .service-row-header, .service-row-header:hover {
    background: rgba(200, 169, 126, 0.06);
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    border-radius: 2px;
}

@media (max-width: 600px) {
    .service-row-header {
        grid-template-columns: 1fr auto;
    }

    .service-row-num {
        display: none;
    }
}

.service-row-num {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
}

.service-row-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 28px);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.service-row-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}

details[open] .service-row-toggle {
    background: var(--ink);
    color: var(--cream);
    transform: rotate(45deg);
}

.service-row-toggle svg {
    pointer-events: none;
}

.service-row-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding-bottom: clamp(32px, 4vw, 48px);
    animation: expandBody 0.3s ease;
}

@media (max-width: 600px) {
    .service-row-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.service-row-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.service-tag {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 999px;
    padding: 5px 12px;
    display: inline-block;
    width: fit-content;
}

.service-row-content p {
    font-size: clamp(14px, 1.3vw, 15px);
    line-height: 1.8;
    color: var(--ink-light);
    margin-bottom: 20px;
}

.service-row-content p strong {
    color: var(--ink);
    font-weight: 500;
}

.service-deliverables {
    margin-top: 24px;
}

.service-deliverables-title {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 14px;
}

.service-deliverables-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.service-deliverables-list li {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--ink);
    background: var(--warm-mid);
    padding: 6px 14px;
    border-radius: 999px;
}

/* Dark band */
.dark-band {
    background: var(--dark);
    color: #F2EDE4;
    padding: clamp(60px, 8vw, 100px) var(--pad);
}

.dark-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

@media (max-width: 768px) {
    .dark-band-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.dark-band-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.dark-band-img {
    aspect-ratio: 4/5;
    border-radius: 3px;
    overflow: hidden;
}

.dark-band-img:nth-child(2) {
    margin-top: 40px;
}

.dark-band-img-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.dark-band-img:hover .dark-band-img-inner {
    transform: scale(1.03);
}

.dark-band-content .tag {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.45);
    margin-bottom: 28px;
    display: block;
}

.dark-band-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 3vw, 38px);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #F2EDE4;
}

.dark-band-content h2 em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--accent);
    display: block;
    font-size: 1.1em;
}

.dark-band-content p {
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.8;
    color: rgba(242, 237, 228, 0.65);
    margin-bottom: 32px;
}

/* Équipe */
.team-section {
    padding: clamp(60px, 8vw, 100px) var(--pad);
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 28px);
    border-bottom: 2px solid var(--ink);
    position: relative;
}

.team-name {
    font-weight: 700;
    font-size: clamp(15px, 1.6vw, 18px);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.team-role {
    font-size: 12px;
    color: var(--ink-light);
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
}

.team-note {
    margin-top: 40px;
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--ink-light);
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
}

/* Skills ticker */
.skills-ticker {
    background: var(--ink);
    color: var(--cream);
    padding: 18px 0;
    overflow: hidden;
}

.skills-track {
    display: flex;
    gap: 0;
    animation: scrollLogos 18s linear infinite;
    width: max-content;
}

.skill-item {
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 clamp(24px, 3vw, 40px);
    white-space: nowrap;
    opacity: 0.7;
}

.skill-dot {
    opacity: 0.3;
    align-self: center;
}

/* CTA section */
.cta-section {
    padding: clamp(80px, 10vw, 140px) var(--pad);
    text-align: center;
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.cta-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 12px;
}

.cta-section h2 strong {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 0.8em;
    display: block;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--ink-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ════════════════════════════════════════
   PAGE — CONTACT
════════════════════════════════════════ */
.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-direct a {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.contact-direct a:hover {
    color: var(--accent-deep);
}

.contact-direct a span {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink-light);
    width: 60px;
    flex-shrink: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 70vh;
}

@media (max-width: 860px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    padding: clamp(48px, 6vw, 80px) var(--pad);
    border-right: 1px solid rgba(26, 26, 26, 0.12);
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 64px);
}

@media (max-width: 860px) {
    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(26, 26, 26, 0.12);
        padding-bottom: clamp(40px, 5vw, 60px);
    }
}

.contact-block h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.25;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.8;
    color: var(--ink-light);
    margin-bottom: 12px;
}

.contact-block p:last-child {
    margin-bottom: 0;
}

.contact-block strong {
    color: var(--ink);
    font-weight: 500;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.info-item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ink-light);
}

.info-item-label {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    display: block;
    margin-bottom: 2px;
}

.info-item-value {
    font-size: 13px;
    color: var(--ink);
    font-weight: 400;
}

.info-item-value a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}

.info-item-value a:hover {
    color: var(--accent-deep);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    text-decoration: none;
    color: var(--ink);
    transition: padding-left 0.25s;
}

.social-link:first-child {
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.social-link:hover {
    padding-left: 8px;
    color: var(--accent-deep);
}

.social-link-name {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.social-link-handle {
    font-size: 11px;
    color: var(--ink-light);
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
}

.social-link-arrow {
    font-size: 14px;
    transition: transform 0.2s;
    color: var(--ink-light);
}

.social-link:hover .social-link-arrow {
    transform: translateX(4px);
    color: var(--accent-deep);
}

.contact-form-wrap {
    padding: clamp(48px, 6vw, 80px) var(--pad);
}

.contact-form-wrap h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(13px, 1.2vw, 15px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: clamp(32px, 4vw, 48px);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-field {
    position: relative;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
    transition: border-color 0.2s;
}

.form-field:focus-within {
    border-color: var(--ink);
}

.form-field:first-child {
    border-top: 1px solid rgba(26, 26, 26, 0.15);
}

.form-field label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    padding: 16px 0 4px;
    transition: color 0.2s;
}

.form-field:focus-within label {
    color: var(--ink);
}

.form-field input, .form-field textarea, .form-field select {
    display: block;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 400;
    color: var(--ink);
    padding: 4px 0 14px;
    resize: none;
    appearance: none;
}

.form-field input::placeholder, .form-field textarea::placeholder {
    color: rgba(26, 26, 26, 0.25);
}

.form-field textarea {
    min-height: 100px;
    line-height: 1.6;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235A5650' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    color: var(--ink);
}

.form-field select option {
    color: var(--ink);
    background: var(--cream);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.form-row .form-field {
    border-right: none;
}

.form-row .form-field:nth-child(2) {
    border-left: 1px solid rgba(26, 26, 26, 0.15);
    padding-left: 20px;
}

@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-field:nth-child(2) {
        border-left: none;
        padding-left: 0;
    }
}

.form-checks-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    display: block;
    padding: 20px 0 14px;
    border-top: 1px solid rgba(26, 26, 26, 0.15);
}

.form-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0;
}

.form-check input[type="checkbox"] {
    display: none;
}

.form-check label {
    font-size: 11px;
    letter-spacing: 0.08em;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 999px;
    padding: 7px 14px;
    color: var(--ink-light);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    user-select: none;
}

.form-check input:checked + label {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0 20px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}

.budget-opt input[type="radio"] {
    display: none;
}

.budget-opt label {
    font-size: 11px;
    letter-spacing: 0.06em;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 999px;
    padding: 7px 16px;
    color: var(--ink-light);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    user-select: none;
}

.budget-opt input:checked + label {
    background: var(--warm-mid);
    color: var(--ink);
    border-color: var(--ink);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
    flex-wrap: wrap;
}

.form-footer p {
    font-size: 11px;
    color: var(--ink-light);
    line-height: 1.6;
    max-width: 260px;
}

.form-footer p a {
    color: var(--ink-light);
    text-decoration: underline;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 999px;
    padding: 16px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    transition: transform 0.3s;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

.form-success {
    display: none;
    text-align: center;
    padding: clamp(40px, 6vw, 64px) 24px;
}

.form-success.visible {
    display: block;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 22px;
}

.form-success h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.7;
}

/* FAQ */
.faq-section {
    padding: clamp(60px, 8vw, 100px) var(--pad);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.faq-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(40px, 6vw, 80px);
}

@media (max-width: 768px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.faq-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    list-style: none;
    gap: 20px;
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 15px);
}

.faq-item summary::-webkit-details-marker, .faq-item summary::marker {
    display: none;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s;
    font-size: 16px;
    color: var(--ink-light);
}

details[open] .faq-toggle {
    background: var(--ink);
    color: var(--cream);
    transform: rotate(45deg);
}

.faq-answer {
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 1.8;
    color: var(--ink-light);
    padding-bottom: 20px;
    animation: expandBody 0.3s ease;
}

.closing-band {
    background: var(--dark);
    color: #F2EDE4;
    padding: clamp(60px, 8vw, 100px) var(--pad);
    text-align: center;
}

.closing-band p {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.35);
    margin-bottom: 24px;
}

.closing-band h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 6vw, 88px);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 8px;
    color: #F2EDE4;
}

.closing-band h2 em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    text-transform: none;
}

/* ════════════════════════════════════════
   PAGE — PROJET (case study)
════════════════════════════════════════ */
.project-header {
    padding: clamp(120px, 18vw, 170px) var(--pad) 0;
}

.project-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(28px, 4vw, 48px);
    flex-wrap: wrap;
    gap: 12px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-light);
    list-style: none;
}

.breadcrumb a {
    color: var(--ink-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumb-sep {
    opacity: 0.35;
}

.project-tag {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 999px;
    padding: 5px 14px;
}

.project-title-block {
    padding-bottom: clamp(32px, 5vw, 56px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.project-client {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 12px;
    display: block;
}

.project-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5.5vw, 76px);
    line-height: 0.93;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    max-width: 800px;
}

.project-title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--accent-deep);
}

.project-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

@media (max-width: 700px) {
    .project-info-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .project-info-row {
        grid-template-columns: 1fr;
    }
}

.project-info-cell {
    padding: clamp(20px, 3vw, 32px) 0;
    border-right: 1px solid rgba(26, 26, 26, 0.12);
    padding-right: clamp(20px, 3vw, 40px);
    padding-left: var(--pad);
}

.project-info-cell:first-child {
    padding-left: 0;
}

.project-info-cell:last-child {
    border-right: none;
}

@media (max-width: 700px) {
    .project-info-cell:nth-child(even) {
        border-right: none;
    }

    .project-info-cell:nth-child(n+3) {
        border-top: 1px solid rgba(26, 26, 26, 0.12);
    }

    .project-info-cell:nth-child(odd) {
        padding-left: 0;
    }
}

.info-cell-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    display: block;
    margin-bottom: 8px;
}

.info-cell-value {
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
}

.project-hero-img {
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
    position: relative;
}

@media (max-width: 600px) {
    .project-hero-img {
        aspect-ratio: 4/3;
    }
}

.project-hero-img-inner {
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    height: 100%;
    transition: transform 8s ease;
}

.project-hero-img:hover .project-hero-img-inner {
    transform: scale(1.03);
}

.project-body {
    padding: clamp(48px, 6vw, 96px) var(--pad);
}

.project-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    padding-bottom: clamp(32px, 4vw, 48px);
}

@media (max-width: 600px) {
    .project-meta-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.project-meta-col-title {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    display: block;
    margin-bottom: 14px;
}

.project-meta-col-value {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.deliverables-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.deliverables-list li {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink);
    font-weight: 400;
}

.deliverables-list li::after {
    content: ' ·';
    opacity: 0.3;
    margin-left: 8px;
}

.deliverables-list li:last-child::after {
    content: '';
}

.project-context-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    margin-bottom: clamp(48px, 7vw, 88px);
}

@media (max-width: 700px) {
    .project-context-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.project-text-block h2 {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 20px;
    display: block;
}

.project-text-block p {
    font-size: clamp(13px, 1.25vw, 15px);
    line-height: 1.85;
    color: var(--ink-light);
    margin-bottom: 14px;
}

.project-text-block p:last-child {
    margin-bottom: 0;
}

.project-text-block strong {
    color: var(--ink);
    font-weight: 500;
}

/* Photo gallery (projet) */
.project-gallery {
    margin: 0 calc(-1 * var(--pad));
}

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

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 420px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    overflow: hidden;
    position: relative;
    background: #1e1c1a;
}

.gallery-item.tall {
    aspect-ratio: 3/4;
}

.gallery-item.square {
    aspect-ratio: 1/1;
}

.gallery-item.wide {
    aspect-ratio: 16/9;
    grid-column: span 2;
}

.gallery-item.landscape {
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

/* Résultats */
.project-results {
    padding: clamp(48px, 7vw, 88px) var(--pad);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.results-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

@media (max-width: 700px) {
    .results-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.results-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

@media (max-width: 560px) {
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.result-card {
    background: var(--warm-mid);
    padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 28px);
}

.result-num {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--ink);
}

.result-num span {
    font-size: 0.6em;
    color: var(--accent-deep);
    vertical-align: super;
    font-weight: 500;
}

.result-label {
    font-size: 11px;
    color: var(--ink-light);
    line-height: 1.4;
}

/* Galerie vidéo */
.video-gallery-section {
    padding: clamp(48px, 7vw, 96px) var(--pad);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.video-gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 4vw, 48px);
    flex-wrap: wrap;
}

.video-gallery-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
}

.video-format-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    flex-shrink: 0;
}

.video-tab-btn {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 999px;
    padding: 7px 14px;
    background: none;
    color: var(--ink-light);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

.video-tab-btn.active, .video-tab-btn:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

@media (max-width: 640px) {
    .video-gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .video-format-tabs {
        width: 100%;
    }

    .video-tab-btn {
        font-size: 9px;
        padding: 6px 12px;
    }
}

.video-panel {
    display: none;
    width: 100%;
}

.video-panel.active {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: flex-start;
}

.video-item {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    flex-shrink: 0;
}

.video-item--vertical {
    width: calc((100% - 12px) / 4);
    aspect-ratio: 9/16;
}

.video-item--square {
    width: calc((100% - 8px) / 3);
    aspect-ratio: 1/1;
}

.video-item--horizontal {
    width: calc((100% - 4px) / 2);
    aspect-ratio: 16/9;
}

.video-item--cinematic {
    width: 100%;
    aspect-ratio: 21/9;
}

.video-item--classic {
    width: calc((100% - 8px) / 3);
    aspect-ratio: 4/3;
}

.media-item--photo-square {
    width: calc((100% - 8px) / 3);
    aspect-ratio: 1/1;
}

.media-item--photo-portrait {
    width: calc((100% - 12px) / 4);
    aspect-ratio: 3/4;
}

.media-item--photo-landscape {
    width: calc((100% - 4px) / 2);
    aspect-ratio: 4/3;
}

.media-item--photo-wide {
    width: 100%;
    aspect-ratio: 16/7;
}

@media (max-width: 1100px) {
    .video-item--vertical {
        width: calc((100% - 8px) / 3);
    }

    .media-item--photo-portrait {
        width: calc((100% - 8px) / 3);
    }
}

@media (max-width: 768px) {
    .video-item--vertical {
        width: calc((100% - 4px) / 2);
    }

    .video-item--square {
        width: calc((100% - 4px) / 2);
    }

    .video-item--horizontal {
        width: 100%;
    }

    .video-item--classic {
        width: calc((100% - 4px) / 2);
    }

    .video-item--cinematic {
        aspect-ratio: 16/9;
    }

    .media-item--photo-portrait {
        width: calc((100% - 4px) / 2);
    }

    .media-item--photo-square {
        width: calc((100% - 4px) / 2);
    }

    .media-item--photo-landscape {
        width: 100%;
    }

    .media-item--photo-wide {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .video-item--vertical {
        width: 100%;
        aspect-ratio: 9/16;
        max-height: 70vh;
    }

    .video-item--square {
        width: 100%;
    }

    .video-item--classic {
        width: 100%;
    }

    .media-item--photo-portrait {
        width: 100%;
    }

    .media-item--photo-square {
        width: 100%;
    }
}

.video-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-item.is-photo .video-overlay {
    background: rgba(20, 18, 16, 0.1);
}

.video-item.is-photo:hover .video-overlay {
    background: rgba(20, 18, 16, 0.25);
}

.video-item.is-photo .play-btn {
    display: none;
}

.video-item.is-photo .mute-btn {
    display: none !important;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(20, 18, 16, 0.45);
    transition: background 0.3s;
    z-index: 2;
}

.video-item:hover .video-overlay {
    background: rgba(20, 18, 16, 0);
}

.video-item.playing .video-overlay {
    pointer-events: all;
    background: rgba(20, 18, 16, 0);
}

.video-item.playing:hover .video-overlay {
    background: rgba(20, 18, 16, 0.3);
}

.play-btn {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(242, 237, 228, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 237, 228, 0.08);
    backdrop-filter: blur(4px);
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
    cursor: pointer;
    flex-shrink: 0;
}

.video-item:hover .play-btn {
    transform: scale(1.12);
    background: rgba(242, 237, 228, 0.18);
    border-color: rgba(242, 237, 228, 1);
}

.play-btn .icon-play {
    display: block;
}

.play-btn .icon-pause {
    display: none;
}

.video-item.playing .play-btn .icon-play {
    display: none;
}

.video-item.playing .play-btn .icon-pause {
    display: block;
}

.video-format-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.6);
    background: rgba(20, 18, 16, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(242, 237, 228, 0.12);
    border-radius: 999px;
    padding: 4px 10px;
    z-index: 3;
    pointer-events: none;
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(to top, rgba(14, 12, 10, 0.75) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s;
}

.video-item.playing .video-caption {
    opacity: 0;
}

.video-caption-title {
    font-size: 11px;
    font-weight: 500;
    color: rgba(242, 237, 228, 0.9);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 2px;
}

.video-caption-sub {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.45);
}

.mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(242, 237, 228, 0.35);
    border-radius: 50%;
    background: rgba(14, 12, 10, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: opacity 0.2s, border-color 0.2s;
}

.video-item.playing .mute-btn {
    display: flex;
}

.mute-btn:hover {
    border-color: rgba(242, 237, 228, 0.8);
}

.mute-btn svg {
    pointer-events: none;
    flex-shrink: 0;
}

.mute-btn.is-muted {
    opacity: 0.45;
}

/* Next project */
.next-project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(32px, 4vw, 48px) var(--pad);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
    text-decoration: none;
    color: var(--ink);
    transition: background 0.2s, padding-left 0.25s;
    gap: 20px;
}

.next-project:hover {
    background: rgba(200, 169, 126, 0.06);
    padding-left: calc(var(--pad) + 8px);
}

.next-project-label {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    display: block;
    margin-bottom: 8px;
}

.next-project-name {
    font-weight: 700;
    font-size: clamp(14px, 1.8vw, 20px);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.next-project-type {
    font-size: 12px;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--ink-light);
    margin-top: 4px;
}

.next-arrow {
    font-size: 24px;
    color: var(--ink-light);
    transition: transform 0.25s, color 0.2s;
    flex-shrink: 0;
}

.next-project:hover .next-arrow {
    transform: translateX(8px);
    color: var(--ink);
}
.fit_logo {
    width: 9%;
}

@media (max-width: 1020px) {
    .fit_logo {width: 10% !important;}
    .fit_logo2 {width: 21% !important;}
}

@media (max-width: 769px) {
    .fit_logo {width: 12% !important;}
    .fit_logo2 {width: 25% !important;}
}
@media (max-width: 560px) {
    .fit_logo {width: 15% !important;}
    .fit_logo2 {width: 25% !important;}
}
.fit_logo2 {
    width: 12%;
}






.nl-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: var(--pad);
    background: rgba(20,18,16,0.6);
    backdrop-filter: blur(6px);
    animation: fadeOverlay 0.35s ease forwards;
}
@keyframes fadeOverlay {
    from { opacity: 0; } to { opacity: 1; }
}

/* ── MODAL ── */
.nl-modal {
    background: var(--cream);
    width: 100%; max-width: 560px;
    position: relative;
    animation: slideModal 0.4s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
    overflow: hidden;
}
@keyframes slideModal {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Barre arc-en-ciel en haut */
.nl-modal::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(to right, #F5D76E, #E8885E, #C24A4A, #8B3A8A, #3A6B8A, #3A8A6B);
}

/* ── CLOSE ── */
.nl-close {
    position: absolute; top: 20px; right: 20px;
    width: 32px; height: 32px;
    border: 1px solid rgba(26,26,26,0.15); border-radius: 50%;
    background: none; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.nl-close:hover { background: var(--ink); border-color: var(--ink); }
.nl-close:hover svg { color: var(--cream); }
.nl-close svg { color: var(--ink-light); pointer-events: none; transition: color 0.2s; }

/* ── CONTENT ── */
.nl-body {
    padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 52px) clamp(28px, 4vw, 44px);
}

.nl-label {
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-light); display: block; margin-bottom: 16px;
}

.nl-title {
    font-family: 'DM Sans', sans-serif; font-weight: 700;
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -0.025em; line-height: 0.95;
    text-transform: uppercase; margin-bottom: 10px;
}
.nl-title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 400;
    text-transform: none; color: var(--accent-deep);
}

.nl-desc {
    font-size: clamp(13px, 1.3vw, 14px); line-height: 1.75;
    color: var(--ink-light); margin-bottom: 28px;
}

/* Promesses */
.nl-promises {
    list-style: none; display: flex; flex-direction: column;
    gap: 8px; margin-bottom: 28px;
}
.nl-promises li {
    font-size: 12px; color: var(--ink-light);
    display: flex; align-items: center; gap: 10px;
}
.nl-promises li::before {
    content: '→'; color: var(--accent); font-size: 11px; flex-shrink: 0;
}

/* Formulaire */
.nl-form { display: flex; flex-direction: column; gap: 0; }

.nl-field {
    border-bottom: 1px solid rgba(26,26,26,0.15);
    transition: border-color 0.2s;
}
.nl-field:first-child { border-top: 1px solid rgba(26,26,26,0.15); }
.nl-field:focus-within { border-color: var(--ink); }

.nl-field label {
    display: block; font-size: 8px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink-light); padding: 12px 0 3px;
    transition: color 0.2s;
}
.nl-field:focus-within label { color: var(--ink); }

.nl-field input, .nl-field select {
    display: block; width: 100%; background: none; border: none; outline: none;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    font-weight: 400; color: var(--ink); padding: 2px 0 12px;
    appearance: none;
}
.nl-field input::placeholder { color: rgba(26,26,26,0.25); }
.nl-field select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235A5650' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 4px center;
    padding-right: 24px; color: var(--ink);
}
.nl-field select option { background: var(--cream); }

.nl-submit-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-top: 24px; flex-wrap: wrap;
}
.nl-privacy {
    font-size: 10px; color: var(--ink-light); line-height: 1.5; max-width: 200px;
}
.nl-privacy a { color: var(--ink-light); text-decoration: underline; }

.nl-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink); color: var(--cream);
    border: none; border-radius: 999px;
    padding: 14px 28px; font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}
.nl-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.nl-btn:active { transform: translateY(0); }
.nl-btn svg { transition: transform 0.3s; pointer-events: none; }
.nl-btn:hover svg { transform: translateX(4px); }

/* Success */
.nl-success {
    display: none; text-align: center;
    padding: clamp(24px, 4vw, 40px) 0 clamp(8px, 2vw, 16px);
}
.nl-success.visible { display: block; }
.nl-success-icon {
    width: 52px; height: 52px; border: 1px solid var(--accent);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px; font-size: 20px;
}
.nl-success h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 400; font-style: italic; margin-bottom: 8px;
}
.nl-success p { font-size: 13px; color: var(--ink-light); line-height: 1.6; }

/* Fermeture overlay au clic extérieur */
.nl-overlay.closing {
    animation: fadeOverlay 0.25s ease reverse forwards;
}
.nl-modal.closing {
    animation: slideModal 0.25s ease reverse forwards;
}