/* ========================================
   DDAY EVENTS MADA - Styles CSS
   Site vitrine élégant Wedding Planner
   Palette Rose Gold & Premium
   ======================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors - Palette Rose Gold Premium */
    --rose-gold: #C4A07C;
    --rose-gold-light: #D4B896;
    --rose-gold-dark: #B08A66;
    --rose-gold-pale: #E8D5C4;
    --copper: #B87855;
    --copper-light: #C99577;
    --blush: #F5E6DA;
    --blush-light: #FAF3ED;
    --blush-warm: #F8EDE4;
    --cream: #FFFBF7;
    --cream-warm: #FFF8F3;
    --cream-rose: #FDF6F0;
    --blanc-casse: #FFFDFB;
    --dark: #2C2C2C;
    --dark-soft: #3D3D3D;
    --dark-deep: #1E1E1E;
    --texte: #4A4A4A;
    --texte-light: #7A7A7A;

    /* Premium Gold Accents */
    --gold: #fff0c1;
    --gold-light: #ebe1c3e8;
    --gold-dark: #ffeea8;
    --brown-deep: #5C3D2E;
    --brown-rich: #6B4226;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-desc: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Poppins', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;

    /* Transitions - Optimized for speed */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(196, 160, 124, 0.08);
    --shadow-medium: 0 8px 30px rgba(196, 160, 124, 0.12);
    --shadow-strong: 0 12px 40px rgba(196, 160, 124, 0.16);
    --shadow-rose: 0 4px 20px rgba(196, 160, 124, 0.25);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.2);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--texte);
    background-color: var(--blanc-casse);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--dark-deep);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 1.15;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    letter-spacing: 0.03em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-family: var(--font-desc);
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--dark-deep);
    color: var(--dark-deep);
    letter-spacing: 0.01em;
    font-weight: 300;
}

.text-fade-in {
    animation: textFadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--copper));
    border-radius: 2px;
}

.section-title p {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition-medium);
    text-transform: uppercase;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
    color: var(--blanc-casse);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(196, 160, 124, 0.45);
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    color: var(--blanc-casse);
    box-shadow: var(--shadow-rose);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, var(--copper-light), var(--copper));
    box-shadow: 0 12px 40px rgba(184, 120, 85, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
}

.btn-outline:hover {
    background: var(--rose-gold);
    color: var(--blanc-casse);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-rose);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #e1aa6a6c, #cece5755);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 4px;
    /* Carré premium */
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(237, 185, 220, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(210, 205, 49, 0.358);
    background: linear-gradient(135deg, #dedda3af, #d3d03723);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-medium);
    will-change: transform, background;
    background: rgba(255, 253, 251, 0.65);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.header.scrolled {
    background: rgba(255, 253, 251, 0.92);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    padding: 10px 0;
    box-shadow: 0 1px 30px rgba(196, 160, 124, 0.12);
    border-bottom: 1px solid rgba(196, 160, 124, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.header.scrolled .logo img {
    height: 50px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--rose-gold-dark);
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--dark);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--gold));
    transition: var(--transition-medium);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--rose-gold-dark);
}

.header-cta {
    padding: 12px 28px;
    font-size: 0.85rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--rose-gold);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark-deep);
    overflow: hidden;
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-slide-active {
    opacity: 1;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(30, 30, 30, 0.35) 0%,
            rgba(44, 44, 44, 0.3) 40%,
            rgba(30, 30, 30, 0.55) 100%);
    z-index: 1;
}

/* Vine SVG decorations */
.vine-decoration {
    position: fixed;
    top: 0;
    width: 100px;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    opacity: 0.6;
}

.vine-left {
    left: 0;
}

.vine-right {
    right: 0;
}

.vine-path {
    transition: stroke-dashoffset 0.1s ease;
}

.vine-leaf,
.vine-leaf-shape {
    opacity: 0;
    transform-origin: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    padding-top: 100px;
    max-width: 950px;
}

.hero h1 {
    color: var(--blanc-casse);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Fluid Typewriter & Shine Effect */
.hero-title {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto 30px;
    border-right: 3px solid var(--gold);
    /* Cursor */
    padding-right: 8px;
    /* Safety padding */
    font-size: 2.2rem;
    /* Reduced to fit container */
    letter-spacing: 1px;
    animation:
        typing 3.5s steps(60, end) forwards,
        blink-caret 0.75s step-end infinite,
        shine 4s linear infinite;
    max-width: 100%;

    /* Shine Effect */
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #D4AF37 50%, #ffffff 60%, #ffffff 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Enhanced Shadow */
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--gold);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Responsive adjustment for typewriter */
@media (max-width: 768px) {
    .hero-title {
        white-space: normal;
        border-right: none;
        width: auto;
        animation: shine 4s linear infinite, mobileFadeIn 1s ease forwards;
        font-size: 2.2rem;
    }
}

@keyframes mobileFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 span {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    color: rgba(255, 253, 249, 0.85);
    font-family: var(--font-desc);
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.9;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
    z-index: 2;
}

.hero-scroll i {
    font-size: 1.5rem;
    color: var(--gold-light);
    animation: scrollDown 1.5s ease infinite;
}

.hero-decoration-1 {
    top: -100px;
    right: -100px;
    animation: rotate 40s linear infinite;
}

.hero-decoration-2 {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    animation: rotate 50s linear infinite reverse;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--blanc-casse);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.about-image-placeholder i {
    font-size: 4rem;
    color: var(--rose-gold);
}

.about-image-placeholder span {
    color: var(--rose-gold-dark);
    font-size: 1rem;
    opacity: 0.8;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-pale));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(196, 160, 124, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.about-experience-badge.animated {
    animation: badgeAppear 0.8s ease-in-out(0.34, 1.56, 0.64, 1) forwards;
}

.about-experience-badge .number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--blanc-casse);
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}

.about-experience-badge .text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 253, 249, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    display: block;
    max-width: 90px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content .lead {
    font-family: var(--font-desc);
    font-size: 1.3rem;
    color: var(--texte);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    font-family: var(--font-desc);
    font-size: 1.15rem;
    margin-bottom: 18px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--blush), var(--rose-gold-pale));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    color: var(--texte);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--blanc-casse);
    position: relative;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/prestation-bg.webp') center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Animation Speed Override */
.service-card {
    background: var(--blanc-casse);
    padding: 45px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--copper));
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(196, 160, 124, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-bg {
    position: relative;
    z-index: 1;
}

.service-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
    transition: var(--transition-medium);
}

.service-card-bg:hover::after {
    background: rgba(255, 255, 255, 0.85);
}

.service-card-bg>* {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(196, 160, 124, 0.2), rgba(196, 160, 124, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-medium);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--rose-gold);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
}

.service-card:hover .service-icon i {
    color: var(--blanc-casse);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PACK MARIAGE DE A À Z ===== */
.pack-mariage {
    background: linear-gradient(180deg, var(--blanc-casse) 0%, var(--blush-light) 50%, var(--blanc-casse) 100%);
    position: relative;
}

.pack-accroche {
    max-width: 800px;
    margin: 0 auto 60px;
}

.pack-accroche-content {
    text-align: center;
    background: linear-gradient(135deg, rgba(196, 160, 124, 0.08), rgba(196, 160, 124, 0.15));
    border: 1px solid rgba(196, 160, 124, 0.25);
    border-radius: 4px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.pack-accroche-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--copper), var(--rose-gold));
}

.pack-accroche-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-accroche-icon i {
    font-size: 1.8rem;
    color: var(--blanc-casse);
}

.pack-accroche-content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.pack-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 15px;
}

.pack-dream {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--rose-gold-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pack-answer {
    font-size: 1.05rem;
    color: var(--texte);
    font-weight: 500;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Pack Invitation - Elegant Wedding Card Style */
.pack-invitation {
    max-width: 700px;
    margin: 0 auto 60px;
    background: #FDFBF7;
    /* Soft cream/paper background */
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 15px 50px rgba(196, 160, 124, 0.1);
    text-align: center;
    border: 1px solid rgba(196, 160, 124, 0.2);
    outline: 1px solid rgba(196, 160, 124, 0.1);
    outline-offset: -12px;
}

/* Floral Corners */
.invitation-floral {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
    opacity: 0.8;
}

.floral-top-left {
    top: 0;
    left: 0;
}

.floral-bottom-right {
    bottom: 0;
    right: 0;
}

.invitation-content {
    position: relative;
    z-index: 2;
}

.invitation-header {
    margin-bottom: 40px;
}

.invitation-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose-gold);
    display: block;
    margin-bottom: 10px;
}

.invitation-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    color: var(--dark-brown);
    margin: 10px 0 20px;
    line-height: 1.2;
    font-weight: 400;
}

.invitation-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
    max-width: 200px;
    opacity: 0.6;
}

.invitation-divider .line {
    height: 1px;
    background: var(--rose-gold);
    flex: 1;
}

.invitation-divider i {
    color: var(--rose-gold);
    font-size: 0.8rem;
}

.invitation-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 450px;
}

.invitation-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--texte);
    padding: 10px 0;
    border-bottom: 1px solid rgba(196, 160, 124, 0.15);
    font-style: italic;
    letter-spacing: 0.5px;
}

.invitation-list li:last-child {
    border-bottom: none;
}

.invitation-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--rose-gold-dark);
    margin: 0;
    font-style: italic;
    letter-spacing: 1px;
}

.pack-cta {
    text-align: center;
    margin-top: 10px;
}

/* ===== NOS RÉALISATIONS SECTION ===== */
.realisations {
    background: var(--blanc-casse);
    position: relative;
}

.realisations-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--rose-gold) var(--blanc-casse);
}

.realisations-grid::-webkit-scrollbar {
    height: 8px;
}

.realisations-grid::-webkit-scrollbar-track {
    background: rgba(196, 160, 124, 0.1);
    border-radius: 4px;
}

.realisations-grid::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 4px;
}

.realisations-grid::-webkit-scrollbar-thumb:hover {
    background: var(--rose-gold-dark);
}

.realisation-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    will-change: transform;
    border-radius: 8px;
    /* Optional rounded corners */
}

@media (max-width: 768px) {
    .realisation-card {
        flex: 0 0 280px;
    }
}

.realisation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.realisation-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    will-change: transform;
}

.realisation-card:hover .realisation-image img {
    transform: scale(1.1);
}

.realisation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(167, 167, 167, 0.95), rgba(54, 53, 52, 0.7) 50%, transparent);
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.realisation-card:hover .realisation-overlay {
    transform: translateY(0);
}

.realisations-grid .realisation-card {
    border-radius: 0 !important;
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Animation initial states */
.realisations-grid .realisation-card:nth-child(odd) {
    transform: translateY(-50px);
}

.realisations-grid .realisation-card:nth-child(even) {
    transform: translateY(50px);
}

/* Visible state triggered by JS */
.realisations-grid .realisation-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.realisations-grid .realisation-image img {
    border-radius: 0 !important;
}

.realisation-info h4 {
    color: var(--blanc-casse);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

.realisation-info p {
    color: rgba(255, 253, 249, 0.9);
    font-size: 0.95rem;
}

.realisations-cta {
    text-align: center;
}

.realisations-note {
    color: var(--texte-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.realisations-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ===== REVEAL-SIDE ANIMATIONS ===== */
.reveal-side {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-side.reveal-left {
    transform: translateX(-60px);
}

.reveal-side.reveal-right {
    transform: translateX(60px);
}

.reveal-side.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-top: 18px;
    text-align: center;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    margin-top: 8px;
    letter-spacing: 2px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: linear-gradient(180deg, var(--cream-rose) 0%, var(--blanc-casse) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/realisation.webp') center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.why-us>.container {
    position: relative;
    z-index: 1;
}

.why-us-list {
    max-width: 700px;
    margin: 0 auto;
}

.why-us-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 30px;
    border-bottom: 1px solid rgba(196, 160, 124, 0.15);
    transition: var(--transition-medium);
}

.why-us-list-item:last-child {
    border-bottom: none;
}

.why-us-list-item:hover {
    background: rgba(196, 160, 124, 0.05);
    padding-left: 40px;
}

.why-us-check {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.why-us-check i {
    color: var(--blanc-casse);
    font-size: 0.9rem;
}

.why-us-list-item:hover .why-us-check {
    transform: scale(1.1);
    box-shadow: var(--shadow-rose);
}

.why-us-text h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.why-us-text p {
    font-family: var(--font-desc);
    font-size: 1.05rem;
    color: var(--texte-light);
    margin: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--blanc-casse);
}

/* Testimonials Extra (hidden by default) */
.testimonials-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

.testimonials-extra.open {
    max-height: 5000px;
    opacity: 1;
    margin-top: 30px;
}

.testimonials-extra .testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonials-extra .testimonial-card.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-toggle-wrap {
    text-align: center;
    margin-top: 40px;
}

.testimonials-toggle {
    border-radius: 0;
}

/* Facebook avatar icon — discrete */
.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: rgba(196, 160, 124, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 0.75rem;
    color: var(--rose-gold);
}

/* Scroll animation for testimonial cards */
.testimonial-card.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVICE PREVIEW OVERLAY ===== */
.service-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-preview-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-preview-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.service-preview-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.service-preview-content {
    max-width: 90vw;
    max-height: 85vh;
}

.service-preview-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--cream);
    padding: 40px 35px;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: var(--font-serif);
    color: var(--rose-gold-pale);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--texte);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: rgba(196, 160, 124, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 0.75rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--rose-gold);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--copper) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="30" font-size="15" fill="rgba(255,255,255,0.05)" text-anchor="middle">💍</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--blanc-casse);
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta p {
    color: rgba(255, 253, 249, 0.9);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.cta .btn-primary {
    background: var(--blanc-casse);
    color: var(--rose-gold-dark);
}

.cta .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--blanc-casse);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    color: rgba(255, 253, 249, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(196, 160, 124, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold-light);
    transition: var(--transition-medium);
}

.footer-social a:hover {
    background: var(--rose-gold);
    color: var(--blanc-casse);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--blanc-casse);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: var(--font-serif);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--rose-gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 253, 249, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--rose-gold-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 253, 249, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--rose-gold);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(196, 160, 124, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 253, 249, 0.5);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollDown {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes badgeAppear {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-15deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Reveal Animation - Simple Fade In */
.reveal,
.reveal-light {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.reveal.active,
.reveal-light.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 253, 251, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }


    .pack-accroche-content {
        padding: 35px 25px;
    }

    .pack-accroche-content h3 {
        font-size: 1.2rem;
    }

    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .vine-decoration {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .about-experience-badge {
        width: 120px;
        height: 120px;
        right: 10px;
        bottom: -20px;
    }

    .about-experience-badge .number {
        font-size: 2.2rem;
    }

    .about-experience-badge .text {
        font-size: 0.6rem;
        max-width: 75px;
    }

    /* Show overlays on mobile by default — grey transparent like desktop */
    .realisation-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(100, 100, 100, 0.88), rgba(80, 80, 80, 0.55) 50%, transparent);
    }

    /* Responsive Pack Invitation */
    .pack-invitation {
        padding: 40px 20px;
    }

    .invitation-title {
        font-size: 2.5rem;
    }

    .invitation-list li {
        font-size: 1.1rem;
    }

    .service-card:hover {
        transform: none;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .realisations-social {
        flex-direction: column;
        align-items: center;
    }


    .pack-accroche-content h3 {
        font-size: 1.05rem;
    }

    .pack-dream {
        font-size: 1.1rem;
    }

    .floating-call {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 80px;
        right: 24px;
    }
}

/* ===== FLOATING BUTTONS ===== */
/* ===== FLOATING BUTTONS ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 253, 251, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 160, 124, 0.2);
    color: var(--rose-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 0.7;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    color: var(--rose-gold);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--rose-gold);
    outline-offset: 3px;
}

/* Selection color */
::selection {
    background: var(--rose-gold-pale);
    color: var(--dark);
}