/* =========================================
   Le Temps d'une Barbe — Styles principaux
   ========================================= */

/* --- CSS Variables --- */
:root {
    --primary: #1a1a1a;
    --secondary: #c8a96e;
    --tertiary: #f5f0eb;
    --text-dark: #333;
    --text-light: #f5f0eb;
    --success: #2ecc71;
    --error: #e74c3c;
    --slot-free: #c8a96e;
    --slot-taken: #555;
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(200,169,110,0.3);
    --radius: 8px;
    --radius-lg: 16px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #dfc48a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: 2px; }
h2 { font-size: 2.5rem; letter-spacing: 2px; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.2rem; }

.gold { color: var(--secondary); }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    scroll-margin-top: -20px;
}

.section-light {
    background: var(--tertiary);
    color: var(--text-dark);
}

.section-dark {
    background: var(--primary);
    color: var(--text-light);
}

#zone {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200,169,110,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(200,169,110,0.04) 0%, transparent 50%),
        linear-gradient(180deg, #1a1a1a 0%, #141210 50%, #1a1a1a 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 12px;
    color: inherit;
}

.section-title--left {
    text-align: left;
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 60px;
    font-weight: 300;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-gold {
    background: var(--secondary);
    color: var(--primary);
}

.btn-gold:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
    color: var(--primary);
    background: #dfc48a;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(245,240,235,0.3);
    color: var(--text-light);
}

.btn-outline-light:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-cta {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #dfc48a;
    transform: scale(1.03);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    display: block;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Revert : 0.4 → 0.6 */
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.15) 0%,
        rgba(26, 26, 26, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--text-light);
    margin-bottom: 40px;
    letter-spacing: 3px;
    line-height: 1.15;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 18px 48px;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(200, 169, 110, 0.4);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--secondary);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.7;
    cursor: pointer;
    text-decoration: none;
}
.scroll-indicator:hover {
    opacity: 1;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Services Grid --- */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.services-grid .service-card {
    width: calc(33.333% - 16px);
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 0;
    padding-bottom: 32px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: default;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-img--gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-overlay {
    color: var(--secondary);
}

.service-card .btn {
    margin-top: 12px;
}

.service-icon {
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-icon svg {
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-name {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-desc {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-card--devis {
    border: 2px dashed var(--secondary);
}

.service-card--devis .service-price {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

/* --- Booking Stepper --- */
.booking-stepper {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.stepper-track {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #444;
    z-index: 0;
}

.stepper-progress {
    height: 100%;
    background: var(--secondary);
    width: 0%;
    transition: width 0.5s ease;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #555;
    background: var(--primary);
    color: #777;
    transition: var(--transition);
}

.step.active .step-circle {
    border-color: var(--secondary);
    color: var(--secondary);
    animation: stepPulse 2s ease-in-out infinite;
}

.step.completed .step-circle {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.step-label {
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--secondary);
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(200,169,110,0); }
}

/* --- Booking Container --- */
.booking-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.booking-step {
    display: none;
    animation: fadeSlideIn 0.4s ease forwards;
}

.booking-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reservation page */
.reservation-page {
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    background:
        linear-gradient(180deg, rgba(18,16,14,0.92) 0%, rgba(26,26,26,0.95) 50%, rgba(18,16,14,0.97) 100%),
        url('../images/reservation-bg.jpg') center/cover no-repeat fixed;
}

/* CTA section */
.section-cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section-cta .section-title,
.section-cta .section-subtitle {
    color: #fff;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.05);
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.75);
}
.booking-service-card--devis {
    border: 1px dashed var(--secondary) !important;
    background: transparent !important;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.booking-service-card--devis .bsc-price {
    color: var(--secondary);
    font-style: italic;
}

.step-title {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.6rem;
}

.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}

.stepper-row {
    margin-bottom: 40px;
}

.stepper-row .booking-stepper {
    position: relative;
    margin-bottom: 0;
}

.stepper-back {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

.step-nav .btn-prev {
    margin-right: auto;
}

/* Booking Service Cards */
.booking-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.booking-service-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid #444;
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-light);
    font-family: var(--font-body);
}

.booking-service-card:hover {
    border-color: var(--secondary);
    background: rgba(200,169,110,0.05);
}

.booking-service-card.selected {
    border-color: var(--secondary);
    background: rgba(200,169,110,0.1);
    box-shadow: var(--shadow-gold);
}

.bsc-name {
    font-family: var(--font-title);
    font-size: 1.2rem;
}

.bsc-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

/* --- Calendar --- */
.calendar {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #333;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-month {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--text-light);
    text-transform: capitalize;
}

.calendar-nav {
    background: none;
    border: 1px solid #444;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.calendar-nav:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    border: none;
    background: none;
    font-family: var(--font-body);
}

.cal-day:hover:not(.disabled):not(.closed) {
    background: rgba(200,169,110,0.2);
    color: var(--secondary);
}

.cal-day.selected {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}

.cal-day.disabled {
    color: #444;
    cursor: default;
    pointer-events: none;
}

.cal-day.closed {
    color: #664444;
    cursor: default;
    pointer-events: none;
    text-decoration: line-through;
}

.cal-day.today {
    border: 1px solid var(--secondary);
}

.cal-day.empty {
    cursor: default;
    pointer-events: none;
}

/* --- Slots --- */
.step-date-label {
    text-align: center;
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.slot-btn {
    padding: 16px;
    border-radius: 50px;
    border: 2px solid var(--slot-free);
    background: transparent;
    color: var(--slot-free);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.slot-btn:hover:not(.taken) {
    background: var(--secondary);
    color: var(--primary);
}

.slot-btn.selected {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.slot-btn.taken {
    border-color: var(--slot-taken);
    color: var(--slot-taken);
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Skeleton loading */
.slots-loading {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.skeleton-slot {
    height: 52px;
    border-radius: 50px;
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* --- Form (floating labels) --- */
.step4-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: start;
}

.step4-form {
    max-width: none;
}

.form-group {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.floating-input {
    position: relative;
    margin-bottom: 12px;
}

.floating-input input,
.floating-input textarea,
.floating-input select {
    width: 100%;
    padding: 18px 14px 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    border-radius: 10px;
    outline: none;
    backdrop-filter: blur(4px);
}

.section-light .floating-input input,
.section-light .floating-input textarea,
.section-light .floating-input select {
    color: var(--text-dark);
    background: rgba(0,0,0,0.03);
    border-color: #ccc;
}

.floating-input input:focus,
.floating-input textarea:focus,
.floating-input select:focus {
    border-color: var(--secondary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(191,161,100,0.15);
}

.floating-input label {
    position: absolute;
    top: 14px;
    left: 12px;
    color: #999;
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
}

.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input input.has-value + label,
.floating-input textarea:focus + label,
.floating-input textarea:not(:placeholder-shown) + label,
.floating-input select:focus + label,
.floating-input select.has-value + label {
    top: 2px;
    font-size: 0.72rem;
    color: var(--secondary);
}

.floating-input input::placeholder,
.floating-input textarea::placeholder {
    color: transparent;
}

.floating-input select option {
    background: var(--primary);
    color: var(--text-light);
}

.section-light .floating-input select option {
    background: #fff;
    color: var(--text-dark);
}

/* Validation icons */
.input-icon::after {
    position: absolute;
    right: 12px;
    top: 14px;
    font-size: 1.1rem;
}

.floating-input.valid .input-icon::after {
    content: '✓';
    color: var(--success);
}

.floating-input.invalid .input-icon::after {
    content: '✕';
    color: var(--error);
}

.floating-input.valid input {
    border-color: var(--success);
}

.floating-input.invalid input {
    border-color: var(--error);
}

.zone-warning {
    color: var(--error);
    font-size: 0.875rem;
    padding: 10px 14px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--radius);
    border-left: 3px solid var(--error);
}

/* --- Recap Card --- */
.recap-card {
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.recap-card h4 {
    font-family: var(--font-title);
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.recap-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}

.recap-line span {
    color: #999;
}

.recap-line strong {
    color: var(--text-light);
}

.recap-divider {
    height: 1px;
    background: rgba(200,169,110,0.2);
    margin: 8px 0;
}

.recap-total strong {
    color: var(--secondary);
    font-size: 1.3rem;
}

/* --- Confirmation --- */
.confirmation-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.success-checkmark {
    margin-bottom: 24px;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke: var(--success);
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: strokeCircle 0.6s ease forwards;
}

.checkmark-check {
    stroke: var(--success);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.4s 0.5s ease forwards;
}

@keyframes strokeCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
    to { stroke-dashoffset: 0; }
}

.confirmation-title {
    color: var(--success);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.confirmation-details {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.confirmation-details p {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.confirmation-details p:last-child {
    border-bottom: none;
}

.confirmation-details span {
    color: #999;
    flex-shrink: 0;
}

.confirmation-details strong {
    color: var(--text-light);
    text-align: right;
}

.confirmation-email {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.confirmation-cancel {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

/* --- About --- */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ddd 0%, #c8a96e33 50%, #bbb 100%);
    position: relative;
    overflow: hidden;
}

.about-intro {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-text p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.about-text strong {
    color: var(--primary);
}

/* --- Zone --- */
.zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zone-map-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.zone-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px dashed var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: zoneGlow 3s ease-in-out infinite;
}

@keyframes zoneGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(200,169,110,0.1); }
    50% { box-shadow: 0 0 40px rgba(200,169,110,0.2); }
}

.zone-center {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 600;
}

.zone-radius {
    color: #999;
    font-size: 0.9rem;
    margin-top: 4px;
}

.zone-communes h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.communes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.commune-tag {
    padding: 6px 16px;
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary);
    transition: var(--transition);
}

.commune-tag:hover {
    background: rgba(200,169,110,0.1);
    border-color: var(--secondary);
}

.zone-note {
    color: #999;
    font-size: 0.9rem;
}

.zone-note a {
    text-decoration: underline;
}

/* --- Honeypot --- */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* --- Contact --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-item a,
.contact-item span {
    color: #666;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

/* ===== Coupe structured fields ===== */
.coupe-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    margin-bottom: 16px;
    background: rgba(200,169,110,0.06);
    border: 1px solid rgba(200,169,110,0.25);
    border-radius: var(--radius);
}
.coupe-fields[hidden] { display: none; }

.chips-hint {
    margin: -4px 0 6px;
    font-size: 0.82rem;
    color: #888;
    font-style: italic;
}

.quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}
.quick-chips .chip {
    padding: 6px 14px;
    border: 1px solid rgba(200,169,110,0.4);
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
}
.quick-chips .chip:hover {
    background: rgba(200,169,110,0.15);
    border-color: #c8a96e;
}
.quick-chips .chip.active {
    background: #c8a96e;
    color: #fff;
    border-color: #c8a96e;
}

.address-autocomplete {
    position: relative;
}
.address-suggestions {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 240px;
    overflow-y: auto;
    z-index: 50;
}
.address-suggestions[hidden] { display: none; }
.address-suggestions li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--primary);
}
.address-suggestions li:hover,
.address-suggestions li.active {
    background: rgba(200,169,110,0.12);
}

.form-feedback {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(46,204,113,0.1);
    color: var(--success);
    border: 1px solid rgba(46,204,113,0.3);
}

.form-feedback.error {
    display: block;
    background: rgba(231,76,60,0.1);
    color: var(--error);
    border: 1px solid rgba(231,76,60,0.3);
}

/* --- Footer --- */
.footer {
    background: #111;
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-tagline {
    color: #999;
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    color: #999;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--secondary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary);
    font-family: var(--font-title);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: #999;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.8rem;
}

/* --- Phone Sticky (mobile) --- */
.phone-sticky {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    z-index: 999;
    transition: var(--transition);
}

.phone-sticky:hover {
    transform: scale(1.1);
    color: var(--primary);
}

/* --- Popup Modal --- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.popup-overlay.popup-visible {
    opacity: 1;
}

.popup-card {
    background: var(--primary);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 40px 36px 32px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(200, 169, 110, 0.15);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.popup-visible .popup-card {
    transform: translateY(0) scale(1);
}

.popup-title {
    font-family: var(--font-title);
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.popup-dates {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.popup-message {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.popup-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.popup-close:hover {
    background: #dfc48a;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-ready .reveal:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid #c8a96e;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner p a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.btn-cookie-accept {
    background: var(--secondary);
    color: var(--primary);
}

.btn-cookie-accept:hover {
    background: #dfc48a;
}

.btn-cookie-refuse {
    background: transparent;
    border: 1px solid #666;
    color: #ccc;
}

.btn-cookie-refuse:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.cookie-banner-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* ================================
   RESPONSIVE
   ================================ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid .service-card {
        width: calc(50% - 12px);
    }

    .about-layout,
    .zone-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step4-layout {
        grid-template-columns: 1fr;
    }

    .step4-recap {
        order: -1;
    }

    .recap-card {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }

    .section {
        padding: 60px 0;
    }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26,26,26,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.3s ease;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-cta {
        text-align: center;
        width: 100%;
    }

    /* Hero mobile */
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    /* Services mobile */
    .services-grid .service-card {
        width: 100%;
        max-width: 400px;
    }

    /* Booking mobile */
    .booking-services-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
    }

    .stepper-steps {
        gap: 4px;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .stepper-track {
        top: 16px;
        left: 20px;
        right: 20px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-loading {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step4-layout {
        grid-template-columns: 1fr;
    }

    .step4-recap {
        order: -1;
    }

    .step4-form {
        max-width: 100%;
    }

    /* Zone mobile */
    .zone-circle {
        width: 200px;
        height: 200px;
    }

    .zone-center {
        font-size: 1.4rem;
    }

    /* Contact mobile */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Phone sticky */
    .phone-sticky {
        display: flex;
    }

    /* Add bottom padding for sticky phone button */
    .footer {
        padding-bottom: 80px;
    }

    /* Cookie banner mobile */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .cookie-banner p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .calendar {
        padding: 16px;
    }

    .slots-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .slot-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}
