/* ============================================
   STUDIO PHOTOGRAPHE — dark cinematic
   Palette : noir profond, blanc, or vieilli
   ============================================ */

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

:root {
    --black: #0a0a0a;
    --black-soft: #121212;
    --black-card: #181818;
    --gray-dark: #1f1f1f;
    --gray: #3a3a3a;
    --gray-light: #7a7a7a;
    --cream: #f2ede4;
    --white: #ffffff;
    --gold: #c9a961;
    --gold-light: #e0c789;
    --gold-dark: #9c823f;
    --border: rgba(242, 237, 228, 0.12);
    --border-light: rgba(242, 237, 228, 0.2);

    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1280px;
    --header-h: 80px;
    --radius: 2px;
    --radius-lg: 4px;

    --shadow-gold: 0 8px 40px rgba(201, 169, 97, 0.15);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: var(--font-body);
    color: var(--cream);
    background: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--gold);
    color: var(--black);
    padding: 12px 20px;
    z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(10, 10, 10, 0.7);
}

.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

/* Lens flare canvas (overlay) */
#lens-flare-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
}

/* Grain film sur tout le site (style argentique) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.08;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='3' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
    background-size: 180px 180px;
    animation: grainShift 0.8s steps(8) infinite;
}
@keyframes grainShift {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-3%, 1%); }
    40%  { transform: translate(2%, -2%); }
    60%  { transform: translate(-1%, 3%); }
    80%  { transform: translate(2%, 1%); }
    100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    body::after { animation: none; opacity: 0.12; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.05;
    color: var(--cream);
    letter-spacing: -0.02em;
    font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 96;
}

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

p { line-height: 1.75; color: rgba(242, 237, 228, 0.75); }

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--gold);
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    line-height: 1;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.btn-gold {
    background: var(--gold);
    color: var(--black);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-light);
}
.btn-ghost:hover {
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
}
.btn-block { width: 100%; padding: 18px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-h) + 28px);
    padding-top: 28px;
    z-index: 100;
    transition: all 0.4s ease;
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding-top: 14px;
    height: calc(var(--header-h) + 14px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo .site-title-link {
    display: flex;
    flex-direction: column;
    color: var(--cream);
    line-height: 1;
}
.logo-main {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--cream);
}
.logo-tagline {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 400;
}
.custom-logo { max-height: 56px; width: auto; }

.nav-list {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-list a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--cream);
    padding: 6px 0;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}
.nav-list a:hover { color: var(--gold); }
.nav-list a:hover::after { width: 100%; }

.nav-cta {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    padding: 10px 22px !important;
    color: var(--gold) !important;
    transition: all 0.3s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 26px;
    height: 1px;
    background: var(--cream);
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO STRIPS — bandes verticales parallax
   ============================================ */
.hero-strips {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--black);
    padding: 120px 0 80px;
}
.strips-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px;
    padding: 4px;
}
.strip {
    position: relative;
    overflow: hidden;
    background: var(--black-card);
}
.strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1) brightness(0.55);
    will-change: transform;
}
/* Animations decalees pour effet parallax permanent */
.strip-1 img { animation: stripDriftA 32s ease-in-out infinite; }
.strip-2 img { animation: stripDriftB 38s ease-in-out infinite; }
.strip-3 img { animation: stripDriftA 40s ease-in-out infinite reverse; }
.strip-4 img { animation: stripDriftB 36s ease-in-out infinite reverse; }
@keyframes stripDriftA {
    0%, 100% { transform: translateY(-1.5%) scale(1.08); }
    50%      { transform: translateY(1.5%) scale(1.12); }
}
@keyframes stripDriftB {
    0%, 100% { transform: translateY(1%) scale(1.09); }
    50%      { transform: translateY(-1.5%) scale(1.06); }
}
.strips-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.45) 45%, rgba(10,10,10,0.7) 80%, rgba(10,10,10,0.92) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 30%, rgba(10,10,10,0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Coins de cadrage type viseur */
.hero-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 4;
    pointer-events: none;
    opacity: 0.7;
}
.hero-corner-tl { top: 30px; left: 30px; }
.hero-corner-tr { top: 30px; right: 30px; }
.hero-corner-bl { bottom: 30px; left: 30px; }
.hero-corner-br { bottom: 30px; right: 30px; }

/* HUD camera */
.camera-hud {
    position: absolute;
    z-index: 5;
    color: var(--gold);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    pointer-events: none;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 14px 18px;
}
.camera-hud-left {
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.hud-row { display: flex; justify-content: space-between; gap: 18px; min-width: 120px; }
.hud-label { color: rgba(201, 169, 97, 0.7); }
.hud-val { color: var(--cream); font-weight: 700; }

.camera-hud-right {
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
}
.rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
    animation: recPulse 1.4s ease-in-out infinite;
}
@keyframes recPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.hud-rec-text { color: #ff3b30; font-weight: 700; }
.hud-counter { color: var(--cream); font-weight: 700; min-width: 75px; text-align: right; }

.hero-strips .hero-content {
    position: relative;
    z-index: 6;
    max-width: 900px;
    padding: 0 5%;
    margin: 0 auto;
    width: 100%;
}

/* ============================================
   FILM STRIP / PELLICULE 35mm
   ============================================ */
.film-section {
    background: var(--black);
    padding: 140px 0;
    overflow: hidden;
}
.film-header { margin-bottom: 60px; }

.film-strip-wrap {
    position: relative;
    background: #1a1a1a;
    margin: 0 0 50px;
    padding: 60px 0;
    overflow: hidden;
}
.film-perf {
    position: absolute;
    left: 0;
    right: 0;
    height: 28px;
    background:
        radial-gradient(ellipse 16px 14px at 30px center, var(--black) 70%, transparent 71%),
        radial-gradient(ellipse 16px 14px at 90px center, var(--black) 70%, transparent 71%),
        radial-gradient(ellipse 16px 14px at 150px center, var(--black) 70%, transparent 71%);
    background-color: #1a1a1a;
    background-size: 60px 28px;
    background-repeat: repeat-x;
}
.film-perf-top    { top: 12px; }
.film-perf-bottom { bottom: 12px; }

.film-strip {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    cursor: grab;
}
.film-strip:active { cursor: grabbing; }
.film-strip::-webkit-scrollbar { height: 4px; }
.film-strip::-webkit-scrollbar-track { background: transparent; }
.film-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.film-frame {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #0e0e0e;
    border: 1px solid rgba(201, 169, 97, 0.18);
    margin: 0;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}
.film-frame:hover,
.film-frame:focus-visible {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.film-frame:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(10, 10, 10, 0.6);
}
.film-no {
    position: absolute;
    top: 8px;
    left: 10px;
    z-index: 3;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(10, 10, 10, 0.85);
    padding: 3px 8px;
}
.film-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #000;
}
.film-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0) contrast(1.05);
    transition: filter 0.5s ease, transform 1s ease;
}
.film-frame:hover .film-img img { filter: contrast(1.12) saturate(1.1); transform: scale(1.04); }

.film-meta {
    padding: 22px 22px 24px;
    color: var(--cream);
    text-align: center;
}
.meta-cap {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.4;
    display: block;
}

.film-footer { text-align: center; }
.film-hint {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   CURSEUR DIAPHRAGME / APERTURE
   ============================================ */
.aperture-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.aperture-cursor.active { opacity: 1; }
.aperture-cursor.zoom { width: 90px; height: 90px; }
.aperture-cursor svg { width: 100%; height: 100%; }
.aperture-cursor svg circle, .aperture-cursor svg path {
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
}
.aperture-cursor .ap-blade {
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.aperture-cursor.zoom .ap-blade { transform: rotate(20deg) scale(0.7); }

@media (hover: none), (max-width: 900px) {
    .aperture-cursor { display: none; }
    .camera-hud { display: none; }
    .hero-corner { width: 36px; height: 36px; }
}

/* ============================================
   HERO ORIGINAL (legacy)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s ease, transform 8s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        /* Assombrissement bas pour indicateur scroll */
        linear-gradient(to bottom,
            rgba(10, 10, 10, 0.65) 0%,
            rgba(10, 10, 10, 0.4) 18%,
            rgba(10, 10, 10, 0.4) 72%,
            rgba(10, 10, 10, 0.85) 100%
        ),
        /* Halo sombre au centre pour lisibilite du texte */
        radial-gradient(ellipse 80% 65% at center,
            rgba(10, 10, 10, 0.55) 0%,
            rgba(10, 10, 10, 0.45) 45%,
            rgba(10, 10, 10, 0.25) 80%,
            transparent 100%
        );
    z-index: 1;
}

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

.hero-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    padding-left: 36px;
    position: relative;
}
.hero-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.0;
    color: var(--cream);
    margin-bottom: 36px;
    letter-spacing: -0.035em;
    text-shadow:
        0 2px 30px rgba(0, 0, 0, 0.65),
        0 4px 12px rgba(0, 0, 0, 0.4);
}
.hero-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(242, 237, 228, 0.92);
    margin-bottom: 44px;
    max-width: 540px;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-kicker {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-indicator-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 140px 0; position: relative; }

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 24px;
}
.section-header .section-label { margin-left: 50%; transform: translateX(-50%); }
.section-intro {
    color: rgba(242, 237, 228, 0.7);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--black); padding: 140px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    will-change: transform;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) contrast(1.05);
    transition: transform 1.5s ease, filter 0.8s ease;
}
.about-image:hover img {
    transform: scale(1.03);
    filter: grayscale(0) contrast(1.1);
}
.about-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 28px;
}
.about-text p {
    margin-bottom: 18px;
    color: rgba(242, 237, 228, 0.75);
    font-size: 1.02rem;
}

.about-signature {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.signature-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold);
}
.signature-title {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-light);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-section { background: var(--black-soft); }

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: rgba(242, 237, 228, 0.6);
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius);
}
.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--black-card);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    margin: 0;
}
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.hidden {
    display: none;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: grayscale(0.2);
}
.portfolio-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}
.portfolio-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px 22px 20px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 30%, transparent);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(12px);
    opacity: 0;
    transition: all 0.4s ease;
}
.portfolio-item:hover figcaption { transform: translateY(0); opacity: 1; }
.pf-cat {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.pf-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
    max-width: 92vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: var(--shadow-deep);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--cream);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lightbox-close:hover {
    background: var(--cream);
    color: var(--black);
}
.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--black); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--black-card);
    padding: 48px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-6px);
}
.service-card:hover::before { opacity: 1; }
.service-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1;
}
.service-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--cream);
}
.service-card p {
    color: rgba(242, 237, 228, 0.7);
    font-size: 0.95rem;
    margin-bottom: 26px;
}
.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.service-includes li {
    font-size: 0.88rem;
    color: rgba(242, 237, 228, 0.85);
    padding-left: 24px;
    position: relative;
}
.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 1px;
    background: var(--gold);
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs-section { background: var(--black-soft); }
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.tarif-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}
.tarif-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-6px);
}
.tarif-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--black-card), var(--black-soft));
    transform: scale(1.03);
}
.tarif-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.tarif-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 6px 18px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
}

.tarif-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.tarif-desc {
    font-size: 0.88rem;
    color: rgba(242, 237, 228, 0.65);
    margin-bottom: 28px;
}
.tarif-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.tarif-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}
.tarif-features li {
    font-size: 0.92rem;
    color: rgba(242, 237, 228, 0.85);
    padding-left: 28px;
    position: relative;
}
.tarif-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--black); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial {
    background: var(--black-card);
    padding: 40px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s ease;
    margin: 0;
}
.testimonial:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: 18px;
    left: 28px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}
.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(242, 237, 228, 0.9);
    margin-bottom: 24px;
    padding-left: 30px;
    margin: 0 0 24px;
}
.testimonial footer {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cream);
    display: block;
    margin-bottom: 4px;
}
.testimonial-context {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--black-soft); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: start;
}
.contact-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 24px;
}
.contact-text > p {
    color: rgba(242, 237, 228, 0.75);
    font-size: 1.05rem;
    margin-bottom: 44px;
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.contact-info li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ci-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}
.ci-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
}
a.ci-value:hover { color: var(--gold); }

.contact-form {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.form-row { margin-bottom: 22px; }
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}
.form-row label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream);
    background: var(--black);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-row textarea { resize: vertical; font-family: var(--font-body); }
.form-note {
    margin-top: 18px;
    font-size: 0.78rem;
    color: rgba(242, 237, 228, 0.5);
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--black);
    color: rgba(242, 237, 228, 0.6);
    padding: 90px 0 30px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-col-brand h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--cream);
    margin-bottom: 16px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 500;
}
.footer-col p { font-size: 0.9rem; line-height: 1.75; color: rgba(242, 237, 228, 0.55); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    color: rgba(242, 237, 228, 0.7);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: rgba(242, 237, 228, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade-up { opacity: 0; transform: translateY(40px); }
.anim-hero { opacity: 0; transform: translateY(30px); }
.anim-parallax { will-change: transform; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .services-grid, .testimonials-grid, .tarifs-grid { grid-template-columns: 1fr; gap: 20px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .portfolio-item.wide { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .tarif-card.featured { transform: none; }
    .tarif-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--black);
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; align-items: flex-start; }
    .nav-list a { font-size: 0.95rem; letter-spacing: 3px; }

    .section { padding: 90px 0; }
    .hero { padding: 100px 0 60px; min-height: 100vh; }
    .hero-title { font-size: 2.8rem; }
    .hero-lead { font-size: 1rem; }

    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .portfolio-item.wide, .portfolio-item.tall { grid-column: auto; grid-row: auto; }

    .form-row-split { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .hero-indicator { display: none; }
    #lens-flare-canvas { display: none; } /* éviter perf sur mobile */
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
}
