/* ==============================================
   ESCALE DU GOLFE — Design System
   escaledugolfe.com
   ============================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Custom Properties --- */
:root {
    /* Brand Colors */
    --color-platinum: #EDE7E9;
    --color-khaki: #BEAE89;
    --color-raw-umber: #9C6130;
    --color-battleship: #768174;
    --color-dark-brown: #3B3B18;

    /* Derived */
    --color-khaki-light: #cfc2a3;
    --color-khaki-dark: #a89670;
    --color-raw-umber-light: #b5804e;
    --color-raw-umber-dark: #7a4d26;
    --color-khaki-10: rgba(190, 174, 137, 0.1);
    --color-khaki-50: rgba(190, 174, 137, 0.05);
    --color-khaki-85: rgba(190, 174, 137, 0.85);

    /* Neutrals */
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #f9f7f5;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-lighter: #9ca3af;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-500: #6b7280;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-red-500: #ef4444;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --container-narrow: 1024px;
    --container-text: 768px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(59, 59, 24, 0.06);
    --shadow-md: 0 4px 12px rgba(59, 59, 24, 0.08);
    --shadow-lg: 0 10px 25px rgba(59, 59, 24, 0.1);
    --shadow-xl: 0 20px 40px rgba(59, 59, 24, 0.12);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { line-height: 1.7; }
strong { font-weight: 700; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1rem; }
.container-text { max-width: var(--container-text); margin: 0 auto; padding: 0 1rem; }

/* --- Grid System --- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
    .container { padding: 0 1.5rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Flexbox Utilities --- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* --- Spacing --- */
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }

/* --- Text --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.75; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.15em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* Text colors */
.text-white { color: #fff; }
.text-khaki { color: var(--color-khaki); }
.text-raw-umber { color: var(--color-raw-umber); }
.text-dark-brown { color: var(--color-dark-brown); }
.text-battleship { color: var(--color-battleship); }
.text-gray { color: var(--color-text-light); }
.text-gray-light { color: var(--color-text-lighter); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    gap: 0.5rem;
    line-height: 1.4;
}
.btn-primary {
    background: var(--color-khaki);
    color: var(--color-white);
}
.btn-primary:hover {
    background: var(--color-khaki-dark);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}
.btn-secondary {
    background: var(--color-raw-umber);
    color: var(--color-white);
}
.btn-secondary:hover {
    background: var(--color-raw-umber-dark);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}
.btn-outline {
    border: 2px solid var(--color-khaki);
    color: var(--color-khaki);
    background: transparent;
}
.btn-outline:hover {
    background: var(--color-khaki);
    color: var(--color-white);
}
.btn-white {
    background: var(--color-white);
    color: var(--color-raw-umber);
}
.btn-white:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}
.btn-outline-white {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-raw-umber);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* --- Cards --- */
.card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid var(--color-border-light);
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* --- Header / Navigation --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.site-header nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.75rem 1rem;
}
.nav-desktop { display: none; }
.nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--color-raw-umber);
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 14rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-gray-100);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 50;
    padding: 0.25rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-gray-700);
    font-size: 0.95rem;
    transition: background 0.15s ease;
}
.nav-dropdown-menu a:hover {
    background: var(--color-khaki-50);
    color: var(--color-raw-umber);
}
.nav-dropdown-menu a:first-child { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.nav-dropdown-menu a:last-child { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
.nav-cta {
    background: var(--color-khaki);
    color: var(--color-white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: none;
}
.nav-cta:hover {
    background: var(--color-khaki-dark);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}
.nav-chevron {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Mobile menu */
.mobile-menu-btn {
    color: var(--color-gray-700);
    padding: 0.5rem;
}
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 0.625rem 0;
    color: var(--color-gray-700);
    font-weight: 500;
}
.mobile-menu a:hover { color: var(--color-raw-umber); }
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.625rem 0;
    color: var(--color-gray-700);
    font-weight: 500;
}
.mobile-submenu-content {
    display: none;
    padding-left: 1rem;
    margin-left: 0.5rem;
    border-left: 2px solid var(--color-khaki-light);
}
.mobile-submenu-content.open { display: block; }
.mobile-submenu-content a {
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding: 0.5rem 0;
}
.mobile-submenu-content a:hover { color: var(--color-raw-umber); }
.mobile-cta {
    display: block;
    margin-top: 1rem;
    background: var(--color-khaki);
    color: var(--color-white);
    padding: 0.875rem;
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .site-header nav { padding: 0.75rem 1.5rem; }
    .nav-desktop { display: flex; align-items: center; gap: 1.75rem; }
    .nav-cta { display: block; }
    .mobile-menu-btn { display: none; }
    .mobile-menu { display: none !important; }
}

/* Logo */
.logo img { height: 3rem; width: auto; }
@media (min-width: 768px) {
    .logo img { height: 3.5rem; }
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (min-width: 768px) { .hero { height: 90vh; } }

.hero img.hero-bg, .hero picture { position: absolute; inset: 0; }
.hero img.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem 4rem;
    color: var(--color-white);
}
.hero-welcome {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    line-height: 1;
    margin-bottom: 1rem;
    font-size: clamp(3.2rem, 9vw, 11rem);
}
.hero h1 {
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    max-width: 56rem;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.hero-sub {
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.hero-locations {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.hero-page {
    height: 40vh;
    min-height: 280px;
}
@media (min-width: 768px) { .hero-page { height: 50vh; min-height: 360px; } }

/* Scroll arrow */
.scroll-arrow {
    margin-top: 2rem;
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.7);
}
.scroll-arrow svg { width: 2rem; height: 2rem; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Sections --- */
.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-khaki { background: var(--color-khaki); color: var(--color-white); }
.section-dark { background: var(--color-dark-brown); color: var(--color-white); }
.section-platinum { background: var(--color-platinum); }

@media (min-width: 768px) {
    .section { padding: 6rem 0; }
}

/* --- Concept Cards (Icon + Title + Text + Link) --- */
.concept-icon {
    width: 4rem;
    height: 4rem;
    background: var(--color-khaki-10);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.concept-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-khaki);
}
.section-khaki .concept-icon { background: rgba(255,255,255,0.15); }
.section-khaki .concept-icon svg { color: var(--color-white); }

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-raw-umber);
    font-weight: 600;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}
.card-link:hover { gap: 0.75rem; }
.section-khaki .card-link { color: var(--color-white); }

/* --- Stats / Chiffres Clés --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}
@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
}
@media (min-width: 768px) { .testimonial-card { padding: 3rem; } }

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-khaki);
    opacity: 0.3;
}
.testimonial { display: none; text-align: center; }
.testimonial.active { display: block; }
.testimonial blockquote {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}
@media (min-width: 768px) {
    .testimonial blockquote { font-size: 1.25rem; }
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-khaki);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
}
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}
.carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-lighter);
    transition: all 0.2s ease;
}
.carousel-btn:hover {
    color: var(--color-khaki);
    border-color: var(--color-khaki);
}
.carousel-btn svg { width: 1.25rem; height: 1.25rem; }
.carousel-dots { display: flex; align-items: center; }
.carousel-dot {
    padding: 0.75rem;
}
.carousel-dot span {
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--color-gray-300);
    transition: background 0.2s ease;
}
.carousel-dot.active span,
.carousel-dot span.active {
    background: var(--color-khaki);
}

/* --- CTA Section (image overlay) --- */
.cta-overlay {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}
.cta-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay-bg {
    position: absolute;
    inset: 0;
    background: var(--color-khaki-85);
}
.cta-overlay-content {
    position: relative;
    z-index: 2;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-dark-brown);
    color: var(--color-white);
    padding: 3rem 0;
}
.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}
.footer-link {
    color: var(--color-gray-300);
    transition: color 0.2s ease;
}
.footer-link:hover { color: var(--color-khaki); }
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.social-icon:hover { background: var(--color-khaki); }
.social-icon svg { width: 1.25rem; height: 1.25rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-lighter);
}
.footer-bottom a { color: var(--color-text-lighter); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--color-khaki); }
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.15s; }
.fade-up-delay-2 { transition-delay: 0.3s; }
.fade-up-delay-3 { transition-delay: 0.45s; }

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.375rem;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--color-white);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-khaki);
    box-shadow: 0 0 0 3px var(--color-khaki-10);
}
.form-input.error,
.form-textarea.error {
    border-color: var(--color-red-500);
}
.form-textarea { resize: vertical; min-height: 8rem; }

/* --- FAQ Accordion --- */
.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    text-align: left;
    gap: 1rem;
}
.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-text-lighter);
}
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Tarifs Tabs --- */
.tarifs-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.tarif-tab {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-light);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}
.tarif-tab.active,
.tarif-tab:hover {
    background: var(--color-khaki);
    color: var(--color-white);
    border-color: var(--color-khaki);
}
.tarif-panel { display: none; }
.tarif-panel.active { display: block; }

/* --- Steps (Comment ça marche) --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--color-white);
    color: var(--color-dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* --- Property Cards --- */
.property-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.property-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.property-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.property-card:hover .property-card-img img {
    transform: scale(1.05);
}
.property-card-body {
    padding: 1.25rem;
}
.property-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

/* --- Circular Image Cards (Séjour) --- */
.circle-card {
    text-align: center;
    cursor: pointer;
}
.circle-card-img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.75rem;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}
.circle-card:hover .circle-card-img {
    border-color: var(--color-khaki);
}
.circle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 768px) {
    .circle-card-img { width: 9rem; height: 9rem; }
}

/* --- Feature Pills --- */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: var(--color-khaki-10);
    color: var(--color-raw-umber);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    gap: 0.25rem;
}

/* --- Pricing Cards --- */
.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.pricing-card-header {
    background: var(--color-khaki);
    color: var(--color-white);
    padding: 1.25rem;
    text-align: center;
}
.pricing-card-header.dark {
    background: var(--color-dark-brown);
}
.pricing-card-body {
    padding: 1.5rem;
}

/* --- Check list --- */
.check-list { list-style: none; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-text-light);
}
.check-list li::before {
    content: '✓';
    color: var(--color-khaki);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1em;
}

/* --- Back to top / Floating button --- */
.floating-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--color-khaki);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
    z-index: 40;
    opacity: 0;
    pointer-events: none;
}
.floating-btn.visible {
    opacity: 1;
    pointer-events: auto;
}
.floating-btn:hover {
    background: var(--color-khaki-dark);
    transform: scale(1.1);
}
.floating-btn svg { width: 1.5rem; height: 1.5rem; }

/* --- Placeholder images --- */
.placeholder-img {
    background: linear-gradient(135deg, var(--color-platinum) 0%, var(--color-khaki-light) 50%, var(--color-battleship) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

/* --- Utilities --- */
.hidden { display: none !important; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.mx-auto { margin-left: auto; margin-right: auto; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.rounded-full { border-radius: var(--radius-full); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.border { border: 1px solid var(--color-border); }
.border-t { border-top: 1px solid var(--color-border); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.transition { transition: all 0.2s ease; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* --- Google Maps --- */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}
@media (min-width: 768px) {
    .map-container iframe { height: 450px; }
}

/* --- Contact Sidebar --- */
.contact-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 3fr 2fr; }
}
.contact-sidebar {
    position: sticky;
    top: 6rem;
}

/* --- Blog Cards --- */
.blog-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: var(--color-khaki-10);
    color: var(--color-raw-umber);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* --- Cookie Banner (styled from JS) --- */
/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-up { opacity: 1; transform: none; }
}
