/* ===== Variables CSS ===== */
:root {
    --primary-color: #C4A57B;
    --primary-dark: #9B7653;
    --primary-light: #E8D5C4;
    --accent-color: #D4A574;
    --dark-color: #2C2416;
    --light-bg: #F5E6D3;
    --white: #FFFFFF;
    --text-dark: #2C2416;
    --text-light: #6B5B4A;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(255, 252, 248, 0.82);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    box-shadow: 0 1px 0 rgba(196, 165, 123, 0.12), 0 8px 32px rgba(44, 36, 22, 0.06);
    padding: 1rem 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
    border-bottom: 1px solid rgba(196, 165, 123, 0.14);
}

.navbar--premium.navbar.scrolled,
.navbar.scrolled {
    padding: 0.65rem 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 0 rgba(196, 165, 123, 0.2), 0 12px 40px rgba(44, 36, 22, 0.08);
}

.navbar__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.5rem;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    color: var(--primary-color);
}

.brand-creativity {
    color: var(--dark-color);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.navbar-nav--main .nav-link {
    font-family: var(--font-heading);
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0.2rem;
    padding: 0.45rem 0.75rem !important;
    position: relative;
    transition: color 0.25s ease;
}

.navbar-nav--main .nav-link:hover {
    color: var(--primary-dark) !important;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.brand-creativity {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav--main .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.navbar-nav--main .nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-dark);
    opacity: 0.85;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.navbar-nav--main .nav-link:hover::before,
.navbar-nav--main .nav-link.active::before {
    width: calc(100% - 0.5rem);
}

.navbar-nav--main .nav-link.active {
    color: var(--dark-color) !important;
}

.navbar-nav--main .nav-link:hover {
    background: transparent;
}

.nav-item--cta {
    margin-left: 0.75rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.btn-nav-cta {
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white) !important;
    background: linear-gradient(135deg, #2C2416 0%, #1a1510 100%) !important;
    border: none !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 18px rgba(44, 36, 22, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}

.btn-nav-cta:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(44, 36, 22, 0.35);
    background: linear-gradient(135deg, #3d3328 0%, #2C2416 100%) !important;
}

.btn-nav-cta::before {
    display: none !important;
}

@media (max-width: 991px) {
    .navbar__inner .navbar-collapse {
        flex-basis: 100%;
        order: 3;
    }

    .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 56px);
    }

    .brand-wrapper {
        gap: 0.65rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .brand-creativity {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }

    .hero-section {
        padding-top: calc(102px + env(safe-area-inset-top, 0px));
    }

    .hero-section .container .row > [class*="col-"]:first-child {
        text-align: center;
    }

    .hero-content {
        padding-top: 0.35rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        width: 100%;
        text-align: center;
    }

    .hero-title .line-1,
    .hero-title .line-2,
    .hero-title .line-3 {
        text-align: center;
        width: 100%;
    }

    .hero-title .line-2 {
        background-position: center center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
        max-width: 420px;
    }

    .nav-item--cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 0.75rem 0 0;
    }

    .btn-nav-cta {
        width: 100%;
        max-width: 280px;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1.25rem 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.97);
        border-radius: 16px;
        border: 1px solid rgba(196, 165, 123, 0.2);
        box-shadow: 0 16px 48px rgba(44, 36, 22, 0.1);
    }

    .navbar-nav--main .nav-link {
        padding: 0.75rem 1rem !important;
        justify-content: center;
        font-size: 0.8rem;
    }

    .navbar-nav--main .nav-link::before {
        bottom: 6px;
    }
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: var(--white) !important;
    margin-left: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(196, 165, 123, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 165, 123, 0.4);
}

.nav-cta::before {
    display: none;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    flex-shrink: 0;
    pointer-events: none;
    background: none !important;
    background-image: none !important;
    vertical-align: unset;
}

.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #FAF6F0;
    background-image: linear-gradient(180deg, #FFFCF8 0%, #F5EDE4 48%, #F0E8DD 100%);
    overflow: hidden;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
}

.hero-section .container .row > [class*="col-"]:first-child {
    text-align: left;
}

/* Au-dessus des calques de fond + bruit (évite que le hero soit masqué) */
.hero-section > .container {
    position: relative;
    z-index: 10;
}

.hero-section__row {
    --bs-gutter-x: 1.5rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-halo {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 85% at 76% 38%, rgba(255, 253, 250, 0.98) 0%, rgba(252, 246, 238, 0.5) 42%, transparent 68%),
        radial-gradient(ellipse 50% 45% at 88% 55%, rgba(255, 248, 240, 0.45) 0%, transparent 55%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.075;
    animation: float 22s infinite ease-in-out;
    filter: blur(60px);
}

.shape-1 {
    width: 480px;
    height: 480px;
    background: var(--primary-color);
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}

.shape-2 {
    width: 340px;
    height: 340px;
    background: var(--accent-color);
    bottom: -80px;
    left: -60px;
    animation-delay: 5s;
}

.shape-3 {
    width: 240px;
    height: 240px;
    background: var(--primary-dark);
    top: 45%;
    left: 8%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(25px, -25px) rotate(100deg) scale(1.05); }
    66% { transform: translate(-15px, 18px) rotate(200deg) scale(0.98); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 0.55rem 1.6rem;
    background: rgba(196, 165, 123, 0.15);
    border: 1px solid rgba(196, 165, 123, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(196, 165, 123, 0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5.25rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(44, 36, 22, 0.06);
}

.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-3 {
    display: block;
}

.hero-title .line-2 {
    margin-top: 0.06em;
    padding-left: 0;
    font-size: 1.12em;
    font-weight: 700;
    line-height: 1.05;
    background: linear-gradient(135deg, #B8956A 0%, var(--primary-color) 45%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(196, 165, 123, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 165, 123, 0.4);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    min-height: 420px;
    max-width: 100%;
}

.hero-invites-glow {
    position: absolute;
    width: 130%;
    height: 95%;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse 80% 70% at 50% 55%, rgba(196, 165, 123, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    filter: blur(4px);
}

.hero-image {
    position: relative;
    z-index: 1;
    min-height: 440px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-invites-scene {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 400px;
    margin: 0 auto;
    perspective: 1400px;
    transform-style: preserve-3d;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 400px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: transparent;
    padding: 0;
    border-radius: 22px;
    overflow: visible;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-invite-card {
    cursor: default;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.hero-invite-card__paper {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(155deg, #FFFCF8 0%, #F0E6DA 48%, #E8DDD2 100%);
    box-shadow:
        0 16px 40px rgba(44, 36, 22, 0.14),
        0 0 0 1px rgba(196, 165, 123, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.hero-invite-card__frame {
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    bottom: 9px;
    z-index: 1;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    background: linear-gradient(165deg, #EDE6DD 0%, #D9CEC2 100%);
}

.hero-invite-card .floating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-invite-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.35rem 0.65rem 0.55rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    background: linear-gradient(to top, rgba(44, 36, 22, 0.72) 0%, rgba(44, 36, 22, 0.2) 55%, transparent 100%);
}

.hero-invite-card__seal {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    z-index: 3;
    background: radial-gradient(circle at 35% 28%, #E4C9A8 0%, #9B7653 52%, #6B5340 100%);
    box-shadow:
        0 3px 10px rgba(74, 56, 40, 0.3),
        inset 0 -1px 3px rgba(0, 0, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-invite-card__seal::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    opacity: 0.55;
}

.floating-card:hover {
    filter: brightness(1.02);
}

.hero-invite-card:hover .floating-image {
    transform: scale(1.06);
}

.floating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem;
}

.hero-card-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-card-content span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Éventail centré : carte du milieu au premier plan */
.card-1 {
    left: 50%;
    top: 52%;
    width: 200px;
    height: 268px;
    margin-left: -198px;
    margin-top: -134px;
    transform: rotate(-14deg);
    transform-origin: 50% 92%;
    z-index: 1;
}

.card-2 {
    left: 50%;
    top: 48%;
    width: 228px;
    height: 302px;
    margin-left: -114px;
    margin-top: -151px;
    transform: rotate(0deg) translateY(-16px);
    transform-origin: 50% 92%;
    z-index: 4;
}

.card-3 {
    left: 50%;
    top: 52%;
    width: 200px;
    height: 268px;
    margin-left: -2px;
    margin-top: -134px;
    transform: rotate(14deg);
    transform-origin: 50% 92%;
    z-index: 2;
}

/* Entrée seule (une seule animation sur transform pour éviter les conflits) */
.card-1 {
    animation: inviteIn1 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s backwards;
}

.card-2 {
    animation: inviteIn2 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s backwards;
}

.card-3 {
    animation: inviteIn3 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.4s backwards;
}

@keyframes inviteIn1 {
    from {
        opacity: 0;
        transform: rotate(-14deg) translateY(36px);
    }
    to {
        opacity: 1;
        transform: rotate(-14deg) translateY(0);
    }
}

@keyframes inviteIn2 {
    from {
        opacity: 0;
        transform: rotate(0deg) translateY(32px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) translateY(-16px) scale(1);
    }
}

@keyframes inviteIn3 {
    from {
        opacity: 0;
        transform: rotate(14deg) translateY(36px);
    }
    to {
        opacity: 1;
        transform: rotate(14deg) translateY(0);
    }
}

@keyframes floatCard {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    50% { transform: translate(18px, -18px) rotate(4deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
    color: var(--primary-dark);
    opacity: 0.9;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 165, 123, 0.12);
    border: 1px solid rgba(196, 165, 123, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--white);
}

.service-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF9F5 0%, #F5E6D3 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

.service-card-inner {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(196, 165, 123, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(196, 165, 123, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(196, 165, 123, 0.4);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
    background: var(--light-bg);
}

/* ===== Portfolio Filters ===== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(196, 165, 123, 0.3);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 1;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 165, 123, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(196, 165, 123, 0.3);
}

.filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 165, 123, 0.4);
}

.portfolio-instagram-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.portfolio-instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    box-shadow: 0 4px 22px rgba(220, 39, 67, 0.35);
}

.portfolio-instagram-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    filter: brightness(1.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(188, 24, 136, 0.38);
}

.portfolio-instagram-btn .fab {
    font-size: 1.35rem;
}

/* ===== Portfolio Masonry Cards ===== */
.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.portfolio-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card.hidden {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
}

.portfolio-card.filtering {
    pointer-events: none;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--light-bg);
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.1);
}

.portfolio-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(196, 165, 123, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    width: fit-content;
}

.portfolio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.portfolio-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.portfolio-card-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.portfolio-card-btn i {
    transition: var(--transition);
}

.portfolio-card-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.portfolio-card-btn:hover i {
    transform: translateX(3px);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    z-index: 10001;
}

.lightbox-close {
    top: -60px;
    right: 0;
}

.lightbox-prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        left: 10px;
        right: 10px;
        top: auto;
        bottom: -60px;
        transform: none;
    }
    
    .lightbox-prev {
        left: calc(50% - 60px);
    }
    
    .lightbox-next {
        right: calc(50% - 60px);
    }
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 165, 123, 0.95), rgba(155, 118, 83, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.portfolio-content h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.portfolio-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.portfolio-link:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--white);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFF9F5 0%, #F5E6D3 100%);
    padding: 2.5rem;
    padding-bottom: 2.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    padding: 0 0.25rem;
    z-index: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.18;
    position: absolute;
    top: -8px;
    left: 0;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
    z-index: 0;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.18;
    position: absolute;
    bottom: -4px;
    right: 4px;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
    z-index: 0;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
}

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

.about-image {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    border-radius: 36px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
    min-height: 500px;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-badge span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.about-content {
    padding-left: 2rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--light-bg);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(196, 165, 123, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(196, 165, 123, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-message {
    margin-top: 1rem;
    display: none;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.alert i {
    font-size: 1.2rem;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(196, 165, 123, 0.3);
}

.contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--primary-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(196, 165, 123, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(196, 165, 123, 0.4);
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(196,165,123,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.footer-wave {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    color: var(--dark-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand__logo-link {
    display: inline-block;
    line-height: 0;
    margin-bottom: 1rem;
    border-radius: 14px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.97);
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.footer-brand__logo-link:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.footer-brand__logo-link .navbar-logo {
    display: block;
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
    max-width: 280px;
}

.footer-contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact-text a:hover {
    text-decoration: underline;
}

/* Pages légales */
.legal-page {
    padding: 110px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

.legal-page__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    margin-bottom: 2rem;
}

.legal-page__back:hover {
    color: var(--primary-color);
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.legal-page .legal-meta {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--dark-color);
    margin: 2.25rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-page ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.legal-page .legal-footer-note {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196, 165, 123, 0.25);
    font-size: 0.88rem;
    color: var(--text-light);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    color: var(--primary-color);
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-services li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social .social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(196, 165, 123, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 165, 123, 0.3), transparent);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: clamp(3rem, 5.8vw, 3.65rem);
    }

    .hero-title .line-2 {
        font-size: 1.08em;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .about-stats {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.85rem, 8vw, 3.35rem);
    }
    
    .hero-title .line-2 {
        padding-left: 0;
        font-size: 1.04em;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.65;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-card-inner {
        padding: 2rem;
    }
    
    .portfolio-masonry {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .portfolio-card-image {
        height: 240px;
    }
    
    .portfolio-filters {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 1.5rem;
        min-height: 280px;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-invites-glow {
        width: 100%;
        height: 75%;
        opacity: 0.75;
        left: 50%;
    }

    .hero-invites-scene {
        perspective: none;
        max-width: 100%;
        min-height: 260px;
        transform: scale(0.78);
        transform-origin: center center;
    }

    .floating-elements {
        min-height: 280px;
    }

    /* Éventail réduit sur tablette / mobile — les 3 cartes restent visibles */
    .hero-invite-card.card-1 {
        margin-left: -168px;
        width: 168px;
        height: 224px;
        margin-top: -112px;
    }

    .hero-invite-card.card-2 {
        width: 190px;
        height: 252px;
        margin-left: -95px;
        margin-top: -126px;
    }

    .hero-invite-card.card-3 {
        margin-left: -2px;
        width: 168px;
        height: 224px;
        margin-top: -112px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: calc(108px + env(safe-area-inset-top, 0px));
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }

    .hero-title {
        font-size: clamp(2.6rem, 9vw, 3.1rem);
    }

    .hero-title .line-2 {
        font-size: 1.03em;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.62;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .section-header {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }

    .portfolio-instagram-cta {
        margin-top: 2rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .portfolio-instagram-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ===== Smooth Scroll Offset ===== */
html {
    scroll-padding-top: 100px;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 108px;
    }
}

@media (max-width: 576px) {
    html {
        scroll-padding-top: 112px;
    }
}

/* ===== Custom Cursor ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: none;
}

@media (min-width: 769px) {
    .custom-cursor {
        display: block;
    }
}
