/* ============================================================
   CABINET OUABBOU — SITE VITRINE PREMIUM
   Direction artistique : aquarelle parisienne, raffinée, institutionnelle
   ============================================================ */

/* --- Google Fonts import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* --- Variables de design --- */
:root {
    --ivoire: #FAF7F2;
    --ivoire-clair: #FDFBF8;
    --ivoire-chaud: #F5EFE6;
    --bleu-nuit: #1B2A4A;
    --bleu-profond: #0F1D36;
    --or-cabinet: #B8976A;
    --or-clair: #D4B98A;
    --or-fonce: #96784F;
    --gris-texte: #4A4A4A;
    --gris-clair: #8A8A8A;
    --gris-ligne: #E0D8CE;
    --blanc: #FFFFFF;
    --ombre-douce: 0 4px 30px rgba(27, 42, 74, 0.06);
    --ombre-carte: 0 8px 40px rgba(27, 42, 74, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-titre: 'Playfair Display', 'Georgia', serif;
    --font-corps: 'Cormorant Garamond', 'Georgia', serif;
    --font-ui: 'Lato', 'Helvetica Neue', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-corps);
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--bleu-nuit);
    background-color: var(--ivoire);
    overflow-x: hidden;
}

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

a {
    color: var(--or-cabinet);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--or-fonce);
}

::selection {
    background: var(--or-clair);
    color: var(--bleu-profond);
}

/* --- Typographie --- */
h1, h2, h3, h4 {
    font-family: var(--font-titre);
    font-weight: 500;
    line-height: 1.3;
    color: var(--bleu-nuit);
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    letter-spacing: 0.015em;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

p {
    margin-bottom: 1.4em;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* Justification renforcée sur toutes les zones de contenu */
.cabinet-text p,
.portrait-text p,
.expertise-card p,
.rejoindre-text p,
.form-note,
body p {
    text-align: justify !important;
}

/* Exception : les éléments centrés restent centrés */
.section-intro.center,
.hero-tagline,
.hero-content p,
.image-band-text blockquote,
.text-center p {
    text-align: center !important;
}

/* --- Conteneur global --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(27, 42, 74, 0.06);
    padding: 0.7rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-titre);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bleu-nuit);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.3;
}

.navbar.scrolled .navbar-brand {
    color: var(--bleu-nuit);
}

/* On hero, brand is white */
.navbar:not(.scrolled) .navbar-brand {
    color: var(--blanc);
}

.navbar-brand span {
    display: block;
    font-size: 0.65em;
    font-family: var(--font-ui);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--or-clair);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blanc);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--bleu-nuit);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--or-clair);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--or-cabinet);
}

/* Menu hamburger mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--blanc);
    transition: var(--transition);
    transform-origin: center;
}

.navbar.scrolled .menu-toggle span {
    background: var(--bleu-nuit);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bleu-profond);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.45;
    filter: saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 29, 54, 0.5) 0%,
        rgba(15, 29, 54, 0.3) 40%,
        rgba(15, 29, 54, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content .ornament {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--or-clair);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-content h1 {
    color: var(--blanc);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    margin-bottom: 0.4em;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-content .hero-subtitle {
    font-family: var(--font-ui);
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--or-clair);
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-content .hero-tagline {
    font-family: var(--font-corps);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blanc);
    border: 1px solid var(--or-clair);
    padding: 0.9em 2.8em;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-cta:hover {
    background: var(--or-cabinet);
    border-color: var(--or-cabinet);
    color: var(--blanc);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--or-clair), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   SECTIONS GÉNÉRALES
   ============================================================ */
section {
    padding: 6rem 0;
}

.section-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--or-cabinet);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--or-cabinet);
    margin-top: 1.2rem;
}

.section-title.center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--gris-texte);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.9;
}

.section-intro.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Section backgrounds alternées */
.section-light {
    background: var(--ivoire-clair);
}

.section-warm {
    background: var(--ivoire-chaud);
}

/* ============================================================
   SECTION — LE CABINET
   ============================================================ */
.cabinet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.cabinet-image-wrapper {
    position: relative;
    overflow: hidden;
}

.cabinet-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: var(--ombre-carte);
    transition: transform 0.8s ease;
}

.cabinet-image-wrapper:hover img {
    transform: scale(1.02);
}

.cabinet-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--or-cabinet);
    border-left: 2px solid var(--or-cabinet);
    z-index: 2;
    pointer-events: none;
}

.cabinet-text p {
    color: var(--gris-texte);
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ============================================================
   SECTION — EXPERTISES
   ============================================================ */
.expertises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--blanc);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    box-shadow: var(--ombre-douce);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ombre-carte);
    border-bottom-color: var(--or-cabinet);
}

.expertise-card .expertise-icon {
    font-size: 1.8rem;
    color: var(--or-cabinet);
    margin-bottom: 1.2rem;
    display: block;
}

.expertise-card h3 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bleu-nuit);
}

.expertise-card p {
    font-size: 1rem;
    color: var(--gris-texte);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================================
   SECTION — MAÎTRE OUABBOU
   ============================================================ */
.portrait-section {
    position: relative;
    overflow: hidden;
}

.portrait-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.portrait-photo-wrapper {
    position: relative;
}

.portrait-photo {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: var(--ombre-carte);
}

.portrait-photo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--or-cabinet);
    border-radius: 2px;
    z-index: -1;
}

.portrait-name {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    color: var(--bleu-nuit);
    margin-bottom: 0.3rem;
}

.portrait-title-bar {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--or-cabinet);
    margin-bottom: 0.5rem;
    display: block;
}

.portrait-diplome {
    font-family: var(--font-corps);
    font-style: italic;
    font-size: 1rem;
    color: var(--gris-clair);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gris-ligne);
}

.portrait-text p {
    color: var(--gris-texte);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ============================================================
   SECTION — CONTACT
   ============================================================ */
.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item .contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivoire-chaud);
    border-radius: 50%;
    color: var(--or-cabinet);
    font-size: 1rem;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
}

.contact-item-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gris-clair);
    margin-bottom: 4px;
}

.contact-item-value {
    font-family: var(--font-corps);
    font-size: 1.1rem;
    color: var(--bleu-nuit);
}

.contact-item-value a {
    color: var(--bleu-nuit);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-value a:hover {
    color: var(--or-cabinet);
}

/* Formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gris-clair);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-corps);
    font-size: 1rem;
    color: var(--bleu-nuit);
    padding: 0.8rem 1rem;
    border: 1px solid var(--gris-ligne);
    border-radius: 2px;
    background: var(--blanc);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--or-cabinet);
    box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.1);
}

.form-group textarea {
    min-height: 140px;
}

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

.btn-submit {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blanc);
    background: var(--bleu-nuit);
    border: 1px solid var(--bleu-nuit);
    padding: 1em 2.5em;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--or-cabinet);
    border-color: var(--or-cabinet);
}

.form-note {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--gris-clair);
    font-style: italic;
}

.form-success {
    display: none;
    padding: 1.2rem 1.5rem;
    background: rgba(184, 151, 106, 0.1);
    border-left: 3px solid var(--or-cabinet);
    font-family: var(--font-corps);
    font-size: 1rem;
    color: var(--bleu-nuit);
}

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

/* ============================================================
   SECTION — REJOINDRE
   ============================================================ */
.rejoindre-section {
    position: relative;
}

.rejoindre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.rejoindre-image-wrapper {
    position: relative;
    overflow: hidden;
}

.rejoindre-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: var(--ombre-carte);
}

.rejoindre-text p {
    color: var(--gris-texte);
    font-size: 1.05rem;
    line-height: 1.9;
}

.rejoindre-cta {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bleu-nuit);
    border: 1px solid var(--bleu-nuit);
    padding: 0.9em 2.5em;
    margin-top: 1rem;
    transition: var(--transition);
}

.rejoindre-cta:hover {
    background: var(--bleu-nuit);
    color: var(--blanc);
}

/* ============================================================
   BANDEAU IMAGE (séparateur visuel)
   ============================================================ */
.image-band {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.image-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-band-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(15, 29, 54, 0.6),
        rgba(15, 29, 54, 0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-band-text {
    text-align: center;
    color: var(--blanc);
    padding: 2rem;
}

.image-band-text blockquote {
    font-family: var(--font-titre);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bleu-profond);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blanc);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand span {
    display: block;
    font-family: var(--font-ui);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--or-clair);
    text-transform: uppercase;
    margin-top: 4px;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5em;
}

.footer h4 {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or-clair);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-family: var(--font-corps);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--or-clair);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-family: var(--font-corps);
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--or-clair);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
    color: var(--or-clair);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   RESPONSIVE — Tablette
   ============================================================ */
@media (max-width: 1024px) {
    .cabinet-grid,
    .portrait-grid,
    .contact-grid,
    .rejoindre-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .portrait-grid {
        grid-template-columns: 280px 1fr;
    }

    .expertises-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    section {
        padding: 4rem 0;
    }

    .container, .container-narrow {
        padding: 0 1.4rem;
    }

    /* Navigation mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--ivoire);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--bleu-nuit) !important;
        font-size: 0.85rem;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Hero mobile */
    .hero {
        min-height: 100svh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem !important;
    }

    .hero-scroll {
        display: none;
    }

    /* Grids mobile */
    .cabinet-grid,
    .portrait-grid,
    .contact-grid,
    .rejoindre-content {
        grid-template-columns: 1fr;
    }

    .portrait-grid {
        grid-template-columns: 1fr;
    }

    .portrait-photo-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .portrait-photo-wrapper::after {
        display: none;
    }

    .expertises-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cabinet-image-wrapper::before {
        display: none;
    }

    .image-band {
        height: 250px;
    }

    /* Adjust contact items */
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ============================================================
   RESPONSIVE — Petit mobile
   ============================================================ */
@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-cta {
        padding: 0.8em 2em;
        font-size: 0.72rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
