/* ═══════════════════════════════════════════════════════════
   BOUDOIR VON ALLMEN — Design System
   Palette: Black #0a0a0a, Gold #c9a84c, Cream #f5e6c8
   ═══════════════════════════════════════════════════════════ */

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #161616;
    --black-hover: #1e1e1e;
    --gold: #b8975a;
    --gold-light: #d4b87a;
    --gold-dark: #937440;
    --gold-glow: rgba(184, 151, 90, 0.12);
    --gold-glow-strong: rgba(184, 151, 90, 0.25);
    --cream: #e8dcc8;
    --cream-soft: #ded1bb;
    --white: #f0ece4;
    --gray: #777;
    --gray-dark: #4a4a4a;
    --gray-light: #999;
    --red: #c44;
    --green: #5a8;
    --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-editorial: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 20px rgba(184,151,90,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

.text-gold { color: var(--gold); }
.required { color: var(--gold); }

/* ═══ PRELOADER ═══ */
#preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 100px; height: 100px; object-fit: contain; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.preloader-ring {
    width: 120px; height: 120px; border: 2px solid transparent; border-top-color: var(--gold);
    border-radius: 50%; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); animation: spin 1.2s linear infinite;
}
.preloader-text {
    margin-top: 24px; font-family: var(--font-heading); font-size: 1.1rem;
    color: var(--gold); letter-spacing: 2px; font-style: italic;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes fadeInOut { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ═══ NAVIGATION ═══ */
#main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}
#main-nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.nav-inner {
    max-width: 1300px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: 50px; object-fit: contain; border-radius: 50%; transition: var(--transition); }
#main-nav.scrolled .nav-logo img { height: 40px; width: 40px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-link {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 400;
    color: var(--gray); letter-spacing: 3px;
    position: relative; padding: 4px 0; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.4s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
    color: var(--black); background: var(--gold); padding: 10px 28px;
    border-radius: var(--radius-pill); letter-spacing: 2px;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--gold);
    margin: 5px 0; transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition-slow);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-links { list-style: none; text-align: center; }
.mobile-link {
    display: block; font-family: var(--font-heading); font-size: 2rem;
    color: var(--white); padding: 16px 0; letter-spacing: 2px;
    transition: var(--transition);
}
.mobile-link:hover { color: var(--gold); }
.mobile-link.cta { color: var(--gold); font-weight: 600; }

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 14px 32px; border-radius: var(--radius-pill);
    border: none; cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black); box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
    color: var(--black);
}
.btn-gold:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-outline {
    background: transparent; color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
}
.btn-outline:hover {
    border-color: var(--gold); background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light); transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* ═══ SECTIONS ═══ */
.section { padding: 120px 40px; max-width: 1300px; margin: 0 auto; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; font-family: var(--font-body); font-size: 0.75rem;
    font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
    padding: 6px 20px; border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-pill);
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400; line-height: 1.3; color: var(--white);
    margin-bottom: 16px;
}
.section-subtitle {
    font-family: var(--font-body); font-size: 1rem; color: var(--gray);
    max-width: 600px; margin: 0 auto; font-weight: 300;
}

/* ═══ HERO ═══ */
.hero-section {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 100px; max-width: 100%; position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(184, 151, 90, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(184, 151, 90, 0.02) 0%, transparent 50%),
                var(--black);
}
.hero-particles {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-particle {
    position: absolute; width: 3px; height: 3px; background: var(--gold);
    border-radius: 50%; opacity: 0; animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.3; transform: translateY(-80px) scale(0.5); }
    100% { opacity: 0; transform: translateY(-100px) scale(0); }
}
.hero-content {
    max-width: 1300px; margin: 0 auto; padding: 0 40px;
    position: relative; z-index: 1; width: 100%;
}
.hero-left { max-width: 720px; }
.hero-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
    padding: 8px 20px; border: 1px solid rgba(184, 151, 90, 0.3);
    border-radius: var(--radius-pill); margin-bottom: 32px;
}
.hero-title {
    font-family: var(--font-display); font-weight: 400;
    line-height: 1.15; margin-bottom: 24px;
}
.hero-line { display: block; font-size: clamp(2.5rem, 5.5vw, 4.5rem); color: var(--white); }
.hero-line--accent {
    font-size: clamp(2.8rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--cream));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.05rem; color: var(--gray-light); font-weight: 300;
    line-height: 1.8; margin-bottom: 40px; max-width: 560px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 400;
    color: var(--gold); display: inline;
}
.hero-stat-plus { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); }
.hero-stat-label {
    display: block; font-size: 0.75rem; color: var(--gray);
    letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px;
}
.hero-stat-divider { width: 1px; height: 40px; background: rgba(184, 151, 90, 0.2); }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; height: 30px; } 50% { opacity: 1; height: 50px; } }

/* ═══ BOOKING ═══ */
.booking-section { max-width: 100%; background: var(--black-light); padding: 100px 40px; }
.booking-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.booking-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 48px;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }
.step-circle {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--gray-dark); color: var(--gray-dark);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    transition: var(--transition);
}
.step.active .step-circle, .step.completed .step-circle {
    border-color: var(--gold); color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}
.step.completed .step-circle { background: var(--gold); color: var(--black); }
.step-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-dark); transition: var(--transition); }
.step.active .step-label, .step.completed .step-label { color: var(--gold); }
.step-line { width: 80px; height: 1px; background: var(--gray-dark); transition: var(--transition); margin: 0 8px; margin-bottom: 24px; }

.booking-panel { display: none; animation: fadeInPanel 0.5s ease; }
.booking-panel.active { display: block; }
@keyframes fadeInPanel { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Prestations */
.presta-categories {
    display: flex; gap: 8px; flex-wrap: nowrap;
    overflow-x: auto; padding-bottom: 8px; /* Room for scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scroll */
    scrollbar-width: none; /* Hide scrollbar Firefox */
    justify-content: flex-start;
    margin-bottom: 24px;
}
.presta-categories::-webkit-scrollbar { display: none; /* Hide scrollbar WebKit */ }
@media (min-width: 768px) {
    .presta-categories { justify-content: center; }
}
.presta-cat-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: var(--radius-pill);
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: transparent; color: var(--gray-light);
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 1px; cursor: pointer; transition: var(--transition);
}
.presta-cat-btn svg { width: 16px; height: 16px; }
.presta-cat-btn:hover { border-color: var(--gold); color: var(--gold); }
.presta-cat-btn.active {
    background: rgba(201, 168, 76, 0.1); border-color: var(--gold);
    color: var(--gold);
}
.presta-list { display: grid; gap: 10px; max-height: 500px; overflow-y: auto; padding-right: 8px; }
.presta-list::-webkit-scrollbar { width: 4px; }
.presta-list::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

.presta-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--black-card); cursor: pointer; transition: var(--transition);
}
.presta-item:hover { border-color: rgba(201, 168, 76, 0.3); background: var(--black-hover); }
.presta-item.selected { border-color: var(--gold); background: rgba(201, 168, 76, 0.08); box-shadow: var(--shadow-gold); }
.presta-item.selected .presta-check { opacity: 1; transform: scale(1); }
.presta-name { font-size: 0.95rem; font-weight: 400; color: var(--white); flex: 1; }
.presta-price { font-family: var(--font-heading); font-size: 1rem; color: var(--gold); white-space: nowrap; margin-left: 16px; }
.presta-check {
    width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-left: 12px; opacity: 0.3; transform: scale(0.8); transition: var(--transition);
    flex-shrink: 0;
}
.presta-check svg { width: 12px; height: 12px; stroke: var(--gold); }
.presta-badge {
    font-size: 0.65rem; padding: 2px 8px; border-radius: var(--radius-pill);
    background: rgba(201, 168, 76, 0.15); color: var(--gold);
    margin-left: 8px; white-space: nowrap;
}

/* Calendar */
.datetime-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.calendar-wrapper {
    background: var(--black-card); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05); padding: 24px;
}
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cal-nav {
    background: none; border: 1px solid rgba(255,255,255,0.1);
    color: var(--gold); width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.cal-nav:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.1); }
.cal-nav svg { width: 18px; height: 18px; }
.cal-month { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); font-weight: 400; }
.calendar-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px;
}
.calendar-weekdays span {
    text-align: center; font-size: 0.7rem; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gray); padding: 8px 0;
}
.calendar-grid { 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; color: var(--white);
    cursor: pointer; transition: var(--transition); border: none; background: none;
}
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(201, 168, 76, 0.15); color: var(--gold); }
.cal-day.selected { background: var(--gold); color: var(--black); font-weight: 600; }
.cal-day.today { border: 1px solid rgba(201, 168, 76, 0.4); }
.cal-day.disabled { color: var(--gray-dark); cursor: not-allowed; opacity: 0.3; }
.cal-day.blocked { opacity: 0.4; background: rgba(220, 53, 69, 0.1); text-decoration: line-through; }
.cal-day.empty { cursor: default; }
.cal-day.has-bookings::after {
    content: ''; position: absolute; bottom: 4px; width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%;
}
.cal-day { position: relative; }

/* Time Picker */
.time-picker { background: var(--black-card); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.05); padding: 24px; }
.time-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.time-subtitle { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slot {
    padding: 12px 8px; border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.08); background: transparent;
    color: var(--white); font-family: var(--font-body); font-size: 0.85rem;
    cursor: pointer; transition: var(--transition); text-align: center;
}
.time-slot:hover:not(.booked) { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, 0.08); }
.time-slot.selected { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 600; }
.time-slot.booked {
    opacity: 0.25; cursor: not-allowed; text-decoration: line-through;
    border-style: dashed;
}

/* Form */
.form-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 700px; margin: 0 auto; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gray-light);
}
.form-group input, .form-group textarea {
    padding: 14px 18px; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1); background: var(--black-card);
    color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-dark); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Recap */
.recap-container { max-width: 600px; margin: 0 auto; }
.recap-title { font-family: var(--font-heading); font-size: 1.5rem; text-align: center; margin-bottom: 32px; color: var(--white); }
.recap-card {
    background: var(--black-card); border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-gold);
}
.recap-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.recap-label { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.recap-value { font-size: 0.95rem; color: var(--white); text-align: right; }
.recap-price { color: var(--gold); font-family: var(--font-heading); font-size: 1.1rem; }
.recap-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }

.booking-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; }

/* Success */
.booking-success { text-align: center; padding: 80px 20px; }
.success-inner { position: relative; }
.success-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.success-icon svg { width: 36px; height: 36px; stroke: var(--black); stroke-width: 3; }
@keyframes successPop { 0% { transform: scale(0) rotate(-45deg); } 100% { transform: scale(1) rotate(0); } }
.success-title { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.success-text { color: var(--gray-light); margin-bottom: 8px; }
.success-details { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }

.success-sparkles { position: absolute; inset: -50px; pointer-events: none; }
.sparkle {
    position: absolute; width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; animation: sparkle 1.5s ease-out forwards;
}
.sparkle.s1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle.s2 { top: 10%; right: 15%; animation-delay: 0.1s; }
.sparkle.s3 { bottom: 30%; left: 5%; animation-delay: 0.2s; }
.sparkle.s4 { bottom: 20%; right: 10%; animation-delay: 0.15s; }
.sparkle.s5 { top: 40%; left: 20%; animation-delay: 0.25s; }
.sparkle.s6 { top: 30%; right: 25%; animation-delay: 0.3s; }
@keyframes sparkle {
    0% { transform: scale(0) translate(0); opacity: 1; }
    50% { opacity: 1; }
    100% { transform: scale(1) translate(var(--tx, 30px), var(--ty, -50px)); opacity: 0; }
}
.sparkle.s1 { --tx: -40px; --ty: -60px; }
.sparkle.s2 { --tx: 50px; --ty: -40px; }
.sparkle.s3 { --tx: -60px; --ty: 30px; }
.sparkle.s4 { --tx: 40px; --ty: 50px; }
.sparkle.s5 { --tx: -20px; --ty: -70px; }
.sparkle.s6 { --tx: 30px; --ty: -30px; }

/* ═══ ABOUT ═══ */
.about-section { overflow: hidden; }

/* --- Part 1: Editorial layout --- */
.about-editorial {
    display: flex; gap: 40px;
    max-width: 780px; margin-bottom: 120px;
}
.about-editorial-aside {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; padding-top: 4px;
    flex-shrink: 0;
}
.about-vertical-line {
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.4;
}
.about-chapter {
    font-family: var(--font-body); font-size: 0.65rem;
    letter-spacing: 3px; color: var(--gray-dark);
    font-weight: 300; writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.about-editorial-content { flex: 1; }
.about-name {
    font-family: var(--font-body); font-size: 0.72rem;
    font-weight: 500; letter-spacing: 5px;
    color: var(--gold); margin-bottom: 32px;
    text-transform: uppercase;
}
.about-lead {
    font-family: var(--font-editorial); font-size: 1.15rem;
    color: var(--cream); font-weight: 400; line-height: 1.9;
    font-style: italic;
    margin-bottom: 32px;
}
.about-encart {
    background: rgba(184, 151, 90, 0.04);
    border-left: 2px solid rgba(184, 151, 90, 0.25);
    padding: 24px 28px;
}
.about-encart p {
    font-size: 0.9rem; color: var(--gray-light); font-weight: 300;
    line-height: 1.8; margin: 0;
}
.about-encart strong {
    color: var(--cream); font-weight: 400;
}

/* --- Part 2: Hommage — photo LEFT, text RIGHT --- */
.about-hommage {
    display: grid; grid-template-columns: 0.8fr 1.2fr;
    gap: 80px; align-items: center;
}
.about-hommage-text .about-chapter {
    writing-mode: horizontal-tb; transform: none;
    display: block; margin-bottom: 20px;
}
.about-hommage-question {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400; color: var(--white);
    line-height: 1.2; margin-bottom: 32px;
}
.about-hommage-text p {
    margin-bottom: 20px; color: var(--gray-light); font-weight: 300;
    font-size: 0.92rem; line-height: 1.85;
}
.about-hommage-text em {
    color: var(--cream); font-style: italic;
}
.about-signature {
    font-family: var(--font-editorial); font-size: 1rem;
    color: var(--gold); font-style: italic;
    margin-top: 28px; letter-spacing: 1px;
}

/* --- Royal Frame --- */
.about-hommage-photo {
    display: flex; justify-content: center; align-items: center;
}
.royal-frame {
    position: relative; padding: 12px;
    background: linear-gradient(135deg, rgba(184, 151, 90, 0.08), rgba(184, 151, 90, 0.02));
    border: 1px solid rgba(184, 151, 90, 0.35);
    transition: var(--transition-slow);
}
.royal-frame:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(184, 151, 90, 0.12);
    transform: translateY(-3px);
}
.royal-frame-corner {
    position: absolute; width: 20px; height: 20px;
    border-color: var(--gold); border-style: solid;
    z-index: 2; opacity: 0.5;
    transition: var(--transition);
}
.royal-frame:hover .royal-frame-corner { opacity: 1; }
.royal-frame-corner--tl { top: -3px; left: -3px; border-width: 2px 0 0 2px; }
.royal-frame-corner--tr { top: -3px; right: -3px; border-width: 2px 2px 0 0; }
.royal-frame-corner--bl { bottom: -3px; left: -3px; border-width: 0 0 2px 2px; }
.royal-frame-corner--br { bottom: -3px; right: -3px; border-width: 0 2px 2px 0; }
.royal-frame-inner {
    position: relative; overflow: hidden;
    border: 1px solid rgba(184, 151, 90, 0.15);
}
.royal-photo {
    display: block; width: 100%; max-width: 320px; height: auto;
    aspect-ratio: 4/5; object-fit: cover;
    filter: sepia(0.2) contrast(1.05) brightness(0.9);
    transition: var(--transition-slow);
}
.royal-frame:hover .royal-photo {
    filter: sepia(0.08) contrast(1.08) brightness(0.95);
    transform: scale(1.015);
}
.royal-frame-label {
    text-align: center; padding-top: 14px;
    font-family: var(--font-heading);
}
.royal-frame-label em {
    display: block; font-size: 1.2rem; color: var(--gold);
    font-style: italic;
    font-family: var(--font-display); letter-spacing: 1px;
}
.royal-frame-glow {
    position: absolute; top: 0; left: -100%; width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 151, 90, 0.06), transparent);
    animation: royalShimmer 6s ease-in-out infinite;
    pointer-events: none; z-index: 1;
}
@keyframes royalShimmer {
    0%, 100% { left: -100%; }
    50% { left: 200%; }
}

/* ═══ GALLERY ═══ */
.gallery-section { max-width: 100%; background: var(--black); }
.gallery-section > * { max-width: 1300px; margin-left: auto; margin-right: auto; }
.gallery-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-filter-btn {
    padding: 8px 20px; border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1); background: transparent;
    color: var(--gray-light); font-family: var(--font-body);
    font-size: 0.8rem; letter-spacing: 1px; cursor: pointer; transition: var(--transition);
}
.gallery-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; padding: 0 40px;
}
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 1; cursor: pointer; transition: var(--transition);
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        hsl(var(--hue), var(--sat), 8%) 0%,
        hsl(var(--hue), var(--sat), 15%) 50%,
        hsl(var(--hue), var(--sat), 10%) 100%
    );
}
.gallery-placeholder-inner {
    width: 100%; height: 100%; display: flex;
    align-items: center; justify-content: center; gap: 8px; padding: 20px;
}
.gallery-placeholder-inner.gradient {
    background: linear-gradient(180deg,
        hsl(var(--hue), var(--sat), 20%) 0%,
        hsl(var(--hue), var(--sat), 12%) 100%
    );
}
.gallery-placeholder-inner.gradient.dark {
    background: linear-gradient(135deg,
        hsl(var(--hue), 60%, 15%),
        hsl(var(--hue), 40%, 8%)
    );
}
.gallery-placeholder-inner.gradient.soft {
    background: linear-gradient(180deg,
        hsl(var(--hue), var(--sat), 25%),
        hsl(var(--hue), var(--sat), 15%)
    );
}
.gallery-nail {
    width: 14px; height: 28px; border-radius: 6px 6px 50% 50%;
    background: linear-gradient(180deg, hsl(var(--hue), var(--sat), 30%), hsl(var(--hue), var(--sat), 20%));
    border: 1px solid rgba(201, 168, 76, 0.15);
}
.gallery-art-stroke {
    width: 40px; height: 3px; background: var(--gold);
    border-radius: 2px; opacity: 0.4;
}
.gallery-art-stroke.s1 { transform: rotate(-30deg); }
.gallery-art-stroke.s2 { transform: rotate(15deg); width: 30px; }
.gallery-art-stroke.s3 { transform: rotate(-10deg); width: 50px; }
.gallery-art-gem {
    width: 12px; height: 12px; background: var(--gold);
    border-radius: 50%; opacity: 0.5;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}
.gallery-art-gem.g2 { width: 8px; height: 8px; opacity: 0.3; }
.gallery-art-gem.g4 { width: 16px; height: 16px; opacity: 0.6; }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.9) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px; opacity: 0; transition: var(--transition);
}
.gallery-tag {
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px;
}
.gallery-overlay h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); }
.gallery-overlay p { font-size: 0.8rem; color: var(--gray-light); }

.gallery-notice {
    text-align: center; margin-top: 48px; padding: 24px;
    border: 1px solid rgba(201, 168, 76, 0.15); border-radius: var(--radius);
    background: rgba(201, 168, 76, 0.03);
}
.gallery-notice p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }

/* ═══ CONTACT ═══ */
.contact-section { background: var(--black-light); max-width: 100%; }
.contact-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.contact-card {
    background: var(--black-card); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius); padding: 32px; text-align: center;
    transition: var(--transition);
}
.contact-card:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateY(-4px); }
.contact-icon { margin-bottom: 16px; }
.contact-icon svg { width: 32px; height: 32px; stroke: var(--gold); }
.contact-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.6; }
.contact-card a { color: var(--gold); }
.contact-small { font-size: 0.75rem !important; color: var(--gray) !important; margin-top: 8px; font-style: italic; }
.contact-map { padding: 0 40px; }

/* ═══ FOOTER ═══ */
.footer {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 60px 40px 30px; background: var(--black);
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; margin-bottom: 12px; }
.footer-brand p { color: var(--gray); font-size: 0.85rem; margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; }
.footer-links a { color: var(--gray); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; }
.footer-legal a {
    color: var(--gray-dark); font-size: 0.72rem; letter-spacing: 1px;
    text-transform: uppercase; transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }
.footer-bottom {
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem; color: var(--gray-dark); text-align: center;
}

/* ═══ INFO RIBBON ═══ */
.info-ribbon {
    position: relative; z-index: 999;
    margin-top: 80px;
    background: #0e0e0c;
    border-bottom: 1px solid rgba(184, 151, 90, 0.25);
    animation: ribbonSlideDown 0.6s ease-out;
}
.info-ribbon--closing { animation: ribbonSlideUp 0.4s ease-in forwards; }
.info-ribbon-inner {
    max-width: 900px; margin: 0 auto;
    padding: 20px 24px; display: flex; gap: 18px; align-items: flex-start;
    position: relative;
}
.info-ribbon-icon {
    flex-shrink: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-top: 2px;
}
.info-ribbon-icon svg { width: 24px; height: 24px; }
.info-ribbon-content { flex: 1; }
.info-ribbon-title {
    font-family: var(--font-heading); font-size: 0.95rem;
    color: var(--gold); margin-bottom: 6px; font-weight: 600;
    letter-spacing: 0.5px;
}
.info-ribbon-content p {
    font-size: 0.8rem; color: var(--cream-soft); line-height: 1.65;
    margin-bottom: 4px;
}
.info-ribbon-content p:last-child { margin-bottom: 0; }
.info-ribbon-content strong { color: var(--gold-light); }
.info-ribbon-close {
    flex-shrink: 0; background: none; border: none;
    color: var(--gray); cursor: pointer; padding: 4px;
    transition: var(--transition); margin-top: 2px;
}
.info-ribbon-close svg { width: 18px; height: 18px; }
.info-ribbon-close:hover { color: var(--gold); }
@keyframes ribbonSlideDown { from { max-height: 0; opacity: 0; overflow: hidden; } to { max-height: 300px; opacity: 1; } }
@keyframes ribbonSlideUp { from { max-height: 300px; opacity: 1; } to { max-height: 0; opacity: 0; padding: 0; overflow: hidden; } }

/* ═══ REPAIR POPUP ═══ */
.repair-popup-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; animation: fadeIn 0.3s ease;
}
.repair-popup {
    background: var(--black-card); border: 1px solid rgba(184, 151, 90, 0.25);
    border-radius: var(--radius); padding: 40px 36px; max-width: 440px;
    text-align: center; position: relative;
    animation: scaleIn 0.3s ease;
}
.repair-popup-close {
    position: absolute; top: 14px; right: 14px;
    background: none; border: none; color: var(--gray);
    cursor: pointer; padding: 4px; transition: var(--transition);
}
.repair-popup-close svg { width: 20px; height: 20px; }
.repair-popup-close:hover { color: var(--white); }
.repair-popup-icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); border: 1.5px solid rgba(184, 151, 90, 0.3);
    border-radius: 50%;
}
.repair-popup-icon svg { width: 28px; height: 28px; }
.repair-popup-title {
    font-family: var(--font-heading); font-size: 1.4rem;
    color: var(--white); margin-bottom: 12px;
}
.repair-popup-text {
    font-size: 0.85rem; color: var(--gray-light); line-height: 1.65;
    margin-bottom: 24px;
}
.repair-popup-btn {
    display: inline-flex; align-items: center; gap: 10px;
    width: 100%; justify-content: center;
}
.repair-popup-btn svg { width: 18px; height: 18px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* Repair presta item special styling */
.presta-item--repair { border-style: dashed; }
.presta-item--repair .presta-check { display: none; }

/* ═══ ANIMATIONS ═══ */
[data-animate] { opacity: 0; transform: translateY(16px); transition: opacity 1s ease-out, transform 1s ease-out; }
[data-animate="fade-right"] { transform: translateX(-16px); }
[data-animate="fade-left"] { transform: translateX(16px); }
[data-animate].animated { opacity: 1; transform: translate(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .about-hommage { grid-template-columns: 1fr; gap: 50px; }
    .about-hommage-photo { order: -1; }
    .about-editorial { max-width: 100%; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 80px 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .hero-content { padding: 0 20px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .about-editorial { flex-direction: column; gap: 24px; }
    .about-editorial-aside { flex-direction: row; }
    .about-vertical-line { width: 60px; height: 1px;
        background: linear-gradient(90deg, var(--gold), transparent); }
    .about-chapter { writing-mode: horizontal-tb; transform: none; }
    .about-hommage { gap: 40px; }
    .about-hommage-question { font-size: 2rem; }
    .booking-section { padding: 80px 20px; }
    .datetime-container { grid-template-columns: 1fr; }
    .time-slots { grid-template-columns: repeat(4, 1fr); }
    .form-container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0; }
    .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; }
    .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { padding: 0; }
    .presta-categories { gap: 6px; }
    .presta-cat-btn { font-size: 0.7rem; padding: 8px 14px; }
    .booking-steps { gap: 0; }
    .step-label { font-size: 0.6rem; }
    .step-line { width: 40px; }
    .info-ribbon-inner { flex-direction: column; gap: 12px; padding: 16px; }
    .info-ribbon-icon { display: none; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .time-slots { grid-template-columns: repeat(3, 1fr); }
    .hero-line { font-size: 2rem; }
    .hero-line--accent { font-size: 2.2rem; }
    .about-editorial { margin-bottom: 60px; }
    .about-lead { font-size: 1rem; }
    .royal-photo { max-width: 220px; }
}
