/* =========================================
   VARIABLES CSS
   ========================================= */
:root {
    /* Couleurs */
    --color-text:        #333333;
    --color-text-light:  #ffffff;
    --color-bg:          transparent;
    --color-border:      #cccccc;
    --color-border-focus:#333333;
    --color-accent:      #333333;
    --color-muted:       rgba(0,0,0,0.45);
    --color-success-bg:  #f0faf4;
    --color-success-text:#1a6e3c;
    --color-error-bg:    #fff5f5;
    --color-error-text:  #b91c1c;

    /* Typographie */
    --font-sans:  'Roboto', system-ui, -apple-system, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;

    /* Espacements */
    --container-max: 1400px;
    --spacing-xs:    0.5rem;
    --spacing-sm:    1rem;
    --spacing-md:    1.5rem;
    --spacing-lg:    3rem;
    --spacing-xl:    6rem;

    /* Transitions */
    --transition-fast:   0.2s ease;
    --transition-normal: 0.3s ease;
}

/* =========================================
   ACCESSIBILITÉ : focus-visible
   ========================================= */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

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


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

body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('/assets/img/pattern.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
    body {
        background-attachment: scroll;
    }
}

a {
    color: inherit;
}

/* =========================================
   LAYOUT
   ========================================= */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   HEADER
   ========================================= */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
}

.logo {
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

/* Bouton hamburger — caché sur desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.nav-toggle img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* =========================================
   OVERLAY (fond sombre derrière le drawer)
   ========================================= */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-image: url('/assets/img/pattern.jpg');
    background-repeat: repeat;
    background-size: auto;
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-open .nav-overlay {
    display: block;
    opacity: 1;
}

/* =========================================
   DRAWER (panneau latéral droit)
   ========================================= */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(320px, 85vw);
    background-image: url('/assets/img/pattern.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    z-index: 100;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    /* Caché sur desktop */
    visibility: hidden;
}

.nav-open .nav-drawer {
    transform: translateX(0);
    visibility: visible;
}

/* Bloquer le scroll du body quand le menu est ouvert */
.nav-open {
    overflow: hidden;
}

/* Bouton fermeture (croix) */
.nav-drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    color: #333;
    transition: opacity 0.2s;
}

.nav-drawer-close:hover {
    opacity: 0.5;
}

/* Titre de section dans le drawer */
.nav-drawer-title {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.45;
    margin-bottom: 0.75rem;
}

/* Listes dans le drawer */
.nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nav-drawer ul li a {
    display: block;
    padding: 0.75rem 0;

    text-decoration: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.nav-drawer ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-drawer ul li a:hover::after {
    transform: scaleX(1);
}

.nav-drawer ul li a:hover {
    opacity: 1;
}

/* Section secondaire séparée */
.nav-drawer-secondary {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* =========================================
   MAIN
   ========================================= */
.site-main {
    flex: 1;
}

/* =========================================
   SECTIONS
   ========================================= */
.hero,
.content,
.legal {
    padding-block: 3rem;
}

.hero {
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: calc((100% - min(1400px, 100%)) / 2 + 1.5rem);
    height: 2px;
    border-top: 2px dotted rgba(0, 0, 0, 0.18);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 200;
}

.legal h2 {
    padding-top: 2rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    padding-block: 1.5rem;
   
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    border-top: 2px dotted rgba(0, 0, 0, 0.18);
}

.footer-brand {
    flex: 1 1 200px;
	margin-top: 2rem;
}

.footer-brand-identity {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.4rem;
}

.footer-brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 2rem;
}

.footer-tagline {
    font-size: 2rem;
	font-weight: 100;
    opacity: 0.6;
	margin-left: 36px;
}

.footer-nav {
    flex: 0 1 auto;
    margin-top: 2rem;
}

.footer-nav-title {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    text-decoration: none;
    font-size: 0.9375rem;
    position: relative;
    display: inline-block;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.footer-nav a:hover {
    text-decoration: none;
}

.footer-bottom {
    border-top: 2px dotted rgba(0, 0, 0, 0.18);
    padding-top: 1rem;
    font-size: 0.8125rem;
    opacity: 0.5;
}

/* =========================================
   FOOTER — SOCIAL ICONS
   ========================================= */
.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-top: 0.25rem;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    color: inherit;
    opacity: 0.55;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social-icon::after {
    display: none !important;
}

/* =========================================
   GO TO TOP BUTTON
   ========================================= */
.go-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.75rem);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.go-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.go-top:hover {
    background: #555;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .go-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 2.4rem;
        height: 2.4rem;
    }
}

/* =========================================
   RESPONSIVE — TABLETTE (max 768px)
   ========================================= */
@media (max-width: 768px) {

    h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.15;
    }

    /* Afficher le bouton hamburger */
    .nav-toggle {
        display: flex;
    }

    /* Cacher la nav desktop */
    .main-nav {
        display: none;
    }

    /* Sections : moins de padding */
    .hero,
    .content,
    .legal {
        padding-block: 2rem;
    }

    /* Footer grid : colonne sur mobile */
    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        text-align: center;
    }
	
	.footer-nav {
    flex: 0 1 auto;
    margin-top: 0rem;
	margin-left: 1rem;
}
}

/* =========================================
   RESPONSIVE — MOBILE (max 480px)
   ========================================= */
@media (max-width: 480px) {

    .container {
        padding: 0 1rem;
    }

    .hero,
    .content,
    .legal {
        padding-block: 1.5rem;
    }

    h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.15;
    }

    h2 {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    p {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
}
/* =========================================
   HOME GRID — 3 blocs
   ========================================= */

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

/* Colonne gauche : empile bloc 1 et bloc 2 */
.home-col-left {
    display: flex;
    flex-direction: column;
    border-right: 2px dotted rgba(0, 0, 0, 0.18);
}

/* Bloc 1 : Parce que... */
.home-block--title {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
}

.home-parce-que {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Bloc 2 : Citation */
.home-block--quote {
    flex: 1;
    padding: 2rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Styles de la citation (repris de l'existant, on s'assure qu'ils existent) */
.quote-block {
    flex: 1;
}

.quote-text {
    font-style: italic;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    position: relative;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3em;
    line-height: 0;
    vertical-align: -0.4em;
    opacity: 0.25;
}

.quote-mark.open  { margin-right: 0.1em; }
.quote-mark.close { margin-left: 0.1em; }

.quote-signature {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.1em;
	text-align: center;
}



/* Flèche entre bloc 2 et bloc 3 */
.home-grid {
    position: relative;
}

.home-arrow {
    position: absolute;
    left: 43%;
    top: 80%;
    transform: translate(-50%, -50%) rotate(15deg);
    width: 130px;
    z-index: 2;
    pointer-events: none;
}

.home-arrow img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

/* Bloc 3 : Texte avec lettrine */
.home-block--text {
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
}

.home-body-text {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.7;
}

/* Lettrine */
.home-drop-cap {
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 3em;
    font-weight: 500;
    line-height: 1;
    margin-right: 0.08em;
    margin-top: 0.06em;
    margin-bottom: -0.1em;
}

/* =========================================
   RESPONSIVE — HOME GRID
   ========================================= */
@media (max-width: 768px) {

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

    .home-col-left {
        border-right: none;
    }

	 .home-arrow {
		display: none;
	}
    .home-block--title  { order: 1; }
    .home-block--quote  { order: 2; }
    .home-block--text   { order: 3; }

    .home-block--title,
    .home-block--quote,
    .home-block--text {
        padding: 1.5rem 0;
        border-right: none;
    }

    /* Séparations dotted entre blocs empilés sur mobile */
    .home-block--title {
        border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
    }

    .home-block--quote {
        border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
    }

}

@media (max-width: 480px) {

    .home-parce-que {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .home-drop-cap {
        font-size: 3.5em;
    }
}

/* =========================================
   BLOC 4 — CTA pleine largeur
   ========================================= */

.home-block--cta {
    padding-block: 3rem;
    text-align: center;
    position: relative;
}

.home-block--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    border-top: 2px dotted rgba(0, 0, 0, 0.18);
}

.home-cta-text {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.home-cta-light {
    font-weight: 200;
}

.home-cta-btn {
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: 200;
    letter-spacing: inherit;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    border: 1.5px solid #333;
    border-radius: 0.4em;
    padding: 0.05em 0.5em 0.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.home-cta-btn:hover {
    background-color: transparent;
    color: #333;
}

@media (max-width: 768px) {
    .home-block--cta {
        padding-block: 2rem;
        gap: 1.25rem;
    }
    .home-cta-text {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .home-block--cta {
        padding-block: 1.5rem;
        gap: 1rem;
    }
    .home-cta-text {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
}

/* =========================================
   CONTACT — Deux voies
   ========================================= */

.contact-paths {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-block: 1rem;
}

/* ── En-tête de voie ── */
.contact-path-header {
    margin-bottom: 2rem;
}

.contact-path-label {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.45;
    margin-bottom: 0.75rem;
}

.contact-path-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.65;
    font-weight: 300;
}

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

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

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

.form-field label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.55;
}

.required {
    color: #333;
    opacity: 0.4;
}

.form-field input,
.form-field textarea,
.form-field select {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    outline: none;
    transition: border-color 0.25s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    opacity: 0.6;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-bottom-color: #333;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Select custom */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '↓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.4;
    font-size: 0.85rem;
}

.form-field select option {
    background: #fff;
    color: #333;
}

/* Footer du formulaire */
.form-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-legal {
    font-size: 0.75rem;
    opacity: 0.4;
    line-height: 1.5;
    max-width: 340px;
}

.form-legal a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-submit {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 200;
    color: #fff;
    background-color: #333;
    border: 1.5px solid #333;
    border-radius: 0.4em;
    padding: 0.45em 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.form-submit:hover {
    background-color: transparent;
    color: #333;
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Feedback */
.form-feedback {
    font-size: 0.9rem;
    min-height: 1.2em;
}

.form-feedback--success {
    color: #2d6a4f;
}

.form-feedback--error {
    color: #c0392b;
}

/* ── Séparateur ── */
.contact-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3.5rem;
    gap: 1rem;
    color: rgba(0, 0, 0, 0.2);
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    display: block;
    width: 1px;
    flex: 1;
    background: rgba(0, 0, 0, 0.1);
}

.contact-divider span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Voie 2 : options de contact ── */
.contact-chat-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-chat-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
    text-decoration: none;
    color: #333;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-chat-btn:hover {
    border-color: #333;
    background-color: rgba(0, 0, 0, 0.02);
}

.contact-chat-icon {
    font-size: 1.25rem;
    opacity: 0.5;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.contact-chat-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-chat-text strong {
    font-weight: 500;
    font-size: 1rem;
}

.contact-chat-text small {
    font-size: 0.8125rem;
    opacity: 0.45;
    font-weight: 300;
}

.contact-chat-arrow {
    opacity: 0.2;
    font-size: 0.85rem;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-chat-btn:hover .contact-chat-arrow {
    opacity: 0.6;
    transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-paths {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-divider {
        flex-direction: row;
        padding-top: 0;
    }

    .contact-divider::before,
    .contact-divider::after {
        width: auto;
        height: 1px;
        flex: 1;
    }

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

@media (max-width: 480px) {
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-submit {
        align-self: flex-end;
    }
}

/* =========================================
   LANG SWITCHER
   ========================================= */
.lang-switch-btn {
    text-decoration: none;
    color: #333;
    opacity: 0.4;
    transition: opacity 0.25s ease;
}

.lang-switch-btn:hover {
    opacity: 0.85;
}

.lang-switch-btn::after {
    display: none !important;
}

/* =========================================
   À PROPOS
   ========================================= */

/* ── Intro : photo + texte ── */
.about-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
    padding-block: 1rem 4rem;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
}

.about-photo-wrap {
    position: sticky;
    top: 6rem;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(15%);
}

.about-photo-caption {
    margin-top: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    line-height: 1.5;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-top: 0.5rem;
}

.about-label {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    margin-bottom: 1rem;
}

.about-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.about-headline em {
    font-style: italic;
    opacity: 0.7;
}

.about-body {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 62ch;
}

.about-body + .about-body {
    margin-top: -0.5rem;
}

/* ── Blocs thématiques ── */
.about-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-block {
    padding: 3rem 2.5rem;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
}

.about-block:nth-child(odd) {
    border-right: 2px dotted rgba(0, 0, 0, 0.18);
}

.about-block:last-child {
    border-bottom: none;
}

.about-block-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1;
    opacity: 0.12;
    margin-bottom: 1rem;
}

.about-block-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-block-text {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.75;
}

/* ── Citation centrale ── */
.about-quote-section {
    padding-block: 4rem 2rem;
    text-align: center;
}

.about-quote-section .container {
    padding-bottom: 0;
}

.about-blocks--bottom {
    margin-top: 0;
}

.about-blocks--bottom .about-block:nth-child(1),
.about-blocks--bottom .about-block:nth-child(2) {
    border-top: 2px dotted rgba(0, 0, 0, 0.18);
}

.about-blocks--bottom .about-block:nth-child(1) {
    border-bottom: none;
}

.about-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto 1.5rem;
}

.about-quote-author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.4;
}

/* ── CTA final ── */
.about-cta {
    padding-block: 4rem;
    text-align: left;
}

.about-cta-text {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.01em;
    max-width: 680px;
    margin-bottom: 2rem;
}

.about-cta-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.03em;
    color: #fff;
    background-color: #333;
    border: 1.5px solid #333;
    border-radius: 0.4em;
    padding: 0.45em 1.1em 0.5em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-cta-link:hover {
    background-color: transparent;
    color: #333;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-intro {
        grid-template-columns: 200px 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-block: 1rem 3rem;
    }

    .about-photo-wrap {
        position: static;
        max-width: 240px;
    }

    .about-blocks {
        grid-template-columns: 1fr;
    }

    .about-block:nth-child(odd) {
        border-right: none;
    }

    .about-block {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .about-block {
        padding: 1.75rem 0;
    }

    .about-quote-section {
        padding-block: 2.5rem;
    }

    .about-cta {
        padding-block: 2.5rem;
    }
}

/* =========================================
   WORK IN PROGRESS — PROJETS
   ========================================= */

.wip-intro {
    padding-block: 0.5rem 3rem;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
}

.wip-intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 680px;
    opacity: 0.75;
}

/* ── Projet ── */
.wip-project {
    padding-block: 4rem 5rem;

}

.wip-project-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 5rem;
    align-items: start;
}

/* ── Colonne meta (gauche) ── */
.wip-project-meta {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: sticky;
    top: 6rem;
}

.wip-project-index {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 200;
    line-height: 1;
    opacity: 0.3;
    display: block;
}

.wip-project-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wip-tag {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    padding: 0.3em 0.7em;
    width: fit-content;
}

.wip-tag--role {
    opacity: 0.75;
    border-style: dashed;
}

.wip-project-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.wip-status-dot {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.7;
    animation: wip-pulse 2s ease-in-out infinite;
}

@keyframes wip-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.25); }
}

.wip-status-label {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.65;
}

/* ── Colonne contenu (droite) ── */
.wip-project-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ── Corps : image + texte côte à côte ── */
.wip-project-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── Bloc image ── */
.wip-project-visual {
    position: sticky;
    top: 6rem;
}

.wip-project-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wip-project-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    filter: grayscale(18%);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.wip-project-image:hover {
    filter: grayscale(0%);
    transform: scale(1.015);
}

/* Wrapper overflow caché pour l'effet scale */
.wip-project-image-wrap {
    overflow: hidden;
}

.wip-project-image-caption {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.55;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(0,0,0,0.18);
}

/* ── Bloc texte (à droite de l'image) ── */
.wip-project-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.25rem;
}

.wip-project-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wip-project-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.wip-project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.wip-project-name em {
    font-style: italic;
    opacity: 0.8;
}

.wip-project-desc {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    font-weight: 300;
    line-height: 1.85;
    opacity: 0.88;
    max-width: 64ch;
    border-left: 2px dotted rgba(0, 0, 0, 0.18);
    padding-left: 1.5rem;
}

/* ── Piliers ── */
.wip-project-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 2px dotted rgba(0, 0, 0, 0.18);
}

.wip-pillar {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.5rem 0;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
    border-right: 2px dotted rgba(0, 0, 0, 0.18);
}

.wip-pillar:nth-child(even) {
    border-right: none;
    padding-left: 2rem;
}

.wip-pillar:nth-child(odd) {
    padding-right: 2rem;
}

.wip-pillar:nth-last-child(-n+2) {
    border-bottom: none;
}

.wip-pillar-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.wip-pillar-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
}

.wip-pillar-soon {
    opacity: 0.55;
    font-style: italic;
}

/* ── Projet "le vôtre" (02) ── */
.wip-project--yours {
    /* Pleine opacité — même présence que le projet 01 */
}

.wip-tag--yours {
    border-style: dashed;
    font-style: italic;
}

.wip-tag--yours-role {
    font-style: italic;
}

.wip-status-dot--yours {
    background-color: transparent;
    border: 1.5px solid rgba(0,0,0,0.4);
    animation: none;
}

/* Placeholder visuel — cadre de maquette */
.wip-project-image-wrap--yours {
    background: rgba(0,0,0,0.02);
}

.wip-yours-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    overflow: hidden;
}

.wip-yours-svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.wip-project--yours:hover .wip-yours-svg {
    transform: scale(1.02);
}

/* Piliers en italique pour souligner la projection */
.wip-pillar-yours {
    font-style: italic;
    opacity: 0.7;
}

.wip-project + .wip-project--yours {
    border-top: 2px dotted rgba(0,0,0,0.18);
    padding-top: 4rem;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .wip-project-body {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .wip-project-inner {
        grid-template-columns: 160px 1fr;
        gap: 3rem;
    }

    .wip-project-body {
        grid-template-columns: 180px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 680px) {
    .wip-project-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wip-project-meta {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }

    .wip-project-index {
        font-size: 3rem;
    }

    /* Sur mobile : image au-dessus du texte, pleine largeur */
    .wip-project-body {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .wip-project-visual {
        position: static;
    }

    .wip-project-image {
        aspect-ratio: 4 / 3;
        max-height: 560px;
    }

    .wip-project-pillars {
        grid-template-columns: 1fr;
    }

    .wip-pillar {
        border-right: none;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
    }

    .wip-pillar:last-child {
        border-bottom: none;
    }

    .wip-pillar:nth-last-child(-n+2) {
        border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
    }
}