/* ===== IFFINE STUDIO - DESIGN SYSTEM ===== */
/* Modern CSS Architecture with Design Tokens */

/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'Times Now Light';
    src: url('../fonts/times-now-light_freefontdownload_org/TimesNow-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ===== DESIGN TOKENS ===== */
:root {
    /* === Typography === */
    --font-primary: 'Times Now Light', 'Times New Roman', Georgia, serif;
    --font-serif: 'Times Now Light', 'Times New Roman', Georgia, serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Times Now Light', 'Times New Roman', Georgia, serif;
    --font-text: 'Times Now Light', 'Times New Roman', Georgia, serif;
    --font-times-light: 'Times Now Light', 'Times New Roman', Georgia, serif;
    
    /* === Typography Scale === */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: clamp(1.75rem, 3vw, 2rem);
    --text-4xl: clamp(2rem, 4vw, 2.5rem);
    --text-5xl: clamp(2.5rem, 5vw, 3.5rem);
    --text-6xl: clamp(3rem, 6vw, 4.5rem);
    --font-size-hero: clamp(2.5rem, 5vw, 4.5rem);
    --line-height-hero: 1.15;
    --letter-spacing-hero: -0.02em;
    
    /* ===================================================
       SPACING SYSTEM - Professional 8px Grid
       Based on design best practices for luxury brands
       =================================================== */
    
    /* --- Base Spacing Scale (8px Grid) --- */
    --space-0: 0;
    --space-1: 0.25rem;    /* 4px  - Micro spacing */
    --space-2: 0.5rem;     /* 8px  - Tight spacing */
    --space-xs: 0.75rem;   /* 12px - Extra small */
    --space-sm: 1rem;      /* 16px - Small */
    --space-md: 1.5rem;    /* 24px - Medium */
    --space-lg: 2rem;      /* 32px - Large */
    --space-xl: 3rem;      /* 48px - Extra large */
    --space-2xl: 4rem;     /* 64px - 2x Extra large */
    --space-3xl: 6rem;     /* 96px - Section spacing */
    --space-4xl: 8rem;     /* 128px - Hero spacing */
    
    /* --- Container & Layout (Mobile First) --- */
    --container-padding: 1.25rem;        /* 20px mobile */
    --section-padding-y: 4rem;           /* 64px mobile */
    --section-padding-x: 1.25rem;        /* 20px mobile */
    --header-height: 70px;
    --content-max-width: 1400px;
    
    /* --- Component Spacing --- */
    --card-padding: 1.5rem;              /* 24px */
    --card-gap: 1.5rem;                  /* 24px */
    --form-field-gap: 1.25rem;           /* 20px */
    --button-padding-x: 2rem;            /* 32px */
    --button-padding-y: 0.875rem;        /* 14px */
    
    /* --- Grid System --- */
    --grid-gap: 2rem;                    /* 32px */
    --grid-gap-sm: 1rem;                 /* 16px */
    
    /* === Colors - Dark Theme (Default) === */
    --color-bg: #000000;
    --color-bg-elevated: #0a0a0a;
    --color-bg-overlay: rgba(0, 0, 0, 0.95);
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-accent: #ffffff;
    --color-accent-hover: rgba(255, 255, 255, 0.9);
    --color-border: rgba(255, 255, 255, 0.15);
    --color-border-hover: rgba(255, 255, 255, 0.3);
    
    /* === Loader === */
    --loader-bg: #050505;
    --loader-total-duration: 1500ms;
    --loader-collapse-delay: 900ms;
    
    /* === Transitions === */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* === Shadows === */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.35);
    
    /* === Border Radius === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===================================================
   RESPONSIVE SPACING - Professional Breakpoints
   =================================================== */

@media (min-width: 768px) {
    :root {
        --container-padding: 2.5rem;     /* 40px tablet */
        --section-padding-y: 5rem;       /* 80px tablet */
        --section-padding-x: 2.5rem;     /* 40px tablet */
        --header-height: 80px;
        --card-padding: 2rem;            /* 32px */
        --card-gap: 2rem;                /* 32px */
        --grid-gap: 2.5rem;              /* 40px */
    }
}

@media (min-width: 1024px) {
    :root {
        --container-padding: 4rem;       /* 64px desktop */
        --section-padding-y: 6rem;       /* 96px desktop */
        --section-padding-x: 4rem;       /* 64px desktop */
        --header-height: 90px;
        --card-padding: 2.5rem;          /* 40px */
        --card-gap: 2.5rem;              /* 40px */
        --grid-gap: 3rem;                /* 48px */
    }
}

@media (min-width: 1440px) {
    :root {
        --container-padding: 5rem;       /* 80px large */
        --section-padding-y: 8rem;       /* 128px large */
        --section-padding-x: 5rem;       /* 80px large */
        --grid-gap: 4rem;                /* 64px */
    }
}

/* ===================================================
   UTILITY CLASSES - Professional Spacing System
   =================================================== */

/* --- Container Utilities --- */
.container {
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* --- Section Utilities --- */
.section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
}

.section--compact {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.section--large {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

/* --- Margin Utilities --- */
.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* --- Padding Utilities --- */
.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.px-container { 
    padding-left: var(--container-padding); 
    padding-right: var(--container-padding); 
}

.py-section { 
    padding-top: var(--section-padding-y); 
    padding-bottom: var(--section-padding-y); 
}

/* --- Gap Utilities --- */
.gap-0 { gap: 0; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-grid { gap: var(--grid-gap); }
.gap-card { gap: var(--card-gap); }

/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile-First: Base styles pour mobile (min 320px) */
body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-size: 16px;
    overflow-x: hidden;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* ===== FOCUS VISIBLE - Accessibility ===== */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Typography system matching Marbury - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-xl);
    font-weight: 400;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: var(--text-5xl);
    }

    h2 {
        font-size: var(--text-4xl);
    }

    h3 {
        font-size: 1.35rem;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }

    h1 {
        font-size: var(--text-6xl);
    }

    h2 {
        font-size: var(--text-5xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }
}

p, span, div {
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Button typography */
.button, .journal-button, .newsletter-form__button {
    font-family: var(--font-sans) !important;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}



/* ===== LOGO LOADING ANIMATION ===== */
body.loading {
    overflow: hidden;
}

.logo-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--loader-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    animation: fadeOutLoader 0.55s ease var(--loader-total-duration) forwards;
}

.logo-loader--done {
    display: none;
}

.logo-loader__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(80vw, 40rem);
    aspect-ratio: 4 / 1.4;
}

.logo-loader__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.78);
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoDesktopMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        /* Position décalée de 1cm à droite (10rem + 1cm ≈ 10.6rem) */
        transform: translate(calc(-50vw + 10.6rem), calc(-50vh + 2.8rem)) scale(0.375);
    }
}

@keyframes logoMobileMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(calc(-50vw + 5.1rem), calc(-50vh + 1.9rem)) scale(0.33);
    }
}

@keyframes fadeOutLoader {
    0% {
        opacity: 1;
        visibility: visible;
        background-color: var(--loader-bg);
    }
    95% {
        opacity: 1;
        visibility: visible;
        background-color: var(--loader-bg);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background-color: var(--loader-bg);
    }
}

header .logo {
    opacity: 0;
    animation: logoHeaderFadeIn 0.25s ease-in-out 1.6s forwards;
}

header .logo-image {
    height: 3.5rem;
    width: 15.625rem;
    display: block;
    object-fit: contain;
}

@keyframes logoHeaderFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (min-width: 1000px) {
    .logo-loader__image {
        animation: logoFadeIn 0.45s ease 0.1s forwards,
                   logoDesktopMove 0.75s cubic-bezier(0.3, 0.1, 0.12, 1) var(--loader-collapse-delay) forwards;
    }
}

@media (max-width: 999px) {
    .logo-loader__content {
        width: min(86vw, 36rem);
    }

    .logo-loader__image {
        animation: none !important;
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .logo-loader__content {
        width: 82vw;
    }
}

@media (max-width: 480px) {
    .logo-loader__content {
        width: 78vw;
    }
}

@media (max-width: 375px) {
    .logo-loader__content {
        width: 72vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-loader,
    .logo-loader__image {
        animation: none !important;
    }

    .logo-loader__image {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== HEADER & NAVIGATION ===== */
/* Professional spacing for luxury brand aesthetic */

/* Base styles - Mobile (min 320px) */
header {
    background-color: #000;
    padding: 0 var(--container-padding);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0.0625rem 0.1875rem rgba(255,255,255,0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease,
                background-color 0.3s ease;
    transform: translateY(0);
    height: var(--header-height);
}

/* Header caché lors du scroll vers le bas */
header.header--hidden {
    transform: translateY(-100%);
}

/* Header avec ombre plus prononcée après scroll */
header.header--scrolled {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 0, 0, 0.98);
}

/* Animation fluide au survol même quand caché */
header:hover {
    box-shadow: 0 0.25rem 0.625rem rgba(255, 255, 255, 0.15);
}

.header-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 0 0 auto;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Navigation Desktop - Menu avec effet de soulignement */
.header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu ul li {
    position: relative;
}

.header-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.0125em;
    line-height: 1.2;
    padding: var(--space-2) var(--space-xs);
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.header-menu ul li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0.125rem;
    left: 0;
    height: 2px;
    width: 0;
    background-color: currentColor;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.header-menu ul li a:not(.btn):hover::after,
.header-menu ul li.active a:not(.btn)::after,
.header-menu ul li.is-active a:not(.btn)::after {
    transition-duration: 0.6s;
    width: 100%;
    visibility: visible;
}

.header-menu ul li.active a:not(.btn),
.header-menu ul li.is-active a:not(.btn) {
    font-weight: 500;
}

/* Bouton Let's Talk */
.header-menu ul li a.btn {
    background-color: #fff; /* Bouton blanc sur fond noir */
    color: #19052C; /* Texte violet foncé */
    padding: var(--button-padding-y) var(--button-padding-x);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-menu ul li a.btn:hover {
    background-color: #19052C;
    color: #fff;
}

.header-menu ul li a.btn .icon-arrow-upright {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.header-menu ul li a.btn .icon-arrow-upright svg path {
    fill: currentColor !important;
    transition: fill 0.3s ease;
}

.header-menu ul li a.btn:hover .icon-arrow-upright {
    transform: translate(4px, -4px);
}

@media (max-width: 1023px) {
    .header-menu ul li a:not(.btn) {
        font-size: 1.25rem;
        padding: 0;
    }

    .header-menu ul li a.btn {
        margin: 0;
        display: inline-flex;
    }
}

@media (min-width: 1024px) {
    .header-menu ul {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }

    .header-menu ul li:last-child {
        margin-left: var(--space-sm);
    }

    .header-menu ul li a {
        font-size: 0.9rem;
        padding: var(--space-2) var(--space-xs);
        display: block;
    }

    .header-menu ul li a:not(.btn)::after {
        bottom: 0;
    }
}

/* Bouton Hamburger pour mobile */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 32px;
    height: 24px;
    position: relative;
}

.menu-btn span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.35s var(--transition-smooth), opacity 0.25s ease;
    transform-origin: center;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
    bottom: 0;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Classes utilitaires Tailwind-like */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}
        
.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-0 {
    gap: 0;
}

.gap-3 {
    gap: 0;
}

/* Responsive pour desktop (lg: large screens) */
@media (min-width: 1024px) {
    .lg\:flex-row {
        flex-direction: row;
    }
    
    .lg\:items-center {
        align-items: center;
    }
    
    .lg\:justify-center {
        justify-content: center;
    }
    
    .lg\:gap-0 {
        gap: 0;
    }
    
    .menu-btn {
        display: none !important; /* Cacher le hamburger sur desktop */
    }
}

/* Mobile - Afficher le bouton hamburger et cacher le menu desktop */
@media (max-width: 1023px) {
    .header-menu {
        display: none; /* Cacher le menu desktop sur mobile */
    }
    
    .menu-btn {
        display: block; /* Afficher le bouton hamburger sur mobile */
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-image {
    height: 2.5rem;
    width: auto;
    padding: 0;
    display: block;
    object-fit: contain;
}

/* Boutons */
.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--font-times-light);
    transition: opacity 0.3s;
    font-weight: 300;
}

.nav-link:hover {
    opacity: 0.7;
}

.menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-times-light);
    transition: opacity 0.3s;
    z-index: 1001;
}

.menu-btn:hover {
    opacity: 0.7;
}

.start-project-btn {
    background: #1a1a2e;
    border: none;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    padding: var(--button-padding-y) var(--button-padding-x);
    font-family: var(--font-times-light);
    transition: all 0.3s;
    text-decoration: none;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    white-space: nowrap;
}

.start-project-btn::after {
    content: '↗';
    font-size: 1rem;
}

.start-project-btn:hover {
    background: #2a2a3e;
    transform: translateY(-2px);
}

/* Menu Overlay - Mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Fond noir */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-content {
    text-align: center;
    padding: var(--space-2xl);
}

.menu-overlay nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-overlay nav ul li {
    margin-bottom: var(--space-lg);
}

.menu-overlay nav ul li a {
    color: #fff; /* Texte blanc */
    text-decoration: none;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Effet de soulignement au survol pour mobile */
.menu-overlay nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay nav ul li a:hover::after {
    transform: scaleX(1);
}

.menu-overlay nav ul li a:hover {
    color: #f5f5f5;
}

/* Style spécial pour le bouton Contact dans le menu mobile */
.menu-overlay nav ul li a.contact-link {
    background-color: #fff;
    color: #000;
    padding: var(--button-padding-y) var(--button-padding-x);
    margin-top: var(--space-lg);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.menu-overlay nav ul li a.contact-link::after {
    display: none; /* Pas de soulignement pour le bouton */
}

.menu-overlay nav ul li a.contact-link:hover {
    background-color: #f5f5f5;
    color: #000;
}

.close-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    line-height: 1;
    font-weight: 300;
    padding: 0;
}

.close-btn:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}

.close-btn:active {
    transform: scale(0.9);
}

/* Tablet - 768px et plus */
@media (min-width: 768px) {
    header {
        padding: 0 var(--container-padding);
    }

    .logo-image {
        height: 2.8125rem;
        width: auto;
    }

    .header-right {
        gap: var(--space-lg);
    }

    .menu-btn {
        font-size: 1rem;
    }

    .start-project-btn {
        font-size: 0.85rem;
        padding: var(--button-padding-y) var(--button-padding-x);
    }

    .menu-overlay nav ul li {
        margin-bottom: var(--space-xl);
    }

    .menu-overlay nav ul li a {
        font-size: 2rem;
    }

    .close-btn {
        top: var(--space-lg);
        right: var(--space-lg);
    }
}

/* Desktop - 1024px et plus */
@media (min-width: 1024px) {
    header {
        padding: 0 var(--container-padding);
    }

    .logo-image {
        height: 3.75rem;
        width: auto;
    }

    /* Navigation desktop reste cachée - utilisation du menu uniquement */
    .header-nav {
        display: none !important;
    }

    .header-right {
        gap: var(--space-xl);
        justify-content: flex-end;
        flex: 0 1 58%;
        max-width: 58%;
    }

    .start-project-btn {
        font-size: 0.9rem;
        padding: var(--button-padding-y) var(--button-padding-x);
        gap: var(--space-2);
    }

    .start-project-btn::after {
        font-size: 1.2rem;
    }
}

/* Large Desktop - 1440px et plus */
@media (min-width: 1440px) {
    header {
        padding: 0 var(--container-padding);
    }
}

/* ===== MAIN CONTENT ===== */
/* Professional spacing system */

/* Base - Mobile */
main {
    margin: 0;
    margin-top: var(--header-height);
    padding: 0;
    width: 100%;
}

/* Tablet - 768px et plus */
@media (min-width: 768px) {
    main {
        padding: 0;
    }
}

/* Desktop - 1024px et plus */
@media (min-width: 1024px) {
    main {
        padding: 0;
    }
}

@media (min-width: 1280px) {
    main {
        width: 100%;
        margin-right: auto;
    }
}

/* ===== BUILDING BRAND HERO SECTION ===== */
.building-brand-hero {
    position: relative;
    background: #000;
    color: #fff;
    padding: var(--space-3xl) var(--container-padding);
    margin: 0;
    overflow: hidden;
    min-height: 190px;
}

.building-brand-hero__content {
    position: relative;
    z-index: 1;
    text-align: left;
    width: 100%;
    padding-right: 10%;
}


.building-brand-hero__eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: rgba(25, 5, 44, 0.7);
}

.building-brand-hero__title {
    font-family: 'Times Now Light', serif !important;
    font-size: clamp(1rem, 0.5rem + 1.9vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    color: #fff;
    text-align: left;
}

.building-brand-hero__lede {
    font-size: clamp(1rem, 0.45rem + 1.8vw, 1.5rem);
    line-height: 1.4;
    max-width: 42rem;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.85);
}

.building-brand-hero__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
}

.building-brand-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--button-padding-y) var(--button-padding-x);
    border-radius: 999px;
    background-color: #19052C;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(25, 5, 44, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.building-brand-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(25, 5, 44, 0.25);
}

.building-brand-hero__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    position: relative;
}

.building-brand-hero__secondary-link::after {
    content: '↗';
    font-size: 1.1rem;
}


@media (min-width: 768px) {
    .building-brand-hero {
        min-height: 250px;
        padding: var(--space-3xl) var(--container-padding);
    }

    .building-brand-hero__cta {
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .building-brand-hero {
        min-height: 300px;
        padding: var(--space-4xl) var(--container-padding);
    }

    .building-brand-hero__title {
        padding-right: 0;
    }
}


@media (min-width: 1440px) {
    .building-brand-hero {
        padding: var(--space-4xl) var(--container-padding);
        min-height: 340px;
    }

    .building-brand-hero__title {
        padding-right: 0;
    }

    
}

@media (min-width: 1920px) {
    .building-brand-hero__content {
        max-width: 80rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .building-brand-hero__btn,
    .building-brand-hero__secondary-link::after {
        transition: none;
    }
}


/* ===== HERO SECTION ===== */
.hero {
    background-color: #030303;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Prevent the perspective hero from inheriting the fixed-height grid layout that hides later sections */
.hero.hero-perspective {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: var(--section-padding-y) var(--container-padding);
    margin: 0;
}

.hero-perspective__heading {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.75em;
}

.hero-perspective__arrow {
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-perspective__title {
    font-family: 'Times Now Light', serif !important;
    font-size: clamp(1.5rem, 3.9vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0;
}

.hero-perspective__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--space-xl);
}

.hero-perspective__label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.hero-perspective__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: justify;
}

.hero-perspective__eyebrow {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: #fff;
}

.hero-perspective__content p {
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

.hero-perspective__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.hero-perspective__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--button-padding-y) var(--button-padding-x);
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    align-self: flex-start;
    overflow: hidden;
    transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
    z-index: 0;
}

.hero-perspective__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.hero-perspective__link .icon-arrow-upright {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease, background 0.35s ease;
    z-index: 1;
}

.hero-perspective__link .icon-arrow-upright svg path {
    fill: currentColor !important;
    transition: fill 0.35s ease;
}

.hero-perspective__link:hover,
.hero-perspective__link:focus-visible {
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-perspective__link:hover::after,
.hero-perspective__link:focus-visible::after {
    opacity: 0.4;
}

.hero-perspective__link:hover .icon-arrow-upright,
.hero-perspective__link:focus-visible .icon-arrow-upright {
    transform: translate(4px, -4px);
    background: rgba(255, 255, 255, 0.25);
}

.hero-perspective__link--primary {
    background: #fff;
    color: #19052C;
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-perspective__link--primary .icon-arrow-upright {
    background: rgba(25, 5, 44, 0.1);
}

.hero-perspective__link--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-perspective__link--ghost::after {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.hero-perspective__link--ghost .icon-arrow-upright {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 480px) {
    .hero-perspective__cta {
        flex-direction: column;
    }

    .hero-perspective__link {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-perspective__link,
    .hero-perspective__link .icon-arrow-upright {
        transition: none;
    }
}

@media (min-width: 768px) {
    .hero-perspective__heading {
        align-items: flex-start;
    }

    .hero-perspective__layout {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 3fr);
        align-items: flex-start;
    }

    .hero.hero-perspective {
        height: auto;
        min-height: 0;
    }
}

@media (min-width: 1200px) {

    .hero-perspective__title {
        font-size: clamp(2.25rem, 3.75vw, 3.56rem);
    }

    .hero.hero-perspective {
        height: auto;
        min-height: 0;
        padding-right: var(--container-padding);
    }
}

@media (min-width: 1024px) {
    .hero.hero-perspective {
        height: auto;
        min-height: 0;
        padding-right: var(--container-padding);
    }
}

/* ===== CREATIVE SHOWCASE SECTION ===== */
.creative-showcase {
    padding: 0 var(--container-padding);
    background-color: #000;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: var(--space-1);
    min-height: calc(100vh - var(--header-height));
    width: 100%;
}


.image-card {
    position: relative;
    width: 50%;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: none;
}

.image-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.4s ease;
}

.image-card:hover img {
    filter: grayscale(0%) contrast(1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

.overlay-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.overlay-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.overlay-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .creative-showcase {
        flex-direction: column;
        gap: var(--space-1);
        padding: 0;
    }

    .image-card {
        width: 100%;
        height: 50vh;
    }

    .overlay-title {
        font-size: 1.3rem;
    }
    
    .image-overlay {
        padding: var(--space-md);
    }
}

/* ===== PORTFOLIO SECTION - DARK THEME ===== */
.portfolio-section {
    background-color: #000;
    padding: var(--section-padding-y) var(--section-padding-x);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.portfolio-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.portfolio-header__left {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.portfolio-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-featured-projects__intro {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.portfolio-view-all {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: var(--button-padding-y) var(--button-padding-x);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-view-all:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.portfolio-view-all .arrow-icon {
    transition: transform 0.3s ease;
}

.portfolio-view-all:hover .arrow-icon {
    transform: translate(4px, -4px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

.projects-grid__single {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.06);
}

.projects-grid__single:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-8px);
}

.projects-grid__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.projects-grid__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: grayscale(20%);
}

.projects-grid__single:hover .projects-grid__thumb img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.projects-grid__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--card-padding);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.projects-grid__single:hover .projects-grid__overlay {
    opacity: 1;
}

.overlay-cta {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--button-padding-y) var(--button-padding-x);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    transform: translateY(20px);
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.projects-grid__single:hover .overlay-cta {
    transform: translateY(0);
}

.overlay-cta:hover {
    background-color: #fff;
    color: #000;
}

.projects-grid__info {
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.projects-grid__services {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.projects-grid__title {
    margin-bottom: var(--space-md);
    flex: 1;
}

.projects-grid__title h3 {
    margin: 0;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.4;
}

.projects-grid__title a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.projects-grid__title a:hover {
    color: rgba(255,255,255,0.7);
}

.projects-grid__link {
    margin-top: auto;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    transition: all 0.3s ease;
}

.button.button--ghost {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0;
    background: transparent;
    border: none;
}

.button.button--ghost svg {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.button.button--ghost:hover {
    color: rgba(255,255,255,0.8);
}

.button.button--ghost:hover svg {
    transform: translate(3px, -3px);
    opacity: 1;
}

.button.button--simple, button.button--simple {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    padding: 0;
    border: none;
    background-color: transparent;
    transition: opacity 0.3s ease;
}

.button--simple:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .portfolio-view-all {
        align-self: flex-start;
    }
}

/* ===== SERVICES SECTION ===== */
.cls-background {
    padding: var(--section-padding-y) 0;
}

.cls-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-services-hover__inner {
    text-align: center;
}

.section-services-hover__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.section-services-hover__content {
    color: #fff;
}

.section-services-hover__intro {
    margin-bottom: var(--space-2xl);
}

.section-services-hover__intro h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    color: #ccc;
    font-weight: normal;
}

.section-services-hover__intro h3 {
    font-family: "Domaine Text", serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.section-services-hover__list {
    text-align: center;
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.section-services-hover__list span {
    position: relative;
    font-family: "Domaine Text", serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline;
}

.section-services-hover__list span:hover {
    font-size: 2.5rem;
    color: #ccc;
}

.section-services-hover__list span::after {
    content: " / ";
    color: #666;
    font-weight: 300;
}

.section-services-hover__list span:last-child::after {
    content: "";
}

.section-services-hover__list span img {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.section-services-hover__list span:hover img {
    opacity: 1;
}

.section-services-hover__outro .button {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-services-hover__outro .button:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .section-services-hover__intro h3 {
        font-size: 1.5rem;
    }

    .section-services-hover__list span {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .section-services-hover__list span:hover {
        font-size: 1.8rem;
    }

    .section-services-hover__list span img {
        width: 120px;
        top: -120px;
    }

    .cls-inner {
        padding: 0 var(--container-padding);
    }
}

/* ===== PHILOSOPHY SECTION - DARK THEME ===== */
.philosophy-section {
    background-color: #0a0a0a;
    padding: var(--section-padding-y) var(--section-padding-x);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.philosophy-label {
    font-size: 0.85rem;
    color: var(--color-text-muted, rgba(255,255,255,0.7));
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 var(--space-xl);
}

.philosophy-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.philosophy-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.philosophy-image-wrapper:hover .philosophy-image {
    filter: grayscale(0%);
}

.philosophy-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.philosophy-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 550px;
    margin: 0 0 var(--space-lg);
}

.philosophy-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: var(--button-padding-y) var(--button-padding-x);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-cta:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.philosophy-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.philosophy-cta:hover .cta-arrow {
    transform: translate(4px, -4px);
}

/* Legacy text-xl class for backward compatibility */
.text-xl {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

/* ===== JOURNAL SECTION - DARK THEME ===== */
.section-journal {
    background-color: #000;
    padding: var(--section-padding-y) var(--section-padding-x);
    position: relative;
}

.section-journal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.section-journal__inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.section-journal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.section-journal__intro {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.journal-label {
    font-size: 0.85rem;
    color: var(--color-text-muted, rgba(255,255,255,0.7));
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-journal__intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.journal-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 450px;
    margin: 0;
}

.journal-view-all {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: var(--button-padding-y) var(--button-padding-x);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journal-view-all:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.journal-view-all svg {
    transition: transform 0.3s ease;
}

.journal-view-all:hover svg {
    transform: translate(4px, -4px);
}

.journal-button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: var(--button-padding-y) var(--button-padding-x);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.journal-button:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.posts-grid__single {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.06);
}

.posts-grid__single:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-8px);
}

.posts-grid__thumb {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.posts-grid__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: grayscale(30%);
}

.posts-grid__single:hover .posts-grid__thumb img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.posts-grid__thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.posts-grid__content {
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.posts-grid__cat {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.posts-grid__title {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 var(--space-sm) 0;
}

.posts-grid__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.posts-grid__title a:hover {
    color: rgba(255,255,255,0.7);
}

.posts-grid__excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0 0 var(--space-md) 0;
    flex: 1;
}

.posts-grid__read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.posts-grid__read-more svg {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.posts-grid__read-more:hover {
    color: rgba(255,255,255,0.8);
}

.posts-grid__read-more:hover svg {
    transform: translate(3px, -3px);
    opacity: 1;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-journal__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NEWSLETTER SECTION - DARK THEME ===== */
.section-newsletter {
    background-color: #0a0a0a;
    padding: var(--section-padding-y) var(--section-padding-x);
    position: relative;
    overflow: hidden;
}

.section-newsletter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.015) 0%, transparent 60%);
    pointer-events: none;
}

.section-newsletter__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.newsletter-label {
    font-size: 0.85rem;
    color: var(--color-text-muted, rgba(255,255,255,0.7));
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.newsletter-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.newsletter-description em {
    font-style: italic;
    color: #fff;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.newsletter-form__fields {
    display: flex;
    flex-direction: column;
    gap: var(--form-field-gap);
}

.newsletter-form__field {
    position: relative;
}

.newsletter-form__input {
    width: 100%;
    padding: var(--space-md) var(--space-md);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form__input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.newsletter-form__input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: #fff;
    color: #000;
    border: none;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.newsletter-form__button:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.newsletter-form__button svg {
    transition: transform 0.3s ease;
}

.newsletter-form__button:hover svg {
    transform: translate(4px, -4px);
}

@media (max-width: 768px) {
    .section-newsletter__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-content {
        align-items: center;
    }

    .newsletter-form__button {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid__single:nth-child(2n) {
        border-right: none;
    }

    .projects-grid__single:nth-child(3),
    .projects-grid__single:nth-child(4) {
        border-bottom: 1px solid #e0e0e0;
    }

    .projects-grid__single:nth-child(3) {
        border-right: 1px solid #e0e0e0;
    }
}

@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .section-featured-projects__intro {
        max-width: 100%;
        font-size: 1.75rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid__single {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        min-height: 500px;
    }

    .projects-grid__thumb {
        height: 250px;
    }

    .projects-grid__single:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 0;
    }

    .section-featured-projects__intro {
        font-size: 1.5rem;
    }

    .projects-grid__single {
        padding: 0;
        min-height: 350px;
    }
}

/* Stats Section */
.portfolio-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--section-padding-y) var(--container-padding);
    text-align: center;
    color: #fff;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--grid-gap);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    font-family: "Domaine Text", serif;
    margin-bottom: var(--space-sm);
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .portfolio-header h2 {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .portfolio-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: var(--space-2xl) var(--container-padding);
    }

    .portfolio-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER - DARK THEME ===== */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: var(--section-padding-y) var(--section-padding-x);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: var(--space-md);
    display: block;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
}

.footer-cta-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: #fff;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: var(--button-padding-y) var(--button-padding-x);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-button:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.footer-cta-button svg {
    transition: transform 0.3s ease;
}

.footer-cta-button:hover svg {
    transform: translate(4px, -4px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    margin-bottom: var(--space-2xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 var(--space-md);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links li a,
.footer-links li span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
}

.footer-links li span {
    color: rgba(255,255,255,0.5);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.social-link svg {
    width: 1.1rem;
    height: 1.1rem;
}

.footer-column--stats {
    display: flex;
    flex-direction: column;
}

.footer-stats {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.footer-stat {
    display: flex;
    flex-direction: column;
}

.footer-stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.footer-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

.footer-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copyright,
.footer-credits {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Legacy footer styles (keep for backward compatibility) */
footer {
    background-color: #000;
    color: #fff;
    padding: var(--section-padding-y) var(--container-padding) var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto var(--space-xl);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: #fff;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.7;
}

.hours-info {
    color: rgba(255,255,255,0.7);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: opacity 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
/* Mobile-First - Adjustments supplémentaires */

/* Extra small - 320px à 479px */
@media (max-width: 479px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: calc(100vh - 60px);
        padding: var(--space-lg) var(--container-padding);
    }

    .hero-text {
        padding: var(--space-md);
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-image {
        min-height: 40vh;
    }

    .menu-overlay nav ul li a {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    footer {
        padding: var(--space-xl) var(--container-padding);
    }
}

/* Small - 480px à 767px */
@media (min-width: 480px) and (max-width: 767px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: calc(100vh - 60px);
    }

    .hero-text {
        padding: var(--space-lg) var(--container-padding);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image {
        min-height: 45vh;
    }
}

/* Medium - 768px à 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: calc(100vh - 70px);
    }

    .hero-text {
        padding: var(--space-xl) var(--container-padding);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        min-height: 50vh;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    footer {
        padding: var(--space-2xl) var(--container-padding);
    }
}

/* Large - 1024px et plus */
@media (min-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        height: calc(100vh - 80px);
    }

    .hero-text {
        padding: var(--space-2xl) var(--container-padding);
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-xl);
    }
}

/* SVG Icons inline styles */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ===== CONTACT PAGE ===== */
/* Mobile-First Approach - Using Responsive Tokens */

/* Base - Mobile */
.contact-page {
    display: none;
    background-color: #e8e2d4;
    min-height: 100vh;
    padding: var(--header-height) var(--container-padding) var(--space-lg);
}

.contact-page.active {
    display: block;
}

.section-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-contact__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: stretch;
}

.section-contact__content {
    text-align: center;
}

.section-contact__content h2 {
    font-family: 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: normal;
    margin-bottom: var(--space-sm);
}

.section-contact__content img {
    max-width: 100%;
    height: auto;
    margin: var(--space-sm) 0;
}

.section-contact__content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}

/* Form Styles */
.gform_wrapper {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--radius-md);
}

.gfield {
    margin-bottom: var(--space-sm);
}

.gfield fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper textarea,
.gform_wrapper select {
    width: 100%;
    padding: var(--button-padding-y);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    outline: none;
    border-color: #333;
}

.gform_wrapper .gform_button {
    background-color: #333;
    color: white;
    border: none;
    padding: var(--button-padding-y) var(--button-padding-x);
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: var(--radius-sm);
    width: 100%;
}

.gform_wrapper .gform_button:hover {
    opacity: 0.8;
}

.gfield_label {
    display: none;
}

.gform_validation_container {
    display: none !important;
}

.fieldset,
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

/* Small Mobile - 480px+ */
@media (min-width: 480px) {
    .contact-page {
        padding: calc(var(--header-height) + var(--space-sm)) var(--container-padding) var(--space-lg);
    }

    .section-contact__content h2 {
        font-size: 2rem;
        margin-bottom: var(--space-md);
    }
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .contact-page {
        padding: calc(var(--header-height) + var(--space-lg)) var(--container-padding) var(--space-xl);
    }

    .section-contact__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: start;
    }

    .section-contact__content h2 {
        font-size: 2.25rem;
        margin-bottom: var(--space-md);
    }

    .section-contact__content img {
        max-width: 80%;
        margin: var(--space-md) 0;
    }

    .gform_wrapper input[type="text"],
    .gform_wrapper input[type="email"],
    .gform_wrapper textarea,
    .gform_wrapper select {
        padding: var(--space-sm);
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .gform_wrapper .gform_button {
        padding: var(--space-sm) var(--space-xl);
        font-size: 1rem;
        width: auto;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .contact-page {
        padding: calc(var(--header-height) + var(--space-xl)) var(--container-padding) var(--space-2xl);
    }

    .section-contact__wrapper {
        gap: var(--space-2xl);
    }

    .section-contact__content h2 {
        font-size: 2.5rem;
    }
}

/* ===== MASQUER LES PUBLICITÉS SOMEE.COM ===== */
/* Suppression de la barre de publicité fixe en bas */
div[style*="position: fixed"][style*="z-index: 2147483647"][style*="bottom: 0px"] {
    display: none !important;
}

/* Suppression du fond noir de la publicité */
div[style*="opacity: 0.9"][style*="z-index: 2147483647"][style*="background-color: #202020"] {
    display: none !important;
}

/* Suppression de l'espace réservé à la publicité */
div[style*="height: 65px"] {
    display: none !important;
}

/* Suppression du lien "Web hosting by Somee.com" */
center a[href*="somee.com"] {
    display: none !important;
}

center:has(a[href*="somee.com"]) {
    display: none !important;
}

/* ===== CONTACT PAGE - BLACK & WHITE DESIGN ===== */
/* Mobile-First Approach */

/* Body styles for contact page */
.contact-body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
}

/* Header pour la page contact */
.contact-header {
    background-color: #000;
    border-bottom: 1px solid #fff;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-body .header-right {
    flex: 0 0 auto;
    max-width: none;
    justify-content: flex-end;
}

.back-home-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-times-light);
    transition: opacity 0.3s;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 0.25rem;
}

.back-home-btn:hover {
    opacity: 0.7;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main contact content */
.contact-main {
    margin-top: var(--header-height);
    padding: var(--container-padding);
    min-height: calc(100vh - var(--header-height));
}

.contact-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Left Column - Content */
.contact-content {
    text-align: center;
}

.contact-title {
    font-family: var(--font-times-light);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: var(--space-lg);
}

.contact-image-wrapper {
    margin: var(--space-lg) 0;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    filter: grayscale(100%);
    opacity: 0.8;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 500px;
    margin: 0 auto;
}

/* Right Column - Form */
.contact-form-wrapper {
    width: 100%;
}

.contact-form-container {
    background-color: #fff;
    padding: var(--card-padding);
    border-radius: var(--radius-md);
    color: #000;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: var(--form-field-gap);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: var(--form-field-gap);
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: var(--button-padding-y);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #000;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-footer {
    margin-top: var(--space-lg);
}

.submit-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: var(--button-padding-y) var(--button-padding-x);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer minimal pour la page contact */
.contact-footer {
    background-color: #000;
    border-top: 1px solid #fff;
    padding: var(--space-lg) var(--container-padding);
    color: #fff;
}

.footer-content-minimal {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-left p {
    font-size: 0.85rem;
    color: #ccc;
}

.footer-right .social-icons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.footer-right .social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.footer-right .social-icons a:hover {
    opacity: 0.6;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .contact-header {
        padding: var(--space-sm) var(--container-padding);
    }

    .contact-main {
        padding: var(--space-xl) var(--container-padding);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-2xl);
        align-items: start;
    }

    .contact-content {
        text-align: left;
        position: sticky;
        top: calc(var(--header-height) + var(--space-lg));
    }

    .contact-title {
        font-size: 3rem;
        margin-bottom: var(--space-lg);
    }

    .contact-description {
        margin: 0;
    }

    .form-row {
        flex-direction: row;
        gap: var(--space-md);
    }

    .form-row .form-field {
        flex: 1;
    }

    .submit-button {
        width: auto;
        min-width: 250px;
    }

    .footer-content-minimal {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .contact-header {
        padding: var(--space-sm) var(--container-padding);
    }

    .contact-main {
        padding: var(--space-2xl) var(--container-padding);
    }

    .contact-title {
        font-size: 3.5rem;
    }

    .form-fields {
        gap: var(--space-md);
    }

    .form-row {
        gap: var(--space-lg);
    }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
    .contact-header {
        padding: var(--space-sm) var(--container-padding);
    }

    .contact-title {
        font-size: 4rem;
    }
}

/* Suppression du fond noir de la publicité */
div[style*="opacity: 0.9"][style*="z-index: 2147483647"][style*="background-color: #202020"] {
    display: none !important;
}

/* Suppression de l'espace réservé à la publicité */
div[style*="height: 65px"] {
    display: none !important;
}

/* Suppression du lien "Web hosting by Somee.com" */
center a[href*="somee.com"] {
    display: none !important;
}

center:has(a[href*="somee.com"]) {
    display: none !important;
}
/* ===== SERVICES LIST ANIMATION SECTION ===== */

/* Services List Container */
.services-list {
    padding: var(--section-padding-y) 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
    padding-left: var(--container-padding);
}

.services-list-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.services-list h2 {
    text-transform: uppercase;
    font-size: 2.2rem;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    color: #ffffff;
}

.services-list-items {
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: var(--space-md);
    list-style: none;
}

.services-list-item {
    display: block;
    list-style: none;
}

.services-list-item-toggle {
    display: block;
    width: 100%;
    font-size: 1.35rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    text-align: left;
    font-weight: 600;
    color: #999;
}

.services-list-item-toggle:focus {
    outline: none;
}

.services-list-item-toggle h3 {
    display: block;
    margin: 0;
    font: inherit;
    max-width: 17ch;
}

.services-list-item.active .services-list-item-toggle {
    pointer-events: none;
    font-size: 2.2rem;
    color: #ffffff;
}

.services-list-item-details {
    transition-timing-function: linear;
    overflow: hidden;
}

.services-list-item-details-inner {
    opacity: 0;
    transition: all 0.3s ease;
    padding-top: var(--space-sm);
}

.services-list-item-details-inner-animation {
    opacity: 1;
}

.services-list-item-details p {
    max-width: 30ch;
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    color: #ffffff;
}

.services-list-item-details a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--button-padding-y) var(--button-padding-x);
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.services-list-item-details a::after {
    content: '\2197';
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.services-list-item-details a:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.08);
}

.services-list-item-details a:hover::after {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* Graphics Section */
.services-list-graphics-wrapper {
    position: relative;
}

.services-list-graphics {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.services-list-graphics.scrolling {
    scroll-snap-type: none;
}

.services-list-graphics-inner {
    display: flex;
    padding: 0;
    width: max-content;
}

.services-list-graphics-item-wrapper {
    scroll-snap-align: center;
}

.services-list-graphics-item {
    --translate-x: 0rem;
    --translate-y: 0rem;
    --rotate-z: 0deg;
    --scale: 0%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    position: relative;
    width: min(28rem, 80vw);
    margin: auto 0;
    flex-shrink: 0;
    transition: all 0.3s ease-out, transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    pointer-events: none;
    opacity: 0.8;
}

.services-list-graphics-item.active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.services-list-graphics-item-wrapper:nth-child(3n+1) .services-list-graphics-item:not(.active) {
    transform: scale(calc(var(--scale) + 70%)) translateX(var(--translate-x)) translateY(var(--translate-y)) rotateZ(var(--rotate-z));
}

.services-list-graphics-item-wrapper:nth-child(3n+2) .services-list-graphics-item:not(.active) {
    transform: scale(calc(var(--scale) + 70%)) translateX(var(--translate-x)) translateY(var(--translate-y)) rotateZ(calc(var(--rotate-z) - 5deg));
}

.services-list-graphics-item-wrapper:nth-child(3n+3) .services-list-graphics-item:not(.active) {
    transform: scale(calc(var(--scale) + 70%)) translateX(var(--translate-x)) translateY(var(--translate-y)) rotateZ(calc(var(--rotate-z) + 5deg));
}

.services-list-graphics-item-wrapper:has(+.services-list-graphics-item-wrapper .services-list-graphics-item.active) {
    --translate-x: 7%;
}

.services-list-graphics-item-wrapper:has(.services-list-graphics-item.active) + .services-list-graphics-item-wrapper .services-list-graphics-item {
    --translate-x: -30%;
}

/* Disc (Vinyl) */
.services-list-graphics-item-disc {
    padding: 0;
    width: 200%;
    margin: 0;
    transform: translate(50%);
    transition: all 0.5s ease-out;
    pointer-events: all;
    position: relative;
}

.services-list-graphics-item-disc:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 1rem;
    left: 5rem;
    width: calc(100% - 10rem);
    height: 1rem;
    border-radius: 50%;
    filter: blur(0.5rem);
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.25s ease 0.4s;
}

.services-list-graphics-item.active .services-list-graphics-item-disc:before {
    opacity: 1;
}

.services-list-graphics-item.active .services-list-graphics-item-disc {
    transform: translate(0);
    transition: all 0.5s ease-in-out 0.2s;
}

.services-list-graphics-item-disc img {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 50%;
}

.services-list-graphics-item.active .services-list-graphics-item-disc img {
    animation-name: services-list-spin;
    animation-duration: 0.45s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.48, 0.17, 0.36, 1);
    animation-direction: normal;
    animation-delay: 0.3s;
}

@keyframes services-list-spin {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Cover */
.services-list-graphics-item-cover {
    z-index: 2;
    pointer-events: all;
    position: relative;
}

.services-list-graphics-item-cover:before {
    content: '';
    display: block;
    position: absolute;
    inset: 2rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.services-list-graphics-item.active .services-list-graphics-item-cover:before {
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.8);
}

.services-list-graphics-item-cover-inner {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.services-list-graphics-item-cover-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .services-list {
        grid-template-columns: calc(((100% - var(--content-max-width)) / 2) + 36rem) minmax(0, auto);
        min-height: 100vh;
        background-color: #000000;
        color: #ffffff;
        padding-right: var(--container-padding);
    }

    .services-list-content {
        width: 36rem;
        margin-right: 0;
        align-self: start;
        position: sticky;
        top: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 var(--container-padding);
    }

    .services-list-graphics {
        width: 100%;
        padding: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-column: 2;
        grid-row: 1;
        overflow: hidden;
        scroll-snap-type: none;
    }

    .services-list-graphics-inner {
        flex-direction: column;
        width: min(calc(100% - var(--space-lg)), calc(144rem - 36rem - var(--space-2xl)));
        padding: 0;
        transition: transform 0.1s linear;
        will-change: transform;
    }

    .services-list-graphics-item {
        width: 100%;
        margin: -15% 0;
        transform-origin: right center;
        opacity: 1;
    }

    .services-list-graphics-item-wrapper:first-child .services-list-graphics-item {
        margin-top: 0;
    }

    .services-list-graphics-item-wrapper:has(+.services-list-graphics-item-wrapper .services-list-graphics-item.active) {
        --translate-x: 0rem;
        --translate-y: -10%;
    }

    .services-list-graphics-item-wrapper:has(.services-list-graphics-item.active) + .services-list-graphics-item-wrapper .services-list-graphics-item {
        --translate-x: 0rem;
        --translate-y: 10%;
    }

    .services-list-graphics-item-wrapper:nth-child(3n+1) .services-list-graphics-item:not(.active) {
        transform: scale(calc(var(--scale) + 70%)) translateX(calc(var(--translate-x) + 5%)) translateY(var(--translate-y)) rotateZ(var(--rotate-z));
    }

    .services-list-graphics-item-wrapper:nth-child(3n+2) .services-list-graphics-item:not(.active) {
        transform: scale(calc(var(--scale) + 70%)) translateX(calc(var(--translate-x) + 10%)) translateY(var(--translate-y)) rotateZ(calc(var(--rotate-z) - 5deg));
    }

    .services-list-graphics-item-wrapper:nth-child(3n+3) .services-list-graphics-item:not(.active) {
        transform: scale(calc(var(--scale) + 70%)) translateX(calc(var(--translate-x) + 20%)) translateY(var(--translate-y)) rotateZ(calc(var(--rotate-z) + 5deg));
    }

    .services-list-graphics-item-cover:before {
        box-shadow: 0 0 5rem rgba(0, 0, 0, 0.8);
    }

    .services-list-graphics-item.active .services-list-graphics-item-cover:before {
        box-shadow: 0 0 7rem rgba(0, 0, 0, 0.8);
    }

    .services-list-graphics-item-disc {
        padding: var(--space-lg);
    }

    .services-list-graphics-wrapper {
        min-height: 220vh;
    }
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: #000000;
    color: #ffffff;
    padding: var(--section-padding-y) var(--container-padding);
    width: 100%;
    overflow: hidden;
}

.team-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.team-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    margin-bottom: var(--space-lg);
}

.team-image {
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.team-image:hover img {
    transform: scale(1.03);
}

.team-image--portrait {
    aspect-ratio: 3/4;
}

.team-image--duo {
    aspect-ratio: 3/4;
}

.team-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left;
    max-width: 850px;
    margin: 0 auto;
}

.team-intro {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #ffffff;
    margin-bottom: var(--space-xs);
}

.team-intro strong {
    font-weight: 600;
}

.team-text p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.team-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.signature-text {
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.signature-image {
    max-width: 80px;
    height: auto;
    color: #ffffff;
}

svg.signature-image {
    width: 70px;
    height: 30px;
}

/* Team Clients Label */
.team-clients-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: center;
}

/* Bande blanche avec logos noirs */
.team-clients-bar {
    background-color: #ffffff;
    padding: var(--space-lg) 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: var(--space-2xl);
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden;
}

/* Marquee Animation Container */
.team-clients-marquee {
    display: flex;
    width: max-content;
    animation: marquee-bounce 20s ease-in-out infinite;
}

.team-clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-shrink: 0;
    padding: 0 var(--space-xl);
}

/* Animation de va-et-vient */
@keyframes marquee-bounce {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(calc(-50% + 50vw));
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.team-clients-bar:hover .team-clients-marquee {
    animation-play-state: paused;
}

svg.client-logo {
    height: 22px;
    width: auto;
    color: #000000;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

svg.client-logo--nyt {
    height: 18px;
}

svg.client-logo--vogue {
    height: 28px;
}

svg.client-logo--ad {
    height: 28px;
}

svg.client-logo:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-container {
        padding: 0;
    }

    .team-images {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .team-image--portrait,
    .team-image--duo {
        aspect-ratio: 3/4;
    }

    .team-text {
        gap: var(--space-sm);
    }

    .team-intro {
        font-size: 0.88rem;
    }

    .team-text p {
        font-size: 0.82rem;
    }

    .team-clients-bar {
        padding: var(--space-md) 0;
    }

    .team-clients-logos {
        gap: var(--space-xl);
        padding: 0 var(--space-lg);
    }

    .team-clients-marquee {
        animation-duration: 15s;
    }

    svg.client-logo {
        height: 18px;
    }

    svg.client-logo--vogue,
    svg.client-logo--ad {
        height: 24px;
    }

    svg.client-logo--nyt {
        height: 16px;
    }
}

@media (max-width: 480px) {
    .team-container {
        padding: 0;
    }

    .team-images {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .team-clients-bar {
        padding: var(--space-sm) 0;
    }

    .team-clients-logos {
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }

    .team-clients-marquee {
        animation-duration: 12s;
    }

    svg.client-logo {
        height: 16px;
    }

    svg.client-logo--vogue,
    svg.client-logo--ad {
        height: 20px;
    }
}

/* ===== PREFERS REDUCED MOTION - Full Accessibility Support ===== */
@media (prefers-reduced-motion: reduce) {
    /* Disable all transitions and animations */
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable loader animation */
    .logo-loader {
        animation: none;
        opacity: 0;
        visibility: hidden;
    }
    
    .logo-loader__image {
        animation: none;
        opacity: 1;
        transform: scale(1);
    }
    
    /* Disable marquee */
    .team-clients-marquee {
        animation: none;
        transform: none;
    }
    
    /* Disable services-list spin */
    .services-list-graphics-item.active .services-list-graphics-item-disc img {
        animation: none;
    }
    
    /* Disable hover transforms */
    .image-card:hover,
    .posts-grid__single:hover,
    .projects-grid__single:hover,
    .team-image:hover img {
        transform: none;
    }
    
    /* Keep hover state changes without motion */
    .posts-grid__thumb img,
    .projects-grid__thumb img {
        transition: none;
    }
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== FORM STATES ===== */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin: -0.75rem 0 0 -0.75rem;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success .newsletter-form__button,
.form-success .submit-button {
    background-color: #22c55e;
    border-color: #22c55e;
}

.form-error .newsletter-form__button,
.form-error .submit-button {
    background-color: #ef4444;
    border-color: #ef4444;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.form-message {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    text-align: center;
}

.form-message--success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message--error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
