    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --cream: #faf8f5;
        --charcoal: #2c2c2c;
        --gold: #c9a96e;
        --gold-light: #e0c992;
        --rose: #d4a0a0;
        --rose-light: #edd5d5;
        --beige: #e8ddd3;
        --beige-dark: #d5c7b8;
        --white: #ffffff;
        --text: #3a3a3a;
        --text-light: #6b6b6b;
        --shadow: rgba(44, 44, 44, 0.08);
        --shadow-md: rgba(44, 44, 44, 0.12);
        --bg: #0e0e0e;
        --muted: #6a6560;
        --accent: #c9a96e;
        --gap: clamp(8px, 1.5vw, 16px);
        --radius: 6px;
        --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: "Lato", sans-serif;
        color: var(--text);
        background: var(--cream);
        line-height: 1.7;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: "Playfair Display", serif;
        line-height: 1.3;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .stitch-line {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2rem auto;
        width: 200px;
        height: 20px;
    }

    .stitch-line::before {
        content: "· · · · · · · · · · · · · · · · · ·";
        font-size: 1.2rem;
        letter-spacing: 2px;
        color: var(--gold);
        font-weight: 700;
    }

    .section-subtitle {
        font-family: "Great Vibes", cursive;
        color: var(--gold);
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        color: var(--charcoal);
        margin-bottom: 1rem;
    }

    .section-desc {
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto 2.5rem;
        font-size: 1.05rem;
        font-weight: 300;
    }

    /* ============ NAVBAR ============ */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        background: transparent;
    }

    .navbar.scrolled {
        background: rgba(250, 248, 245, 0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 30px var(--shadow);
        padding: 0.7rem 2rem;
    }

    .nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

/* Quand la navbar est scrollée, le logo rétrécit légèrement */
.navbar.scrolled .nav-logo-img {
    width: 36px;
    height: 36px;
}

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }

    .nav-logo-text {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--charcoal);
    }

    .nav-logo-text span {
        color: var(--gold);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 400;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--charcoal);
        position: relative;
        padding: 0.3rem 0;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus::after {
        width: 100%;
    }

    .nav-cta {
        background: var(--charcoal) !important;
        color: var(--cream) !important;
        padding: 0.6rem 1.5rem !important;
        border-radius: 2px;
        font-size: 0.85rem !important;
        letter-spacing: 1px;
        transition: all 0.3s ease !important;
    }

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        background: var(--gold) !important;
        color: var(--charcoal) !important;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 28px;
        height: 2px;
        background: var(--charcoal);
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ============ HERO ============ */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg,
                #2c2c2c 0%,
                #3d3530 40%,
                #4a3f38 70%,
                #2c2c2c 100%);
    }

    .hero-bg-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.04;
        background-image:
            repeating-linear-gradient(0deg,
                transparent,
                transparent 49px,
                var(--cream) 49px,
                var(--cream) 50px),
            repeating-linear-gradient(90deg,
                transparent,
                transparent 49px,
                var(--cream) 49px,
                var(--cream) 50px);
        background-size: 50px 50px;
    }

    .hero-fabric {
        position: absolute;
        inset: 0;
        opacity: 0.06;
        background:
            radial-gradient(ellipse at 20% 50%, var(--gold) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 50%, var(--rose) 0%, transparent 50%);
    }

    .hero-floating-thread {
        position: absolute;
        width: 300px;
        height: 300px;
        opacity: 0.08;
    }

    .hero-floating-thread:nth-child(1) {
        top: 10%;
        right: -5%;
        animation: floatThread 20s ease-in-out infinite;
    }

    .hero-floating-thread:nth-child(2) {
        bottom: 10%;
        left: -5%;
        animation: floatThread 25s ease-in-out infinite reverse;
    }

    @keyframes floatThread {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        25% {
            transform: translate(20px, -30px) rotate(5deg);
        }

        50% {
            transform: translate(-10px, -50px) rotate(-3deg);
        }

        75% {
            transform: translate(30px, -20px) rotate(8deg);
        }
    }

    .hero-content {
        text-align: center;
        z-index: 2;
        padding: 2rem;
        max-width: 800px;
    }

    .hero-needle {
        display: inline-block;
        margin-bottom: 2rem;
        animation: gentlePulse 3s ease-in-out infinite;
    }

    @keyframes gentlePulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.9;
        }

        50% {
            transform: scale(1.05);
            opacity: 1;
        }
    }

    .hero-title-pre {
        font-family: "Great Vibes", cursive;
        font-size: clamp(1.4rem, 3vw, 2rem);
        color: var(--gold-light);
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1s 0.3s forwards;
    }

    .hero-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 7vw, 5rem);
        color: var(--cream);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s 0.5s forwards;
    }

    .hero-title em {
        font-style: italic;
        color: var(--gold-light);
    }

    .hero-divider {
        width: 80px;
        height: 1.5px;
        background: var(--gold);
        margin: 1.5rem auto;
        opacity: 0;
        animation: fadeUp 1s 0.7s forwards;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--beige);
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1s 0.9s forwards;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1s 1.1s forwards;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2.5rem;
        font-family: "Lato", sans-serif;
        font-size: 0.9rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        border: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: var(--gold);
        color: var(--charcoal);
    }

    .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
    }

    .btn-outline {
        background: transparent;
        color: var(--cream);
        border: 1.5px solid var(--cream);
    }

    .btn-outline:hover {
        background: var(--cream);
        color: var(--charcoal);
        transform: translateY(-2px);
    }

    .btn-dark {
        background: var(--charcoal);
        color: var(--cream);
    }

    .btn-dark:hover {
        background: var(--gold);
        color: var(--charcoal);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-scroll {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--beige);
        font-size: 0.75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0;
        animation: fadeUp 1s 1.5s forwards;
    }

    .hero-scroll-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

        0%,
        100% {
            transform: scaleY(1);
            opacity: 1;
        }

        50% {
            transform: scaleY(0.5);
            opacity: 0.5;
        }
    }

    /* ============ REVEAL ============ */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .reveal-scale {
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

    .delay-1 {
        transition-delay: 0.1s;
    }

    .delay-2 {
        transition-delay: 0.2s;
    }

    .delay-3 {
        transition-delay: 0.3s;
    }

    .delay-4 {
        transition-delay: 0.4s;
    }

    .delay-5 {
        transition-delay: 0.5s;
    }

    .delay-6 {
        transition-delay: 0.6s;
    }

    .delay-7 {
        transition-delay: 0.7s;
    }

    .delay-8 {
        transition-delay: 0.8s;
    }

    .delay-9 {
        transition-delay: 0.9s;
    }

    /* ============ ABOUT ============ */
    .about {
        padding: 6rem 2rem;
        background: var(--cream);
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image {
        position: relative;
        aspect-ratio: 4/5;
        overflow: hidden;
    }

    .about-image-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(145deg,
                var(--beige) 0%,
                var(--beige-dark) 50%,
                var(--rose-light) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-image-placeholder svg {
        width: 120px;
        height: 120px;
        opacity: 0.3;
    }

    .about-image::after {
        content: "";
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        right: -1.5rem;
        bottom: -1.5rem;
        border: 2px solid var(--gold);
        z-index: -1;
    }

    .about-badge {
        position: absolute;
        bottom: -1.5rem;
        right: -1.5rem;
        background: var(--gold);
        color: var(--charcoal);
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        animation: gentleRotate 20s linear infinite;
    }

    @keyframes gentleRotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .about-badge-inner {
        animation: gentleRotate 20s linear infinite reverse;
        text-align: center;
    }

    .about-badge span:first-child {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
    }

    .about-badge span:last-child {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .about-content {
        padding: 1rem 0;
    }

    .about-content .section-subtitle {
        text-align: left;
    }

    .about-content .section-title {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .about-text {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-weight: 300;
        font-size: 1.05rem;
    }

    .about-text:first-of-type::first-letter {
        font-family: "Playfair Display", serif;
        font-size: 3.5rem;
        float: left;
        line-height: 1;
        margin-right: 0.5rem;
        color: var(--gold);
        font-weight: 700;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .about-feature {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: var(--beige);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
    }

    .about-feature-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .about-feature-text p {
        font-size: 0.85rem;
        color: var(--text-light);
        font-weight: 300;
    }

    /* ============ VIDEO ============ */
    .video-section {
        padding: 6rem 2rem;
        background: var(--charcoal);
        position: relative;
        overflow: hidden;
    }

    .video-section::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.03;
        background-image: repeating-linear-gradient(45deg,
                transparent,
                transparent 29px,
                var(--cream) 29px,
                var(--cream) 30px);
        background-size: 42px 42px;
    }

    .video-header {
        text-align: center;
        position: relative;
        z-index: 2;
        margin-bottom: 3rem;
    }

    .video-header .section-title {
        color: var(--cream);
    }

    .video-header .section-desc {
        color: var(--beige);
    }

    .video-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .video-wrapper {
        position: relative;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #1a1a1a;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    }

    .video-wrapper::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold));
        z-index: -1;
        opacity: 0.5;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .video-play-overlay {
        position: absolute;
        inset: 0;
        background: rgba(44, 44, 44, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.5s ease;
        z-index: 5;
    }

    .video-play-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .video-play-btn {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(201, 169, 110, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        position: relative;
    }

    .video-play-btn::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 2px solid rgba(201, 169, 110, 0.4);
        animation: playPulse 2s ease-in-out infinite;
    }

    .video-play-btn::after {
        content: "";
        position: absolute;
        inset: -22px;
        border-radius: 50%;
        border: 1px solid rgba(201, 169, 110, 0.2);
        animation: playPulse 2s 0.5s ease-in-out infinite;
    }

    @keyframes playPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.5;
        }
    }

    .video-play-overlay:hover .video-play-btn {
        background: var(--gold);
        transform: scale(1.1);
    }

    .video-play-btn svg {
        margin-left: 4px;
    }

    .video-caption {
        text-align: center;
        margin-top: 1.5rem;
        color: var(--beige);
        font-size: 0.9rem;
        font-weight: 300;
        font-style: italic;
        position: relative;
        z-index: 2;
    }

    .video-progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        z-index: 10;
        transition: width 0.3s linear;
        width: 0%;
    }

    .video-sound-toggle {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .video-sound-toggle.show {
        opacity: 1;
    }

    .video-sound-toggle:hover {
        background: rgba(201, 169, 110, 0.8);
        border-color: var(--gold);
    }

    /* ============ GALLERY SECTION ============ */
    .gallery-section {
        padding: 6rem 2rem;
        background: var(--cream);
    }

    .gallery-section .gallery-header {
        text-align: center;
    }

    /* ============ GALLERY GRID ============ */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--gap);
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Masonry-like: certains items plus grands */
    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-grid .gallery-item:nth-child(5) {
        grid-column: span 2;
    }

    .gallery-grid .gallery-item:nth-child(8) {
        grid-row: span 2;
    }

    .gallery-grid .gallery-item:nth-child(10) {
        grid-column: span 2;
    }

    /* ============ GALLERY ITEM ============ */
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius);
        background-color: #1a1a1a;
        cursor: pointer;
        aspect-ratio: 4 / 3;
    }

    .gallery-item:nth-child(1) {
        aspect-ratio: auto;
    }

    .gallery-item:nth-child(8) {
        aspect-ratio: auto;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform var(--transition), filter var(--transition);
        filter: brightness(0.88) saturate(0.85);
    }

    /* --- Overlay numéro --- */
    .gallery-item .overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 14px 18px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%);
        opacity: 0;
        transition: opacity var(--transition);
    }

    .gallery-item .overlay span {
        font-family: 'Playfair Display', serif;
        font-size: clamp(0.8rem, 1.5vw, 1.1rem);
        color: var(--accent);
        letter-spacing: 0.12em;
        font-weight: 400;
    }

    .gallery-item .overlay .gallery-zoom-icon {
        width: 32px;
        height: 32px;
        background: rgba(201, 169, 110, 0.85);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(10px);
        opacity: 0;
        transition: all 0.35s ease 0.1s;
    }

    .gallery-item .overlay .gallery-zoom-icon svg {
        width: 14px;
        height: 14px;
    }

    /* --- Bordure animée au survol --- */
    .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        border: 2px solid transparent;
        transition: border-color var(--transition);
        pointer-events: none;
    }

    /* ============ HOVER EFFECTS ============ */
    .gallery-item:hover img {
        transform: scale(1.08);
        filter: brightness(1) saturate(1.1);
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .gallery-item:hover .overlay .gallery-zoom-icon {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-item:hover::after {
        border-color: var(--accent);
    }

    /* LIGHTBOX */
    .lightbox {
        position: fixed;
        inset: 0;
        background: rgba(20, 20, 20, 0.95);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
    }

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

    .lightbox-content {
        max-width: 85vw;
        max-height: 85vh;
        position: relative;
        transform: scale(0.9);
        transition: transform 0.4s ease;
    }

    .lightbox.active .lightbox-content {
        transform: scale(1);
    }

    .lightbox-image-container {
        max-width: 85vw;
        max-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-placeholder {
        width: 70vw;
        max-width: 700px;
        height: 50vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        border: 1px solid rgba(201, 169, 110, 0.3);
    }

    .lightbox-placeholder svg {
        width: 60px;
        height: 60px;
        opacity: 0.3;
    }

    .lightbox-placeholder span {
        color: var(--beige);
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
    }

    .lightbox-placeholder p {
        color: var(--text-light);
        font-size: 0.85rem;
    }

    .lightbox-image-container img {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
    }

    .lightbox-caption {
        text-align: center;
        color: var(--beige);
        margin-top: 1rem;
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
    }

    .lightbox-close {
        position: absolute;
        top: -50px;
        right: 0;
        width: 40px;
        height: 40px;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--cream);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border-radius: 50%;
    }

    .lightbox-close:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--cream);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .lightbox-nav:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

    .lightbox-prev {
        left: -70px;
    }

    .lightbox-next {
        right: -70px;
    }

    .lightbox-counter {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--text-light);
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    /* ============ SERVICES ============ */
    .services {
        padding: 6rem 2rem;
        background: var(--charcoal);
        color: var(--cream);
        position: relative;
        overflow: hidden;
    }

    .services::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.03;
        background-image:
            repeating-linear-gradient(0deg,
                transparent,
                transparent 39px,
                var(--cream) 39px,
                var(--cream) 40px),
            repeating-linear-gradient(90deg,
                transparent,
                transparent 39px,
                var(--cream) 39px,
                var(--cream) 40px);
        background-size: 40px 40px;
    }

    .services-header {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .services-header .section-desc {
        color: var(--beige);
    }

    .services-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        position: relative;
        z-index: 1;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2.5rem 2rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        background: rgba(201, 169, 110, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
        background: var(--gold);
        transform: scale(1.1);
    }

    .service-icon svg {
        transition: all 0.4s ease;
    }

    .service-card:hover .service-icon svg {
        filter: brightness(0);
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--cream);
    }

    .service-desc {
        color: var(--beige);
        font-weight: 300;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .service-features {
        list-style: none;
        text-align: left;
    }

    .service-features li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
        color: var(--beige);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .service-features li::before {
        content: "✦";
        color: var(--gold);
        font-size: 0.6rem;
    }

    .services-cta {
        text-align: center;
        margin-top: 3rem;
        position: relative;
        z-index: 1;
    }

    /* ============ TESTIMONIALS ============ */
    .testimonials {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    }

    .testimonials-header {
        text-align: center;
    }

    .testimonials-slider {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .testimonials-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .testimonial-card {
        min-width: 100%;
        padding: 0 1rem;
    }

    .testimonial-inner {
        background: var(--white);
        padding: 3rem;
        box-shadow: 0 10px 40px var(--shadow);
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        position: relative;
    }

    .testimonial-quote-mark {
        font-family: "Playfair Display", serif;
        font-size: 5rem;
        color: var(--gold);
        opacity: 0.2;
        line-height: 1;
        position: absolute;
        top: 1rem;
        left: 2rem;
    }

    .testimonial-stars {
        display: flex;
        justify-content: center;
        gap: 0.3rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-stars svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-text {
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        font-style: italic;
        color: var(--charcoal);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--cream);
    }

    .avatar-1 {
        background: var(--gold);
    }

    .avatar-2 {
        background: var(--rose);
    }

    .avatar-3 {
        background: var(--charcoal);
    }

    .testimonial-author-info h4 {
        font-size: 1rem;
        color: var(--charcoal);
    }

    .testimonial-author-info p {
        font-size: 0.85rem;
        color: var(--text-light);
        font-weight: 300;
    }

    .testimonials-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .testimonial-btn {
        width: 45px;
        height: 45px;
        border: 1.5px solid var(--charcoal);
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .testimonial-btn:hover {
        background: var(--charcoal);
    }

    .testimonial-btn:hover svg {
        stroke: var(--cream);
    }

    .testimonial-dots {
        display: flex;
        gap: 0.5rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--beige-dark);
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .testimonial-dot.active {
        background: var(--gold);
        transform: scale(1.2);
    }

    /* ============ CONTACT SECTION ============ */
    .contact {
        padding: 6rem 2rem;
        background: var(--white);
    }

    .contact-container {
        max-width: 750px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-info {
        padding: 2rem 0;
    }

    .contact-info .section-subtitle {
        text-align: center;
    }

    .contact-info .section-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .contact-text {
        color: var(--text-light);
        font-weight: 300;
        margin-bottom: 3rem;
        font-size: 1.05rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: left;
    }

    .contact-detail {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background: var(--cream);
        padding: 1.5rem;
        transition: all 0.3s ease;
    }

    .contact-detail:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px var(--shadow);
    }

    .contact-detail-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid var(--beige-dark);
        transition: all 0.3s ease;
    }

    .contact-detail:hover .contact-detail-icon {
        background: var(--gold);
        border-color: var(--gold);
    }

    .contact-detail:hover .contact-detail-icon svg {
        stroke: var(--charcoal);
    }

    .contact-detail-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .contact-detail-text p {
        font-size: 0.9rem;
        color: var(--text-light);
        font-weight: 300;
    }

    .contact-detail-text a {
        color: var(--text-light);
        transition: color 0.3s ease;
    }

    .contact-detail-text a:hover {
        color: var(--gold);
    }

    .contact-socials {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
    }

    .contact-social {
        width: 48px;
        height: 48px;
        border: 1.5px solid var(--beige-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border-radius: 50%;
    }

    .contact-social:hover {
        background: var(--gold);
        border-color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
    }

    .contact-cta-area {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        border-top: 1px solid var(--beige);
    }

    .contact-cta-text {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        color: var(--charcoal);
        margin-bottom: 0.5rem;
    }

    .contact-cta-sub {
        color: var(--text-light);
        font-weight: 300;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* ============ FOOTER ============ */
    .footer {
        background: var(--charcoal);
        color: var(--beige);
        padding: 4rem 2rem 1.5rem;
    }

    .footer-top {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand .nav-logo-text {
        color: var(--cream);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        display: block;
    }

    .footer-brand p {
        font-size: 0.9rem;
        font-weight: 300;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: var(--beige);
    }

    .footer-heading {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        color: var(--cream);
        margin-bottom: 1.5rem;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.7rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        font-weight: 300;
        color: var(--beige);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-links a:hover {
        color: var(--gold);
        transform: translateX(5px);
    }

    .footer-hours li {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        font-weight: 300;
        margin-bottom: 0.7rem;
    }

    .footer-hours span:last-child {
        color: var(--gold);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        font-weight: 300;
    }

    .footer-bottom-links {
        display: flex;
        gap: 1.5rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
        font-weight: 300;
        color: var(--beige);
    }

    .footer-bottom-links a:hover {
        color: var(--gold);
    }

    /* ============ BACK TO TOP ============ */
    .back-to-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 45px;
        height: 45px;
        background: var(--charcoal);
        color: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--gold);
        transform: translateY(-3px);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1024px) {
        .about-container {
            gap: 3rem;
        }

        .services-grid {
            grid-template-columns: 1fr 1fr;
        }

        .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }

        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .gallery-grid .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-grid .gallery-item:nth-child(5) {
            grid-column: span 1;
        }

        .gallery-grid .gallery-item:nth-child(10) {
            grid-column: span 1;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: var(--cream);
            flex-direction: column;
            align-items: flex-start;
            padding: 5rem 2rem 2rem;
            gap: 0;
            box-shadow: -10px 0 30px var(--shadow-md);
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .nav-links.open {
            right: 0;
        }

        .nav-links li {
            width: 100%;
            border-bottom: 1px solid var(--beige);
        }

        .nav-links a {
            display: block;
            padding: 1rem 0;
            font-size: 1rem;
        }

        .nav-links a::after {
            display: none;
        }

        .nav-cta {
            margin-top: 1rem;
            text-align: center;
            width: 100%;
            display: block !important;
        }

        .nav-toggle {
            display: flex;
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .about-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .about-image-wrapper {
            max-width: 400px;
            margin: 0 auto;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gallery-grid .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 1;
            aspect-ratio: 16/9;
        }

        .gallery-grid .gallery-item:nth-child(5) {
            grid-column: span 1;
        }

        .gallery-grid .gallery-item:nth-child(8) {
            grid-row: span 1;
        }

        .gallery-grid .gallery-item:nth-child(10) {
            grid-column: span 2;
            aspect-ratio: 16/9;
        }

        .services-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
        }

        .contact-details {
            grid-template-columns: 1fr;
        }

        .footer-top {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .lightbox-prev {
            left: 5px;
        }

        .lightbox-next {
            right: 5px;
        }

        .lightbox-nav {
            width: 40px;
            height: 40px;
        }

        .lightbox-close {
            top: -45px;
        }

        .video-play-btn {
            width: 70px;
            height: 70px;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2.2rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }

        .testimonial-inner {
            padding: 2rem 1.5rem;
        }

        .video-play-btn {
            width: 60px;
            height: 60px;
        }

        .video-play-btn svg {
            width: 22px;
            height: 22px;
        }

        .gallery-grid .gallery-item:nth-child(1) {
            grid-column: span 2;
            aspect-ratio: 16/10;
        }
    }

    /* ============ ACCESSIBILITY ============ */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }
    }

    :focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 3px;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }