        :root {
            --primary: #c146bc;
            --secondary: #A3D9C9;
            --background: #F7F9FA;
            --text: #333333;
            --muted: #777777;
            --white: #ffffff;
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-full: 999px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--background);
            color: var(--text);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Layout global */

        header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(14px);
            background: rgba(247, 249, 250, 0.86);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

        .container {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 16px;
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 140px;
            height: 36px;
            border-radius: 12px;
            background: radial-gradient(circle at 20% 20%, #e598e2, #c146bc);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
            box-shadow: var(--shadow-soft);
        }

        .logo-text {
            font-weight: 600;
            font-size: 18px;
        }

        .logo-sub {
            font-size: 11px;
            color: var(--muted);
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 22px;
            font-size: 14px;
        }

        .nav-links a {
            color: var(--muted);
            position: relative;
            padding-bottom: 3px;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.2s ease-out;
            border-radius: 999px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-full);
            padding: 10px 18px;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease-out;
            font-weight: 500;
            gap: 6px;
            white-space: nowrap;
        }

        .btn-primary {
            background: #c146bc;
            color: var(--white);
            box-shadow: 0 10px 25px rgba(74, 144, 226, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 30px rgba(74, 144, 226, 0.35);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.7);
            color: var(--text);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .btn-outline:hover {
            background: var(--white);
        }

        main {
            padding-bottom: 60px;
        }

        section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--muted);
            max-width: 540px;
            margin-bottom: 32px;
        }

        /* Hero */

        .hero {
            padding: 50px 0 40px;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 36px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            padding: 6px 12px;
            border-radius: var(--radius-full);
            background: rgba(163, 217, 201, 0.2);
            color: #1A5C4D;
            margin-bottom: 14px;
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: #27AE60;
        }

        .hero-title {
            font-size: 34px;
            line-height: 1.2;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .hero-title span {
            color: #c146bc;
        }

        .hero-text {
            font-size: 15px;
            color: var(--muted);
            margin-bottom: 22px;
            max-width: 480px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .hero-note {
            font-size: 13px;
            color: var(--muted);
        }

        .hero-highlight {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            margin-top: 6px;
        }

        .hero-highlight span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 999px;
            background: rgba(39, 174, 96, 0.08);
            color: #27AE60;
            font-size: 11px;
        }

        .hero-card {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .hero-card-tag {
            position: absolute;
            top: 10px;
            right: 18px;
            font-size: 10px;
            background: rgba(74, 144, 226, 0.08);
            color: var(--primary);
            padding: 4px 10px;
            border-radius: var(--radius-full);
        }

        .hero-rooms {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 14px;
        }

        .hero-rooms strong {
            color: var(--text);
        }

        .hero-stats {
            display: flex;
            gap: 16px;
            margin-bottom: 18px;
        }

        .hero-stat {
            flex: 1;
            background: #F7FAFF;
            border-radius: var(--radius-md);
            padding: 10px 12px;
        }

        .hero-stat-label {
            font-size: 11px;
            color: var(--muted);
        }

        .hero-stat-value {
            font-size: 18px;
            font-weight: 600;
            color: #c146bc;
        }

        .hero-stat-sub {
            font-size: 11px;
            color: var(--muted);
        }

        .hero-pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
        }

        .hero-pill {
            font-size: 11px;
            padding: 6px 9px;
            border-radius: var(--radius-full);
            background: #F4F7FB;
            color: var(--muted);
        }

        .hero-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 11px;
            color: var(--muted);
        }

        .hero-avatar-group {
            display: flex;
            align-items: center;
        }

        .hero-avatar {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            background: linear-gradient(135deg, #e9d7e8, #c146bc);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
            margin-left: -6px;
            border: 2px solid var(--white);
        }

        .hero-avatar:first-child {
            margin-left: 0;
        }

        .hero-rating {
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }

        .hero-rating span {
            color: #F5A623;
        }

        /* Avantages */

        .advantages {
            background: transparent;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 18px 18px 16px;
            box-shadow: var(--shadow-soft);
        }

        .card-icon {
            width: 32px;
            height: 32px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .card-title {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .card-text {
            font-size: 13px;
            color: var(--muted);
        }

        /* Prestations */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 18px 18px 16px;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-label {
            font-size: 11px;
            color: #c146bc;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .service-title {
            font-size: 16px;
            font-weight: 500;
        }

        .service-text {
            font-size: 13px;
            color: var(--muted);
        }

        .service-meta {
            font-size: 12px;
            color: var(--muted);
        }

        .service-price {
            margin-top: auto;
            font-size: 13px;
            font-weight: 500;
            color: var(--text);
        }

        .service-price span {
            color: var(--primary);
        }

        /* Avis */

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .review-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 16px 16px 14px;
            box-shadow: var(--shadow-soft);
            font-size: 13px;
        }

        .review-stars {
            color: #F5A623;
            margin-bottom: 6px;
            font-size: 13px;
        }

        .review-text {
            color: var(--text);
            margin-bottom: 10px;
        }

        .review-author {
            font-size: 12px;
            color: var(--muted);
        }

        /* À propos */

        .about-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
            gap: 32px;
            align-items: center;
        }

        .about-photo {
            border-radius: 24px;
            background: linear-gradient(135deg, #7533a7, #e24adc);
            height: 260px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .about-photo-inner {
            position: absolute;
            inset: 10px;
            border-radius: 18px;
            background: url('https://images.pexels.com/photos/4239032/pexels-photo-4239032.jpeg?auto=compress&cs=tinysrgb&w=800') center/cover;
        }

        .about-text {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 18px;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 6px;
            font-size: 13px;
            color: var(--muted);
        }

        .about-list li span {
            margin-top: 2px;
            color: #27AE60;
            font-size: 14px;
        }

        .zones {
            font-size: 13px;
        }

        .zones strong {
            font-weight: 500;
        }

        /* Contact */

        .contact-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
            gap: 32px;
        }

        form {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 20px 18px 18px;
            box-shadow: var(--shadow-soft);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .form-group {
            margin-bottom: 12px;
        }

        label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        input,
        select,
        textarea {
            width: 100%;
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 10px 11px;
            font-size: 13px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
            background: #FBFCFE;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: rgba(74, 144, 226, 0.55);
            box-shadow: 0 0 0 1px rgba(74, 144, 226, 0.25);
            background: var(--white);
        }

        textarea {
            min-height: 110px;
            resize: vertical;
        }

        .form-helper {
            font-size: 11px;
            color: var(--muted);
            margin-bottom: 10px;
        }

        .contact-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 18px 18px 16px;
            box-shadow: var(--shadow-soft);
            font-size: 13px;
        }

        .contact-item {
            margin-bottom: 10px;
        }

        .contact-item strong {
            display: block;
            font-size: 12px;
            margin-bottom: 2px;
        }

        .contact-highlight {
            margin-top: 10px;
            padding: 10px 11px;
            border-radius: 12px;
            background: #F4F7FB;
            font-size: 12px;
        }

        /* Footer */

        footer {
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            padding: 14px 0 24px;
            font-size: 12px;
            color: var(--muted);
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .footer-links {
            display: flex;
            gap: 16px;
        }

        /* Responsive */

        @media (max-width: 960px) {
            .hero-inner,
            .about-inner,
            .contact-inner {
                grid-template-columns: minmax(0, 1fr);
            }

            .hero {
                padding-top: 32px;
            }

            .hero-inner {
                gap: 26px;
            }

            .advantages-grid,
            .services-grid,
            .reviews-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 720px) {
            nav {
                flex-wrap: wrap;
                gap: 10px;
            }

            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 27px;
            }

            section {
                padding: 40px 0;
            }

            .advantages-grid,
            .services-grid,
            .reviews-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .contact-inner {
                gap: 20px;
            }

            .form-row {
                grid-template-columns: minmax(0, 1fr);
            }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .auth-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: 0.2s ease;
    margin-right: 12px;
}

.auth-link:hover {
    background: rgba(74, 144, 226, 0.12);
}
