/* ============================================
   INFLUENCE - PREMIUM EXPERIENCE
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #1A1A1A;
    background-color: #FFFFFF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

/* ============================================
   PREMIUM LOADER
   ============================================ */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: snakeRotate 2s linear infinite;
}

.circle-path {
    stroke-dasharray: 1, 1257;
    stroke-dashoffset: 0;
    animation: snakeDash 1.5s ease-in-out infinite;
}

.logo-text {
    font-family: "larken", sans-serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #1A1A1A;
    position: relative;
    z-index: 2;
}

.logo-text .letter {
    display: inline-block;
    opacity: 0;
    animation: fadeInLetter 0.4s ease forwards;
    animation-delay: calc(var(--delay) * 0.1s + 0.5s);
}

@keyframes snakeDash {
    0% {
        stroke-dasharray: 1, 1257;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 942, 1257;
        stroke-dashoffset: -314;
    }
    100% {
        stroke-dasharray: 1, 1257;
        stroke-dashoffset: -1257;
    }
}

@keyframes snakeRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeInLetter {
    to {
        opacity: 1;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: "larken", sans-serif;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(36px, 4.5vw, 58px);
}

h2 {
    font-size: clamp(32px, 4vw, 56px);
}

h3 {
    font-size: clamp(22px, 2.5vw, 32px);
}

h4 {
    font-size: clamp(18px, 2vw, 24px);
}

p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.large-text {
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.6;
    font-weight: 200;
}

/* ============================================
   CONTAINERS
   ============================================ */

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 40px 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 25px 0;
    box-shadow: 0 1px 0 rgba(184, 152, 111, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.logo .logo-text {
    font-family: "larken", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #1A1A1A;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.nav-contact {
    margin-left: auto;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A1A1A;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #B8986F;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 28px;
    height: 1px;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8F8F8 50%, #F5F5F5 100%);
    padding: 150px 0 200px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 35% 45%, rgba(184, 152, 111, 0.12) 0%, rgba(184, 152, 111, 0.03) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.hero-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8986F;
    margin-bottom: 50px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    margin-bottom: 40px;
    color: #1A1A1A;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.015em;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.hero-subtitle {
    font-size: 17px;
    color: #4A4A4A;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}


/* Scroll to explore */
.scroll-to-explore {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1A1A1A;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUpCenter 1s ease forwards 1.1s;
}

.scroll-to-explore:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-circle {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(184, 152, 111, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.scroll-circle::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(184, 152, 111, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scroll-to-explore:hover .scroll-circle {
    border-color: #B8986F;
    background-color: rgba(184, 152, 111, 0.05);
}

.scroll-to-explore:hover .scroll-circle::after {
    opacity: 1;
}

.scroll-text {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(184, 152, 111, 0.1);
    border-bottom: 1px solid rgba(184, 152, 111, 0.1);
    padding: 40px 0;
    box-shadow: 0 1px 0 rgba(184, 152, 111, 0.05);
    margin-bottom: 180px;
}

.bottom-bar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bar-item svg {
    color: #B8986F;
    flex-shrink: 0;
}

.bar-item span {
    font-size: 14px;
    font-weight: 300;
    color: #1A1A1A;
    line-height: 1.4;
}

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

@keyframes fadeInUpCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */

.manifesto {
    min-height: 100vh;
    background-color: #FFFFFF;
    position: relative;
    display: flex;
    align-items: center;
}

.manifesto::before {
    display: none;
}

.manifesto-layout {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.manifesto-intro {
    position: sticky;
    top: 150px;
}

.manifesto-title {
    font-size: clamp(28px, 3.5vw, 48px);
    color: #1A1A1A;
    line-height: 1.3;
    margin-top: 30px;
    font-weight: 300;
    letter-spacing: -0.015em;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
}

.manifesto-points {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 80px;
}

.manifesto-point {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 60px;
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    align-items: start;
}

.manifesto-point:last-child {
    border-bottom: none;
}

.point-number {
    font-family: "larken", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #B8986F;
    font-weight: 300;
    letter-spacing: 2px;
    padding-top: 5px;
}

.manifesto-point p {
    font-size: 20px;
    line-height: 1.7;
    color: #1A1A1A;
    font-weight: 300;
    max-width: 800px;
}

.manifesto-conclusion {
    max-width: 900px;
}

.manifesto-statement {
    font-size: 20px;
    line-height: 1.8;
    color: #1A1A1A;
    font-weight: 300;
}

/* ============================================
   QUI SOMMES-NOUS SECTION
   ============================================ */

.qui-sommes-nous {
    position: relative;
    padding: 180px 0 180px 0;
    margin: 180px 0 0 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8F8F8 50%, #F5F5F5 100%);
    text-align: center;
    overflow: hidden;
}

#quisommesnous-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.qui-sommes-nous::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 35% 45%, rgba(184, 152, 111, 0.12) 0%, rgba(184, 152, 111, 0.03) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.qui-sommes-nous .container-wide {
    position: relative;
    z-index: 2;
}

.qui-sommes-nous .section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8986F;
    margin-bottom: 40px;
    font-weight: 400;
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.qui-sommes-nous .manifesto-statement {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.7;
    color: #1A1A1A;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

/* ============================================
   QUOTE SECTION - SCROLL DRIVEN TYPEWRITER
   ============================================ */

.quote-scroll-wrapper {
    position: relative;
    height: 200vh;
}

.quote-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0D0D0D;
    overflow: hidden;
}

.quote-inner {
    text-align: center;
    max-width: 1100px;
    padding: 0 40px;
}

.centered-quote {
    font-family: "larken", sans-serif;
    font-size: clamp(22px, 2.4vw, 40px);
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.65;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
}

.quote-line {
    display: block;
}

.geometric-accent {
    display: none;
}

/* ============================================
   VISUAL BREAKS - IMAGE SECTIONS
   ============================================ */

.visual-break {
    width: 100%;
    padding: 0 80px;
    margin: 150px 0;
}

.visual-image {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   EXPERTISES SECTION - INTERACTIVE
   ============================================ */

.expertises {
    padding: 180px 0;
    background-color: #FFFFFF;
    position: relative;
}

.expertises-header {
    margin-bottom: 120px;
}

.expertises-title {
    font-size: clamp(32px, 4vw, 56px);
    color: #1A1A1A;
    font-weight: 300;
    margin-top: 20px;
}

.expertises::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 152, 111, 0.15), transparent);
}

.expertises-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 120px;
    align-items: start;
}

.expertises-menu {
    position: sticky;
    top: 150px;
}

.expertise-item {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.expertise-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: #B8986F;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-item.active::before,
.expertise-item:hover::before {
    width: 20px;
}

.expertise-label {
    font-family: "larken", sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #4A4A4A;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.expertise-item.active .expertise-label,
.expertise-item:hover .expertise-label {
    color: #1A1A1A;
}

.expertise-number {
    font-size: 13px;
    color: rgba(184, 152, 111, 0.4);
    font-weight: 300;
    transition: color 0.3s ease;
}

.expertise-item.active .expertise-number {
    color: #B8986F;
}

.expertises-content {
    position: relative;
    min-height: 600px;
}

.expertise-content {
    display: none;
    animation: fadeInContent 0.6s ease;
}

.expertise-content.active {
    display: block;
}

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

.content-tag {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8986F;
    margin-bottom: 40px;
    font-weight: 400;
}

.content-title {
    font-family: "larken", sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: #1A1A1A;
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: -0.015em;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 700px;
}

.content-features {
    list-style: none;
    padding: 0;
}

.content-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    padding: 20px 0;
    padding-left: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    font-weight: 300;
}

.content-features li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.content-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: #B8986F;
}

/* ============================================
   COLLECTIF SECTION
   ============================================ */

.collectif {
    padding: 180px 0;
    background-color: #FAFAFA;
    position: relative;
}

.collectif::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 152, 111, 0.15), transparent);
}

.collectif-header {
    max-width: 1200px;
    margin-bottom: 80px;
}

.collectif-title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 30px;
    color: #1A1A1A;
    font-weight: 300;
    letter-spacing: -0.015em;
}

.collectif-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4A4A;
}

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

.profile-card {
    position: relative;
    background-color: #FFFFFF;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:hover {
    transform: translateY(-8px);
}

.profile-card:hover .profile-image::after {
    opacity: 1;
}

.profile-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, #E8E8E8 0%, #D0D0D0 100%);
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(184, 152, 111, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8E8E8 0%, #D0D0D0 100%);
}

.profile-image img,
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Positionnement spécifique pour l'image de Nathan Menard */
[data-expert="nathan"] .profile-image img {
    object-position: center 20%;
}

.profile-info {
    padding: 30px;
}

.profile-name {
    font-family: "larken", sans-serif;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #1A1A1A;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.profile-title {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8986F;
    margin-bottom: 15px;
    font-weight: 400;
}

.profile-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    font-weight: 300;
}

.profile-overlay,
.profile-bio {
    display: none;
}

/* ============================================
   EXPERT MODAL
   ============================================ */

.expert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.expert-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    max-width: 1200px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #1A1A1A;
    color: #FFFFFF;
    border-color: #1A1A1A;
}

.modal-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    height: 100%;
    max-height: 85vh;
}

.modal-image {
    background: linear-gradient(135deg, #E8E8E8 0%, #D0D0D0 100%);
    height: 100%;
}

.modal-image .image-placeholder {
    width: 100%;
    height: 100%;
}

.modal-bio {
    padding: 80px 60px;
    overflow-y: auto;
    max-height: 85vh;
}

.modal-name {
    font-family: "larken", sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: #1A1A1A;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.modal-title {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8986F;
    margin-bottom: 40px;
    font-weight: 400;
}

.modal-cv {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    font-weight: 300;
}

.modal-cv h4 {
    font-family: "larken", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #1A1A1A;
    margin-top: 40px;
    margin-bottom: 20px;
}

.modal-cv p {
    margin-bottom: 20px;
}

.modal-cv ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.modal-cv ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-cv ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    background-color: #B8986F;
}

/* ============================================
   POUR QUI SECTION
   ============================================ */

.pour-qui {
    position: relative;
    padding: 220px 0;
    background: #FAFAFA;
    overflow: hidden;
}

.pour-qui .container-wide {
    position: relative;
    z-index: 2;
}

.pourqui-title {
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 100px;
    font-weight: 300;
    letter-spacing: -0.015em;
    font-size: clamp(24px, 2.8vw, 46px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.client-card {
    position: relative;
    padding: 50px 35px 170px 35px;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #B8986F, transparent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover::before {
    width: 100%;
}

.client-card:hover {
    background: #FFFFFF;
    border-color: rgba(184, 152, 111, 0.2);
    transform: translateY(-5px);
}

.client-number {
    font-family: "larken", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #B8986F;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 300;
}

.client-card h3 {
    font-family: "larken", sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #1A1A1A;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.client-card p {
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.6;
    font-weight: 300;
}

.client-icon {
    position: absolute;
    bottom: 35px;
    left: 35px;
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

.client-icon svg {
    width: 100%;
    height: 100%;
    stroke: #B8986F;
    fill: none;
}

#pourqui-canvas {
    display: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 180px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8F8F8 50%, #FAFAFA 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 152, 111, 0.2), transparent);
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    margin-bottom: 30px;
    color: #1A1A1A;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.contact-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #4A4A4A;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #1A1A1A;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #B8986F;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

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

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 30px;
}

.submit-button:hover {
    gap: 25px;
    color: #B8986F;
    border-bottom-color: #B8986F;
}

.submit-button svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.form-disclaimer {
    margin-top: 40px;
    font-size: 13px;
    color: #999999;
    font-style: italic;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #1A1A1A;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    font-family: "larken", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-right {
    text-align: right;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B8986F;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .container-wide {
        padding: 0 50px;
    }

    .nav-container {
        padding: 0 50px;
    }

    .hero-content {
        padding: 0 50px;
    }

    .bottom-bar-container {
        padding: 0 50px;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .scroll-to-explore {
        bottom: 60px;
    }

    .manifesto {
        min-height: auto;
        padding: 120px 0;
    }

    .manifesto-layout {
        padding: 0 50px;
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .manifesto-intro {
        position: static;
    }

    .manifesto-point {
        grid-template-columns: 60px 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .expertises-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .expertises-menu {
        position: static;
    }


    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .container-wide,
    .nav-container,
    .hero-content {
        padding: 0 25px;
    }

    .container-small {
        padding: 0 25px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-contact {
        margin-left: 0;
    }

    .nav-link {
        color: #FFFFFF;
        font-size: 16px;
    }

    /* Hero mobile */
    .scroll-to-explore {
        bottom: 40px;
    }

    .bottom-bar-container {
        padding: 0 25px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bar-item {
        gap: 12px;
    }

    .bar-item span {
        font-size: 13px;
    }

    /* Sections */
    .manifesto,
    .expertises,
    .collectif,
    .pour-qui,
    .contact {
        padding: 120px 0;
    }

    .manifesto {
        min-height: auto;
        padding: 100px 0;
    }

    .manifesto-layout {
        padding: 0 25px;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .manifesto-intro {
        position: static;
    }

    .manifesto-point {
        grid-template-columns: 50px 1fr;
        gap: 25px;
        padding: 30px 0;
    }

    .manifesto-point p {
        font-size: 17px;
    }

    .visual-break {
        padding: 0 25px;
        margin: 100px 0;
    }

    .visual-image {
        height: 40vh;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expertises-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .expertise-item {
        padding: 30px 0;
    }

    .expertise-label {
        font-size: 22px;
    }

    .content-title {
        font-size: 32px;
    }

    .profile-info {
        padding: 25px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .client-card {
        padding: 40px 30px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    .footer-right {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: none;
    color: #B8986F;
    transition: color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
}
