/*
Theme Name:  Praxis Communication
Theme URI:   https://praxis-comm.com
Description: Thème premium pour Praxis Communication — cabinet de communication stratégique
Version:     1.0.0
Author:      ETS. The Origin Team
Author URI:  https://praxis-comm.com
License:     Proprietary
Text Domain: praxis
*/

/* ================================================================
   IMPORTS & FONTS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Bricolage+Grotesque:wght@300;400;500;600;700;800&family=DM+Mono:wght@300;400;500&display=swap');

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
    /* Couleurs */
    --ink:        #0A0A0B;
    --ink-deep:   #050506;
    --ink-soft:   #141416;
    --gold:       #C9A84C;
    --gold-lt:    #E8C96A;
    --gold-pale:  rgba(201,168,76,0.15);
    --gold-glow:  rgba(201,168,76,0.08);
    --cream:      #F5F0E8;
    --cream-soft: #FAF7F2;
    --white:      #FFFFFF;
    --gray-100:   #F0EDE8;
    --gray-300:   #C8C4BB;
    --gray-500:   #8A8680;
    --gray-700:   #4A4742;
    --border:     rgba(201,168,76,0.15);
    --border-sub: rgba(255,255,255,0.06);

    /* Typographie */
    --ff-display: 'Cormorant Garamond', 'Georgia', serif;
    --ff-body:    'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
    --ff-mono:    'DM Mono', monospace;

    /* Spacing */
    --s1: 0.5rem;
    --s2: 1rem;
    --s3: 1.5rem;
    --s4: 2rem;
    --s5: 3rem;
    --s6: 4rem;
    --s7: 6rem;
    --s8: 9rem;

    /* Transitions */
    --ease:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --dur:    0.35s;
    --dur-lg: 0.65s;

    /* Layout */
    --max-w: 1280px;
    --radius: 3px;
    --radius-lg: 8px;
}

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

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

body {
    font-family: var(--ff-body);
    background: var(--ink);
    color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.t-display {
    font-family: var(--ff-display);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.t-label {
    font-family: var(--ff-mono);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.t-body {
    font-family: var(--ff-body);
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.75;
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s4);
}

.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--s4); }
.container-wide   { max-width: 1440px; margin: 0 auto; padding: 0 var(--s4); }

section { position: relative; }

/* ================================================================
   CURSOR PERSONNALISÉ
   ================================================================ */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.25s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s;
}

.cursor.hover-active { width: 6px; height: 6px; }
.cursor-ring.hover-active { width: 60px; height: 60px; opacity: 0.5; }

/* ================================================================
   GRAIN OVERLAY
   ================================================================ */
.grain-overlay {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9000;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0,0); }
    10% { transform: translate(-2%,-3%); }
    20% { transform: translate(3%,2%); }
    30% { transform: translate(-1%,4%); }
    40% { transform: translate(4%,-1%); }
    50% { transform: translate(-3%,3%); }
    60% { transform: translate(2%,-4%); }
    70% { transform: translate(-4%,1%); }
    80% { transform: translate(1%,-2%); }
    90% { transform: translate(-2%,4%); }
}

/* ================================================================
   BOUTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--ink-deep);
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-lt);
    transform: translateX(-101%);
    transition: transform var(--dur) var(--ease);
}

.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }

.btn-outline {
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-lt);
}

.btn-outline:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
}

.btn-ghost {
    color: var(--gray-300);
    border-bottom: 1px solid transparent;
}

.btn-ghost:hover { color: var(--cream); border-color: var(--gold); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 800;
    padding: 1.6rem 0;
    transition: all var(--dur) var(--ease);
}

.site-header.scrolled {
    background: rgba(10,10,11,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-sub);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
}

.nav-logo-mark svg { width: 100%; height: 100%; }

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--cream);
    line-height: 1;
}

.nav-logo-tagline {
    font-family: var(--ff-mono);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s4);
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color var(--dur) var(--ease);
    position: relative;
    padding-bottom: 2px;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--s2);
}

/* Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all var(--dur) var(--ease);
}

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ink-deep);
    z-index: 790;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s4);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--cream);
    transition: color var(--dur) var(--ease);
}

.nav-mobile a:hover { color: var(--gold); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

/* Fond cinématique */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 80% at -10% 50%, rgba(201,168,76,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 110% 20%, rgba(15,15,40,0.8) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 50%);
    background-color: var(--ink-deep);
}

/* Colonnes verticales lumineuses façon Orbiq */
.hero-columns {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    opacity: 0.55;
    right: -5%;
}

.hero-col {
    width: 60px;
    height: 85%;
    border-radius: 80px 80px 0 0;
    position: relative;
    flex-shrink: 0;
}

.hero-col:nth-child(1) { background: linear-gradient(to top, rgba(201,168,76,0.6), transparent); width: 55px; height: 60%; }
.hero-col:nth-child(2) { background: linear-gradient(to top, rgba(201,168,76,0.45), transparent); width: 50px; height: 80%; }
.hero-col:nth-child(3) { background: linear-gradient(to top, rgba(240,200,100,0.55), transparent); width: 65px; height: 100%; }
.hero-col:nth-child(4) { background: linear-gradient(to top, rgba(255,255,255,0.7), transparent); width: 55px; height: 90%; filter: blur(2px); }
.hero-col:nth-child(5) { background: linear-gradient(to top, rgba(255,255,255,0.9), transparent); width: 70px; height: 100%; filter: blur(4px); }
.hero-col:nth-child(6) { background: linear-gradient(to top, rgba(200,210,255,0.6), transparent); width: 55px; height: 85%; filter: blur(6px); }
.hero-col:nth-child(7) { background: linear-gradient(to top, rgba(150,170,220,0.4), transparent); width: 60px; height: 70%; filter: blur(10px); }
.hero-col:nth-child(8) { background: linear-gradient(to top, rgba(100,130,200,0.3), transparent); width: 55px; height: 55%; filter: blur(14px); }

/* Silhouette */
.hero-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 60px;
    height: 120px;
    background: rgba(10,10,11,0.9);
    border-radius: 30px 30px 0 0;
    opacity: 0.7;
}

/* Contenu hero */
.hero-left {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem var(--s6) var(--s7) var(--s5);
}

.hero-right {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--s7) var(--s5) var(--s7) var(--s4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--s3);
    animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: var(--s4);
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}

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

.hero-title-dim {
    color: var(--gray-500);
    font-weight: 300;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: var(--s4);
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: var(--s5);
    animation: fadeUp 0.8s var(--ease) 0.35s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s2);
    animation: fadeUp 0.8s var(--ease) 0.45s both;
}

/* Stats héro */
.hero-stats {
    display: flex;
    gap: var(--s4);
    margin-bottom: var(--s4);
    animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.hero-stat-n {
    display: block;
    font-family: var(--ff-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold-lt);
    line-height: 1;
}

.hero-stat-l {
    display: block;
    font-family: var(--ff-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 4px;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeUp 0.8s var(--ease) 0.6s both;
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--border);
}

.hero-scroll-text {
    font-family: var(--ff-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   SECTION COMMUNE
   ================================================================ */
.section-header {
    margin-bottom: var(--s6);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--s2);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--cream);
}

.section-title em { font-style: italic; color: var(--gold-lt); }

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 560px;
    margin-top: var(--s3);
}

/* ================================================================
   SECTION ABOUT
   ================================================================ */
.about {
    padding: var(--s8) 0;
    background: var(--ink-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s7);
    align-items: center;
}

.about-visual {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    inset: 0;
    background: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    color: var(--gray-700);
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.about-accent-box {
    position: absolute;
    bottom: -var(--s3);
    right: -var(--s3);
    width: 180px;
    padding: var(--s3);
    background: var(--gold-pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.about-accent-n {
    font-family: var(--ff-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-lt);
    line-height: 1;
}

.about-accent-l {
    font-family: var(--ff-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-top: 4px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s2);
    margin-top: var(--s5);
}

.about-value {
    padding: var(--s3);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    transition: all var(--dur) var(--ease);
}

.about-value:hover {
    border-color: var(--border);
    background: var(--gold-glow);
}

.about-value-icon {
    font-family: var(--ff-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--s1);
}

.about-value-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
}

/* ================================================================
   SECTION EXPERTISES
   ================================================================ */
.expertises {
    padding: var(--s8) 0;
    background: var(--ink);
}

.expertise-tabs {
    display: flex;
    align-items: center;
    gap: var(--s2);
    margin-bottom: var(--s6);
    overflow-x: auto;
    padding-bottom: var(--s1);
    border-bottom: 1px solid var(--border-sub);
}

.expertise-tab {
    font-family: var(--ff-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: var(--s1) var(--s2);
    border-radius: var(--radius);
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    position: relative;
    top: 1px;
}

.expertise-tab.active {
    color: var(--gold-lt);
    border-color: var(--gold);
}

.expertise-tab:hover:not(.active) { color: var(--gray-300); }

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-sub);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.expertise-card {
    background: var(--ink-soft);
    padding: var(--s5) var(--s4);
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.expertise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-glow), transparent);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.expertise-card:hover::before { opacity: 1; }

.expertise-card:hover { background: var(--ink); }

.expertise-num {
    font-family: var(--ff-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: var(--s3);
    opacity: 0.6;
}

.expertise-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--s3);
    color: var(--gold);
    opacity: 0.8;
}

.expertise-icon svg { width: 100%; height: 100%; }

.expertise-name {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: var(--s2);
    line-height: 1.2;
}

.expertise-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.65;
}

.expertise-items {
    margin-top: var(--s3);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-700);
}

.expertise-item::before {
    content: '';
    width: 12px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.expertise-arrow {
    position: absolute;
    bottom: var(--s3);
    right: var(--s3);
    width: 20px;
    height: 20px;
    color: var(--gold);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all var(--dur) var(--ease);
}

.expertise-card:hover .expertise-arrow { opacity: 0.7; transform: translate(0,0); }

/* ================================================================
   SECTION MÉTHODE
   ================================================================ */
.methode {
    padding: var(--s8) 0;
    background: var(--ink-soft);
    overflow: hidden;
}

.methode-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border-sub);
    margin-top: var(--s6);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.methode-step {
    background: var(--ink);
    padding: var(--s5) var(--s4);
    position: relative;
    transition: background var(--dur) var(--ease);
}

.methode-step:hover { background: var(--ink-soft); }

.methode-step-n {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: var(--s2);
    transition: color var(--dur) var(--ease);
}

.methode-step:hover .methode-step-n { color: rgba(201,168,76,0.3); }

.methode-step-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--s1);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.methode-step-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.6;
}

.methode-connector {
    position: absolute;
    top: var(--s5);
    right: -1px;
    width: 1px;
    height: 30px;
    background: var(--gold);
    opacity: 0.3;
}

/* ================================================================
   SECTION CIBLES
   ================================================================ */
.cibles {
    padding: var(--s8) 0;
    background: var(--ink);
}

.cibles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s3);
    margin-top: var(--s6);
}

.cible-card {
    padding: var(--s4) var(--s3);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--dur) var(--ease);
    background: rgba(255,255,255,0.01);
}

.cible-card:hover {
    border-color: var(--border);
    background: var(--gold-glow);
    transform: translateY(-4px);
}

.cible-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--s2);
    color: var(--gold);
    opacity: 0.7;
}

.cible-icon svg { width: 100%; height: 100%; }

.cible-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.3;
}

/* ================================================================
   SECTION DISTINCTIONS
   ================================================================ */
.distinctions {
    padding: var(--s7) 0;
    background: var(--ink-soft);
    border-top: 1px solid var(--border-sub);
    border-bottom: 1px solid var(--border-sub);
}

.distinctions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border-sub);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.distinction-item {
    background: var(--ink);
    padding: var(--s4) var(--s3);
    display: flex;
    align-items: flex-start;
    gap: var(--s2);
    transition: background var(--dur) var(--ease);
}

.distinction-item:hover { background: var(--ink-soft); }

.distinction-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.distinction-text {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gray-300);
    line-height: 1.5;
}

/* ================================================================
   SECTION CONTACT
   ================================================================ */
.contact {
    padding: var(--s8) 0;
    background: var(--ink-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s2);
}

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

.form-label {
    font-family: var(--ff-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.form-input,
.form-textarea,
.form-select {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius);
    padding: 0.85rem var(--s2);
    font-family: var(--ff-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--cream);
    transition: all var(--dur) var(--ease);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: rgba(201,168,76,0.5);
    background: var(--gold-glow);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-700); }

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

.form-select option { background: var(--ink-soft); }

.contact-info {
    padding-top: var(--s2);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    padding: var(--s3) 0;
    border-bottom: 1px solid var(--border-sub);
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-info-icon svg { width: 16px; height: 16px; }

.contact-info-label {
    font-family: var(--ff-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--cream);
}

.contact-social {
    display: flex;
    gap: var(--s2);
    margin-top: var(--s4);
}

.contact-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-sub);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gray-500);
    transition: all var(--dur) var(--ease);
}

.contact-social a:hover {
    border-color: var(--border);
    color: var(--gold);
    background: var(--gold-glow);
}

.contact-social svg { width: 16px; height: 16px; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--ink-deep);
    border-top: 1px solid var(--border-sub);
    padding: var(--s5) 0 var(--s4);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s6);
    margin-bottom: var(--s5);
    padding-bottom: var(--s5);
    border-bottom: 1px solid var(--border-sub);
}

.footer-logo-wrap { margin-bottom: var(--s3); }

.footer-tagline {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 280px;
}

.footer-col-title {
    font-family: var(--ff-mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--s2);
}

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

.footer-links a {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray-500);
    transition: color var(--dur) var(--ease);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--ff-mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--gray-700);
}

.footer-legal {
    display: flex;
    gap: var(--s3);
}

.footer-legal a {
    font-family: var(--ff-mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--gray-700);
    transition: color var(--dur) var(--ease);
}

.footer-legal a:hover { color: var(--gray-500); }

/* ================================================================
   ANIMATIONS SCROLL
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 8rem var(--s4) var(--s5); }
    .hero-right { padding: 0 var(--s4) var(--s6); }
    .hero-columns { opacity: 0.25; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 320px; }
    .expertise-grid { grid-template-columns: 1fr 1fr; }
    .methode-steps { grid-template-columns: 1fr 1fr; }
    .cibles-grid { grid-template-columns: repeat(3, 1fr); }
    .distinctions-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-right { display: none; }
    .nav-toggle { display: flex; }
    .hero-title { font-size: clamp(2.8rem, 8vw, 4rem); }
    .expertise-grid { grid-template-columns: 1fr; }
    .methode-steps { grid-template-columns: 1fr; }
    .cibles-grid { grid-template-columns: 1fr 1fr; }
    .distinctions-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    :root { --s5: 2.5rem; --s6: 3rem; --s7: 4.5rem; --s8: 6rem; }
    .hero-stats { flex-wrap: wrap; gap: var(--s3); }
    .cibles-grid { grid-template-columns: 1fr; }
}
