/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --gold: #C9A96E;
    --gold-light: #e8d5a3;
    --gold-dark: #a18444;
    --text: #F5F0EB;
    --text-muted: rgba(245, 240, 235, 0.5);
    --text-subtle: rgba(245, 240, 235, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --font-heading: 'Cormorant', Georgia, serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
    width: 38px; height: 38px; border-radius: 8px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(201,169,110,0.12));
    border: 1px solid rgba(201,169,110,0.4);
    padding: 3px;
}
.logo-text {
    font-family: var(--font-body); font-size: 18px;
    font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}
.navbar-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar-links a {
    color: var(--text-muted); font-size: 13px; font-weight: 500;
    letter-spacing: 1.2px; text-transform: uppercase;
    transition: color 0.3s ease; cursor: pointer;
}
.navbar-links a:hover { color: var(--gold-light); }
.navbar-cta {
    padding: 10px 24px !important; border: 1px solid rgba(201,169,110,0.5);
    border-radius: 6px; color: var(--gold-light) !important;
    transition: all 0.3s ease !important;
}
.navbar-cta:hover { background: rgba(201,169,110,0.12) !important; border-color: var(--gold-light) !important; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10,10,10,0.97); z-index: 99; align-items: center; justify-content: center; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 24px 0; }
.mobile-menu a { font-family: var(--font-heading); font-size: 28px; color: var(--text); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   HERO VIDEO
   ═══════════════════════════════════════ */
.hero-section { position: relative; }
.scroll-container { height: 600vh; position: relative; }
.video-wrapper { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #000; }
.video-wrapper video { display: none; }
.video-wrapper canvas { width: 100%; height: 100%; display: block; }
.hero-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 5; pointer-events: none;
}
.hero-text { position: absolute; text-align: center; opacity: 0; transition: opacity 0.6s ease; pointer-events: auto; }
.hero-text.visible { opacity: 1; }
.hero-text-1 { top: 18%; }
.hero-text-2 { top: 28%; }
.hero-text-3 { top: 70%; }
.hero-tagline-small {
    display: inline-block; font-family: var(--font-body); font-size: 14px;
    font-weight: 500; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
    padding: 12px 28px; border: 1px solid rgba(201,169,110,0.4); border-radius: 30px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500; line-height: 1.2; color: #fff;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 500; color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,1), 0 4px 60px rgba(0,0,0,0.9), 0 0 120px rgba(0,0,0,0.7);
    line-height: 1.15; letter-spacing: 2px;
    padding: 32px 48px; border-radius: 16px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
}
.reveal-word {
    display: inline-block; opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.hero-text-2.visible .reveal-word {
    opacity: 1; transform: translateY(0);
}
.hero-text-2.visible .reveal-word:nth-child(2) { transition-delay: 0.15s; }
.hero-text-2.visible .reveal-word:nth-child(3) { transition-delay: 0.4s; }
.hero-text-2.visible .reveal-word.delay-2 {
    transition-delay: 0.6s;
    color: var(--gold-light); font-style: italic;
}
.hero-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 40px; background: var(--gold);
    color: #0a0a0a; font-family: var(--font-body);
    font-size: 14px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 6px; transition: all 0.4s var(--ease);
    box-shadow: 0 0 40px rgba(201,169,110,0.3);
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 0 60px rgba(201,169,110,0.5); }

/* Scroll hint */
.scroll-hint {
    position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(0,0,0,0.7); font-size: 11px; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase; z-index: 10;
    opacity: 1; transition: opacity 0.5s ease; pointer-events: none;
}
.scroll-hint svg { stroke: rgba(0,0,0,0.7); }
.scroll-hint.hidden { opacity: 0; }
.scroll-arrow { animation: bounceDown 2s ease-in-out infinite; }
@keyframes bounceDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Progress bar */
.progress-bar { position: fixed; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); z-index: 100; transition: width 0.15s linear; }

/* ═══════════════════════════════════════
   MANIFESTE
   ═══════════════════════════════════════ */
.manifeste-section { background: var(--bg); }
.manifeste-content { display: grid; grid-template-columns: 320px 1fr; gap: 64px; max-width: 1100px; margin: 0 auto 64px; align-items: start; }
.manifeste-img { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; }
.manifeste-img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, #1a150e, #0d0906); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text-subtle); font-family: var(--font-heading); font-size: 16px; font-style: italic;
}
.manifeste-caption { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-subtle); margin-top: 16px; display: block; }
.manifeste-title {
    font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500; line-height: 1.2; margin-bottom: 48px;
}
.manifeste-title em { font-style: italic; color: var(--gold); }
.manifeste-features { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.manifeste-feat { display: flex; gap: 12px; align-items: flex-start; }
.feat-plus { color: var(--gold); font-size: 16px; font-weight: 300; margin-top: 2px; flex-shrink: 0; }
.manifeste-feat h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.manifeste-feat p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.manifeste-stats {
    display: flex; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-item { flex: 1; text-align: center; padding: 40px 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 500; color: var(--text); margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-subtle); }

/* ═══════════════════════════════════════
   TERRITOIRE
   ═══════════════════════════════════════ */
.territoire-section { background: var(--bg-elevated); }
.territoire-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; margin: 0 auto; align-items: center; }
.territoire-title {
    font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500; line-height: 1.15; margin-bottom: 20px;
}
.territoire-title em { font-style: italic; color: var(--gold); }
.territoire-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.territoire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.territoire-cell {
    padding: 28px 32px; background: var(--bg-card); border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 6px; transition: border-color 0.3s ease;
}
.territoire-cell:hover { border-color: rgba(201,169,110,0.3); }
.territoire-cell-wide { grid-column: 1 / -1; text-align: center; border-color: rgba(201,169,110,0.2); }
.territoire-cell-wide .city { color: var(--gold); }
.territoire-cell .city { font-family: var(--font-heading); font-size: 22px; font-weight: 500; }
.territoire-cell .code { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-subtle); }

/* ═══════════════════════════════════════
   OFFRE
   ═══════════════════════════════════════ */
.offre-section { background: var(--bg); }
.offre-inner { max-width: 1100px; margin: 0 auto; padding: 64px; border-radius: 16px; background: var(--bg-elevated); border: 1px solid var(--border); position: relative; overflow: hidden; }
.offre-inner::before {
    content: ''; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%); pointer-events: none;
}
.offre-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.offre-title { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; line-height: 1.15; margin-bottom: 16px; }
.offre-title em { font-style: italic; color: var(--gold); }
.offre-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.offre-right { display: flex; flex-direction: column; gap: 0; }
.offre-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; border-bottom: 1px solid var(--border);
}
.offre-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.offre-value { font-family: var(--font-heading); font-size: 24px; font-weight: 500; }
.offre-cta {
    display: block; text-align: center; padding: 16px 32px; margin-top: 24px;
    background: var(--gold); color: #0a0a0a; border-radius: 8px;
    font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    transition: all 0.4s var(--ease); cursor: pointer;
}
.offre-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }

/* ═══════════════════════════════════════
   SHOWCASE VIDEO
   ═══════════════════════════════════════ */
.showcase-section { padding: 0; background: var(--bg-elevated); }
.showcase-scroll-area { height: 400vh; position: relative; }
.showcase-sticky {
    position: sticky; top: 0; height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 80px 48px 48px;
}
.showcase-header { text-align: center; margin-bottom: 16px; }
.showcase-header .section-title { margin-bottom: 0; }
.showcase-header em { font-style: italic; color: var(--gold); }
.showcase-scene-labels {
    display: flex; gap: 48px; justify-content: center; margin-bottom: 24px;
    min-height: 60px; align-items: center;
}
.scene-label {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    opacity: 0.2; transition: opacity 0.5s ease, transform 0.5s var(--ease);
    transform: translateY(6px);
}
.scene-label.active { opacity: 1; transform: translateY(0); }
.scene-number {
    font-family: var(--font-heading); font-size: 13px; color: var(--gold);
    letter-spacing: 2px; font-weight: 400;
}
.scene-name {
    font-family: var(--font-heading); font-size: 22px; font-weight: 600;
}
.scene-desc {
    font-size: 11px; color: var(--text-muted); letter-spacing: 1px;
    font-weight: 400; text-align: center;
}
.showcase-video-wrapper {
    width: 100%; max-width: 960px; aspect-ratio: 16/9;
    border-radius: 16px; overflow: hidden; position: relative;
    border: 1px solid var(--border);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.showcase-video-wrapper video { display: none; }
.showcase-video-wrapper canvas { width: 100%; height: 100%; display: block; }

/* ═══════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════ */
.section { position: relative; padding: 120px 48px; z-index: 10; background: var(--bg); }
.section-header { text-align: center; margin-bottom: 64px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-label {
    display: inline-block; font-family: var(--font-body); font-size: 11px;
    font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */
.gallery-section { background: var(--bg); }
.gallery-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 24px; border: 1px solid var(--border); border-radius: 30px;
    background: transparent; color: var(--text-muted); font-size: 13px;
    font-weight: 500; cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.filter-btn.active { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item.hidden { display: none; }
.gallery-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex; justify-content: space-between; align-items: flex-end;
    opacity: 0; transition: opacity 0.4s ease; transform: translateY(8px);
}
.gallery-item:hover .gallery-info { opacity: 1; transform: translateY(0); }
.gallery-type { font-family: var(--font-heading); font-size: 18px; font-weight: 500; }
.gallery-detail { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services-section { background: var(--bg-elevated); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.service-card {
    padding: 48px 36px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--bg-card);
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.service-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-4px); }
.service-icon { color: var(--gold); margin-bottom: 24px; }
.service-title { font-family: var(--font-heading); font-size: 26px; font-weight: 600; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
.service-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.5s var(--ease); }
.service-card:hover .service-line { width: 100%; }

/* ═══════════════════════════════════════
   BEFORE / AFTER
   ═══════════════════════════════════════ */
.beforeafter-section { background: var(--bg); }
.ba-slider { position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; cursor: col-resize; user-select: none; }
.ba-img { width: 100%; height: 100%; object-fit: cover; }
.ba-before, .ba-after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.ba-before-ph { background: linear-gradient(135deg, #2a2520, #1a1510); }
.ba-before-ph span { font-family: var(--font-heading); font-size: 28px; color: rgba(255,255,255,0.15); }
.ba-before-ph small { font-size: 12px; color: rgba(255,255,255,0.1); }
.ba-after-ph { background: linear-gradient(135deg, #1a1a2e, #0a0a1e); }
.ba-after-ph span { font-family: var(--font-heading); font-size: 28px; color: var(--gold); opacity: 0.3; }
.ba-after-ph small { font-size: 12px; color: rgba(201,169,110,0.2); }
.ba-handle { position: absolute; top: 0; left: 50%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(-50%); z-index: 5; }
.ba-handle-line { width: 2px; flex: 1; background: var(--gold); opacity: 0.6; }
.ba-handle-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); color: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 20px rgba(201,169,110,0.4); flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════ */
.process-section { background: var(--bg-elevated); }
.process-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.process-timeline::before { content: ''; position: absolute; left: 38px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.process-step { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 48px; }
.process-step:last-child { margin-bottom: 0; }
.step-number {
    font-family: var(--font-heading); font-size: 24px; font-weight: 600;
    color: var(--gold); min-width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.3); display: flex; align-items: center;
    justify-content: center; background: var(--bg-elevated); position: relative; z-index: 2; flex-shrink: 0;
}
.step-content h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card {
    padding: 36px; border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--bg-card); transition: all 0.4s var(--ease);
}
.testimonial-card:hover { border-color: rgba(201,169,110,0.2); }
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 300; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; color: #0a0a0a;
}
.testimonial-name { display: block; font-size: 14px; font-weight: 500; }
.testimonial-location { display: block; font-size: 12px; color: var(--text-subtle); }

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */
.contact-section { background: var(--bg-elevated); overflow: hidden; }
.contact-glow {
    position: absolute; top: -200px; right: -200px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-promise { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-top: 16px; margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 14px; }
.contact-info-item svg { color: var(--gold); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px; background: var(--bg); border: 1px solid var(--border);
    border-radius: 8px; color: var(--text); font-size: 14px;
    transition: border-color 0.3s ease; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px 32px; background: var(--gold); color: #0a0a0a;
    border: none; border-radius: 8px; font-size: 14px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
    transition: all 0.4s var(--ease);
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }
.form-disclaimer { font-size: 12px; color: var(--text-subtle); text-align: center; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: #050505; padding: 60px 48px 36px; position: relative; z-index: 10; border-top: 1px solid var(--border); }
.footer-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom p { font-size: 12px; color: var(--text-subtle); margin-bottom: 4px; }
.footer-siret { font-size: 12px; color: var(--text-subtle); margin-bottom: 4px; letter-spacing: 1px; }
.footer-credit a { color: var(--gold); transition: color 0.3s; }
.footer-credit a:hover { color: var(--gold-light); }

/* Fixed CTA mobile */
.fixed-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 90; padding: 12px 20px; background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px); border-top: 1px solid var(--border);
}
.fixed-cta a {
    display: block; text-align: center; padding: 14px;
    background: var(--gold); color: #0a0a0a; border-radius: 8px;
    font-size: 14px; font-weight: 600; letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.revealed { opacity: 1 !important; transform: translate(0) !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .manifeste-content { grid-template-columns: 1fr; gap: 40px; }
    .manifeste-features { grid-template-columns: 1fr; }
    .territoire-content { grid-template-columns: 1fr; gap: 40px; }
    .offre-content { grid-template-columns: 1fr; gap: 40px; }
    .offre-inner { padding: 40px 24px; }
}
@media (max-width: 768px) {
    .navbar { padding: 0 20px; height: 60px; }
    .navbar-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .section { padding: 80px 20px; }
    .gallery-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    .hero-title { padding: 0 20px; }
    .hero-tagline-small { font-size: 10px; letter-spacing: 2px; }
    .fixed-cta { display: block; }
    .footer { padding-bottom: 80px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
    .logo-text { font-size: 16px; }
    .process-timeline::before { left: 28px; }
}

/* ═══════════════════════════════════════
   MOBILE: LAYOUT ADJUSTMENTS
   Scroll-driven canvas works on all devices
   ═══════════════════════════════════════ */
@media (max-width: 1023px) {
    .showcase-sticky {
        padding: 60px 20px 40px !important;
    }
    .showcase-scene-labels {
        gap: 16px;
    }
    .scene-name { font-size: 16px; }
}
