/* Design System Final - INSPIR'À VIE - Luxury Edge-to-Edge */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --bg-rose: #F9E5E3;
    --bg-plum: #703167;
    --bg-plum-light: #8E6B87;
    --bg-plum-dark: #31182E;
    --text-violet: #8a1577;
    /* Violet foncé plus profond */
    --text-nude: #FDF1F0;
    --text-dark: #4A4A4A;
    --accent-gold: #C5A059;
    --gold-gradient: linear-gradient(135deg, #996515 0%, #D4AF37 25%, #FFF5D1 50%, #D4AF37 75%, #996515 100%);

    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;

    --section-padding: 100px 20px;
    /* Moins de vide entre les sections */
    --container-width: 950px;
}

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

.no-scroll {
    overflow: hidden;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #F9E5E3 0%, #FDF1F0 50%, #F9E5E3 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.8;
    /* Légèrement plus compact pour mobile */
    letter-spacing: 0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body {
        line-height: 1.6;
    }
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-900 {
    max-width: 900px;
}

.w-max-400 {
    max-width: 400px;
    width: 100%;
}

.text-lg {
    font-size: 1.1rem;
}

.text-xl {
    font-size: 1.3rem;
}

.italic {
    font-style: italic;
}

.font-medium {
    font-weight: 500;
}

.opacity-70 {
    opacity: 0.7;
}

.leading-loose {
    line-height: 2;
}

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

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    width: 100%;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

.gap-60 {
    gap: 60px;
}

/* Responsive text toggle */
.show-desktop {
    display: inline;
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .show-desktop {
        display: none;
    }

    .show-mobile {
        display: inline;
    }
}

/* Colors & Backgrounds */
.bg-nude {
    background-color: var(--bg-nude);
}

.bg-plum {
    background-color: var(--bg-plum);
}

.bg-plum-dark {
    background-color: var(--bg-plum-dark);
}

.text-nude {
    color: var(--text-nude);
}

.text-plum {
    color: var(--text-plum);
}

.text-gold {
    color: var(--accent-gold);
}

.text-violet {
    color: var(--text-violet);
}

.title-violet {
    color: var(--text-violet);
}

.bg-rose {
    background-color: var(--bg-rose);
}

.text-nude-dark {
    color: #6B4E44;
}

.bg-image {
    background:
        radial-gradient(at 0% 0%, rgba(249, 229, 227, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(253, 241, 240, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(142, 107, 135, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(249, 229, 227, 0.5) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(255, 255, 255, 0.8) 0px, transparent 50%),
        var(--bg-rose);
    position: relative;
    overflow: hidden;
}

.bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    /* Grain très subtil pour la 'matière' */
    pointer-events: none;
    mix-blend-mode: overlay;
}

.bg-image-light {
    background: linear-gradient(180deg, #FDF1F0 0%, #F9E5E3 100%);
    position: relative;
}

.bg-image-light::before {
    display: none;
    /* No overlay needed for gradients */
}

.bg-image-light .container {
    position: relative;
    z-index: 1;
}

/* Sections Edge-to-Edge */
section {
    padding: var(--section-padding);
}

.full-height {
    min-height: 100vh;
    padding-top: 150px;
    /* Augmenté pour éviter l'overlap header */
    padding-bottom: 80px;
}

/* Typography */
h1,
h2,
h3,
.serif {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--text-violet);
    text-shadow: 0 2px 10px rgba(125, 91, 120, 0.1);
    /* Subtilité pastel */
}

.title-massive {
    font-size: 4.5rem;
    /* Plus grand et majestueux */
    line-height: 1.1;
    letter-spacing: 4px;
    margin-bottom: 15px;
    /* Rapproché */
}

.subtitle-gold {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--accent-gold);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.9;
}

.title-section {
    font-size: 2.6rem;
    letter-spacing: 8px;
    margin-bottom: 80px;
    /* Plus d'espace sous les titres */
    text-transform: uppercase;
    text-align: center;
}

.quote-lead {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--bg-plum-light);
    margin: 10px auto 15px;
    /* Rapproché */
    letter-spacing: 3px;
    text-align: center;
}

.hero-content-wrap {
    margin-top: 10px;
    /* Rapproché */
    padding: 0;
    /* Plus de bloc rigide */
    display: inline-block;
    max-width: 900px;
    position: relative;
}

.hero-content-wrap::after {
    content: '';
    display: block;
    width: 80px;
    height: 1.5px;
    background: var(--accent-gold);
    margin: 40px auto 0;
    /* Ligne horizontale élégante à la place du pavé */
    opacity: 0.6;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 0;
    /* Plus fin */
    z-index: 1000;
    background: rgba(59, 30, 54, 0.98);
    /* Violet foncé profond */
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    margin-bottom: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center text with respect to each other */
}

.logo-main span {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 5px;
    font-weight: 500;

    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: font-size 0.3s ease;
    animation: goldShine 5s linear infinite;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 576px) {
    .logo-main span {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .logo-text small {
        font-size: 0.6rem;
    }
}

.logo-main small {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--accent-gold) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    text-decoration: none;
    font-weight: 400;
}

@keyframes goldShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes goldShineTitle {
    to {
        background-position: 200% center;
    }
}

.logo-main img {
    height: 35px;
    width: auto;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text-nude);
    font-size: 0.75rem;
    /* Un peu plus grand */
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    padding: 10px;
    position: relative;
    display: block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--accent-gold);
    opacity: 1;
    letter-spacing: 5px;
}

nav a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    touch-action: manipulation;
}

.btn-plum {
    background: linear-gradient(135deg, var(--text-violet) 0%, var(--bg-plum-light) 100%);
    color: var(--text-nude);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 30, 54, 0.1);
    letter-spacing: 2px;
}

.btn-plum:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 30, 54, 0.2);
    background: linear-gradient(135deg, var(--bg-plum-light) 0%, var(--text-violet) 100%);
    letter-spacing: 3px;
}

#accueil .btn {
    white-space: nowrap;
    max-width: none;
}

@media (max-width: 576px) {
    #accueil .btn {
        white-space: normal;
        font-size: 1rem;
        padding: 14px 25px;
    }
}

.btn-outline-plum {
    background: transparent;
    color: var(--text-plum);
    border: 1px solid var(--text-plum);
}

.btn-outline-plum:hover {
    background: var(--bg-plum);
    color: var(--text-nude);
}

/* Custom Cards & Elements */
.service-card {
    padding: 80px 50px;
    /* Plus d'espace interne */
    background: rgba(255, 255, 255, 0.85);
    /* Effet nuage translucide */
    backdrop-filter: blur(20px);
    border-radius: 40px;
    /* Très arrondi */
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 40px 100px rgba(74, 37, 69, 0.08), 0 10px 30px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-violet);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 50px 120px rgba(74, 37, 69, 0.12);
}

.card-icon {
    display: block;
    width: 210px;
    height: 210px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.08);
    padding: 12px;
    border: 1px solid rgba(197, 160, 89, 0.25);
}

@media (max-width: 576px) {
    .card-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 20px;
    }
}

.card-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    /* Plus fin */
    margin-bottom: 30px;
    color: var(--text-violet);
    display: inline-block;
    border-bottom: 1px solid var(--accent-gold);
    /* Soulignement fin et doré */
    padding-bottom: 10px;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-highlight {
    font-weight: 500;
    color: var(--accent-gold);
}

.price-card {
    padding: 70px 45px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(74, 37, 69, 0.05);
    border: 1px solid transparent; /* Base for refined borders */
}

/* Premium Border Frame */
.price-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 30px;
    pointer-events: none;
    transition: all 0.5s ease;
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(74, 37, 69, 0.1);
}

.border-white-refined {
    background: white !important;
    color: var(--bg-plum) !important;
    border: 1px solid var(--accent-gold) !important;
}

.border-white-refined::before {
    display: none !important;
}

.border-plum-refined {
    background: var(--bg-plum) !important;
    color: var(--text-nude) !important;
    border: 1px solid var(--accent-gold) !important;
}

.border-plum-refined .price-title, .border-plum-refined .price-amount { color: var(--accent-gold) !important; }
.border-plum-refined .price-list, .border-plum-refined .price-content p { color: var(--text-nude) !important; }

.border-plum-refined::before {
    display: none !important;
}

.border-gold {
    border: 1px solid var(--accent-gold);
}

.bg-white-blur {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.price-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.price-note {
    font-style: italic;
    opacity: 0.8;
}

.price-list {
    list-style: none;
    line-height: 2.5;
    font-size: 1.2rem;
}

.separator-gold {
    border: 0;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    margin: 50px 0;
}

.zone-box {
    background: rgba(255, 255, 255, 0.1);
    /* Très léger sur fond prune */
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 40px;
    border-radius: 20px;
}

.zone-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-info {
    font-size: 1.4rem;
    line-height: 1.8;
}

.contact-info .name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
}

.contact-info a {
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-gold);
}

footer {
    padding: 80px 20px;
    /* Plus d'espace */
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 900px) {
    header nav {
        display: none;
    }

    .title-massive {
        font-size: 2.5rem;
    }

    .title-section {
        font-size: 2.2rem;
    }

    .logo-main span {
        font-size: 1.2rem;
    }

    .about-grid,
    .approche-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approche-photo {
        order: -1;
        /* Image en haut sur mobile */
    }
}

/* About Section Formatting */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    /* Plus d'espace pour la respiration */
    align-items: flex-start;
}

.about-photo {
    position: relative;
    padding: 15px;
    background: white;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.about-photo img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--accent-gold);
    padding: 5px;
    background: white;
}

.about-content {
    padding-top: 20px;
}

.about-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.drop-cap::first-letter {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    float: left;
    margin-right: 15px;
    line-height: 0.8;
    color: var(--accent-gold);
    font-weight: 700;
}

.shadow-gold {
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3);
}

/* Section Mon Approche - simplifiée */
.approche-section {
    background: transparent;
    padding: 80px 0 40px;
    position: relative;
}

.approche-section .title-section {
    margin-bottom: 40px;
}

.approche-visual {
    width: 100%;
    margin: 0;
    position: relative;
}

.approche-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Fondu uniquement sur les côtés gauche/droite */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mix-blend-mode: multiply;
    filter: saturate(0.95);
}

@media (max-width: 768px) {
    .approche-section {
        padding: 50px 0 20px;
    }

    .approche-section .container {
        padding: 0 20px;
    }

    .approche-image {
        /* Fondu réduit sur mobile pour ne pas masquer le contenu */
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
}

@media (max-width: 480px) {
    .approche-image {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }
}

/* Section Mon Approche Grid (legacy) */
.approche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Pas d'espace pour une intégration parfaite */
    align-items: center;
    background-color: var(--bg-nude);
    margin: 0 -20px;
    /* Compensation du padding container */
}

.approche-text {
    padding: 60px;
    z-index: 2;
}

.approche-photo {
    line-height: 0;
}

.blend-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
}

.discount-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Animations Reveal Subtiles */
.reveal-init {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    /* Plus subtile */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in {
    animation: softFadeIn 2s ease-out;
}

@keyframes softFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Footer Styles */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand .logo-footer p {
    margin: 0;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-nav a,
.footer-legal a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.hover-gold:hover {
    color: var(--accent-gold);
}

.border-top-gold {
    padding: 15px 0;
    margin: 20px 0px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand .leading-relaxed {
        margin: 0 auto;
    }
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(74, 37, 69, 0.05);
}

.form-label {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--bg-plum);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-violet);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.w-full {
    width: 100%;
}

/* Contact form status message */
.form-status {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    min-height: 1.2em;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-status:empty {
    display: none;
}

.form-status.is-loading {
    color: var(--text-violet);
    background: rgba(255, 255, 255, 0.5);
}

.form-status.is-success {
    color: #2e6b3a;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.form-status.is-error {
    color: #8a2a2a;
    background: rgba(138, 42, 42, 0.08);
    border: 1px solid rgba(138, 42, 42, 0.3);
}

/* --- RESPONSIVE & MOBILE MENU --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-plum-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1050;
    }

    #nav-menu.active {
        right: 0;
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    #nav-menu ul li a {
        font-size: 1.5rem;
        color: var(--accent-gold);
    }

    /* Hamburger transformation */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Global Responsive Adjustments */
    .title-massive {
        font-size: 2.8rem;
    }

    .quote-lead {
        font-size: 1.4rem;
    }

    .section-header h2,
    .title-section {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    section {
        padding: 60px 0;
    }

    .grid-2,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-grid {
        text-align: center;
    }

    .contact-text {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .title-massive {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 20px;
    }

    .price-card {
        padding: 30px 20px;
    }
}

.banner-travel {
    padding: 80px 20px;
}

.banner-title {
    letter-spacing: 6px;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .banner-travel {
        padding: 50px 20px;
    }

    .banner-title {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }

    .banner-text {
        font-size: 1rem !important;
    }
}