/* ══════════════════════════════════════════════════════
   ARTEMUS — Identité "Éclats"
   Charte : Noir / Or / Magenta / Bleu / Orange / Sarcelle
   Typos : Big Shoulders Display · Bricolage Grotesque · Instrument Sans
   ══════════════════════════════════════════════════════ */

:root {
    --noir: #080808;
    --noir-profond: #0C0C0C;
    --noir-surface: #141414;
    --noir-elevated: #1C1C1C;
    --or: #D4A44C;
    --or-clair: #F0D060;
    --or-sombre: #A07830;
    --magenta: #B82060;
    --bleu: #1E6FBF;
    --orange: #E07020;
    --sarcelle: #188888;
    --blanc: #F5F2ED;
    --gris: #707068;
    --gris-clair: #A0A098;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background: var(--noir);
    color: var(--blanc);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; }

/* ── Navigation ─────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(8,8,8,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,164,76,0.15);
    transition: padding 0.3s;
}
nav.scrolled { padding: 0.8rem 3rem; }

.nav-logo {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800; font-size: 1.6rem;
    letter-spacing: 0.15em; color: var(--blanc);
    text-decoration: none;
}
.nav-logo .nav-amp {
    font-family: 'Gloock', serif;
    color: var(--or);
    font-weight: 400;
    font-size: 1.1em;
}
/* Tagline dans le logo horizontal (nav) */
.nav-tagline {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--gris);
    display: block;
    margin-top: -2px;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.1rem; color: var(--gris-clair);
    text-decoration: none; letter-spacing: 0.05em;
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--or); transition: width 0.3s;
}
.nav-links a:hover { color: var(--or); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--or); }
.nav-links a.active::after { width: 100%; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span {
    display: block; width: 24px; height: 2px;
    background: var(--gris-clair); margin: 5px 0; transition: 0.3s;
}

/* ── Buttons ─────────────────────────── */
.btn-primary {
    display: inline-block;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--or); background: #3a3530;
    padding: 0.85rem 2.4rem;
    text-decoration: none; transition: all 0.3s;
    text-transform: uppercase;
}
.btn-primary:hover {
    background: var(--or-clair);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,164,76,0.3);
}

.btn-rounded { border-radius: 6px; }

.btn-secondary {
    display: inline-block;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--or); background: transparent;
    border: 1px solid var(--or);
    padding: 1rem 2.5rem;
    text-decoration: none; transition: all 0.3s;
}
.btn-secondary:hover {
    background: rgba(212,164,76,0.1);
    transform: translateY(-2px);
}

/* ── Section commons ─────────────────────────── */
section { padding: 6rem 3rem; }

.section-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.3em;
    color: var(--gris); text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
    color: var(--or); margin-bottom: 1.5rem;
}

.color-stripe { display: flex; height: 4px; }
.color-stripe span { flex: 1; }

/* ── Hero ─────────────────────────── */
.hero {
    min-height: 100vh; display: flex;
    flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 6rem 2rem 4rem;
    position: relative; overflow: hidden;
}

.hero-burst {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(20px);
}
.hero-burst-1 {
    top: 3%; left: -3%; width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(184,32,96,0.55) 0%, transparent 70%);
    animation: float1 14s ease-in-out infinite;
}
.hero-burst-2 {
    bottom: 5%; right: -2%; width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(30,111,191,0.40) 0%, transparent 70%);
    animation: float2 18s ease-in-out infinite -4s;
}
.hero-burst-3 {
    top: 8%; right: 12%; width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(224,112,32,0.35) 0%, transparent 70%);
    animation: float3 11s ease-in-out infinite -7s;
}
.hero-burst-4 {
    bottom: 12%; left: 30%; width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(24,136,136,0.30) 0%, transparent 70%);
    animation: float1 16s ease-in-out infinite reverse -2s;
}

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,-50px) scale(1.15)} }
@keyframes float2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,40px) scale(1.2)} }
@keyframes float3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-50px,-30px) scale(1.1)} } 50%{transform:translate(-40px,-20px) scale(1.05)} }

.hero-content { position: relative; z-index: 2; }

/* Logo vertical piste 6 : & au-dessus d'ARTEMUS */
.hero-ampersand {
    font-family: 'Gloock', serif;
    font-size: clamp(6rem, 14vw, 10rem);
    color: var(--or);
    line-height: 0.85;
    margin-bottom: 0;
}

.hero-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: 0.15em; color: var(--blanc);
    margin-bottom: 2rem; line-height: 1;
}

/* Descriptif métiers — petit, informatif */
.hero-metiers {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Tagline en exergue — la promesse centrale */
.hero-tagline-main {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--blanc);
    font-weight: 400;
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto 3rem;
    position: relative;
    padding: 0 1rem;
}

/* Filet décoratif au-dessus de la tagline */
.hero-tagline-main::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--or-sombre);
    margin: 0 auto 1rem;
}

.hero-scroll-hint {
    position: absolute; bottom: 2rem;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.75rem; color: var(--gris);
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s;
    animation: bob 2s ease-in-out infinite;
}
.hero-scroll-hint:hover { color: var(--or); }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── Besoins / Qualification ─────────────────────────── */
/* ── Section 2 - Besoins (carte flottante) ─────────── */
.section-besoins-new {
    background: var(--noir);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    padding: 4rem 3rem;
    gap: 3rem;
    align-items: center;
}

.sun-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-container img {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: sun-pulse 5s ease-in-out infinite;
}

@keyframes sun-pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1) drop-shadow(0 0 20px rgba(212, 164, 76, 0.1));
    }
    50% {
        transform: scale(1.08);
        filter: brightness(1.15) drop-shadow(0 0 40px rgba(212, 164, 76, 0.25));
    }
}

.besoins-card {
    background: #fff0bf;
    border-radius: 20px;
    padding: 3.5rem 3rem 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.besoins-card::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 400px;
    background: url('filigrane_rose.png') center/contain no-repeat;
    opacity: 0.07;
    pointer-events: none;
}

.besoins-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-height: 0;
}

.besoins-title-new {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #e68f1c;
    text-align: center;
    margin-bottom: 2.8rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.05);
}

.besoins-lines {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.8rem;
    width: 100%;
}

.besoins-line {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #3a3a38;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(12px);
    animation: line-appear 0.6s ease-out forwards;
}

.besoins-line:nth-child(odd) { text-align: right; padding-left: 25%; }
.besoins-line:nth-child(even) { text-align: left; padding-right: 25%; }
.besoins-line:nth-child(1) { animation-delay: 0.3s; }
.besoins-line:nth-child(2) { animation-delay: 0.55s; }
.besoins-line:nth-child(3) { animation-delay: 0.8s; }
.besoins-line:nth-child(4) { animation-delay: 1.05s; }

@keyframes line-appear { to { opacity: 1; transform: translateY(0); } }

.besoins-closing {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #e68f1c;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(12px);
    animation: line-appear 0.6s ease-out forwards;
    animation-delay: 1.4s;
}

.besoins-cta {
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: line-appear 0.6s ease-out forwards;
    animation-delay: 1.7s;
}

.besoins-cta a {
    display: inline-block;
    padding: 0.85rem 2.4rem;
    background: #3a3530;
    color: var(--or);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.besoins-cta a:hover {
    background: var(--or);
    color: var(--noir);
    box-shadow: 0 4px 20px rgba(212, 164, 76, 0.3);
}

/* ── Confiance ─────────────────────────── */
.confiance { background: var(--noir); padding: 5rem 3rem; }

.confiance-inner { max-width: 900px; margin: 0 auto; }

.confiance-chiffres {
    display: flex; justify-content: center; align-items: center;
    gap: 3rem; margin: 3rem 0;
    flex-wrap: wrap;
}

.chiffre { text-align: center; }
.chiffre-nombre {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800; font-size: 3.5rem;
    color: var(--or); display: block; line-height: 1;
}
.chiffre-nombre small { font-size: 0.6em; }
.chiffre-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8rem; color: var(--gris-clair);
    margin-top: 0.5rem; display: block;
    line-height: 1.5;
}
.chiffre-sep { width: 1px; height: 50px; background: rgba(112,112,104,0.3); }

.temoignage {
    max-width: 600px; margin: 3rem auto 0;
    text-align: center; padding: 2rem;
    border-left: 3px solid var(--or-sombre);
}
.temoignage p {
    font-size: 1.12rem; font-style: italic;
    color: var(--gris-clair); line-height: 1.8;
    font-weight: 300;
}
.temoignage cite {
    display: block; margin-top: 1rem;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8rem; color: var(--gris);
    font-style: normal;
}

/* ── CTA Finale ─────────────────────────── */
.cta-finale {
    background: var(--noir);
    padding: 6rem 3rem; text-align: center;
}

.cta-content { max-width: 700px; margin: 0 auto; }

.cta-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--or); margin-bottom: 1.5rem;
    white-space: nowrap;
}
.br-mobile { display: none; }
@media (max-width: 768px) {
    .cta-title { white-space: normal; }
    .br-mobile { display: inline; }
}

.cta-text {
    font-size: 1.1rem; color: var(--gris-clair);
    line-height: 1.8; font-weight: 300;
    margin-bottom: 2.5rem;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────── */
footer {
    padding: 1.8rem 3rem; background: var(--noir);
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(112,112,104,0.1);
    font-family: 'Instrument Sans', sans-serif;
}
.footer-copy {
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.footer-center {
    display: flex; align-items: center; gap: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s, background 0.3s;
    text-decoration: none;
}
.footer-socials a:hover {
    border-color: var(--or); background: rgba(212,164,76,0.1);
}
.footer-socials a svg {
    width: 16px; height: 16px;
    fill: rgba(255,255,255,0.5); transition: fill 0.3s;
}
.footer-socials a:hover svg { fill: var(--or); }
.footer-email {
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
    text-decoration: none; letter-spacing: 1px;
    transition: color 0.3s; padding: 0 8px;
}
.footer-email:hover { color: var(--or); }
.footer-legal a {
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
    text-decoration: none; transition: color 0.3s;
}
.footer-legal a:hover { color: var(--or); }

/* ── Page headers (subpages) ─────────────────────────── */
.page-header {
    padding: 8rem 3rem 4rem;
    background: var(--noir-profond);
}

.page-header .section-title { margin-bottom: 0.5rem; }
.page-header-desc {
    font-size: 1.1rem; color: var(--gris-clair);
    font-weight: 300; max-width: 600px;
}

/* ── Projects grid (realisations page) ─────────────── */
.realisations-page { background: #f5f2ed; }

.domain-section { margin-bottom: 4rem; }
.domain-section:last-child { margin-bottom: 0; }

.domain-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700; font-size: 1.6rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid;
}

.domain-intro {
    font-size: 1rem; color: #4a4a46;
    margin-bottom: 2rem; font-weight: 300;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}

.project-card {
    background: #fff;
    border: 1px solid #e0ddd8;
    overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer; text-decoration: none; display: block;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.project-thumb {
    width: 100%; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 2.5rem; font-weight: 700; opacity: 0.08;
    background: #eae7e2;
}

.project-bar { height: 3px; width: 100%; }

.project-info { padding: 1.5rem; }
.project-cat {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 0.4rem;
    color: var(--or-sombre);
}
.project-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700; font-size: 1.3rem;
    color: #2a2a2a; margin-bottom: 0.5rem;
}
.project-desc {
    font-size: 0.95rem; color: #4a4a46;
    line-height: 1.65; font-weight: 300;
}

/* ── À propos page ─────────────────────────── */
.apropos-content {
    background: #f5f2ed;
    max-width: 900px;
    margin: 0 auto;
}
.apropos-content p {
    font-size: 1.12rem; color: #4a4a46;
    line-height: 1.9; font-weight: 300;
    margin-bottom: 1.5rem;
}
.apropos-content strong { color: #2a2a2a; font-weight: 600; }

.competences-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.competence-block {
    padding: 1.5rem; background: #fff;
    border-left: 3px solid;
}
.competence-block h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}
.competence-block p {
    font-size: 0.95rem; color: #4a4a46;
    line-height: 1.65; margin-bottom: 0;
}

.parcours { margin-top: 4rem; }
.parcours-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700; font-size: 1.55rem;
    color: var(--or); margin-bottom: 1.5rem;
}
.parcours-items {
    display: flex; flex-direction: column; gap: 1rem;
}
.parcours-item {
    display: flex; gap: 1.5rem; align-items: baseline;
}
.parcours-year {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8rem; color: var(--or-sombre);
    min-width: 80px; letter-spacing: 0.05em;
}
.parcours-desc {
    font-size: 1rem; color: #4a4a46;
    font-weight: 300;
}

/* ── Contact page ─────────────────────────── */
.page-contact { display: flex; flex-direction: column; min-height: 100vh; }
.page-contact .page-header { padding: 6rem 3rem 1rem; }
.page-contact .page-header-desc { max-width: 900px; font-size: 1rem; }
.contact-page { background: #f5f2ed; flex: 1; padding: 2rem 3rem 1.2rem; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}

.contact-info {
    display: flex; align-items: center; justify-content: center;
    padding-right: 7rem;
}
.contact-rose { width: 100%; max-width: 320px; opacity: 0.15; }

.contact-form {
    padding-left: 7rem;
    display: flex; flex-direction: column; justify-content: center;
}
.form-group { margin-bottom: 0.6rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.6rem 1rem;
    background: #fff;
    border: 1px solid #d0cdc8; border-radius: 8px;
    color: #2a2a2a;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.95rem; font-style: italic;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--or);
}
.form-group textarea { min-height: 80px; resize: vertical; }
.form-group select option { background: #fff; color: #2a2a2a; }
.contact-newsletter {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: #4a4a46;
    margin-top: 0.5rem; margin-bottom: 0.3rem;
    cursor: pointer; font-style: italic;
}
.contact-newsletter input { accent-color: var(--or); cursor: pointer; }
.contact-rgpd {
    font-size: 0.7rem; color: #8a8a84;
    margin-top: 0.3rem; font-style: italic; line-height: 1.4;
}
.contact-rgpd a { color: #8a8a84; text-decoration: underline; }

.form-submit {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: #fff; background: var(--or-sombre);
    border: none; padding: 1rem 3rem; border-radius: 8px;
    cursor: pointer; transition: all 0.3s;
    width: 100%;
}
.form-submit:hover { background: var(--or-clair); }

/* ── Scroll animations ─────────────────────────── */
.fade-in {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-burger { display: block; }
    nav.menu-open .nav-links {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(8,8,8,0.98);
        padding: 1.5rem; gap: 1.2rem;
    }
    section { padding: 4rem 1.5rem; }
    .section-besoins-new { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .sun-container img { max-width: 220px; }
    .besoins-card { padding: 2.5rem 1.8rem; border-radius: 16px; min-height: auto; }
    .besoins-card::before { width: 180px; height: 260px; opacity: 0.05; }
    .besoins-title-new { font-size: 1.8rem; margin-bottom: 1.8rem; }
    .besoins-lines { gap: 1.1rem; margin-bottom: 1.8rem; }
    .besoins-line { font-size: 1.1rem; }
    .besoins-line:nth-child(odd) { padding-left: 15%; }
    .besoins-line:nth-child(even) { padding-right: 15%; }
    .besoins-closing { font-size: 1.3rem; }
    .confiance-chiffres { gap: 2rem; }
    .chiffre-sep { width: 60px; height: 1px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0; }
    .contact-info { display: none; }
    .contact-form { padding-left: 0; }
    .projects-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; gap: 16px; padding: 1.5rem 1.2rem; }
    .footer-center { order: -1; flex-wrap: wrap; justify-content: center; }
}



/* ── Carte portrait (affiche verticale) ─────────────── */
.project-thumb--portrait {
    height: 400px;
    opacity: 1;
    display: block;
    overflow: hidden;
}

.project-thumb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.project-card--portrait:hover .project-thumb__img {
    transform: scale(1.03);
}

/* ═══════════════════════════════════════
   MAILLAGE INTERNE DISCRET
   ═══════════════════════════════════════ */
.maillage {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}
.maillage a {
    color: inherit;
    opacity: 0.5;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    transition: opacity 0.3s;
}
.maillage a:hover {
    opacity: 0.85;
}
@media (max-width: 600px) {
    .maillage { gap: 1rem; font-size: 0.78rem; }
}