/* ============================================
   CAMELEON AGENCY - Styles v2
   Refactored: clean cascade, no !important,
   conditional cursor, burger menu, responsive
   ============================================ */

/* ---------- Variables ---------- */
:root {
    --navy: #0d1b2a;
    --navy-light: #1b263b;
    --gold: #c9a961;
    --white: #ffffff;
    --gray: #8892a6;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

/* ---------- Animations ---------- */
@keyframes fadeInManifesto {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes revealSigle {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes revealTypo {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes forceHideLoader {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ---------- Loading Screen ---------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 10000;
    animation: forceHideLoader 3s ease-out forwards;
}

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

.loader-sigle {
    width: 80px;
    height: auto;
    opacity: 0;
    filter: brightness(0) saturate(100%) invert(73%) sepia(30%) saturate(600%) hue-rotate(10deg) brightness(95%) contrast(85%);
    animation: revealSigle 1s ease-out 0.2s forwards;
}

.loader-typo {
    height: 25px;
    width: auto;
    opacity: 0;
    filter: brightness(0) saturate(100%) invert(73%) sepia(30%) saturate(600%) hue-rotate(10deg) brightness(95%) contrast(85%);
    animation: revealTypo 0.8s ease-out 0.8s forwards;
}

/* ---------- Header ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-img {
    height: 30px;
}

/* ---------- Desktop Navigation ---------- */
nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--white);
}

/* ---------- Burger Menu ---------- */
.burger-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    padding: 0;
    z-index: 1002;
}

.burger-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-overlay a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* ---------- Hero Section ---------- */
#hero {
    min-height: 100vh;
    max-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    pointer-events: none;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#globe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
    overflow: hidden;
}

#globe-container svg {
    overflow: hidden;
}

.city-point {
    transition: r 0.15s ease, fill 0.15s ease;
    will-change: r, fill;
}

/* ---------- Mobile Counters (shown on mobile only) ---------- */
#mobile-counters {
    display: none;
    text-align: center;
    padding: 100px 20px 80px;
}

.mobile-counters-label {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 50px;
    font-weight: 500;
}

.mobile-counters-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 300px;
    margin: 0 auto;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    padding-bottom: 15px;
}

.counter-row:last-child {
    border-bottom: none;
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 2px;
}

.counter-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

/* ---------- Stats Bottom Bar ---------- */
.stats-bottom {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 20px;
    padding: 14px 28px;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    pointer-events: none;
    transition: opacity 0.1s linear, transform 0.1s linear;
}

.stats-bottom > * {
    pointer-events: auto;
}

.stat-box {
    text-align: center;
    padding: 0 18px;
    border-right: 1px solid rgba(201, 169, 97, 0.2);
}

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

.stats-bottom .stat-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-bottom .stat-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- Countries Dropdown ---------- */
.stat-countries {
    position: relative;
    cursor: pointer;
}

.stat-countries:hover .stat-label {
    color: var(--gold);
}

.countries-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
    background: rgba(13, 27, 42, 0.98);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 12px;
    padding: 0;
    min-width: 240px;
    max-height: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.stat-countries:hover .countries-dropdown,
.stat-countries.touch-active .countries-dropdown {
    opacity: 1;
    visibility: visible;
}

.countries-header {
    padding: 12px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    background: rgba(201, 169, 97, 0.08);
}

.countries-list {
    max-height: 340px;
    overflow-y: auto;
    padding: 8px 0;
}

.countries-list::-webkit-scrollbar {
    width: 4px;
}

.countries-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.countries-list::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 97, 0.3);
    border-radius: 2px;
}

.country-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    font-size: 0.72rem;
    transition: background 0.15s ease;
}

.country-item:hover {
    background: rgba(201, 169, 97, 0.1);
}

.country-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.country-count {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    min-width: 30px;
    text-align: right;
}

/* ---------- Stat Cards ---------- */
.stat-card {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 20px;
    padding: 2.1rem 1.7rem;
    text-align: center;
    min-width: 187px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(13, 27, 42, 0.4);
}

.stat-card:hover {
    border-color: rgba(201, 169, 97, 0.8);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 48px rgba(201, 169, 97, 0.3), 0 0 60px rgba(201, 169, 97, 0.1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.7rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ---------- Sections (Generic) ---------- */
section {
    min-height: 100vh;
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ---------- Manifesto Section ---------- */
#manifesto {
    position: relative;
    flex-direction: column;
    min-height: auto;
    padding: 120px 5%;
    background: var(--navy);
    text-align: center;
}

.manifesto-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 40px;
    animation: fadeInManifesto 1s ease-out forwards;
}

.manifesto-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInManifesto 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* ---------- Approche Section ---------- */
#approche {
    flex-direction: column;
    background: var(--navy);
    min-height: auto;
    padding: 100px 5%;
}

.approche-intro {
    text-align: center;
    margin-bottom: 50px;
}

.approche-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.approche-intro p {
    font-size: 17px;
    color: var(--white);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.approche-highlight {
    color: var(--gold);
    font-weight: 700;
}

.approche-difference {
    background: rgba(201, 169, 97, 0.05);
    border-left: 4px solid var(--gold);
    padding: 35px 45px;
    border-radius: 8px;
    margin-bottom: 70px;
    max-width: 1200px;
    width: 100%;
}

.approche-difference p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-style: italic;
}

/* ---------- Piliers ---------- */
.piliers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.pilier-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 50px 35px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease;
}

.pilier-card:hover {
    transform: translateY(-5px);
}

.pilier-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.pilier-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.7);
}

.pilier-card:hover .pilier-bg {
    transform: scale(1.05);
}

.pilier-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.pilier-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ---------- Services Section ---------- */
#services {
    background:
        linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(201, 169, 97, 0.01) 100px, rgba(201, 169, 97, 0.01) 200px);
    flex-direction: column;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    width: 100%;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 0.5px;
    background: var(--gold);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    width: 80%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-8px);
}

.service-card:hover .service-title {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.5);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.7);
}

.service-card:hover .service-bg {
    transform: scale(1.05);
}

.service-number {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.service-description {
    color: var(--white);
    line-height: 1.7;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* ---------- Artists Section ---------- */
#artists {
    background: var(--navy);
    flex-direction: column;
    position: relative;
}

#artists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.portfolio-section-title {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Current Partnerships */
.current-partnerships {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 60px auto;
}

.featured-artist-card {
    display: block;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
}

.featured-artist-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-artist-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.75));
}

.featured-artist-card:hover .featured-artist-bg {
    transform: scale(1.1);
}

.featured-artist-card:hover .featured-artist-name,
.legacy-artist-card:hover .legacy-artist-name {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.5);
}

.featured-artist-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

.featured-artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
}

.featured-artist-status {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
}

/* Legacy Partners */
.legacy-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 60px auto;
}

.legacy-artist-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    text-decoration: none;
    display: block;
}

.legacy-artist-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.legacy-artist-card:hover .featured-artist-bg {
    transform: scale(1.1);
}

.legacy-artist-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.3), rgba(13, 27, 42, 0.9));
    position: relative;
    z-index: 2;
}

.legacy-artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.legacy-artist-years {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Global Collaborations */
.global-collaborations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 2.5rem;
    max-width: 1000px;
    margin: 60px auto;
    padding-top: 40px;
}

.global-collaborations .global-artist-name {
    width: calc(25% - 2rem);
}

.global-artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gray);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.global-artist-name:hover {
    color: var(--gold);
    transform: scale(1.1);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

/* ---------- Founder Section ---------- */
.founder-section {
    padding: 100px 5% 60px;
    background: var(--navy);
    position: relative;
    flex-direction: column;
    min-height: auto;
}

.founder-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.founder-image:hover {
    filter: grayscale(0%);
}

.founder-image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201, 169, 97, 0.4);
    margin: 0 auto 30px;
    display: block;
}

.founder-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.founder-stat {
    text-align: center;
}

.founder-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

.founder-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.founder-title {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.founder-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.founder-quote {
    border-left: 3px solid var(--gold);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Proof Gallery */
.proof-gallery {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    max-width: 1100px;
    width: 100%;
}

.proof-title {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.proof-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.proof-item:hover img {
    filter: grayscale(0%);
}

/* ---------- Contact Section ---------- */
#contact {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    flex-direction: column;
    min-height: auto;
    padding: 80px 5%;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    max-width: 700px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

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

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

/* ---------- Footer ---------- */
footer {
    background: var(--navy);
    padding: 4rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: var(--gray);
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* ---------- Legal Modal ---------- */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 60px 20px;
}

.legal-modal.active {
    display: block;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--navy);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    padding: 50px;
}

.legal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.legal-close:hover {
    color: var(--gold);
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 25px 0 10px;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ============================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    nav {
        display: none;
    }

    .burger-toggle {
        display: flex;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .current-partnerships {
        grid-template-columns: 1fr;
    }

    .global-collaborations .global-artist-name {
        width: calc(33.33% - 2rem);
    }

    .stat-card {
        padding: 1.8rem 1.5rem;
        min-width: 160px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .approche-intro h2 {
        font-size: 2.2rem;
    }

    .approche-difference {
        padding: 25px 30px;
    }
}

/* ============================================
   RESPONSIVE - Tablet small (max-width: 900px)
   ============================================ */
@media (max-width: 900px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-stats {
        justify-content: center;
    }

    .founder-quote {
        border-left: none;
        border-top: 1px solid var(--gold);
        border-bottom: 1px solid var(--gold);
        padding: 20px 0;
    }

    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .legacy-partners {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE - Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Globe hidden, mobile counters shown */
    #globe-container {
        display: none;
    }

    #mobile-counters {
        display: block;
    }

    /* Hide desktop stats on mobile */
    .stats-bottom {
        display: none;
    }

    /* Typography scaling */
    .section-title {
        font-size: 2rem;
    }

    .manifesto-title {
        font-size: 2rem;
    }

    .manifesto-subtitle {
        font-size: 1rem;
    }

    .approche-intro h2 {
        font-size: 1.8rem;
    }

    .approche-intro p {
        font-size: 15px;
    }

    .approche-intro br {
        display: none;
    }

    .approche-difference {
        padding: 20px 25px;
        border-left-width: 3px;
    }

    /* Piliers - 1 column */
    .piliers-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pilier-card {
        min-height: 200px;
    }

    .pilier-bg::after {
        background: rgba(13, 27, 42, 0.5);
    }

    /* Stat cards */
    .stat-card {
        padding: 1.7rem 1.4rem;
        min-width: 150px;
    }

    .stat-number {
        font-size: 2.7rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Artists grids */
    .current-partnerships {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .global-collaborations {
        gap: 1.2rem 1rem;
    }

    .global-collaborations .global-artist-name {
        width: calc(33.33% - 1rem);
        font-size: 0.85rem;
        color: var(--gold);
    }

    /* Form single column */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Contact form padding */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    /* Footer wrapping */
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Legal modal mobile */
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    /* Section padding */
    section {
        padding: 4rem 5%;
    }

    #manifesto {
        padding: 80px 5%;
    }

    #approche {
        padding: 60px 5%;
    }

    .founder-section {
        padding: 60px 5% 40px;
    }

    .founder-content h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   RESPONSIVE - Small phones (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .global-collaborations .global-artist-name {
        width: calc(50% - 1rem);
    }

    .featured-artist-name {
        font-size: 1.6rem;
    }

    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .counter-number {
        font-size: 2rem;
    }
}
