/* --- DÉCLARATION DE lA POLICE PERSO --- */
@font-face {
    font-family: 'AntoineSignature';
    src: url('fonts/font-av-01-webfont.woff2') format('woff2'),
        url('fonts/font-av-01-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ================= VARIABLES ================= */
:root {
    --bg-main: #fbf9f5;
    --bg-alt: #f5efe6;

    --brand-dark: #132023;
    --brand-light: #20373B;

    --text-main: #132023;
    --text-muted: #5a6b6e;

    --accent: #C9A050;
    --white: #ffffff;

    --transition: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;

    --shadow-soft: 0 10px 30px rgba(19, 32, 35, 0.06);
    --shadow-medium: 0 15px 40px rgba(19, 32, 35, 0.12);
    --surface-glow-main:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at bottom right, rgba(201, 160, 80, 0.05) 0%, rgba(201, 160, 80, 0) 36%);
    --surface-glow-alt:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at bottom left, rgba(32, 55, 59, 0.035) 0%, rgba(32, 55, 59, 0) 38%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    background-image: var(--surface-glow-main);
    color: var(--text-main);
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
    letter-spacing: normal;
    position: relative;
}

/* On supprime le pseudo-élément body::after qui recouvrait vulgairement les images */

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= TYPOGRAPHIE ================= */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-dark);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    text-align: center;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    display: block;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 14px;
    text-align: center;
}

/* Exception pour la section À Propos : on garde l'alignement gauche */
.about-text .section-subtitle,
.about-text h2,
.about-text p {
    text-align: left;
}

/* --- STYLE DES LETTRES A & V (Correction Alignement) --- */

.sig-char {
    font-family: 'AntoineSignature', sans-serif;
    font-weight: normal;
    display: inline-block;
    font-size: 1.5em;
    line-height: 1;
    margin-right: -0.15em; /* Tighten the signature V while scaling with text size */
    vertical-align: baseline;
}

.sig-char-a {
    margin-right: 0;
}


/* ================= BOUTONS ================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.9rem;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s var(--ease-premium),
                box-shadow 0.35s var(--ease-premium),
                background-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -42%;
    width: 34%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 52%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-180%) skewX(-22deg);
    opacity: 0;
    transition: transform 0.85s var(--ease-premium), opacity 0.35s ease;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover::after {
    opacity: 0.7;
    transform: translateX(420%) skewX(-22deg);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--brand-dark);
    border-color: var(--accent);
    box-shadow: 0 16px 34px rgba(201, 160, 80, 0.18);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 18px 36px rgba(19, 32, 35, 0.12);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--brand-dark);
    box-shadow: 0 18px 36px rgba(19, 32, 35, 0.18);
}

.btn-outline {
    background-color: transparent;
    color: var(--brand-dark);
    border-color: var(--brand-light);
}

.btn-outline:hover {
    background-color: var(--brand-light);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(19, 32, 35, 0.12);
}

.btn-link,
.btn-ghost {
    background: transparent;
    border: none;
    color: var(--accent);
    padding: 0;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-link:hover,
.btn-ghost:hover {
    color: var(--brand-dark);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* ================= HEADER / NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 50px;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 14px 50px;
    background: rgba(19, 32, 35, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(7, 15, 17, 0.18);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    transition: opacity 0.35s ease, transform 0.45s var(--ease-premium);
    pointer-events: none;
}

.navbar.scrolled::after {
    opacity: 1;
    transform: scaleX(1);
}


.logo {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 12px; /* Matched hero surtitle */
    color: #ffffff;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.logo-word {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

.logo:hover {
    opacity: 0.85;
    color: var(--accent);
}


.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    text-decoration: none;
    margin-left: 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-menu)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 160, 80, 0) 0%, rgba(201, 160, 80, 0.95) 50%, rgba(201, 160, 80, 0) 100%);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 0.35s var(--ease-premium), opacity 0.35s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:not(.btn-menu):hover::after,
.nav-links a:not(.btn-menu):focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.btn-menu {
    border: 1px solid var(--accent);
    padding: 10px 18px;
    border-radius: 0px;
    color: var(--accent) !important;
    transition: transform 0.35s var(--ease-premium),
                background-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s var(--ease-premium);
}

.btn-menu:hover {
    background: var(--accent);
    color: var(--brand-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(201, 160, 80, 0.2);
}

.navbar.scrolled .btn-menu {
    box-shadow: 0 14px 32px rgba(201, 160, 80, 0.16);
}

/* Burger Menu Button (Hidden by default on Desktop) */
.burger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.burger-btn span:nth-child(1) {
    top: 0;
}

.burger-btn span:nth-child(2) {
    top: 9px;
}

.burger-btn span:nth-child(3) {
    top: 18px;
}

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

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

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

/* Mobile Navigation Styles */
@media (max-width: 1280px) {
    .logo {
        font-size: 1rem;
        letter-spacing: 6px;
    }

    .navbar a.logo {
        gap: 0.45rem;
    }

    .burger-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(19, 32, 35, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

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

    .nav-links a {
        margin: 20px 0;
        font-size: 2rem;
    }

    .btn-menu {
        margin-top: 30px !important;
    }

    .navbar {
        padding: 20px 25px;
    }

    .navbar::after {
        left: 25px;
        right: 25px;
    }

    .navbar.scrolled {
        padding: 12px 25px;
    }
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('img/videaste-mariage-montpellier-drone.jpg') center/cover no-repeat;
    padding: 100px 20px 40px;
}

.hero-content {
    width: min(100%, 760px);
    --hero-stack-width: min(100%, 42.5rem);
    --hero-copy-width: min(100%, 42.5rem);
    --hero-rail-width: min(100%, 37.5rem);
    --hero-copy-scale: 1;
    --hero-block-gap: 30px;
    --hero-copy-gap: 40px;
    --hero-intro-size: clamp(0.89rem, 1.68vw, 0.99rem);
    --hero-panel-top-bleed: 48px;
    --hero-panel-bottom-bleed: 24px;
    --hero-cta-stack-gap: calc(var(--hero-copy-gap) + (var(--hero-panel-bottom-bleed) * 0.5));
    --hero-cta-inline-gap: calc(var(--hero-copy-gap) - (var(--hero-panel-bottom-bleed) * 0.5));
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    isolation: isolate;
}

.hero-glass-panel {
    position: relative;
    width: var(--hero-rail-width);
    display: grid;
    justify-items: center;
    isolation: isolate;
}

.hero-glass-panel::before {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--hero-panel-top-bleed)) 0 calc(-1 * var(--hero-panel-bottom-bleed));
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 34%, rgba(255, 255, 255, 0.02) 100%),
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 34%),
        rgba(10, 19, 21, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(7, 15, 17, 0.16);
    z-index: -1;
    pointer-events: none;
}

.hero-glass-panel > .hero-surtitle,
.hero-glass-panel > h1,
.hero-glass-panel > .hero-body {
    width: 100%;
}

.hero-content p.hero-surtitle {
    font-family: 'Lato', sans-serif;
    width: var(--hero-stack-width);
    font-size: clamp(0.95rem, 1.9vw, 1.08rem);
    color: var(--accent);
    margin: 0 auto var(--hero-copy-gap);
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    column-gap: 0.55em;
    row-gap: 0.2em;
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero h1 {
    width: var(--hero-stack-width);
    display: grid;
    justify-items: center;
    gap: 10px;
    font-size: 1rem;
    margin: 0 auto;
    color: #ffffff;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: normal;
    text-wrap: balance;
}

.hero-kicker {
    display: block;
    font-size: clamp(calc(1.9rem * var(--hero-copy-scale)), calc(3.8vw * var(--hero-copy-scale)), calc(2.55rem * var(--hero-copy-scale)));
    line-height: 0.92;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.hero-title-main {
    display: block;
    font-size: clamp(calc(1.88rem * var(--hero-copy-scale)), calc(3.5vw * var(--hero-copy-scale)), calc(2.34rem * var(--hero-copy-scale)));
    line-height: 0.96;
    letter-spacing: 0.045em;
    white-space: nowrap;
}

.hero-title-line {
    display: block;
}

.text-location {
    font-size: clamp(calc(1rem * var(--hero-copy-scale)), calc(1.5vw * var(--hero-copy-scale)), calc(1.18rem * var(--hero-copy-scale)));
    display: block;
    margin-top: 6px;
    opacity: 0.9;
    letter-spacing: 0.28em;
    white-space: nowrap;
}

.hero h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--accent);
    margin-bottom: 18px;
}

.hero p {
    font-size: clamp(calc(1rem * var(--hero-copy-scale)), calc(2vw * var(--hero-copy-scale)), calc(1.15rem * var(--hero-copy-scale)));
    color: #ffffff;
    margin-bottom: 0;
    max-width: 40rem;
    margin-inline: auto;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.65;
}

.hero-body {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 0;
    margin-top: var(--hero-copy-gap);
}

.hero-intro {
    max-width: var(--hero-copy-width);
    margin: 0 auto;
    text-wrap: pretty;
    width: 100%;
    font-size: var(--hero-intro-size) !important;
}

.hero-intro-line {
    display: block;
}

@media (max-width: 1280px) {
    .hero {
        height: auto;
        /* Permet au conteneur de grandir si le texte prend trop de place */
        min-height: 100vh;
        padding: 180px 15px 150px;
        /* Énormément d'espace en haut et en bas */
        box-sizing: border-box;
    }

    .hero p {
        font-size: 1.05rem;
        padding: 0;
    }

    p.hero-surtitle {
        letter-spacing: 6px;
        column-gap: 0.4em;
        margin-bottom: var(--hero-copy-gap);
        line-height: 1.4;
    }

    .hero-kicker {
        letter-spacing: 0.13em;
    }

    .hero-title-main {
        letter-spacing: 0.04em;
    }

    .hero-body { margin-top: var(--hero-block-gap); }

    .hero-buttons {
        gap: 20px;
        margin-inline: auto;
    }
}

.hero-buttons {
    display: flex;
    gap: var(--hero-cta-inline-gap);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    isolation: isolate;
    width: var(--hero-rail-width);
    margin-top: var(--hero-cta-stack-gap);
}

.hero-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin-top: var(--hero-copy-gap);
    padding: 0;
}

.hero-proof-item {
    padding: 12px 18px;
    text-align: center;
}

.hero-proof-item + .hero-proof-item {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof-value {
    display: block;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 700;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.hero-proof-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.45;
}

.hero-proof-label-wide span {
    display: block;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 0 1 calc((100% - var(--hero-cta-inline-gap)) / 2);
    max-width: calc((100% - var(--hero-cta-inline-gap)) / 2);
    min-width: 0;
}

.portfolio-cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons::before {
    content: '';
    position: absolute;
    inset: -10px 10% -10px;
    background: radial-gradient(circle at center, rgba(201, 160, 80, 0.22) 0%, rgba(201, 160, 80, 0) 62%);
    filter: blur(22px);
    opacity: 0.65;
    z-index: -1;
    pointer-events: none;
}

/* ================= SCROLL DOWN ARROW ================= */
.scroll-down {
    position: absolute;
    bottom: 30px;
    /* Positionnée en bas de l'écran */
    left: 50%;
    transform: translateX(-50%);
    /* Centrée parfaitement */
    color: #ffffff;
    /* Blanche pour contraster avec le fond sombre */
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    /* Ça rebondit à l'infini */
    cursor: pointer;
    text-decoration: none;
    z-index: 3;
}

.scroll-down svg {
    width: 30px;
    /* Taille minimaliste */
    height: 30px;
}

.scroll-down:hover {
    opacity: 1;
    color: var(--accent);
    /* Devient jaune/doré au survol */
}

/* L'animation de rebond */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ================= PORTFOLIO ================= */
.portfolio {
    padding: 100px 0;
    background-color: var(--bg-main);
    background-image: var(--surface-glow-main);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: default;
    transition: var(--transition);
    border: 1px solid rgba(19, 32, 35, 0.04);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(19, 32, 35, 0.14);
}

.video-mockup {
    height: 250px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.play-icon {
    font-size: 3rem;
    color: #fff;
    opacity: 0.8;
    transition: var(--transition);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover .play-icon {
    transform: scale(1.15);
    opacity: 1;
    color: var(--accent);
    position: relative;
    z-index: 2;
}

.portfolio-info {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-info h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    letter-spacing: 1px;
}

.portfolio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(19, 32, 35, 0.08);
    background: rgba(255, 255, 255, 0.48);
    color: var(--brand-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-location {
    color: var(--brand-light);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= PRESTATIONS (Style Magazine Piste B) ================= */
.pricing-section {
    padding: 110px 0;
    background-color: var(--bg-alt);
    background-image: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    /* Plus d'écart entre les cartes */
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(19, 32, 35, 0.03);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(19, 32, 35, 0.12);
}

/* Bandeau jaune uniquement pour Mariage */
.premium-card .card-highlight {
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent) 80%, transparent 100%);
}

/* Nouvelles icônes centrées en haut */
.card-header-icon {
    display: flex;
    justify-content: center;
    padding-top: 35px;
    padding-bottom: 10px;
}

.card-header-icon svg {
    width: 42px;
    height: 42px;
    color: var(--accent);
}

.corporate-header-icon svg {
    color: var(--brand-light);
    /* Gris/Bleu pour le corpo */
}

/* Catégorie (FUTURS MARIÉS...) */
.card-category {
    text-align: center;
    padding: 0 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    /* Plus discret */
    text-transform: uppercase;
    margin-bottom: 5px;
}

.card-header {
    font-family: 'Cormorant Garamond', serif;
    padding: 10px 34px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nouveau design du prix */
.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

.starting-at {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    /* Moins gras qu'avant pour l'élégance */
    color: var(--brand-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.card-body {
    padding: 34px 40px;
    /* Plus de padding latéral */
    flex-grow: 1;
}

.card-intro {
    color: var(--text-main);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.9;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 22px;
    /* Plus d'espace entre les items */
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Le gras allégé */
.features-list li strong {
    color: var(--brand-dark);
    font-weight: 700;
}

.svg-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--accent);
    margin-top: 3px;
    opacity: 0.9;
}

.corporate-icon {
    color: var(--brand-light);
}

.card-footer {
    padding: 0 40px 40px;
    margin-top: auto;
    text-align: center;
}

.scarcity-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* Réduction de l'espace entre Prestations et Avis car ils ont le même fond */
#prestations {
    padding-bottom: 40px;
    /* Au lieu de 110px */
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    padding: 40px 0;
    background-color: var(--bg-alt);
    background-image: none;
    /* Utilise ton fond gris clair */
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 20px;
    /* Espace pour ne pas couper l'ombre */

    /* Masquer la barre de scroll disgracieuse */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    background: var(--bg-main);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(19, 32, 35, 0.04);
    display: flex;
    flex-direction: column;

    /* --- MODIFICATION POUR LA GRILLE PARFAITE --- */
    /* Calcul : (100% de largeur - 2 espaces de 24px) divisé par 3 cartes */
    flex: 0 0 calc((100% - 48px) / 3);

    /* On annule les anciennes tailles fixes qui cassaient l'alignement */
    min-width: 0;
    max-width: none;

    scroll-snap-align: start;
    /* Aligne le début de la carte avec le début du slider */
    height: auto;
}

/* --- AJOUTS RESPONSIVE --- */

/* Tablette : On affiche exactement 2 cartes */
@media (max-width: 1024px) {
    .testimonial-card {
        /* Calcul : (100% - 1 espace de 24px) divisé par 2 */
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

/* Mobile : On affiche exactement 1 carte */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Aligne les noms en bas si les textes ont des tailles différentes */
}

.testimonial-author {
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    color: var(--brand-dark);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.testimonial-hook {
    font-style: italic;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pousse le bouton vers le bas */
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

/* Modifie légèrement la grille existante */
.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 0;
    /* Padding haut/bas pour les ombres */

    /* Masquer la barre de scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

/* Style des flèches */
.slider-btn {
    background: var(--bg-main);
    border: 1px solid rgba(19, 32, 35, 0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    color: var(--brand-dark);
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
    /* Empêche le bouton de rétrécir */
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn:hover {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.prev-btn {
    margin-right: -15px;
    /* Superpose légèrement le bouton sur le bord */
}

.next-btn {
    margin-left: -15px;
    /* Superpose légèrement le bouton sur le bord */
}

/* Mobile : on garde des flèches visibles pour ne pas dépendre uniquement du swipe */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .testimonials-grid {
        order: 1;
        width: 100%;
        padding-bottom: 10px;
    }

    .slider-btn {
        display: flex;
        width: 42px;
        height: 42px;
    }

    .prev-btn,
    .next-btn {
        margin: 0;
    }

    .prev-btn {
        order: 2;
    }

    .next-btn {
        order: 3;
    }
}

.btn-read-more {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: left;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--brand-dark);
}

/* Style de la Modal (Pop-up) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 32, 35, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: var(--bg-main);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--brand-dark);
}

/* Style du texte de la Modal */
.modal-body .stars {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.modal-body p {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* La signature en bas */
.modal-signature {
    display: block;
    text-align: right;
    font-weight: 700;
    font-style: italic;
    color: var(--text-muted);
    /* Gris foncé discret, pas de jaune */
    font-size: 0.95rem;
    border-top: 1px solid rgba(19, 32, 35, 0.05);
    padding-top: 15px;
}

/* Flèches de navigation de la Modal */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-main);
    border: 1px solid rgba(19, 32, 35, 0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    color: var(--brand-dark);
    transition: var(--transition);
    z-index: 10;
}

.modal-nav-btn:hover {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.modal-prev {
    left: -22px;
    /* Dépasse à moitié à l'extérieur de la box blanche */
}

.modal-next {
    right: -22px;
}

/* Ajustement sur mobile pour que les flèches ne sortent pas de l'écran */
@media (max-width: 768px) {
    .modal-content {
        width: 92%;
        padding: 35px 20px 25px;
    }

    .modal-prev {
        left: -10px;
        width: 36px;
        height: 36px;
    }

    .modal-next {
        right: -10px;
        width: 36px;
        height: 36px;
    }

    .modal-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Le titre (Hook) à l'intérieur de la Modal */
.modal-hook {
    font-size: 1.15rem;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.4;
}

/* L'animation de transition douce entre les avis */
.animate-fade {
    animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateX(15px);
        /* Petit glissement depuis la droite */
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animations directionnelles pour la Pop-up (Version soyeuse) */
.slide-out-next {
    animation: slideOutLeft 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.slide-in-next {
    animation: slideInRight 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.slide-out-prev {
    animation: slideOutRight 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.slide-in-prev {
    animation: slideInLeft 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideOutLeft {
    to {
        transform: translateX(-60px);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    to {
        transform: translateX(60px);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ================= ABOUT ================= */
.about-section {
    padding: 110px 0 90px;
    background-color: var(--bg-main);
    background-image: var(--surface-glow-main);
}

.about-heading {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.about-heading .section-subtitle {
    margin-bottom: 42px;
}

.about-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: var(--brand-dark);
    text-transform: none;
    letter-spacing: 0.3px;
}

.about-flex {
    display: flex;
    align-items: stretch;
    gap: 76px;
}

/* Image */
.about-image-wrapper {
    flex: 0 0 42%;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: stretch;
}

.about-image-wrapper .photo-placeholder {
    flex: 1;
    height: auto;
    min-height: 660px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: 0 20px 50px rgba(19, 32, 35, 0.08);
    position: relative;
    z-index: 2;
}

.experience-badge {
    font-family: 'Cormorant Garamond', serif;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--brand-dark);
    color: var(--accent);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.75rem;
    line-height: 1.35;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(19, 32, 35, 0.15);
    padding: 18px;
}

/* Texte */
.about-text {
    flex: 1;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-text strong {
    color: var(--brand-dark);
    font-weight: 700;
}

/* Couleur harmonisée pour éviter l'effet "2 blocs" */
.about-intro,
.about-manifesto {
    color: var(--text-main);
    max-width: 62ch;
}

.about-copy {
    max-width: 56ch;
    display: grid;
    gap: 18px;
}

.about-intro {
    font-size: 1.03rem;
    margin-bottom: 0;
    line-height: 1.72;
    opacity: 1;
}

.about-manifesto-group {
    display: grid;
    gap: 16px;
    margin-top: 0;
}

.about-manifesto {
    font-size: 1.03rem;
    line-height: 1.72;
    margin-bottom: 0;
    font-style: normal;
    color: var(--text-main);
    opacity: 1;
}

.about-signature-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.about-signature-item {
    padding: 18px 18px 20px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 36%),
        var(--bg-alt);
    border: 1px solid rgba(19, 32, 35, 0.06);
    box-shadow: 0 18px 44px rgba(19, 32, 35, 0.06);
}

.about-signature-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.about-signature-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* CTA */
.about-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    isolation: isolate;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: -10px 0 auto;
    height: 72px;
    background: radial-gradient(circle at 18% 50%, rgba(201, 160, 80, 0.16) 0%, rgba(201, 160, 80, 0) 48%);
    filter: blur(18px);
    opacity: 0.65;
    z-index: -1;
    pointer-events: none;
}

.about-cta .btn {
    padding: 12px 18px;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
}

.about-cta .btn-ghost {
    font-size: 0.82rem;
    white-space: nowrap;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 64px;
    border-top: 1px solid rgba(19, 32, 35, 0.08);
    padding-top: 60px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 0;
    cursor: default;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.num-stat {
    font-weight: 400;
    /* Bien gras */
    font-size: 1.6em;
    /* On le grossit de 20% par rapport au texte à côté */

    margin-right: 0px;
    /* Petit espace visuel */
}

/* ================= FAQ ================= */
.faq-section {
    padding: 90px 0 100px;
    background: var(--bg-alt);
    background-image: var(--surface-glow-alt);
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 10px;
}

.faq-title {
    margin-bottom: 14px;
}

.faq-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-item {
    background: var(--bg-main);
    border: 1px solid rgba(19, 32, 35, 0.08);
    border-left: 3px solid transparent;
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.35s ease,
                box-shadow 0.35s var(--ease-premium),
                transform 0.35s var(--ease-premium),
                background-color 0.35s ease;
}

details.faq-item[open] {
    border-left-color: var(--accent);
    box-shadow: 0 18px 42px rgba(19, 32, 35, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 28%),
        var(--bg-main);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--brand-dark);
    user-select: none;
    -webkit-user-select: none;
    transition: background-color 0.35s ease, padding-left 0.35s var(--ease-premium), color 0.35s ease;
}

.faq-question:hover {
    background: rgba(19, 32, 35, 0.02);
}

@media (hover: hover) {
    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 38px rgba(19, 32, 35, 0.06);
        border-left-color: rgba(201, 160, 80, 0.45);
    }

    .faq-item:hover .faq-question {
        background: rgba(19, 32, 35, 0.03);
        padding-left: 24px;
    }

    .faq-item:hover .faq-icon {
        transform: translateX(2px);
    }
}

.faq-icon {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
    min-width: 18px;
    text-align: center;
    transition: transform 0.35s var(--ease-premium), color 0.35s ease;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.faq-answer {
    padding: 0 20px 18px 20px;
    /* Haut: 0, Droite: 20px, Bas: 18px, Gauche: 20px */
    color: var(--text-main);
    line-height: 1.75;
}

details[open] .faq-answer {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

details.faq-item summary {
    list-style: none;
    /* Cache la flèche sur Firefox */
}

details.faq-item summary::-webkit-details-marker {
    display: none;
    /* Cache la flèche sur Chrome/Safari */
}

details.faq-item summary::marker {
    content: '';
}

details.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

/* ================= CLIENTS ================= */
.clients-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-main);
    background-image: var(--surface-glow-main);
}

.trust-text {
    color: var(--text-muted);
    margin-bottom: 26px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-weight: 800;
    font-size: 1.4rem;
    color: #ccc;
}

/* ================= FOOTER ================= */
.footer {
    padding: 90px 0 46px;
    text-align: center;
    background: var(--brand-dark);
    color: #ffffff;
}

.footer h2 {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer p {
    color: #aebec1;
    margin-bottom: 34px;
}

.cta-footer {
    margin-bottom: 52px;
    position: relative;
    isolation: isolate;
}

.cta-footer::before {
    content: '';
    position: absolute;
    inset: 18% 14% -28% 14%;
    background: radial-gradient(circle at center, rgba(201, 160, 80, 0.42) 0%, rgba(201, 160, 80, 0) 66%);
    filter: blur(24px);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-socials a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.86rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.6px;
}

.footer-socials a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.8rem;
    color: #5a6b6e !important;
    margin-bottom: 0 !important;
}

.footer-infos p {
    margin-bottom: 6px;
}

/* Footer Icons */
.footer-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #aebec1;
    font-size: 0.9rem;
}

address.footer-infos {
    font-style: normal;
}

.footer-infos a {
    color: inherit;
    text-decoration: none;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item-location span {
    min-width: 0;
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    /* Reprend ta couleur dorée/jaune */
}

/* ================= UTILITAIRES ================= */
.price-tag {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-dark) !important;
    margin: 20px 0 !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 28px;
    }

    .navbar.scrolled {
        padding: 12px 28px;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .pricing-grid {
        gap: 24px;
    }

    .card-header,
    .card-body,
    .card-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-flex {
        gap: 48px;
    }

    .about-image-wrapper {
        flex-basis: 40%;
    }

    .about-image-wrapper .photo-placeholder {
        min-height: 560px;
    }
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .about-section {
        padding: 90px 0 70px;
    }

    .about-heading {
        margin-bottom: 42px;
    }

    .about-flex {
        flex-direction: column-reverse;
        gap: 36px;
        align-items: stretch;
    }

    .about-image-wrapper {
        max-width: 100%;
        width: 100%;
        flex: none;
        display: block;
    }

    .about-image-wrapper .photo-placeholder {
        height: 380px;
        min-height: 380px;
    }

    .experience-badge {
        width: 108px;
        height: 108px;
        font-size: 0.64rem;
        right: 10px;
        bottom: -12px;
        padding: 12px;
    }

    .about-text {
        max-width: 100%;
        width: 100%;
        padding-inline: 14px;
        box-sizing: border-box;
    }

    .about-title {
        font-size: 1.9rem;
    }

    .about-intro,
    .about-manifesto {
        max-width: 100%;
    }

    .about-signature-panel {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 24px;
    }

    .about-cta .btn {
        width: 100%;
        text-align: center;
    }

    .about-cta .btn-ghost {
        text-align: left;
        padding-top: 2px;
    }

    .faq-section {
        padding: 70px 0 80px;
    }

    .faq-question {
        padding: 16px 16px;
        font-size: 0.93rem;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 16px;
        gap: 12px;
    }

    .navbar::after {
        left: 16px;
        right: 16px;
    }

    .navbar.scrolled {
        padding: 10px 16px;
    }

    .logo {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .navbar a.logo {
        gap: 0.3rem;
    }


    .hero {
        justify-content: flex-start;
        min-height: 100svh;
        padding: 92px 16px 56px;
        box-sizing: border-box;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        --hero-stack-width: min(100%, 19rem);
        --hero-copy-width: min(100%, 19rem);
        --hero-rail-width: var(--hero-stack-width);
        --hero-copy-scale: 1;
        --hero-block-gap: 24px;
        --hero-copy-gap: 30px;
        --hero-intro-size: 0.88rem;
        --hero-panel-top-bleed: 30px;
        --hero-panel-bottom-bleed: 18px;
        --hero-cta-stack-gap: calc(var(--hero-copy-gap) + (var(--hero-panel-bottom-bleed) * 0.5));
        --hero-cta-inline-gap: 14px;
    }

    .hero-glass-panel::before {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .hero-content p.hero-surtitle {
        justify-content: center;
        margin-bottom: var(--hero-copy-gap);
    }

    .hero h1 {
        gap: 8px;
        width: var(--hero-stack-width);
    }

    .hero-kicker {
        font-size: clamp(1.42rem, 5.4vw, 1.7rem);
        letter-spacing: 0.11em;
    }

    .hero-title-main {
        font-size: clamp(1.15rem, 4.45vw, 1.34rem);
        letter-spacing: 0.012em;
        line-height: 1;
    }

    .text-location {
        font-size: 0.84rem;
        letter-spacing: 0.12em;
    }

    .hero p {
        margin-inline: auto;
        padding: 0;
    }

    .hero-body { margin-top: var(--hero-copy-gap); }

    .hero p.hero-intro {
        max-width: 100%;
        padding-inline: 0.65rem;
        box-sizing: border-box;
    }

    .hero-buttons {
        gap: var(--hero-cta-inline-gap);
        margin-top: var(--hero-cta-stack-gap);
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        flex: none;
        min-height: 56px;
    }

    .scroll-down {
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .hero-proof-strip {
        grid-template-columns: 1fr;
        margin-top: var(--hero-copy-gap);
    }

    .hero-proof-item {
        padding: 12px 18px;
    }

    .hero-proof-item + .hero-proof-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-proof-label-wide span {
        display: inline;
    }

    .hero-proof-label-wide span + span::before {
        content: ' ';
    }

    .portfolio-cta .btn {
        width: 100%;
        max-width: none;
    }

    .card-category {
        letter-spacing: 1px;
        font-size: 0.72rem;
    }

    .price-value {
        font-size: 2.4rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .footer-socials {
        gap: 16px;
    }

    .footer-socials a {
        font-size: 0.8rem;
    }

    .footer-infos {
        width: 100%;
    }

    .info-item-location {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: start;
        column-gap: 8px;
        max-width: min(100%, 22rem);
        margin: 0 auto;
    }

    .info-item-location .footer-icon {
        margin-top: 0.1rem;
    }

    .info-item-location span {
        text-align: left;
        line-height: 1.45;
    }
}

@media (min-width: 381px) and (max-width: 860px) {
    .hero p.hero-intro {
        padding-inline: clamp(1rem, 4vw, 1.35rem);
        box-sizing: border-box;
    }
}

@media (max-width: 768px) and (max-height: 850px) {
    .hero {
        padding-bottom: 40px;
    }

    .hero-content {
        --hero-copy-gap: 26px;
        --hero-cta-stack-gap: calc(var(--hero-copy-gap) + var(--hero-panel-bottom-bleed));
    }

    .hero-proof-strip {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero {
        justify-content: flex-start;
        min-height: 100svh;
        padding: 84px 16px 48px;
    }

    .hero-content {
        --hero-stack-width: min(100%, 17.5rem);
        --hero-copy-width: min(100%, 17.5rem);
        --hero-rail-width: var(--hero-stack-width);
        --hero-copy-scale: 1;
        --hero-block-gap: 20px;
        --hero-copy-gap: 26px;
        --hero-intro-size: 0.84rem;
        --hero-panel-top-bleed: 26px;
        --hero-panel-bottom-bleed: 16px;
        --hero-cta-stack-gap: calc(var(--hero-copy-gap) + (var(--hero-panel-bottom-bleed) * 0.5));
        --hero-cta-inline-gap: 12px;
    }

    .hero-content p.hero-surtitle {
        font-size: 0.86rem;
        letter-spacing: 4px;
    }

    .hero-kicker {
        font-size: 1.28rem;
        letter-spacing: 0.1em;
    }

    .hero-title-main {
        font-size: 1.28rem;
        letter-spacing: 0.015em;
    }

    .hero p.hero-intro {
        padding-inline: 0;
    }

    .text-location {
        font-size: 0.82rem;
        letter-spacing: 0.13em;
    }

    .hero-proof-item {
        padding: 11px 14px;
    }

    .scroll-down {
        bottom: calc(10px + env(safe-area-inset-bottom));
    }
}

/* =======================================================
   TARTEAUCITRON – GLASSMORPHISM THEME
   Version nettoyée & consolidée
   ======================================================= */

/* ---- Éléments parasites à tuer ---- */
#tarteaucitronRoot #tarteaucitronAlertBig::before,
#tarteaucitronRoot #tarteaucitronAlertBig::after,
#tarteaucitronRoot .tarteaucitronAlertBigTop,
#tarteaucitronRoot #tac_title,
#tarteaucitronRoot #tarteaucitronNoServicesTitle {
    display: none !important;
    content: none !important;
}


/* =======================================================
   SECTION 1 : TOAST (popup cookies initiale)
   ======================================================= */

#tarteaucitronRoot #tarteaucitronAlertBig {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    width: 360px !important;
    max-width: calc(100vw - 40px) !important;

    background: rgba(15, 15, 15, 0.4) !important;
    backdrop-filter: blur(20px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(120%) !important;

    border: 0px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0px !important;
    outline: none !important;
    padding: 28px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;

    font-family: 'Lato', sans-serif !important;
    z-index: 999999 !important;
    transform: none !important;
    margin: 0 !important;
    float: none !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
    text-align: center !important;
}

/* Texte */
#tarteaucitronRoot #tarteaucitronDisclaimerAlert {
    color: rgba(255, 255, 255, 0.98) !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    text-align: center !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Tout accepter */
#tarteaucitronRoot #tarteaucitronPersonalize2 {
    order: 1 !important;
    display: block !important;
    width: 100% !important;
    background-color: #c9a050 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 20px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    cursor: pointer !important;
    float: none !important;
    margin: 0 !important;
    transition: all 0.25s ease !important;
}

#tarteaucitronRoot #tarteaucitronPersonalize2:hover {
    background-color: #dcb363 !important;
}

/* Tout refuser */
#tarteaucitronRoot #tarteaucitronAllDenied2 {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0 !important;
    padding: 12px 20px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 400 !important;
    text-align: center !important;
    cursor: pointer !important;
    float: none !important;
    margin: 0 !important;
    transition: all 0.25s ease !important;
}

#tarteaucitronRoot #tarteaucitronAllDenied2:hover {
    background-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Personnaliser */
#tarteaucitronRoot #tarteaucitronCloseAlert {
    order: 3 !important;
    display: block !important;
    width: 100% !important;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    padding: 10px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    float: none !important;
    margin: 0 !important;
    transition: color 0.25s ease !important;
}

#tarteaucitronRoot #tarteaucitronCloseAlert:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* Politique de confidentialité */
#tarteaucitronRoot #tarteaucitronPrivacyUrl {
    order: 4 !important;
    display: block !important;
    width: 100% !important;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.35) !important;
    border: none !important;
    padding: 8px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    text-align: center !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    cursor: pointer !important;
    float: none !important;
    margin: 0 !important;
    transition: color 0.25s ease !important;
}

#tarteaucitronRoot #tarteaucitronPrivacyUrl:hover {
    color: #c9a050 !important;
}

/* Icônes check/cross masquées */
#tarteaucitronRoot .tarteaucitronCheck,
#tarteaucitronRoot .tarteaucitronCross,
#tarteaucitronRoot .tarteaucitronPlus {
    display: none !important;
}


/* =======================================================
   SECTION 2 : PANNEAU "PERSONNALISER"
   ======================================================= */

/* ---- Overlay fond ---- */
#tarteaucitronRoot #tarteaucitron {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999999 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
}

/* Ouvert → flex */
#tarteaucitronRoot #tarteaucitron[style*="display: block"] {
    display: flex !important;
    flex-direction: column !important;
}

/* Fermé → caché */
#tarteaucitronRoot #tarteaucitron:not([style*="display: block"]) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ---- Conteneur principal ---- */
#tarteaucitronRoot #tarteaucitronServices {
    background: rgba(20, 20, 20, 0.85) !important;
    backdrop-filter: blur(20px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
    border: 0px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0px !important;
    max-width: 600px !important;
    width: 100% !important;
    height: auto !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

/* ---- Bouton Fermer : compact, aligné à droite ---- */
#tarteaucitronRoot #tarteaucitronClosePanel {
    order: -1 !important;
    align-self: flex-end !important;
    width: auto !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 10px 16px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    z-index: 10000000 !important;
    transition: all 0.25s ease !important;
    margin: 0 !important;
    margin-right: max(10px, calc(50% - 300px)) !important;
}

#tarteaucitronRoot #tarteaucitronClosePanel:hover {
    color: #fff !important;
}

/* ---- Back overlay (si présent) ---- */
#tarteaucitronRoot #tarteaucitronBack {
    display: none !important;
}

/* ---- En-tête ---- */
#tarteaucitronRoot .tarteaucitronMainLine {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 28px 24px 20px !important;
    margin: 0 !important;
}

#tarteaucitronRoot .tarteaucitronH1,
#tarteaucitronRoot #dialogTitle {
    color: #ffffff !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
    display: block !important;
}

#tarteaucitronRoot #tarteaucitronInfo p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

#tarteaucitronRoot #tarteaucitronInfo br {
    display: none !important;
}

#tarteaucitronRoot #tarteaucitronPrivacyUrlDialog {
    color: rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
    border: none !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.82rem !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    cursor: pointer !important;
    padding: 8px 0 0 0 !important;
    margin: 0 !important;
    transition: color 0.25s ease !important;
}

#tarteaucitronRoot #tarteaucitronPrivacyUrlDialog:hover {
    color: #c9a050 !important;
}

/* ---- Préférences globales ---- */
#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronName {
    margin-top: 16px !important;
}

#tarteaucitronRoot .tarteaucitronName .tarteaucitronH2 {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
}

#tarteaucitronRoot .tarteaucitronMainLine .tarteaucitronAsk {
    margin-top: 12px !important;
}

#tarteaucitronRoot #tarteaucitronAllAllowed {
    background-color: #c9a050 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 10px 18px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    margin: 2px !important;
}

#tarteaucitronRoot #tarteaucitronAllAllowed:hover {
    background-color: #dcb363 !important;
    box-shadow: 0 4px 18px rgba(201, 160, 80, 0.0) !important;
}

#tarteaucitronRoot #tarteaucitronAllDenied {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0px !important;
    padding: 10px 18px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    margin: 2px !important;
}

#tarteaucitronRoot #tarteaucitronAllDenied:hover {
    background-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}

/* ---- Zone des catégories ---- */
#tarteaucitronRoot .tarteaucitronBorder {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

#tarteaucitronRoot .tarteaucitronBorder ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#tarteaucitronRoot li.tarteaucitronHidden:has(ul:empty) {
    display: none !important;
}

/* ---- Titre de catégorie ---- */
#tarteaucitronRoot .tarteaucitronTitle {
    background: rgba(255, 255, 255, 0.04) !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 0 !important;
    margin: 0 !important;
}

#tarteaucitronRoot .tarteaucitronTitle button {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    background: transparent !important;
    border: none !important;
    padding: 14px 24px !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

#tarteaucitronRoot .tarteaucitronTitle button:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

/* ---- Description de catégorie ---- */
#tarteaucitronRoot .tarteaucitronDetails {
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    padding: 10px 24px 14px !important;
    background: transparent !important;
    border: none !important;
}

/* ---- Ligne de service ---- */
#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 12px 24px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronName {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.88rem !important;
    flex: 1 !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronName a {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    transition: color 0.25s ease !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronName a:hover {
    color: #c9a050 !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronAsk {
    margin-left: 16px !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow {
    background-color: rgba(201, 160, 80, 0.2) !important;
    color: #c9a050 !important;
    border: 1px solid rgba(201, 160, 80, 0.3) !important;
    border-radius: 0px !important;
    padding: 6px 14px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    margin: 2px !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow:hover {
    background-color: #c9a050 !important;
    color: #fff !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny {
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0px !important;
    padding: 6px 14px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    margin: 2px !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny:hover {
    background-color: rgba(255, 80, 80, 0.2) !important;
    color: #ff6b6b !important;
    border-color: rgba(255, 80, 80, 0.3) !important;
}

#tarteaucitronRoot .tarteaucitronBorder .tarteaucitronLine .tarteaucitronStatusInfo {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.78rem !important;
    font-family: 'Lato', sans-serif !important;
    display: block !important;
    width: 100% !important;
    margin-top: 6px !important;
}

/* ---- Bouton Enregistrer ---- */
#tarteaucitronRoot #tarteaucitronSave {
    padding: 16px 24px 24px !important;
    background: transparent !important;
    border: none !important;
}

#tarteaucitronRoot #tarteaucitronSaveButton {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px !important;
    background-color: #c9a050 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

#tarteaucitronRoot #tarteaucitronSaveButton:hover {
    background-color: #dcb363 !important;
    box-shadow: 0 4px 18px rgba(201, 160, 80, 0.0) !important;
}

/* ---- Scrollbar ---- */
#tarteaucitronRoot #tarteaucitronServices::-webkit-scrollbar {
    width: 6px !important;
}

#tarteaucitronRoot #tarteaucitronServices::-webkit-scrollbar-track {
    background: transparent !important;
}

#tarteaucitronRoot #tarteaucitronServices::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 3px !important;
}

#tarteaucitronRoot #tarteaucitronServices::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* =======================================================
   SECTION 3 : RESPONSIVE
   ======================================================= */

@media (max-width: 480px) {
    #tarteaucitronRoot #tarteaucitronAlertBig {
        bottom: 15px !important;
        right: 15px !important;
        left: 15px !important;
        width: auto !important;
        padding: 22px !important;
    }

    #tarteaucitronRoot #tarteaucitron {
        padding: 20px 10px !important;
    }

    #tarteaucitronRoot #tarteaucitronClosePanel {
        margin-right: 10px !important;
    }

    #tarteaucitronRoot #tarteaucitronServices {
        max-height: 85vh !important;
    }
}

/* =======================================================
   ANIMATIONS D'ENTRÉE : HERO SECTION (EFFET PREMIUM)
   ======================================================= */

/* 1. On crée le "moteur" de l'animation : de l'invisible vers le visible, du bas vers le haut */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        /* L'élément part 30 pixels plus bas */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* Il arrive à sa place normale */
    }
}

/* 2. On prépare tous les éléments du Hero à être invisibles au départ */
.hero-content .hero-surtitle,
.hero-content p.hero-surtitle,
.hero-content h1,
.hero-content p,
.hero-content .hero-buttons,
.hero-content .hero-proof-strip {
    opacity: 0;
    /* Caché au tout début */
    animation-name: fadeInUp;
    /* On appelle l'animation */
    animation-duration: 0.8s;
    /* Durée de l'animation (ni trop lent, ni trop rapide) */
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Effet de freinage en douceur à la fin */
    animation-fill-mode: forwards;
    /* L'élément reste visible à la fin de l'animation */
}

/* 3. On décale l'arrivée de chaque élément (L'effet Cascade) */
.hero-content .hero-surtitle,
.hero-content p.hero-surtitle {
    animation-delay: 0.2s;
    /* Arrive en premier */
}

.hero-content h1 {
    animation-delay: 0.4s;
    /* Arrive juste après */
}

.hero-content p {
    animation-delay: 0.6s;
    /* Puis le texte */
}

.hero-content .hero-proof-strip {
    animation-delay: 0.8s;
    /* Puis la réassurance */
}

.hero-content .hero-buttons {
    animation-delay: 1s;
    /* Et enfin l'appel à l'action */
}

/* =======================================================
   FORMULAIRE DE CONTACT (Page Dédiée)
   ======================================================= */

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    /* Ombre très douce */
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

/* Ligne avec 2 champs (Type de projet + Date) sur PC */
.form-row {
    display: flex;
    gap: 20px;
}

.half-width {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 0.95rem;
}

/* Style des champs de saisie */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    background: #fafafa;
    color: var(--text-main);
    transition: all 0.3s ease;
}

/* Effet quand on clique dans un champ */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    /* Ton Or/Moutarde */
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(217, 159, 60, 0.15);
    /* Halo doré léger */
}

/* Rendre le select plus joli */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Responsive : On repasse à 1 colonne sur téléphone */
@media (max-width: 600px) {
    .contact-form {
        padding: 25px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Cacher le pot de miel correctement */
.stealth-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

/* Rendre l'icône du calendrier cliquable visuellement (petite main) */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* =======================================================
   PAGE CONTACT (LAYOUT PREMIUM)
   ======================================================= */
.page-header {
    /* Remplace l'URL par une belle image de drone ou de mariage sombre à toi */
    background: linear-gradient(rgba(19, 32, 35, 0.7), rgba(32, 55, 59, 0.8)), url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?q=80&w=2000&auto=format&fit=crop') center/cover;
    padding: 160px 20px 80px;
    text-align: center;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-col {
    flex: 1;
    min-width: 300px;
}

.contact-form-col {
    flex: 1.5;
    min-width: 340px;
}

/* Animation douce pour le champ dynamique */
.dynamic-field {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dynamic-field.active {
    max-height: 100px;
    /* Assez grand pour révéler le champ */
    opacity: 1;
    overflow: visible;
}

@media (max-width: 768px) {
    .contact-layout {
        gap: 40px;
    }
}

/* =======================================================
   TIMELINE VERTICALE (Page Contact)
   ======================================================= */
.process-timeline {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 7px;
    width: 1px;
    background: rgba(19, 32, 35, 0.15);
    /* Ligne très fine */
}

.timeline-step {
    position: relative;
    margin-bottom: 30px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Le petit point doré */
.timeline-step::before {
    content: '';
    position: absolute;
    left: -26.5px;
    /* Centré sur la ligne */
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 160, 80, 0.2);
    /* Halo doré */
    transition: all 0.3s ease;
}

.timeline-title {
    color: var(--brand-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ================= REVEAL ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.985);
    filter: blur(8px);
    transition:
        opacity 0.7s var(--ease-premium),
        transform 0.9s var(--ease-premium),
        filter 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.section-subtitle.reveal {
    transform: translate3d(0, 18px, 0);
}

.section-title.reveal {
    transform: translate3d(0, 24px, 0);
}
/* =======================================================
   AMÉLIORATIONS PREMIUM  Phase 2 (SEO/UX/Design)
   ======================================================= */

/* ---- Accessibilité : focus-visible élégant ---- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ---- Logo lien ---- */
/* Logo lien : hérite de .logo, juste override de text-decoration */
a.logo {
    text-decoration: none;
}
a.logo:hover {
    color: var(--accent);
}

/* ---- Skip link (accessibilité clavier) ---- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--accent);
    color: var(--brand-dark);
    padding: 10px 20px;
    font-weight: 700;
    text-decoration: none;
    z-index: 99999;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 10px;
}

@media (max-width: 380px) {
    .logo {
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }

    .navbar a.logo {
        gap: 0.2rem;
    }

    .hero-content p.hero-surtitle {
        letter-spacing: 4px;
        column-gap: 0.3em;
    }
}

/* ---- Hero : overlay cinématographique via ::before ---- */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(19, 32, 35, 0.55) 0%,
            rgba(19, 32, 35, 0.35) 40%,
            rgba(19, 32, 35, 0.65) 100%
        );
    z-index: 1;
    pointer-events: none;
}

/* Ken Burns supprimé (conflit resize) */

/* Hero H1 légèrement plus affirmé */

/* ---- Portfolio : hover translateY premium ---- */

/* Overlay cinématographique au hover portfolio */
.video-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 32, 35, 0);
    transition: background 0.4s ease;
}
.portfolio-item:hover .video-mockup::after {
    background: rgba(19, 32, 35, 0.25);
}

/* Portfolio CTA centré sans inline style */
.portfolio-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* ---- Intro section prestations ---- */
.section-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: -30px auto 50px;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

/* ---- Pricing cards : hover translateY raffiné ---- */

/* Ligne accent mariage plus raffinée : dégradé horizontal */

/* ---- FAQ : cohérence 0px radius + accent à l'ouverture ---- */

/* Guillemets testimonials supprimés (confusant visuellement) */

/* Testimonial card hover */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(19, 32, 35, 0.1);
}

/* feature-box : pas de hover simulant un lien */

/* ---- Footer : h2 plus impactant ---- */

/* Séparateur copyright supprimé */

/* Liens légaux footer : style cohérent sans inline */
.legal-links {
    margin-top: 20px;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.legal-links a:hover {
    color: var(--accent);
}

/* Footer address : reset styles */

/* ---- Boutons : transition plus soyeuse ---- */

/* navbar logo transition: géré par .logo existant */

/* ==============================================
   CORRECTIONS VISUELLES – Bugs post-redesign
   ============================================== */

/* 9. Feature icon au hover : juste la couleur, sans transform */
.feature-box:hover .feature-icon {
    color: var(--accent);
}

/* Logo lien : doit se comporter exactement comme le div.logo original */
.navbar a.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo .sig-char {
    color: currentColor;
}

.svg-sprite {
    display: none;
}

/* ==============================================
   LOT 2 - PROFONDEUR VISUELLE & SURFACES VIVANTES
   ============================================== */

.hero {
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 18% 24%, rgba(201, 160, 80, 0.18) 0%, rgba(201, 160, 80, 0) 28%),
        radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at 52% 74%, rgba(32, 55, 59, 0.28) 0%, rgba(32, 55, 59, 0) 42%);
    opacity: 0.55;
    filter: blur(18px);
    transform: scale(1.04);
    animation: heroAtmosphere 18s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.hero h1 {
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.hero p,
.hero-content p.hero-surtitle {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.portfolio-item,
.pricing-card,
.testimonial-card,
.feature-box {
    position: relative;
    isolation: isolate;
}

.portfolio-item::before,
.pricing-card::before,
.testimonial-card::before,
.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.7s var(--ease-premium);
    transform: translateY(14px);
    z-index: 0;
}

.portfolio-item > *,
.pricing-card > *,
.testimonial-card > *,
.feature-box > * {
    position: relative;
    z-index: 1;
}

.portfolio-item {
    transition: transform 0.45s var(--ease-premium),
                box-shadow 0.45s var(--ease-premium),
                border-color 0.35s ease;
}

.portfolio-item::before {
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at top right, rgba(201, 160, 80, 0.16) 0%, rgba(201, 160, 80, 0) 36%);
}

.video-mockup {
    transition: transform 0.75s var(--ease-premium), filter 0.45s ease;
}

.video-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 50% 100%, rgba(201, 160, 80, 0.2) 0%, rgba(201, 160, 80, 0) 44%);
    opacity: 0.7;
    transition: opacity 0.45s ease, transform 0.75s var(--ease-premium);
}

.portfolio-info {
    transition: transform 0.45s var(--ease-premium);
}

.pricing-card {
    transition: transform 0.45s var(--ease-premium),
                box-shadow 0.45s var(--ease-premium),
                border-color 0.35s ease;
}

.pricing-card::before {
    background:
        radial-gradient(circle at top right, rgba(201, 160, 80, 0.14) 0%, rgba(201, 160, 80, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 46%);
}

.premium-card .card-highlight {
    transform-origin: center;
    transition: transform 0.55s var(--ease-premium), opacity 0.35s ease;
}

.card-header-icon svg {
    transition: transform 0.55s var(--ease-premium), filter 0.45s ease, color 0.35s ease;
}

.testimonial-card {
    overflow: hidden;
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), border-color 0.35s ease;
}

.testimonial-card::before {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 32%),
        radial-gradient(circle at top right, rgba(201, 160, 80, 0.12) 0%, rgba(201, 160, 80, 0) 30%);
}

.slider-btn {
    transition: transform 0.35s var(--ease-premium),
                box-shadow 0.35s var(--ease-premium),
                background-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-box {
    overflow: hidden;
    border: none;
    transition: none;
}

.feature-box::before {
    background:
        radial-gradient(circle at top center, rgba(201, 160, 80, 0.12) 0%, rgba(201, 160, 80, 0) 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 48%);
}

.feature-box .feature-icon svg {
    transition: color 0.3s ease, filter 0.3s ease;
}

@media (hover: hover) {
    .portfolio-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 72px rgba(19, 32, 35, 0.15);
        border-color: rgba(201, 160, 80, 0.12);
    }

    .portfolio-item:hover::before,
    .pricing-card:hover::before,
    .testimonial-card:hover::before {
        opacity: 1;
        transform: translateY(0);
    }

    .portfolio-item:hover .video-mockup {
        transform: scale(1.04);
        filter: saturate(1.05);
    }

    .portfolio-item:hover .video-mockup::before {
        opacity: 1;
        transform: scale(1.05);
    }

    .portfolio-item:hover .portfolio-info {
        transform: translateY(-3px);
    }

    .pricing-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 34px 78px rgba(19, 32, 35, 0.14);
        border-color: rgba(201, 160, 80, 0.14);
    }

    .pricing-card:hover .card-header-icon svg {
        transform: translateY(-4px) scale(1.05);
        filter: drop-shadow(0 12px 22px rgba(19, 32, 35, 0.14));
    }

    .pricing-card:hover .card-highlight {
        transform: scaleX(1.08);
        opacity: 0.95;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(19, 32, 35, 0.13);
        border-color: rgba(201, 160, 80, 0.12);
    }

    .slider-btn:hover {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 18px 40px rgba(19, 32, 35, 0.14);
    }

    .feature-box:hover .feature-icon svg {
        transform: none;
        filter: none;
        color: var(--accent);
    }
}

@media (max-width: 768px) {
    .hero::after {
        opacity: 0.42;
        filter: blur(20px);
    }
}

@keyframes heroAtmosphere {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1.03);
    }

    50% {
        transform: translate3d(1.2%, 1.8%, 0) scale(1.06);
    }

    100% {
        transform: translate3d(0.5%, 2.8%, 0) scale(1.04);
    }
}

/* ==============================================
   PAGES SECONDAIRES - CONTACT / CLIENT / MERCI
   ============================================== */

.page-contact,
.page-client,
.page-thank-you {
    min-height: 100vh;
}

.contact-page-header {
    background-position: center 34%;
}

.contact-page-title {
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.contact-page-intro {
    max-width: 42rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.8;
}

.contact-page-main {
    padding: 88px 0 110px;
}

.contact-process-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.contact-quote-card {
    margin-top: 42px;
    padding: 30px 32px;
    border-left: 3px solid var(--accent);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 34%),
        var(--bg-alt);
    box-shadow: var(--shadow-soft);
}

.contact-quote-text {
    color: var(--brand-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    line-height: 1.45;
    margin: 0;
}

.contact-quote-author {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-shell,
.contact-success {
    width: min(100%, 650px);
    max-width: 100%;
    border-radius: 0;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0) 34%),
        var(--bg-main);
    box-shadow: var(--shadow-medium);
}

.contact-project-label,
.contact-project-select {
    font-weight: 600;
}

.dynamic-field-inline {
    align-self: flex-end;
    flex: 0 0 0;
    min-width: 0;
    margin-bottom: 0;
}

.dynamic-field-inline.active {
    flex: 1 1 0;
    margin-bottom: 25px;
}

.contact-message-group textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-turnstile {
    display: flex;
    justify-content: center;
    margin: 4px 0 16px;
}

.btn-block {
    width: 100%;
}

.contact-submit {
    min-height: 56px;
}

.btn[disabled],
.contact-submit[disabled] {
    opacity: 0.74;
    cursor: wait;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.contact-privacy-note {
    margin-top: 16px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

.contact-form-feedback,
.client-error-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid rgba(19, 32, 35, 0.12);
    background: rgba(255, 255, 255, 0.66);
    color: var(--brand-dark);
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: center;
}

.contact-form-feedback.is-error,
.client-error-message {
    border-color: rgba(146, 41, 41, 0.18);
    color: #7b2323;
    background: rgba(123, 35, 35, 0.06);
}

.contact-form-feedback[hidden],
.contact-success[hidden],
.client-error-message[hidden],
.locked-content[hidden] {
    display: none !important;
}

.contact-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.contact-success-icon {
    color: var(--accent);
}

.contact-success-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.9rem);
    letter-spacing: 2px;
}

.contact-success-text {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 34rem;
}

.contact-success-text strong {
    color: var(--brand-dark);
}

.contact-success-link {
    margin-top: 8px;
}

.client-hero {
    position: relative;
    min-height: 72vh;
    padding: 170px 20px 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(9, 16, 18, 0.52), rgba(19, 32, 35, 0.78)),
        var(--client-hero-image) center/cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.client-hero::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 22% 22%, rgba(201, 160, 80, 0.18) 0%, rgba(201, 160, 80, 0) 30%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 24%);
    filter: blur(12px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.client-hero-content {
    position: relative;
    z-index: 1;
    max-width: 44rem;
}

.client-hero-content h1 {
    color: #ffffff;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 2px;
}

.client-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.92rem;
}

.cinema-room {
    padding-top: 88px;
    padding-bottom: 110px;
}

.cinema-room section + section {
    margin-top: 42px;
}

.video-block,
.password-form,
.upsell-section,
.client-archives {
    position: relative;
    overflow: hidden;
    padding: 36px clamp(22px, 4vw, 40px);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 34%),
        var(--bg-main);
    box-shadow: var(--shadow-medium);
}

.video-title,
.upsell-title,
.client-archives-title {
    margin-bottom: 14px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #05080a;
    box-shadow: 0 28px 62px rgba(7, 15, 17, 0.18);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.locked-section {
    display: grid;
    gap: 30px;
}

.password-form {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 34%),
        var(--bg-alt);
}

.lock-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    color: var(--accent);
    border: 1px solid rgba(201, 160, 80, 0.24);
    background: rgba(255, 255, 255, 0.32);
}

.password-form h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 1px;
}

.client-password-copy,
.client-archives-text,
.upsell-text {
    color: var(--text-muted);
    line-height: 1.75;
}

.client-password-copy {
    margin-bottom: 22px;
}

.password-input {
    width: min(100%, 360px);
    margin: 0 auto 14px;
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(19, 32, 35, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.14);
    background: #ffffff;
}

.client-unlock-btn {
    width: min(100%, 360px);
}

.client-error-message {
    max-width: 360px;
    margin: 14px auto 0;
}

.locked-content {
    display: grid;
    gap: 30px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}

.locked-content.is-visible {
    opacity: 1;
    transform: none;
}

.client-archives {
    text-align: center;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 34%),
        var(--bg-alt);
}

.client-archives-title {
    font-size: 1.8rem;
}

.client-archives-text {
    max-width: 34rem;
    margin: 0 auto 22px;
}

.upsell-section {
    text-align: center;
}

.upsell-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
    text-transform: none;
    letter-spacing: 1px;
}

.upsell-text {
    max-width: 40rem;
    margin: 0 auto 28px;
}

.review-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-review {
    min-width: 240px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
}

.btn-review svg {
    flex: none;
}

.btn-mariage {
    background: var(--brand-dark);
    color: #ffffff;
    border-color: var(--brand-dark);
    box-shadow: 0 16px 34px rgba(19, 32, 35, 0.18);
}

.btn-mariage:hover {
    background: transparent;
    color: var(--brand-dark);
}

.btn-google {
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-dark);
    border-color: rgba(19, 32, 35, 0.12);
    box-shadow: 0 16px 34px rgba(19, 32, 35, 0.1);
}

.btn-google:hover {
    background: var(--bg-alt);
    color: var(--brand-dark);
}

.review-button-label {
    display: inline-flex;
    align-items: center;
}

.thank-you-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 36px 20px;
    background:
        radial-gradient(circle at top, rgba(201, 160, 80, 0.12), rgba(201, 160, 80, 0) 40%),
        var(--surface-glow-main);
}

.thank-you-logo {
    margin-bottom: 26px;
    color: var(--brand-dark);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-decoration: none;
}

.thank-you-content {
    width: min(100%, 760px);
    padding: 48px clamp(24px, 5vw, 58px);
    text-align: center;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 32%),
        var(--bg-main);
    box-shadow: var(--shadow-medium);
}

.thank-you-content h1 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    text-transform: none;
    letter-spacing: 1px;
}

.thank-you-content p {
    max-width: 40rem;
    margin: 0 auto 16px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.thank-you-content p strong {
    color: var(--brand-dark);
}

@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
        gap: 34px;
    }

    .contact-info-col,
    .contact-form-col {
        width: 100%;
        min-width: 0;
    }

    .contact-form-shell,
    .contact-success {
        width: 100%;
    }

    .client-hero {
        min-height: 62vh;
        padding-bottom: 86px;
    }
}

@media (max-width: 768px) {
    .contact-page-main {
        padding: 70px 0 86px;
    }

    .contact-quote-card,
    .video-block,
    .password-form,
    .upsell-section,
    .client-archives,
    .thank-you-content {
        padding: 28px 22px;
    }

    .contact-turnstile {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .client-hero {
        padding-top: 140px;
    }

    .client-hero-content p {
        letter-spacing: 1.4px;
    }

    .btn-review {
        width: 100%;
        min-width: 0;
    }

    .thank-you-logo {
        letter-spacing: 4px;
        font-size: 0.86rem;
    }
}

@media (max-width: 600px) {
    .contact-quote-text {
        font-size: 1.25rem;
    }

    .lock-icon {
        width: 72px;
        height: 72px;
    }

    .password-input,
    .client-unlock-btn,
    .client-error-message {
        width: 100%;
        max-width: none;
    }

    .thank-you-page {
        padding: 24px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-down,
    .animate-fade,
    .slide-out-next,
    .slide-in-next,
    .slide-out-prev,
    .slide-in-prev,
    details[open] .faq-answer,
    .hero-content .hero-surtitle,
    .hero-content p.hero-surtitle,
    .hero-content h1,
    .hero-content p,
    .hero-content .hero-buttons,
    .hero-content .hero-proof-strip {
        animation: none !important;
    }

    .reveal,
    .hero-content .hero-surtitle,
    .hero-content p.hero-surtitle,
    .hero-content h1,
    .hero-content p,
    .hero-content .hero-buttons,
    .hero-content .hero-proof-strip {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .btn,
    .btn-menu,
    .navbar,
    .nav-links a,
    .portfolio-item,
    .video-mockup,
    .portfolio-info,
    .pricing-card,
    .testimonial-card,
    .feature-box,
    .faq-item,
    .faq-question,
    .faq-icon,
    .slider-btn,
    .card-header-icon svg,
    .feature-box .feature-icon svg {
        transition: none !important;
    }

    .btn::after,
    .nav-links a::after,
    .navbar::after,
    .hero::after,
    .client-hero::before,
    .portfolio-item::before,
    .pricing-card::before,
    .testimonial-card::before,
    .feature-box::before,
    .video-mockup::before {
        opacity: 0 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}
