/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #ba901b;
    --gold-light: #d4a932;
    --dark: #0a0a0a;
    --dark-soft: #1a1a1a;
    --text: #3d3d3d;
    --text-light: #6b6b6b;
    --beige: #c7ab8a;
    --beige-light: #e8dcc5;
    --bg: #faf9f7;
    --bg-warm: #f5f2ed;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 144, 27, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== SECTION LABELS ===== */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--beige-light);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 48px;
}

.section-title-light {
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 0;
    height: 0;
    object-fit: contain;
    opacity: 0;
    transition: all var(--transition);
}

.navbar.scrolled .nav-logo-img {
    width: 50px;
    height: 50px;
    opacity: 1;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    transition: color var(--transition);
}

.logo-tagline {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--dark);
}

.navbar.scrolled .logo-tagline {
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    background: var(--dark);
    overflow: hidden;
}

/* Panneau gauche : image pc.png pleine hauteur */
.hero-left {
    position: relative;
    width: 40%;
    min-height: 100vh;
    flex-shrink: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease both;
}

.hero-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* Panneau droit : image de fond + texte */
.hero-right {
    position: relative;
    flex: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('design/BG.JPG');
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-desktop {
    display: block;
}

.hero-bg-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-mobile-logo {
    display: none;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 10%;
    max-width: 600px;
}

.hero-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease both;
}

.hero-services-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.15em;
    line-height: 1.3;
    margin-bottom: 28px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-separator {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.12em;
    font-style: italic;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-brand,
.hero-services {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 30%;
    transform: translateX(50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
    animation: bounce 2s infinite 2s;
}

.hero-scroll a:hover {
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== ÉTAPES / TIMELINE ===== */
.etapes {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.etapes::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(186, 144, 27, 0.05) 0%, transparent 70%);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(186, 144, 27, 0.1));
}

.timeline-item {
    position: relative;
    padding-left: 72px;
    padding-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: 8px;
    top: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--beige-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

/* ===== INSPIRATIONS ===== */
.inspirations {
    padding: 120px 0;
    background: var(--bg);
}

.inspirations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.inspirations-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.inspirations-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.visual-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.visual-card-1 {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #c7ab8a, #8c6d4f);
}

.visual-card-2 {
    background: linear-gradient(135deg, #d4c5b0, #a89279);
}

.visual-card-3 {
    background: linear-gradient(135deg, #ba901b, #8a6a10);
}

.visual-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.visual-card-inner span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
    text-decoration: none;
}

.gallery-card {
    border-radius: var(--radius);
    height: 160px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

.gallery-card:hover {
    transform: scale(1.03);
}

.gallery-card-tall {
    grid-row: span 2;
    height: 100%;
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    gap: 8px;
}

.gallery-card-label {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== CTA ===== */
/* ===== FOOTER ===== */
.footer {
    background: var(--dark-soft);
    padding: 80px 0 32px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact li {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inspirations-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text) !important;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
    }

    .hero-left {
        display: none;
    }

    .hero-right {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        background-image: url('design/BG.JPG');
        background-size: cover;
        background-position: center;
    }

    .hero-bg-desktop {
        display: none;
    }

    .hero-bg-mobile {
        display: block;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-mobile-logo {
        display: block;
        position: relative;
        z-index: 2;
        width: 100%;
        margin-bottom: 32px;
        animation: fadeInUp 1s ease both;
    }

    .hero-mobile-logo-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-text {
        text-align: center;
        padding: 0 24px;
    }

    .hero-separator {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-brand {
        display: none;
    }

    .hero-services-title {
        font-size: clamp(20px, 5vw, 30px);
        letter-spacing: 0.1em;
    }

    .hero-tagline {
        font-size: 14px;
    }
    }

    .hero-scroll {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .visual-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
    }

    .timeline-line {
        left: 16px;
    }

    .timeline-item {
        padding-left: 56px;
    }

    .timeline-marker {
        left: 0;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .services,
    .etapes,
    .inspirations {
        padding: 80px 0;
    }
}

/* ===================== BOOKING ===================== */
.booking {
    padding: 0;
    background: var(--bg);
}

/* Booking Hero (CTA) */
.booking-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1a1510 0%, #2c2418 100%);
    overflow: hidden;
}

.booking-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(186, 144, 27, 0.1) 0%, transparent 60%);
}

.booking-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.booking-hero h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.booking-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.7;
}

.booking-hero-or {
    margin-top: 32px !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.4) !important;
    font-style: italic;
}

.booking-form-section {
    padding: 80px 0 120px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Steps Indicator */
.booking-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    gap: 0;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.step-dot span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-dot small {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.step-dot.active span {
    background: var(--gold);
    color: #fff;
}

.step-dot.active small {
    color: var(--dark);
}

.step-dot.done span {
    background: var(--dark);
    color: #fff;
}

.step-dot.done small {
    color: var(--dark);
}

.step-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    max-width: 60px;
    margin: 0 12px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.step-line.done {
    background: var(--dark);
}

/* Booking Steps */
.booking-step {
    animation: fadeUp 0.4s ease;
}

.booking-step.hidden {
    display: none;
}

.booking-step h3 {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.booking-info {
    text-align: center;
    color: #888;
    margin-bottom: 24px;
    font-size: 14px;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.booking-next,
.booking-prev {
    margin-top: 16px;
    align-self: center;
}

.btn-outline-dark {
    padding: 12px 32px;
    border: 2px solid var(--dark);
    color: var(--dark);
    background: transparent;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: #fff;
}

.booking-nav {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* Calendar */
.calendar {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-month {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.calendar-nav {
    background: none;
    border: 2px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--dark);
}

.calendar-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: none;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--beige-light);
}

.calendar-day.today {
    border: 2px solid var(--gold);
}

.calendar-day.selected {
    background: var(--gold);
    color: #fff;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.fully-booked {
    color: #ccc;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Time Slots */
.time-slots-wrapper {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.time-period {
    flex: 1;
}

.time-period h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 16px;
    text-align: center;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot {
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.time-slot:hover:not(.booked) {
    border-color: var(--gold);
    background: rgba(186,144,27,0.05);
}

.time-slot.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
}

.time-slot.booked {
    background: #f5f5f5;
    color: #bbb;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 40px 0;
}

.confirmation-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.confirmation-details {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.confirmation-details p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.confirmation-details p:last-child {
    border-bottom: none;
}

.confirmation-details strong {
    color: var(--dark);
}

.confirmation-note {
    color: #888;
    font-size: 13px;
    margin-bottom: 24px;
}

/* Booking Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .time-slots-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .booking-steps-indicator {
        gap: 0;
    }

    .step-dot small {
        font-size: 9px;
    }

    .step-line {
        max-width: 30px;
        margin: 0 6px;
    }

    .step-dot span {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* ===================== NOUS RENDRE VISITE ===================== */
.visit {
    padding: 120px 0;
    background: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.visit-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(186, 144, 27, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.visit-item h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 4px;
}

.visit-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.visit-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.visit-item a:hover {
    color: var(--dark);
}

.horaires p {
    margin-bottom: 6px;
}

.horaires strong {
    color: var(--dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horaire-ferme {
    color: #bbb;
    font-style: italic;
    font-size: 13px;
}

.visit-map {
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.visit-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    height: 100%;
}

@media (max-width: 768px) {
    .visit {
        padding: 80px 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-map {
        min-height: 300px;
    }
}
