/* ================================================
   BASTIDE OR DU TEMPS — EDITORIAL LUXURY DESIGN
   Olive & Gold · Cinematic Layouts · Elegant Transitions
   ================================================ */

/* === FONT FACE — Rastanty Cortez (local) === */
/* Si vous avez le fichier Rastanty Cortez, placez-le dans fonts/ et décommentez :
@font-face {
    font-family: 'Rastanty Cortez';
    src: url('../fonts/RastantyCortez-Regular.woff2') format('woff2'),
         url('../fonts/RastantyCortez-Regular.woff') format('woff'),
         url('../fonts/RastantyCortez-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/

/* === CSS VARIABLES === */
:root {
    --accent: #4E6E58;
    --accent-dark: #3A5442;
    --accent-light: #7BA68A;
    --accent-secondary: #C8965A;
    --text: #2D2926;
    --text-light: #7A7470;
    --bg: #FDFBF7;
    --bg-secondary: #F5F0E8;
    --border: #E8E2D8;
    --shadow: rgba(45, 41, 38, 0.06);
    --shadow-medium: rgba(45, 41, 38, 0.12);
    --shadow-strong: rgba(45, 41, 38, 0.20);
    --success: #4a7c59;
    --success-bg: #e8f5ec;
    --error: #b35a5a;
    --error-bg: #fdeaea;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Outfit', sans-serif;
    /* Pour utiliser Rastanty Cortez, remplacez 'Great Vibes' par 'Rastanty Cortez' */
    --font-script: 'Great Vibes', cursive;
    --radius: 8px;
    --radius-lg: 16px;
    --container-width: 1200px;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
}

h1 { font-size: clamp(3rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }

p {
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === CONTAINERS === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

.first-section {
    padding-top: 10rem;
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.97);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px var(--shadow);
}

/* Transparent header for homepage hero */
.header-transparent {
    background: transparent;
    border-bottom: none;
}

.header-transparent .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
    color: white;
}

.header-transparent .nav-link::after {
    background: white;
}

.header-transparent .hamburger span {
    background: white;
}

.header-transparent .logo-img {
    opacity: 0;
    pointer-events: none;
}

.header-transparent.scrolled {
    background: rgba(253, 251, 247, 0.97);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px var(--shadow);
}

.header-transparent.scrolled .nav-link {
    color: var(--text-light);
}

.header-transparent.scrolled .nav-link:hover,
.header-transparent.scrolled .nav-link.active {
    color: var(--text);
}

.header-transparent.scrolled .nav-link::after {
    background: var(--accent);
}

.header-transparent.scrolled .hamburger span {
    background: var(--text);
}

.header-transparent.scrolled .logo-img {
    opacity: 1;
    pointer-events: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: -0.5px;
    transition: all 0.35s ease;
}

.logo:hover h1 {
    color: var(--accent-dark);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.35s ease;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

/* Hero Logo */
.hero-logo {
    max-width: 100%;
    width: 90vw;
    max-height: 60vh;
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
    filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.3));
    mix-blend-mode: multiply;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-light);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    animation: fadeIn 0.5s ease both;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.15s; }
.nav-link:nth-child(3) { animation-delay: 0.2s; }
.nav-link:nth-child(4) { animation-delay: 0.25s; }
.nav-link:nth-child(5) { animation-delay: 0.3s; }
.nav-link:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-15px); }
    to { opacity: 1; transform: translateX(0); }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   CINEMATIC HERO — FULL VIEWPORT
   ================================================ */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-cinematic-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-cinematic-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroSlowZoom 20s ease-in-out infinite alternate;
}

@keyframes heroSlowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-cinematic-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-cinematic-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: 4rem;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    animation: fadeInDown 1s ease 0.2s both;
    margin-bottom: 2rem;
}

.hero-location-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-secondary);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cinematic-title {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 400;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    animation: titleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-cinematic-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-cinematic-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

.btn-hero-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--text);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--accent-secondary);
    color: white;
}

.btn-hero-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--text);
    border-color: white;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 25px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   KEY FIGURES — HORIZONTAL STRIP
   ================================================ */
.key-figures {
    background: var(--accent);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.key-figures::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.key-figures-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.key-figure {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    color: white;
    flex-wrap: wrap;
    justify-content: center;
}

.key-figure-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.key-figure-unit {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

.key-figure-label {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
}

.key-figure-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ================================================
   INTRO — IMMERSIVE SPLIT LAYOUT
   ================================================ */
.intro-immersive {
    padding: 8rem 0;
    background: var(--bg);
}

.intro-immersive-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-immersive-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    position: relative;
}

.intro-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.intro-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.intro-img-main:hover img {
    transform: scale(1.03);
}

.intro-img-accent {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.intro-img-accent img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.intro-img-accent:hover img {
    transform: scale(1.03);
}

.intro-immersive-text .section-label {
    margin-bottom: 1rem;
}

.intro-paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}

.intro-paragraph:last-of-type {
    margin-bottom: 2rem;
}

.intro-signature {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.signature-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1.2;
}

/* ================================================
   EXPERIENCE — SHOWCASE GRID
   ================================================ */
.experience-section {
    background: white;
    padding: 7rem 0;
    overflow: hidden;
}

.experience-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.experience-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px var(--shadow-strong);
}

.experience-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.experience-card-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.experience-card-large .experience-card-image {
    min-height: 580px;
}

.experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.experience-card:hover .experience-card-image img {
    transform: scale(1.08);
}

.experience-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%);
    color: white;
    transform: translateY(calc(100% - 4rem));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.experience-card:hover .experience-card-content {
    transform: translateY(0);
}

.experience-card-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.experience-card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

.experience-card:hover .experience-card-content p {
    opacity: 1;
}

/* ================================================
   PARALLAX DIVIDER
   ================================================ */
.parallax-divider {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-divider-bg {
    position: absolute;
    inset: -10%;
    z-index: 1;
}

.parallax-divider-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-divider-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(45, 41, 38, 0.6);
}

.parallax-divider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 2rem;
}

.parallax-quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent-secondary);
    opacity: 0.6;
    display: block;
    margin-bottom: -1rem;
}

.parallax-divider blockquote {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.parallax-location {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* ================================================
   GALLERY — MOSAIC LAYOUT
   ================================================ */
.gallery-preview {
    background: var(--bg);
    padding: 7rem 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.gallery-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-mosaic-tall {
    grid-row: 1 / 3;
}

.gallery-mosaic-wide {
    grid-column: span 2;
}

.gallery-mosaic-item:hover {
    z-index: 2;
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.gallery-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-mosaic-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top,
        rgba(45, 41, 38, 0.9) 0%,
        transparent 100%);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-mosaic-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
}

/* ================================================
   GALLERY CAROUSEL
   ================================================ */
.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-left {
    left: 1.25rem;
}

.carousel-arrow-right {
    right: 1.25rem;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--accent-light);
}

.carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Counter */
.carousel-counter {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 980px) {
    .carousel-slide img {
        height: 400px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow-left {
        left: 0.75rem;
    }

    .carousel-arrow-right {
        right: 0.75rem;
    }
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 300px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .carousel-caption {
        font-size: 0.95rem;
        padding: 1.5rem 1.25rem 1rem;
    }
}

/* Legacy gallery grid (for other pages) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.gallery-grid .gallery-item:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.gallery-grid .gallery-item:nth-child(2) {
    grid-column: 2 / 4;
}

.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 4 / 5;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: 2 / 3;
}

.gallery-grid .gallery-item:nth-child(5) {
    grid-column: 3 / 4;
}

.gallery-grid .gallery-item:nth-child(6) {
    grid-column: 4 / 5;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    z-index: 2;
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 10px var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* === SECTION LABELS & HEADERS === */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--accent-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-label::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--accent-secondary);
    margin: 0.75rem auto 0;
}

.section-title {
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* === INTRO SECTION — EDITORIAL SPLIT (legacy) === */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.image-card:hover {
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.image-card:hover img {
    transform: scale(1.03);
}

/* === FEATURES — BENTO GRID LAYOUT === */
.features-section {
    background: white;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    counter-reset: feature-counter;
}

.feature-card {
    padding: 2.5rem;
    background: white;
    position: relative;
    transition: all 0.4s ease;
    counter-increment: feature-counter;
    animation: cardFadeIn 0.6s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }
.feature-card:nth-child(5) { animation-delay: 0.25s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }

.feature-card::before {
    content: counter(feature-counter, decimal-leading-zero);
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--bg-secondary);
    pointer-events: none;
    transition: color 0.4s ease;
}

.feature-card:hover {
    background: var(--accent);
}

.feature-card:hover::before {
    color: rgba(255,255,255,0.1);
}

.feature-icon {
    display: none;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.feature-card:hover h3 {
    color: white;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.feature-card:hover p {
    color: rgba(255,255,255,0.85);
}

/* === REVIEWS — EDITORIAL TESTIMONIALS === */
.reviews-section {
    background: white;
    overflow: hidden;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.stars {
    display: flex;
    gap: 0.15rem;
    color: var(--accent-secondary);
}

.stars svg {
    animation: starReveal 0.4s ease both;
}

.stars svg:nth-child(1) { animation-delay: 0.1s; }
.stars svg:nth-child(2) { animation-delay: 0.15s; }
.stars svg:nth-child(3) { animation-delay: 0.2s; }
.stars svg:nth-child(4) { animation-delay: 0.25s; }
.stars svg:nth-child(5) { animation-delay: 0.3s; }

@keyframes starReveal {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--accent);
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.review-card {
    padding: 2.5rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s ease;
}

.review-card:nth-child(2) {
    transform: translateY(2rem);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.08;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.review-card:nth-child(2):hover {
    transform: translateY(calc(2rem - 4px));
}

.review-stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1.25rem;
    color: var(--accent-secondary);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
    margin-bottom: 2rem;
    position: relative;
}

.review-text::before {
    display: none;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* === CTA SECTION — FULL WIDTH ACCENT === */
.cta-section {
    background: var(--accent);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent);
}

.cta-section .btn-primary:hover {
    background: var(--bg);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--accent);
    border-color: white;
}

/* === FOOTER — MINIMAL DARK === */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.webduo-credit {
    margin-top: 0.5rem;
}

.webduo-credit a {
    color: var(--accent-light);
    font-weight: 500;
}

.webduo-credit a:hover {
    text-decoration: underline;
}

/* ================================================
   INNER PAGE HEROES — IMMERSIVE GRADIENTS
   ================================================ */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4rem;
    background: linear-gradient(160deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
    margin-top: 0;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="80" r="30" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

.page-hero .hero-overlay {
    display: none;
}

.page-hero .hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    transform: none;
    left: auto;
    bottom: auto;
    max-width: 700px;
}

.page-hero .section-label {
    color: rgba(255,255,255,0.7);
}

.page-hero .section-label::before {
    background: rgba(255,255,255,0.4);
}

.page-hero .hero-title {
    color: white;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s both;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2vw, 1.25rem);
    animation: fadeInUp 0.8s ease 0.3s both;
    text-transform: none;
    letter-spacing: 0;
}

/* Hero Title (legacy) */
.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    margin-bottom: 1rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.5s both;
}

/* Page Hero Color Variants */
.page-hero-contact {
    background: linear-gradient(160deg, #3d5a3d 0%, #5a7a5a 50%, #7a9a7a 100%);
}

.page-hero-tarifs {
    background: linear-gradient(160deg, #5a4a3a 0%, #8b7355 50%, #a89070 100%);
}

.page-hero-dispo {
    background: linear-gradient(160deg, #3a4a5a 0%, #5a6a7a 50%, #7a8a9a 100%);
}

.page-hero-activites {
    background: linear-gradient(160deg, #5a4a3a 0%, #7a6a4a 50%, #9a8a6a 100%);
}

/* ================================================
   CONTACT PAGE — SPLIT LAYOUT
   ================================================ */
.contact-section {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    animation: cardFadeIn 0.5s ease both;
}

.contact-card:nth-child(1) { animation-delay: 0.05s; }
.contact-card:nth-child(2) { animation-delay: 0.1s; }
.contact-card:nth-child(3) { animation-delay: 0.15s; }
.contact-card:nth-child(4) { animation-delay: 0.2s; }

.contact-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 25px var(--shadow);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-card-content a,
.contact-card-content p {
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.contact-card-content a:hover {
    color: var(--accent-dark);
}

.contact-card-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    animation: cardFadeIn 0.6s ease 0.2s both;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group .required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(78, 110, 88, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(3px);
}

/* Map Section */
.map-section {
    background: white;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: -0.5rem;
}

.map-wrapper {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.map-info-item svg {
    color: var(--accent);
}

/* ================================================
   TARIFS PAGE — CLEAN PRICING
   ================================================ */
.tarifs-section {
    background: var(--bg);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.text-left {
    text-align: left;
}

.text-left .section-title {
    margin-bottom: 1rem;
}

.text-left p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
    animation: cardFadeIn 0.5s ease both;
}

.pricing-card:nth-child(1) { animation-delay: 0.05s; }
.pricing-card:nth-child(2) { animation-delay: 0.1s; }
.pricing-card:nth-child(3) { animation-delay: 0.15s; }
.pricing-card:nth-child(4) { animation-delay: 0.2s; }

.pricing-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px var(--shadow);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
}

.pricing-card.featured .pricing-amount .price,
.pricing-card.featured .pricing-amount .currency {
    color: white;
}

.pricing-card.featured .season-dates,
.pricing-card.featured .pricing-details .min-stay {
    color: rgba(255,255,255,0.7);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 1.5rem;
    background: var(--accent-secondary);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured .featured-badge {
    background: white;
    color: var(--accent);
}

.pricing-season {
    margin-bottom: 1.25rem;
}

.season-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.season-badge.basse { background: #e8f6ee; color: #1b5e20; }
.season-badge.moyenne { background: #fff3e0; color: #e65100; }
.season-badge.haute { background: #fce4ec; color: #c2185b; }
.season-badge.speciale { background: #e8eaf6; color: #3949ab; }

.pricing-card.featured .season-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.season-dates {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

.pricing-amount .price {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--accent);
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-details .min-stay {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Additional Fees */
.additional-fees {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.additional-fees h3 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.fees-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fee-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.fee-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.fee-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.fee-icon svg {
    width: 20px;
    height: 20px;
}

.fee-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
}

.fee-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
}

.fee-price span {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
}

.fee-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

/* Estimation Card */
.estimation-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
    animation: cardFadeIn 0.6s ease 0.3s both;
}

.estimation-header {
    margin-bottom: 1.5rem;
}

.estimation-header h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.estimation-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.estimation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.estimation-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.estimation-group input,
.estimation-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg);
    transition: all 0.3s ease;
}

.estimation-group input:focus,
.estimation-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.estimation-result {
    padding: 1.25rem;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.result-placeholder {
    text-align: center;
    color: var(--text-light);
}

.result-placeholder svg {
    margin-bottom: 0.5rem;
    opacity: 0.4;
}

.result-placeholder p {
    font-size: 0.85rem;
}

/* Inclus Card */
.inclus-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 1.25rem;
}

.inclus-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.inclus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.inclus-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text);
}

.inclus-list svg {
    color: var(--success);
    min-width: 18px;
    width: 18px;
    height: 18px;
}

/* Conditions Section */
.conditions-section {
    background: white;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    counter-reset: condition-counter;
}

.condition-card {
    padding: 2rem 1.5rem;
    background: white;
    position: relative;
    transition: all 0.35s ease;
    counter-increment: condition-counter;
    animation: cardFadeIn 0.5s ease both;
}

.condition-card:nth-child(1) { animation-delay: 0.05s; }
.condition-card:nth-child(2) { animation-delay: 0.1s; }
.condition-card:nth-child(3) { animation-delay: 0.15s; }
.condition-card:nth-child(4) { animation-delay: 0.2s; }

.condition-card:hover {
    background: var(--bg);
}

.condition-icon {
    display: none;
}

.condition-card::before {
    content: counter(condition-counter, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.2;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.condition-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
}

.condition-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================================
   DISPONIBILITES PAGE — COMPACT CALENDAR
   ================================================ */
.dispo-section {
    background: var(--bg);
    padding: 4rem 0;
}

.dispo-layout {
    display: grid;
    grid-template-columns: minmax(320px, 480px) 320px;
    gap: 2rem;
    align-items: start;
    justify-content: center;
}

.dispo-calendar-wrapper {
    position: relative;
}

.dispo-calendar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.calendar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-nav-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-light);
}

.cal-nav-btn:hover {
    background: var(--bg);
    color: var(--accent);
}

.cal-month-year {
    text-align: center;
}

.cal-month {
    display: inline;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text);
}

.cal-year {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.25rem;
}

.cal-weekdays span {
    text-align: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text-light);
    padding: 0.35rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    background: transparent;
    color: var(--text);
}

.cal-day.empty {
    background: transparent;
    cursor: default;
}

.cal-day.available {
    background: rgba(78, 110, 88, 0.08);
    color: var(--text);
}

.cal-day.available:hover {
    background: rgba(78, 110, 88, 0.2);
}

.cal-day.booked {
    background: rgba(179, 90, 90, 0.08);
    color: #bbb;
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

.cal-day.today {
    font-weight: 700;
    color: var(--accent);
}

.cal-day.selected {
    background: var(--accent);
    color: white;
    font-weight: 600;
}

.cal-day.in-range {
    background: rgba(78, 110, 88, 0.12);
    color: var(--accent);
}

.cal-legend {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--text-light);
}

.legend-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-item .dot.available { background: rgba(78, 110, 88, 0.3); }
.legend-item .dot.booked { background: rgba(179, 90, 90, 0.3); }
.legend-item .dot.selected { background: var(--accent); }

/* Booking Side */
.dispo-booking-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-display-card {
    background: var(--accent);
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-display-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-display-amount {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.price-display-amount .price-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1;
}

.price-display-amount .price-currency {
    font-size: 0.85rem;
    font-weight: 600;
}

.price-display-amount .price-per {
    font-size: 0.75rem;
    opacity: 0.7;
}

.price-display-season {
    font-size: 0.7rem;
    opacity: 0.8;
    text-align: right;
}

/* Booking Card */
.booking-card {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.booking-card h3 {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.booking-empty {
    text-align: center;
    padding: 1rem;
    color: var(--text-light);
}

.booking-empty svg {
    opacity: 0.25;
    margin-bottom: 0.5rem;
    width: 32px;
    height: 32px;
}

.booking-empty p { font-size: 0.8rem; }

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: var(--radius);
}

.progress-date { text-align: center; }
.progress-date.pending { opacity: 0.4; }

.progress-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-light);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-value {
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
}

.progress-arrow {
    color: var(--accent);
    opacity: 0.4;
}

.booking-complete { animation: fadeIn 0.3s ease; }

.booking-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.booking-date { text-align: center; }

.booking-date-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.booking-date-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--accent);
    line-height: 1;
}

.booking-date-month {
    font-size: 0.75rem;
    color: var(--text);
}

.booking-nights {
    text-align: center;
    padding: 0.35rem 0.75rem;
    background: var(--accent);
    color: white;
    border-radius: 4px;
}

.booking-nights .nights-count {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1;
}

.booking-nights .nights-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-price-breakdown {
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: 1rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.price-line.total {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    padding-top: 0.5rem;
    margin-top: 0.35rem;
    border-top: 1.5px solid var(--accent);
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
}

.booking-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: 4px;
    padding: 0.65rem 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    font-family: var(--font-body);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Dispo Info */
.dispo-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.dispo-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.dispo-info .info-item svg {
    color: var(--accent);
    opacity: 0.5;
    width: 14px;
    height: 14px;
}

/* Season Cards — Minimal pills */
.seasons-cards-section {
    background: white;
    padding: 3rem 0;
}

.seasons-cards {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.season-card-simple {
    background: var(--bg);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

.season-card-simple:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--shadow);
}

.season-card-simple.featured {
    border-color: var(--accent);
    background: rgba(78, 110, 88, 0.05);
}

.season-card-simple .season-badge {
    position: absolute;
    top: -8px;
    right: 0.75rem;
    background: var(--accent);
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 2px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.season-card-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.season-card-icon svg {
    width: 14px;
    height: 14px;
}

.season-card-icon.spring { background: #e8f5e9; color: #4caf50; }
.season-card-icon.summer { background: #fff8e1; color: #ff9800; }
.season-card-icon.autumn { background: #fbe9e7; color: #ff5722; }
.season-card-icon.winter { background: #e3f2fd; color: #2196f3; }

.season-card-content h4 {
    font-size: 0.85rem;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
}

.season-card-content p {
    font-size: 0.7rem;
    color: var(--text-light);
    display: none;
}

.season-card-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.8rem;
}

/* ================================================
   ACTIVITES PAGE — MAGAZINE GRID
   ================================================ */
.filter-section {
    background: white;
    padding: 3rem 0;
}

.filter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.filter-header p {
    color: var(--text-light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: white;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.activities-section {
    background: var(--bg);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.activities-grid .activity-card:nth-child(4n+1) {
    grid-column: span 2;
}

.activities-grid .activity-card:nth-child(4n+1) .activity-image {
    height: 280px;
}

.activity-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    animation: cardFadeIn 0.5s ease both;
}

.activity-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-distance {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: rgba(253, 251, 247, 0.95);
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

.activity-content {
    padding: 1.5rem;
}

.activity-tags {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.activity-tags .tag {
    padding: 0.2rem 0.6rem;
    background: var(--bg);
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.activity-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.activity-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.activity-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-dark);
}

.btn-link svg {
    transition: transform 0.3s ease;
}

.btn-link:hover svg {
    transform: translateX(2px);
}

/* ================================================
   LA MAISON PAGE — EDITORIAL SPACES
   ================================================ */

/* Specs: horizontal strip layout */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    transition: all 0.35s ease;
}

.spec-card:hover {
    background: var(--bg);
}

.spec-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.spec-icon svg {
    width: 24px;
    height: 24px;
}

.spec-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
}

.spec-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Spaces — Overlapping editorial layout */
.spaces-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.space-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.space-item.reverse {
    grid-template-columns: 1fr 1.2fr;
    direction: rtl;
}

.space-item.reverse > * {
    direction: ltr;
}

.space-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.space-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.space-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.space-item:hover .space-image img {
    transform: scale(1.03);
}

.space-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.space-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.space-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.space-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
}

.space-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 1px;
    flex-shrink: 0;
}

/* Full Gallery — Masonry feel */
.gallery-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-full .gallery-item:nth-child(3n+1) {
    grid-row: span 1;
}

/* ================================================
   LA MAISON — NEW IMMERSIVE LAYOUT
   ================================================ */

/* Hero variant for maison page */
.hero-maison .hero-cinematic-title {
    font-family: var(--font-script);
}

/* Specs Strip */
.maison-specs-strip {
    background: var(--bg-secondary);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.specs-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.specs-strip-item {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.specs-strip-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent);
}

.specs-strip-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.7;
}

.specs-strip-label {
    font-size: 0.8rem;
    color: var(--text-light);
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
}

.specs-strip-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Space Blocks */
.maison-spaces-section {
    padding-bottom: 0 !important;
}

.maison-space-block {
    padding: 5rem 0;
}

.maison-space-block.maison-space-alt {
    background: var(--bg);
}

.maison-space-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.maison-space-row.maison-space-reverse {
    grid-template-columns: 1fr 1.15fr;
    direction: rtl;
}

.maison-space-row.maison-space-reverse > * {
    direction: ltr;
}

/* Image stack: main + floating accent */
.maison-space-img-stack {
    position: relative;
}

.maison-space-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px var(--shadow-medium);
    transition: transform 0.6s ease;
}

.maison-space-img-stack:hover .maison-space-img-main {
    transform: scale(1.02);
}

.maison-space-img-float {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 4px solid white;
    box-shadow: 0 10px 30px var(--shadow-strong);
    transition: transform 0.5s ease;
    z-index: 2;
}

.maison-space-row.maison-space-reverse .maison-space-img-float {
    right: auto;
    left: -2rem;
}

.maison-space-img-stack:hover .maison-space-img-float {
    transform: translate(-4px, -4px) rotate(-2deg);
}

/* Text side */
.maison-space-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.1;
    margin-bottom: 0.5rem;
}

.maison-space-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.maison-space-text p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.maison-space-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.maison-space-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text);
}

.maison-space-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive — Maison spaces */
@media (max-width: 980px) {
    .maison-space-row,
    .maison-space-row.maison-space-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .maison-space-block {
        padding: 3.5rem 0;
    }

    .maison-space-img-main {
        height: 300px;
    }

    .maison-space-img-float {
        width: 140px;
        height: 140px;
        bottom: -1.5rem;
        right: -1rem;
    }

    .maison-space-row.maison-space-reverse .maison-space-img-float {
        left: auto;
        right: -1rem;
    }

    .specs-strip-grid {
        gap: 1.5rem;
    }

    .specs-strip-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .maison-space-block {
        padding: 2.5rem 0;
    }

    .maison-space-row,
    .maison-space-row.maison-space-reverse {
        padding: 0 1.25rem;
        gap: 2rem;
    }

    .maison-space-features {
        grid-template-columns: 1fr;
    }

    .maison-space-img-main {
        height: 250px;
    }

    .maison-space-img-float {
        width: 110px;
        height: 110px;
        bottom: -1rem;
        right: -0.5rem;
    }

    .maison-space-number {
        font-size: 3rem;
    }

    .maison-space-text h3 {
        font-size: 1.4rem;
    }

    .maison-space-text p {
        font-size: 0.95rem;
    }

    .specs-strip-grid {
        flex-direction: column;
    }

    .specs-strip-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .maison-space-block {
        padding: 2rem 0;
    }

    .maison-space-row,
    .maison-space-row.maison-space-reverse {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .maison-space-img-main {
        height: 200px;
    }

    .maison-space-img-float {
        width: 90px;
        height: 90px;
        bottom: -0.75rem;
        right: -0.25rem;
        border-width: 3px;
    }

    .maison-space-number {
        font-size: 2.5rem;
    }

    .maison-space-text h3 {
        font-size: 1.25rem;
    }

    .maison-space-features li {
        font-size: 0.85rem;
    }

    .maison-spaces-section {
        padding-top: 7rem !important;
    }
}

/* ================================================
   UTILITY & EXTRA CLASSES
   ================================================ */
.btn-block {
    width: 100%;
    justify-content: center;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Quick Info */
.quick-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-info-item svg { color: var(--accent); }
.quick-info-item strong { display: block; font-size: 0.9rem; color: var(--text); }
.quick-info-item span { font-size: 0.85rem; color: var(--text-light); }

/* Reservation Card */
.reservation-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.reservation-header { margin-bottom: 1.5rem; }
.reservation-header h3 { font-size: 1.15rem; }

.reservation-dates {
    padding: 1.25rem;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.no-selection { text-align: center; color: var(--text-light); }
.no-selection svg { margin-bottom: 0.5rem; opacity: 0.4; }
.no-selection p { font-size: 0.85rem; }

.reservation-summary { margin-bottom: 1.5rem; }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--text-light); }
.summary-row strong { color: var(--text); }

.summary-row.total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1.5px solid var(--accent);
}

.summary-row.total strong {
    font-size: 1.15rem;
    color: var(--accent);
}

/* Info Card */
.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 1.25rem;
}

.info-card h3 { font-size: 1rem; margin-bottom: 1rem; }

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-list li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.info-list svg {
    min-width: 16px;
    color: var(--accent);
    margin-top: 2px;
}

/* Contact Quick Card */
.contact-quick-card {
    background: var(--accent);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.25rem;
    text-align: center;
}

.contact-quick-card h3 { color: white; font-size: 1.05rem; margin-bottom: 0.5rem; }
.contact-quick-card p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1rem; }

.contact-quick-card .btn-secondary {
    background: white;
    color: var(--accent);
    border-color: white;
}

/* Season Info Section */
.season-info-section { background: white; }

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.season-card {
    padding: 2rem;
    background: white;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    animation: cardFadeIn 0.5s ease both;
}

.season-card:nth-child(1) { animation-delay: 0.05s; }
.season-card:nth-child(2) { animation-delay: 0.1s; }
.season-card:nth-child(3) { animation-delay: 0.15s; }
.season-card:nth-child(4) { animation-delay: 0.2s; }

.season-card:hover { background: var(--bg); }

.season-card.featured {
    background: rgba(78, 110, 88, 0.04);
}

.season-card .season-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.75rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.season-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.season-icon.spring { background: #e8f5e9; color: #4caf50; }
.season-icon.summer { background: #fff8e1; color: #ff9800; }
.season-icon.autumn { background: #fbe9e7; color: #ff5722; }
.season-icon.winter { background: #e3f2fd; color: #2196f3; }

.season-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }

.season-months {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.season-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.season-price {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--bg);
    border-radius: 3px;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.85rem;
}

/* ================================================
   RESPONSIVE — MOBILE FIRST APPROACH
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1100px) {
    .tarifs-grid,
    .calendar-layout {
        grid-template-columns: 1fr;
    }

    .tarifs-sidebar,
    .calendar-sidebar {
        position: static;
    }

    .estimation-card,
    .reservation-card {
        position: static;
    }

    .conditions-grid,
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dispo-layout {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .dispo-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .experience-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .experience-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .experience-card-large .experience-card-image {
        min-height: 350px;
    }
}

/* ================================================
   RESPONSIVE — TABLET LANDSCAPE (max 980px)
   ================================================ */
@media (max-width: 980px) {
    /* --- Container padding reduction --- */
    .container,
    .container-full {
        padding: 0 1.5rem;
    }

    .header-container {
        padding: 0.85rem 1.5rem;
    }

    /* --- Mobile navigation --- */
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        text-transform: none;
        letter-spacing: 0;
    }

    .header-transparent .nav.active .nav-link {
        color: var(--text-light);
    }

    .header-transparent .nav.active .nav-link:hover,
    .header-transparent .nav.active .nav-link.active {
        color: var(--text);
    }

    .hamburger {
        display: flex;
    }

    /* --- Logo --- */
    .logo-img {
        height: 55px;
    }

    /* --- Sections --- */
    .section {
        padding: 5rem 0;
    }

    .first-section {
        padding-top: 8rem;
    }

    /* --- Hero --- */
    .hero-cinematic {
        min-height: 550px;
    }

    .hero-cinematic-title {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }

    .hero-cinematic-content {
        padding: 0 1.5rem;
        margin-top: 2rem;
    }

    .hero-cinematic-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* --- Intro sections --- */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-immersive-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-immersive-images {
        grid-template-columns: 1fr 1fr;
    }

    .intro-img-main img {
        height: 300px;
    }

    .intro-img-accent {
        margin-top: 2rem;
    }

    .intro-img-accent img {
        height: 250px;
    }

    /* --- Features --- */
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* --- Gallery --- */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-row: auto;
        grid-column: auto;
    }
    .gallery-grid .gallery-item:nth-child(2) {
        grid-column: auto;
    }
    .gallery-grid .gallery-item:nth-child(3),
    .gallery-grid .gallery-item:nth-child(4),
    .gallery-grid .gallery-item:nth-child(5),
    .gallery-grid .gallery-item:nth-child(6) {
        grid-column: auto;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-mosaic-tall {
        grid-row: auto;
    }

    .gallery-mosaic-wide {
        grid-column: auto;
    }

    .gallery-mosaic-item {
        aspect-ratio: 4/3;
    }

    /* --- Reviews --- */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card:nth-child(2) {
        transform: none;
    }

    .review-card:nth-child(2):hover {
        transform: translateY(-4px);
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    /* --- Contact (old) --- */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    /* --- Pricing --- */
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    /* --- Activities --- */
    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .activities-grid .activity-card:nth-child(4n+1) {
        grid-column: auto;
    }

    .activities-grid .activity-card:nth-child(4n+1) .activity-image {
        height: 200px;
    }

    /* --- Specs --- */
    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .space-item,
    .space-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .space-image img {
        height: 280px;
    }

    /* --- Experience --- */
    .experience-showcase {
        grid-template-columns: 1fr;
    }

    .experience-card-large .experience-card-image {
        min-height: 300px;
    }

    .experience-card-image {
        min-height: 250px;
    }

    /* --- Key figures --- */
    .key-figures-grid {
        gap: 1.5rem;
    }

    .key-figure-divider {
        display: none;
    }

    /* --- Parallax --- */
    .parallax-divider {
        height: 50vh;
        min-height: 300px;
    }

    .parallax-divider blockquote {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    /* --- CTA buttons --- */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* ================================================
   RESPONSIVE — TABLET PORTRAIT (max 768px)
   ================================================ */
@media (max-width: 768px) {
    /* --- Container padding --- */
    .container,
    .container-full {
        padding: 0 1.25rem;
    }

    .header-container {
        padding: 0.75rem 1.25rem;
    }

    /* --- Sections --- */
    .section {
        padding: 3.5rem 0;
    }

    .first-section {
        padding-top: 7rem;
    }

    /* --- Hero --- */
    .hero-cinematic {
        min-height: 500px;
    }

    .hero-cinematic-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-cinematic-subtitle {
        font-size: clamp(0.85rem, 2.5vw, 1.1rem);
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    .hero-cinematic-content {
        padding: 0 1.25rem;
    }

    .page-hero {
        height: 45vh;
        min-height: 300px;
    }

    /* --- Buttons full width --- */
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* --- Features --- */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card::before {
        font-size: 3rem;
    }

    /* --- Gallery --- */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-mosaic-item {
        aspect-ratio: 16/10;
    }

    .gallery-full {
        grid-template-columns: 1fr 1fr;
    }

    /* --- Intro images --- */
    .intro-immersive-images {
        grid-template-columns: 1fr;
    }

    .intro-img-accent {
        margin-top: 0;
    }

    .signature-text {
        font-size: 2rem;
    }

    /* --- Reviews --- */
    .review-card {
        padding: 1.5rem;
    }

    /* --- Form --- */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        text-align: center;
    }

    /* --- Map --- */
    .map-info {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* --- Conditions --- */
    .conditions-grid,
    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .quick-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* --- Activities --- */
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    /* --- Specs --- */
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .space-features {
        grid-template-columns: 1fr;
    }

    /* --- Contact (old) --- */
    .contact-cards {
        grid-template-columns: 1fr;
    }

    /* --- Dispo --- */
    .dispo-layout {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .seasons-cards {
        gap: 0.4rem;
    }

    .season-card-simple {
        padding: 0.5rem 0.9rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col:first-child {
        grid-column: auto;
    }

    .footer-col h3,
    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        font-size: 0.78rem;
    }

    /* --- CTA --- */
    .cta-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* --- Key figures --- */
    .key-figures-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .key-figure {
        gap: 0.25rem;
    }

    .key-figure-number {
        font-size: 2rem;
    }
}

/* ================================================
   RESPONSIVE — MOBILE (max 480px)
   ================================================ */
@media (max-width: 480px) {
    /* --- Container --- */
    .container,
    .container-full {
        padding: 0 1rem;
    }

    .header-container {
        padding: 0.65rem 1rem;
    }

    /* --- Logo --- */
    .logo-img {
        height: 45px;
    }

    /* --- Sections --- */
    .section {
        padding: 3rem 0;
    }

    .first-section {
        padding-top: 6rem;
    }

    /* --- Hero --- */
    .hero-cinematic {
        min-height: 450px;
    }

    .hero-cinematic-title {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .hero-cinematic-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-cinematic-content {
        padding: 0 1rem;
    }

    .hero-location-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1.5px;
    }

    /* --- Nav link in mobile menu --- */
    .nav-link {
        font-size: 1.25rem;
    }

    /* --- Typography --- */
    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    h3 {
        font-size: clamp(1.15rem, 3vw, 1.4rem);
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    /* --- Buttons --- */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.88rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }

    /* --- Gallery carousel --- */
    .carousel-slide img {
        height: 220px;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

    .carousel-arrow-left {
        left: 0.5rem;
    }

    .carousel-arrow-right {
        right: 0.5rem;
    }

    .carousel-caption {
        font-size: 0.85rem;
        padding: 1rem 1rem 0.75rem;
    }

    .carousel-dots {
        gap: 0.35rem;
    }

    /* --- Gallery full --- */
    .gallery-full {
        grid-template-columns: 1fr;
    }

    /* --- Intro --- */
    .intro-img-main img {
        height: 220px;
    }

    .intro-img-accent img {
        height: 180px;
    }

    /* --- Experience cards --- */
    .experience-card-large .experience-card-image,
    .experience-card-image {
        min-height: 200px;
    }

    /* --- Activities --- */
    .activity-image {
        height: 180px;
    }

    .activity-content {
        padding: 1rem;
    }

    /* --- CTA --- */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-buttons {
        gap: 0.75rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-col h3 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col a {
        font-size: 0.88rem;
    }

    /* --- Reviews --- */
    .review-card {
        padding: 1.25rem;
    }

    .review-text {
        font-size: 0.92rem;
    }
}
