/* ===== VARIABLES ===== */
:root {
    --primary: #c0392b;
    --primary-dark: #922b21;
    --primary-light: #e74c3c;
    --secondary: #1a3a6b;
    --secondary-light: #2152a3;
    --accent: #f0b429;
    --white: #ffffff;
    --light: #fdf5f5;
    --gray: #6c757d;
    --dark: #1a1a2e;
    --text: #2d3748;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s ease;

    /* Light mode tokens */
    --bg-page:        #ffffff;
    --bg-light:       #fdf5f5;
    --bg-dark-section:#0e0e14;
    --bg-footer:      #080810;
    --text-main:      #2d3748;
    --text-muted:     #6c757d;
    --border-light:   rgba(0,0,0,0.07);
    --border-dark:    rgba(255,255,255,0.07);
    --card-bg:        #ffffff;
    --input-bg:       rgba(255,255,255,0.05);
}

/* Dark mode tokens */
[data-theme="dark"] {
    --bg-page:        #111118;
    --bg-light:       #1a1a24;
    --bg-dark-section:#08080f;
    --bg-footer:      #04040a;
    --text-main:      #e2e8f0;
    --text-muted:     #94a3b8;
    --border-light:   rgba(255,255,255,0.07);
    --border-dark:    rgba(255,255,255,0.05);
    --card-bg:        #1a1a24;
    --shadow:         0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg:      0 10px 40px rgba(0,0,0,0.5);
}

/* ===== BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-main);
    background: var(--bg-page);
    overflow-x: hidden;
    letter-spacing: 0.2px;
    line-height: 1.7;
    transition: background 0.4s ease, color 0.4s ease;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; letter-spacing: -0.5px; }

h4, h5, h6 { font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0.2px; }

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

img { max-width: 100%; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.topbar.hidden { transform: translateY(-100%); margin-top: -38px; }

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-left a,
.topbar-left span {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.topbar-left a:hover { color: var(--accent); }

.topbar-right span {
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

/* ===== SITE HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background: rgba(146, 43, 33, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    padding: 0;
}

.main-nav.scrolled {
    background: rgba(100, 20, 14, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* BRAND */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.brand-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(var(--accent), var(--primary-light), var(--accent));
    animation: spin 6s linear infinite;
    opacity: 0.6;
}

@keyframes spin { to { transform: rotate(360deg); } }

.brand-logo {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-dark);
    z-index: 1;
}

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* DESKTOP MENU */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-menu-link {
    position: relative;
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-menu-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-menu-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-menu-link:hover::after,
.nav-menu-link.is-active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu-link.is-active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    font-weight: 600;
}

/* CTA BUTTON */
.nav-cta { margin-left: 8px; }

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--dark) !important;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249,168,37,0.3);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,168,37,0.45);
    color: var(--dark) !important;
}

.nav-cta-btn.is-active {
    background: #f57f17;
    color: var(--white) !important;
}

/* HAMBURGER */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-hamburger:hover { background: rgba(255,255,255,0.15); }

/* MOBILE DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background: #080810;
    z-index: 2000;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-drawer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
}

.mobile-drawer.open { right: 0; }

/* Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.drawer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.drawer-brand-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.drawer-brand-sub {
    display: block;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Bouton fermer */
.drawer-close {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.drawer-close span {
    display: block;
    width: 18px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.drawer-close span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.drawer-close span:last-child  { transform: rotate(-45deg) translate(4px, -4px); }

.drawer-close:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

/* Navigation */
.drawer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    overflow-y: auto;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 32px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.drawer-nav-link::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 0;
    height: 100%;
    background: rgba(192,57,43,0.06);
    transition: width 0.35s ease;
}

.drawer-nav-link:hover::before,
.drawer-nav-link.is-active::before { width: 100%; }

.drawer-nav-link.is-active {
    border-left: 2px solid var(--accent);
}

.drawer-nav-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    letter-spacing: 2px;
    width: 24px;
    flex-shrink: 0;
}

.drawer-nav-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: -0.5px;
    flex: 1;
    transition: color 0.3s ease;
    line-height: 1;
}

.drawer-nav-link:hover .drawer-nav-label,
.drawer-nav-link.is-active .drawer-nav-label {
    color: var(--white);
}

.drawer-nav-link.is-active .drawer-nav-label {
    color: var(--accent);
}

.drawer-nav-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.drawer-nav-link:hover .drawer-nav-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent);
    border-color: rgba(240,180,41,0.3);
}

/* Footer drawer */
.drawer-footer {
    padding: 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.25s ease;
    letter-spacing: 0.3px;
}

.drawer-footer-link i { color: var(--accent); font-size: 0.72rem; width: 14px; text-align: center; }
.drawer-footer-link:hover { color: rgba(255,255,255,0.7); }

.drawer-footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.5px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.drawer-footer-legal i { color: rgba(240,180,41,0.4); font-size: 0.65rem; }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ===== THEME TOGGLE ===== */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
}

.theme-toggle-icon {
    position: absolute;
    font-size: 0.85rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-icon-light { color: var(--accent); transform: translateY(0) rotate(0deg); opacity: 1; }
.theme-icon-dark  { color: #a0b4d0; transform: translateY(20px) rotate(90deg); opacity: 0; }

[data-theme="dark"] .theme-icon-light { transform: translateY(-20px) rotate(-90deg); opacity: 0; }
[data-theme="dark"] .theme-icon-dark  { transform: translateY(0) rotate(0deg); opacity: 1; }

/* Sections blanches en dark mode */
[data-theme="dark"] .about-section,
[data-theme="dark"] .about-creation,
[data-theme="dark"] .approach-section,
[data-theme="dark"] .contact-section,
[data-theme="dark"] .partners-intro-section,
[data-theme="dark"] .partners-list-section:not(.partners-list-dark) { background: var(--bg-page); }

[data-theme="dark"] .perspectives-section,
[data-theme="dark"] .bg-light-green { background: var(--bg-light); }

[data-theme="dark"] .domain-detail:nth-child(even) { background: var(--bg-light); }
[data-theme="dark"] .domain-detail:nth-child(odd)  { background: var(--bg-page); }

[data-theme="dark"] .about-creation-title,
[data-theme="dark"] .approach-title,
[data-theme="dark"] .partners-intro-title,
[data-theme="dark"] .perspectives-title,
[data-theme="dark"] .contact-info-title,
[data-theme="dark"] .domain-detail-title,
[data-theme="dark"] .section-title h2 { color: var(--text-main); }

[data-theme="dark"] .about-creation-body,
[data-theme="dark"] .about-creation-lead,
[data-theme="dark"] .approach-lead,
[data-theme="dark"] .domain-detail-intro,
[data-theme="dark"] .contact-info-intro,
[data-theme="dark"] .partners-intro-body,
[data-theme="dark"] .partners-list-desc,
[data-theme="dark"] .perspective-card-text,
[data-theme="dark"] .approach-item-desc,
[data-theme="dark"] .section-title p { color: var(--text-muted); }

[data-theme="dark"] .perspective-card,
[data-theme="dark"] .partner-item:not(.partner-item-dark),
[data-theme="dark"] .vmo-card { background: var(--bg-light); border-color: rgba(255,255,255,0.06); }

[data-theme="dark"] .about-creation-img-sec { border-color: var(--bg-page); }
[data-theme="dark"] .partners-intro-stats    { background: var(--bg-light); }

[data-theme="dark"] .about-creation-facts,
[data-theme="dark"] .about-inline-stats,
[data-theme="dark"] .about-vmo-item,
[data-theme="dark"] .approach-item,
[data-theme="dark"] .contact-detail-item,
[data-theme="dark"] .domain-detail-intro { border-color: rgba(255,255,255,0.06); }

[data-theme="dark"] .contact-form-wrap { background: #0a0a12; }

[data-theme="dark"] .about-fact-label,
[data-theme="dark"] .about-inline-label,
[data-theme="dark"] .approach-item-title { color: var(--text-muted); }

[data-theme="dark"] .partner-item-name:not(.partner-item-dark .partner-item-name),
[data-theme="dark"] .partner-item-desc:not(.partner-item-dark .partner-item-desc) { color: var(--text-muted); }

/* RESPONSIVE nav-controls */
@media (max-width: 991px) { .nav-hamburger { display: flex; } }


@media (max-width: 576px) {
    .topbar-right { display: none; }
    .brand-tagline { display: none; }
    .nav-inner { height: 62px; }
    .brand-logo, .brand-logo-wrap { width: 44px; height: 44px; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

/* Visuel droit */
.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45) saturate(0.9);
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10,10,20,0.97) 0%, rgba(10,10,20,0.85) 42%, rgba(10,10,20,0.2) 100%);
}

/* Panneau gauche */
.hero-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 48px 0;
}

.hero-panel-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 64px 40px;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.hero-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.hero-eyebrow-text {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Titre */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 1.8rem;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

/* Sous-titre */
.hero-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 2.5rem;
    letter-spacing: 0.3px;
}

/* Boutons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 2px;
    transition: all 0.35s ease;
}

.hero-btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    gap: 20px;
}

.hero-btn-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-arrow {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
}

.hero-btn-ghost {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.hero-btn-ghost:hover {
    color: var(--white);
    border-color: var(--white);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
    padding: 0 28px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    margin: 0 28px 0 0;
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-left: 64px;
}

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

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
    font-weight: 300;
}

/* Responsive hero */
@media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .hero-panel { max-width: 100%; }
    .hero-panel-inner { padding: 110px 24px 32px; }
    .hero-scroll-indicator { padding-left: 24px; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .hero-stat { padding: 0 16px 0 0; }
    .hero-stat-divider { margin: 0 16px 0 0; }
    .hero-stat-num { font-size: 1.6rem; }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192,57,43,0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== SECTION TITLES ===== */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.15;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    font-size: 1rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 1rem 0;
}

.title-line.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== DOMAINS SECTION ===== */
.domains-section {
    background: #0e0e14;
    padding: 100px 0;
}

/* Header split */
.domains-header {
    margin-bottom: 64px;
}

.domains-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.domains-header-left .section-label {
    color: var(--accent);
}

.domains-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0;
}

.domains-title em {
    font-style: italic;
    color: var(--accent);
}

.domains-header-right {
    max-width: 420px;
    flex-shrink: 0;
}

.domains-intro {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.domains-intro strong {
    color: rgba(255,255,255,0.75);
    font-weight: 400;
}

.domains-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.domains-all-link:hover { gap: 18px; color: var(--accent); }

.domains-all-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.domains-all-link:hover .domains-all-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

/* Grille */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 2px;
}

/* Carte domaine */
.domain-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.domain-card-img {
    position: absolute;
    inset: 0;
}

.domain-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.35) saturate(0.7);
}

.domain-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,20,0.95) 0%,
        rgba(10,10,20,0.4) 50%,
        rgba(10,10,20,0.1) 100%
    );
    transition: background 0.4s ease;
}

.domain-card:hover .domain-card-img img {
    transform: scale(1.08);
    filter: brightness(0.5) saturate(0.9);
}

.domain-card:hover .domain-card-overlay {
    background: linear-gradient(
        to top,
        rgba(192,57,43,0.85) 0%,
        rgba(10,10,20,0.5) 60%,
        rgba(10,10,20,0.1) 100%
    );
}

/* Corps de la carte */
.domain-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
}

.domain-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.domain-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.domain-card-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.domain-card:hover .domain-card-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.domain-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.domain-card-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.3s ease;
}

.domain-card:hover .domain-card-desc {
    max-height: 80px;
    opacity: 1;
}

.domain-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
}

.domain-card:hover .domain-card-link {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent);
}

/* Responsive domaines */
@media (max-width: 1199px) {
    .domains-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
    .domains-header-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .domains-header-right { max-width: 100%; }
    .domains-grid { grid-template-columns: repeat(3, 1fr); }
    .domains-section { padding: 72px 0; }
}

@media (max-width: 767px) {
    .domains-grid { grid-template-columns: repeat(2, 1fr); }
    .domain-card { aspect-ratio: 4/5; }
    .domains-section { padding: 56px 0; }
    .domains-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .domains-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
    .domain-card-title { font-size: 1rem; }
    .domain-card-body { padding: 16px 14px; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.about-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Header */
.about-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.about-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.about-main-title em {
    font-style: italic;
    color: var(--primary);
}

.about-year-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.about-year-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    letter-spacing: -2px;
}

.about-year-label {
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: -8px;
}

/* Corps */
.about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Colonne image */
.about-img-col { position: relative; }

.about-img-stack { position: relative; }

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
}

.about-img-secondary {
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: 55%;
    height: 220px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-tag {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(192,57,43,0.3);
}

.about-img-tag i { color: var(--accent); font-size: 0.85rem; }

/* Colonne texte */
.about-text-col { padding-top: 8px; }

.about-lead {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.about-lead strong { color: var(--primary); font-weight: 500; }

/* VMO */
.about-vmo { margin-bottom: 2.5rem; }

.about-vmo-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-vmo-item:first-child { padding-top: 0; }
.about-vmo-item:last-child { border-bottom: none; }

.about-vmo-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(192,57,43,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-vmo-item:hover .about-vmo-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.about-vmo-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-vmo-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Stats inline */
.about-inline-stats {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.about-inline-stat {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(0,0,0,0.07);
}

.about-inline-stat:last-child { border-right: none; }

.about-inline-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.about-inline-label {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    transition: gap 0.3s ease;
}

.about-cta:hover { gap: 20px; color: var(--primary); }

.about-cta-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.about-cta:hover .about-cta-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Responsive about */
@media (max-width: 991px) {
    .about-body { grid-template-columns: 1fr; gap: 80px; }
    .about-img-secondary { right: -16px; bottom: -24px; }
    .about-section { padding: 72px 0; }
}

@media (max-width: 767px) {
    .about-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
    .about-year-badge { align-items: flex-start; }
    .about-year-num { font-size: 2.5rem; }
    .about-img-main { height: 320px; }
    .about-img-secondary { width: 50%; height: 160px; right: 0; bottom: -20px; }
    .about-img-tag { left: 0; top: 16px; }
    .about-body { gap: 60px; }
    .about-section { padding: 56px 0; }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: #0e0e14;
    padding-top: 100px;
}

.gallery-section-header {
    padding-bottom: 56px;
}

.gallery-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.gallery-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.gallery-main-title em { font-style: italic; color: var(--accent); }

.gallery-header-desc {
    max-width: 380px;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin: 0;
    flex-shrink: 0;
}

/* Mosaïque */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 3px;
}

.gallery-mosaic-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-mosaic-large {
    grid-row: span 2;
}

.gallery-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    filter: brightness(0.6) saturate(0.8);
}

.gallery-mosaic-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.75) saturate(1);
}

.gallery-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,20,0.9) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-mosaic-item:hover .gallery-mosaic-overlay { opacity: 1; }

.gallery-mosaic-label {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* Responsive gallery */
@media (max-width: 991px) {
    .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
    .gallery-mosaic-large { grid-row: span 1; }
    .gallery-section { padding-top: 72px; }
    .gallery-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .gallery-header-desc { max-width: 100%; }
}

@media (max-width: 576px) {
    .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); gap: 2px; }
    .gallery-section { padding-top: 56px; }
}

/* ===== PARTNERS TICKER (accueil) ===== */
.partners-section {
    background: #0e0e14;
    padding: 80px 0 100px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.partners-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.partners-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.partners-title em { font-style: italic; color: var(--accent); }

.partners-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.partners-all-link:hover { color: var(--accent); gap: 18px; }

.partners-all-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.partners-all-link:hover .partners-all-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.partners-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: partnersTicker 35s linear infinite;
}

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

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

.partner-pill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    white-space: nowrap;
    cursor: default;
    transition: all 0.3s ease;
    min-width: 180px;
}

.partner-pill:hover {
    border-color: var(--accent);
    background: rgba(240,180,41,0.05);
}

.partner-pill-abbr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 4px;
}

.partner-pill-full {
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
    white-space: normal;
    max-width: 160px;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .partners-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .partners-section { padding: 56px 0 72px; }
}
.partners-intro-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.partners-intro-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.partners-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.partners-intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.partners-intro-title em { font-style: italic; color: var(--primary); }

.partners-intro-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 20px 0 24px;
}

.partners-intro-body {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.85;
    margin: 0;
}

.partners-intro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 48px;
    background: var(--light);
    border-left: 3px solid var(--primary);
}

.partners-intro-stat { flex: 1; text-align: center; padding: 0 24px; }

.partners-intro-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.partners-intro-label {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.partners-intro-sep {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* Liste partenaires */
.partners-list-section {
    padding: 100px 0;
    background: var(--white);
}

.partners-list-dark {
    background: #0e0e14;
}

.partners-list-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.partners-list-dark .partners-list-header {
    border-bottom-color: rgba(255,255,255,0.07);
}

.partners-list-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.partners-list-title em { font-style: italic; color: var(--accent); }

.partners-list-desc {
    max-width: 360px;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    flex-shrink: 0;
}

/* Grille cartes */
.partners-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.partner-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.partner-item-dark {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.06);
}

.partner-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.4s ease;
}

.partner-item:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.partner-item-dark:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.partner-item:hover::after { width: 100%; }

.partner-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.partner-item-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(192,57,43,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.partner-item-icon-blue {
    border-color: rgba(26,58,107,0.3);
    color: var(--secondary-light);
}

.partner-item:hover .partner-item-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.partner-item:hover .partner-item-icon-blue {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.partner-item-type {
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.partner-item-abbr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.partner-item-name {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

.partner-item-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.partner-item-line {
    width: 32px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
    transition: width 0.3s ease;
}

.partner-item:hover .partner-item-line { width: 56px; opacity: 1; }

/* Responsive partenaires */
@media (max-width: 991px) {
    .partners-intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .partners-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-list-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .partners-list-desc { max-width: 100%; }
    .partners-intro-section, .partners-list-section { padding: 72px 0; }
}

@media (max-width: 576px) {
    .partners-cards-grid { grid-template-columns: 1fr; }
    .partners-intro-stats { flex-direction: column; gap: 24px; padding: 32px; }
    .partners-intro-sep { width: 40px; height: 1px; }
    .partners-intro-section, .partners-list-section { padding: 56px 0; }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* Colonne infos */
.contact-info-header { margin-bottom: 48px; }

.contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.contact-info-title em { font-style: italic; color: var(--primary); }

.contact-info-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 20px 0 20px;
}

.contact-info-intro {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.85;
    margin: 0;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-item:hover { padding-left: 6px; }

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(192,57,43,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.contact-detail-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-detail-label {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-detail-value {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
    transition: color 0.2s ease;
}

a.contact-detail-value:hover { color: var(--primary); }

/* Colonne formulaire */
.contact-form-wrap {
    background: #0e0e14;
    padding: 52px 48px;
    position: relative;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.contact-form-header { margin-bottom: 36px; }

.contact-form-header .section-label { color: var(--accent); }

.contact-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 8px 0 0;
}

.contact-form-title em { font-style: italic; color: var(--accent); }

/* Alertes */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-alert-success {
    background: rgba(45,158,95,0.12);
    border-left: 3px solid #2d9e5f;
    color: #2d9e5f;
}

.contact-alert-error {
    background: rgba(192,57,43,0.12);
    border-left: 3px solid var(--primary);
    color: var(--primary-light);
}

/* Champs */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-field { margin-bottom: 16px; }
.contact-form-row .contact-field { margin-bottom: 0; }

.contact-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}

.contact-label span { color: var(--accent); }

.contact-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

.contact-input::placeholder { color: rgba(255,255,255,0.2); }

.contact-input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.07);
}

.contact-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-select option { background: #1a1a2e; color: var(--white); }

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 18px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    margin-top: 8px;
}

.contact-submit:hover {
    background: var(--white);
    color: var(--dark);
}

.contact-submit-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.contact-submit:hover .contact-submit-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Carte */
.contact-map {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.3) contrast(1.05);
}

.contact-map-tag {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}

.contact-map-tag i { color: var(--accent); }

/* Responsive contact */
@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .contact-form-wrap { padding: 40px 32px; }
    .contact-section { padding: 72px 0; }
}

@media (max-width: 576px) {
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .contact-section { padding: 56px 0; }
    .contact-map { height: 300px; }
    .contact-map-tag { bottom: 16px; left: 16px; }
}

/* ===== INNER HERO (pages internes) ===== */
.inner-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    overflow: hidden;
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.inner-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.7);
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(146,43,33,0.75) 0%, rgba(26,58,107,0.55) 100%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
}

.inner-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
}

.inner-hero-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.inner-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.inner-hero-title em { font-style: italic; color: var(--accent); }

.inner-hero-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.inner-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.inner-hero-breadcrumb a { color: var(--accent); }
.inner-hero-breadcrumb span:last-child { color: rgba(255,255,255,0.4); }
.inner-hero-breadcrumb span:nth-child(2) { color: rgba(255,255,255,0.2); }

/* ===== ABOUT CREATION ===== */
.about-creation {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.about-creation::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-creation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-creation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.about-creation-title em { font-style: italic; color: var(--primary); }

.about-creation-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 20px 0 24px;
}

.about-creation-lead {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-creation-lead strong { color: var(--primary); font-weight: 500; }

.about-creation-body {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-creation-facts {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.about-fact { flex: 1; padding: 0 20px; }
.about-fact:first-child { padding-left: 0; }

.about-fact-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.about-fact-label {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
}

.about-fact-sep {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* Images création */
.about-creation-img-wrap { position: relative; }

.about-creation-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-creation-img-sec {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 52%;
    height: 210px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-creation-badge {
    position: absolute;
    top: 28px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(192,57,43,0.3);
}

.about-creation-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.about-creation-badge-label {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    text-align: center;
    margin-top: 4px;
}

/* ===== VMO SECTION ===== */
.vmo-section {
    background: #0e0e14;
    padding: 100px 0;
}

.vmo-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vmo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.vmo-title em { font-style: italic; color: var(--accent); }

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

.vmo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 48px 36px;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

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

.vmo-card:hover { background: rgba(255,255,255,0.05); }
.vmo-card:hover::before { width: 100%; }

.vmo-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    position: absolute;
    top: 20px; right: 24px;
    letter-spacing: -2px;
}

.vmo-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.vmo-card:hover .vmo-card-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.vmo-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.vmo-card-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin: 0;
}

/* ===== APPROACH SECTION ===== */
.approach-section {
    background: var(--white);
    padding: 100px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-visual { position: relative; }

.approach-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.approach-img-tag {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(26,58,107,0.3);
}

.approach-img-tag i { color: var(--accent); }

.approach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 8px 0 20px;
}

.approach-title em { font-style: italic; color: var(--primary); }

.approach-lead {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.approach-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.approach-item:last-child { border-bottom: none; }

.approach-item-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(192,57,43,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.approach-item:hover .approach-item-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.approach-item-title {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 4px;
}

.approach-item-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== PERSPECTIVES SECTION ===== */
.perspectives-section {
    background: var(--light);
    padding: 100px 0;
}

.perspectives-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.perspectives-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 8px 0 0;
}

.perspectives-title em { font-style: italic; color: var(--primary); }

.perspectives-desc {
    max-width: 380px;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    flex-shrink: 0;
}

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

.perspective-card {
    background: var(--white);
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

.perspective-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.4s ease;
}

.perspective-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.perspective-card:hover::after { width: 100%; }

.perspective-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    display: block;
    margin-bottom: -8px;
    letter-spacing: -2px;
}

.perspective-card-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(192,57,43,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.perspective-card:hover .perspective-card-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.perspective-card-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive about.php */
@media (max-width: 991px) {
    .about-creation-grid, .approach-grid { grid-template-columns: 1fr; gap: 60px; }
    .vmo-grid { grid-template-columns: 1fr; gap: 2px; }
    .perspectives-grid { grid-template-columns: repeat(3, 1fr); }
    .about-creation, .approach-section, .perspectives-section, .vmo-section { padding: 72px 0; }
    .vmo-header, .perspectives-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .perspectives-desc { max-width: 100%; }
}

@media (max-width: 767px) {
    .inner-hero { min-height: 50vh; padding-bottom: 48px; }
    .inner-hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .about-creation-img-sec { right: 0; bottom: -20px; width: 50%; height: 160px; }
    .about-creation-badge { left: 0; top: 16px; }
    .approach-img { height: 320px; }
    .approach-img-tag { left: 0; }
    .perspectives-grid { grid-template-columns: repeat(2, 1fr); }
    .about-creation, .approach-section, .perspectives-section, .vmo-section { padding: 56px 0; }
}

@media (max-width: 480px) {
    .perspectives-grid { grid-template-columns: 1fr; }
    .about-creation-facts { flex-wrap: wrap; gap: 16px; }
    .about-fact-sep { display: none; }
}

/* ===== DOMAIN DETAIL ===== */
.domain-detail {
    padding: 96px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.domain-detail:nth-child(even) { background: var(--light); }
.domain-detail:last-child { border-bottom: none; }

.domain-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.domain-detail-reverse {
    direction: rtl;
}

.domain-detail-reverse > * { direction: ltr; }

/* Visuel */
.domain-detail-img-wrap {
    position: relative;
}

.domain-detail-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.domain-detail-num {
    position: absolute;
    bottom: -24px;
    right: -24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    color: rgba(192,57,43,0.08);
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
}

/* Texte */
.domain-detail-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.domain-detail-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.domain-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.domain-detail-title i {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.domain-detail-intro {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.domain-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
}

.domain-detail-list li:last-child { border-bottom: none; }
.domain-detail-list li:hover { color: var(--primary); padding-left: 6px; }

.domain-detail-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 7px;
}

/* Nav domaines */
.domains-nav {
    position: sticky;
    top: 72px;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.domains-nav-track {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}

.domains-nav-track::-webkit-scrollbar { display: none; }

.domains-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 18px;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.domains-nav-link i { font-size: 0.75rem; color: var(--primary); }

.domains-nav-link:hover,
.domains-nav-link.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(192,57,43,0.03);
}

/* Responsive domaines */
@media (max-width: 991px) {
    .domain-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .domain-detail-reverse { direction: ltr; }
    .domain-detail { padding: 64px 0; }
    .domain-detail-img { height: 300px; }
    .domain-detail-num { font-size: 5rem; bottom: -16px; right: -8px; }
    .domains-nav { top: 62px; }
}

@media (max-width: 576px) {
    .domain-detail { padding: 48px 0; }
    .domain-detail-img { height: 240px; }
    .domains-nav-link span { display: none; }
    .domains-nav-link { padding: 14px 16px; }
    .domains-nav-link i { font-size: 1rem; }
}

/* ===== PERSPECTIVES ===== */
.perspective-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.perspective-item:hover {
    transform: translateX(8px);
    border-left: 3px solid var(--primary);
}

.perspective-item i { color: var(--primary); font-size: 1.2rem; }

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) saturate(0.6);
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(146,43,33,0.75) 0%, rgba(26,58,107,0.6) 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.cta-eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.cta-title em { font-style: italic; color: var(--accent); }

.cta-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 480px;
    margin: 0;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 2px;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.cta-btn-primary:hover {
    background: var(--white);
    color: var(--dark);
    gap: 22px;
}

.cta-btn-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.cta-btn-ghost {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn-ghost:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 991px) {
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
    .cta-section { padding: 80px 0; }
}

@media (max-width: 576px) {
    .cta-section { padding: 64px 0; }
    .cta-btn-primary { width: 100%; justify-content: center; }
}

/* ===== FOOTER ===== */
.site-footer { background: #080810; }

.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.footer-brand-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.footer-brand-sub {
    display: block;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.footer-brand-desc {
    font-size: 0.83rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.2);
}

.footer-legal i { color: var(--accent); font-size: 0.75rem; }

/* Colonnes nav */
.footer-col-title {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li { margin-bottom: 10px; }

.footer-nav-list a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-nav-list a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s ease;
    margin-right: 0;
}

.footer-nav-list a:hover {
    color: var(--white);
    gap: 8px;
}

.footer-nav-list a:hover::before { width: 16px; }

/* Contact */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-contact-icon {
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* Bottom */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

.footer-made {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
}

.footer-made i { color: var(--primary); font-size: 0.65rem; margin: 0 3px; }

/* Responsive footer */
@media (max-width: 1199px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
    .footer-contact-col { grid-column: 1 / -1; }
    .footer-contact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px; }
}

@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-contact-col { grid-column: 1 / -1; }
    .footer-contact-list { grid-template-columns: 1fr; }
    .footer-main { padding: 56px 0 40px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===== BACK TO TOP ===== */
.btn-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.btn-back-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-back-top.show { display: flex; }

/* ===== UTILITIES ===== */
.bg-light-green { background: var(--light); }
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }

.section-pad { padding: 80px 0; }

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    margin: 2rem 0;
}

/* ===== RESPONSIVE ===== */

/* Tablette paysage */
@media (max-width: 1199px) {
    .hero-panel { max-width: 580px; }
    .hero-panel-inner { padding: 120px 48px 40px; }
    .hero-scroll-indicator { padding-left: 48px; }
    .hero-title { font-size: clamp(2.8rem, 4.5vw, 4.2rem); }
}

/* Tablette portrait */
@media (max-width: 991px) {
    /* Nav */
    .nav-menu { display: none; }
    .nav-hamburger { display: flex; }
    .topbar-location { display: none; }

    /* Hero */
    .hero-panel { max-width: 100%; }
    .hero-panel-inner { padding: 110px 40px 36px; }
    .hero-scroll-indicator { padding-left: 40px; }
    .hero-title { font-size: clamp(2.6rem, 6vw, 3.8rem); }
    .hero-stat { padding: 0 20px 0 0; }
    .hero-stat-divider { margin: 0 20px 0 0; }

    /* Sections */
    .section-pad { padding: 64px 0; }
    .about-img-main { height: 380px; }
    .domain-img { height: 260px; }
}

/* Mobile large */
@media (max-width: 767px) {
    /* Topbar */
    .topbar-right { display: none; }

    /* Nav */
    .brand-tagline { display: none; }
    .nav-inner { height: 62px; }
    .brand-logo, .brand-logo-wrap { width: 44px; height: 44px; }

    /* Hero */
    .hero { min-height: 100svh; }
    .hero-panel-inner { padding: 100px 20px 28px; }
    .hero-scroll-indicator { padding-left: 20px; }
    .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); letter-spacing: -0.5px; }
    .hero-sub { font-size: 0.88rem; max-width: 100%; }
    .hero-actions { gap: 18px; }
    .hero-btn-primary { padding: 13px 24px; font-size: 0.7rem; }
    .hero-stats { flex-wrap: wrap; gap: 16px; padding-top: 1.8rem; }
    .hero-stat { padding: 0; }
    .hero-stat-divider { display: none; }
    .hero-stat-num { font-size: 1.8rem; }

    /* Sections */
    .section-pad { padding: 48px 0; }
    .section-title { margin-bottom: 2rem; }

    /* About */
    .about-img-main { height: 280px; }
    .about-img-badge { bottom: -10px; right: 10px; padding: 14px; }
    .about-img-badge .number { font-size: 1.5rem; }

    /* Domain */
    .domain-section { padding: 3rem 0; }
    .domain-img { height: 220px; }
    .domain-number { font-size: 3.5rem; }

    /* Contact */
    .contact-info-card, .contact-form-card { padding: 1.5rem; }

    /* Footer */
    .footer-top { padding: 2.5rem 0 !important; }

    /* Back to top */
    .btn-back-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }
}

/* Mobile petit */
@media (max-width: 480px) {
    .hero-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
    .hero-eyebrow-text { font-size: 0.6rem; letter-spacing: 1.5px; }
    .hero-btn-primary { width: 100%; justify-content: center; }
    .hero-btn-ghost { width: 100%; text-align: center; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
    .card-domain { padding: 1.4rem; }
    .partner-card { padding: 1rem; }
    .page-hero { padding: 90px 0 40px; }
    .topbar { display: none; }
}
