:root {
    color-scheme: light;
    --bg: #f6f1eb;
    --bg-alt: #efe6dc;
    --text: #2f2a26;
    --muted: #6d6157;
    --accent: #b89362;
    --dark: #1e1a17;
    --white: #ffffff;
    --shadow: 0 20px 40px rgba(30, 26, 23, 0.12);
}

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

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(246, 241, 235, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(47, 42, 38, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    gap: 2rem;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(47, 42, 38, 0.2);
    background: transparent;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(184, 147, 98, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(47, 42, 38, 0.2);
    box-shadow: none;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-dark {
    background: var(--dark);
}

.hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(120deg, #3b352f 0%, #746455 55%, #d0b99a 100%);
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

h1, h2, h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.lead {
    max-width: 640px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    margin: 2rem 0 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-stats span {
    font-size: 1.8rem;
    font-weight: 600;
}

.hero-stats p {
    color: rgba(255, 255, 255, 0.7);
}

.section {
    padding: 5rem 0;
}

.section.alt {
    background: var(--bg-alt);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.cards {
    display: grid;
    gap: 1.2rem;
}

.card {
    background: var(--white);
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(30, 26, 23, 0.16);
}

.card-with-image {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 200px;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 26, 23, 0.85) 0%, rgba(59, 53, 47, 0.75) 100%);
    transition: background 0.3s ease;
}

.card-with-image:hover .card-overlay {
    background: linear-gradient(135deg, rgba(30, 26, 23, 0.75) 0%, rgba(59, 53, 47, 0.65) 100%);
}

.card-content {
    position: relative;
    z-index: 1;
}

.floor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.floor {
    background: var(--white);
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.floor ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: var(--muted);
}

.video-wrapper {
    background: var(--dark);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.list-item {
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 999px;
    text-align: center;
    color: var(--muted);
    box-shadow: 0 8px 20px rgba(30, 26, 23, 0.08);
}

.info-panel {
    display: grid;
    gap: 1rem;
}

.info-panel div {
    background: var(--white);
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.info-panel span {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact {
    background: var(--dark);
    color: var(--white);
}

.contact .form-card {
    background: var(--white);
    color: var(--text);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.contact-info p {
    margin-bottom: 0.6rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(47, 42, 38, 0.2);
    border-radius: 12px;
    font-family: inherit;
    background: #faf7f4;
}

.field textarea {
    resize: vertical;
}

.form-message {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.form-message.success {
    background: rgba(65, 143, 94, 0.15);
    color: #2b6b45;
}

.form-message.error {
    background: rgba(191, 92, 92, 0.15);
    color: #8b3b3b;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
}

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

/* Gallery Section */
.gallery-section {
    background: var(--bg);
}

.section-intro {
    text-align: center;
    color: var(--muted);
    margin-top: -0.5rem;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.gallery-carousel {
    position: relative;
    margin: 3rem 0;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 10;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: -24px;
}

.carousel-btn.next {
    right: -24px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    opacity: 1;
    background: var(--accent);
    transform: scale(1.2);
}

/* Image Banner */
.image-banner {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 23, 0.65);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 20px rgba(30, 26, 23, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: 4 / 5;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(30, 26, 23, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Prestations Section with Background */
.prestations-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.prestations-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 241, 235, 0.97) 0%, rgba(239, 230, 220, 0.95) 100%);
    backdrop-filter: blur(2px);
}

.prestations-content {
    position: relative;
    z-index: 1;
}

.list-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--dark);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

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

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

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

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-radius: 16px;
        box-shadow: var(--shadow);
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        color: var(--text);
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .image-banner {
        padding: 5rem 0;
        background-attachment: scroll;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .gallery-item-tall {
        grid-row: span 1;
        aspect-ratio: 4 / 3;
    }

    .prestations-section {
        background-attachment: scroll;
    }

    .banner-content h2 {
        font-size: 1.6rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}
