/* ==========================================================
   Leman Rental — Mobile-First Design System
   Palette: Crème #fdf2e3 · Terracotta #da6319 · Olive #4a5a3a
   Fonts: Playfair Display (display) + Outfit (body)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== Design Tokens ===== */
:root {
    --lr-cream: #fdf2e3;
    --lr-cream-dark: #f5e6d0;
    --lr-terracotta: #da6319;
    --lr-terracotta-dark: #c45614;
    --lr-terracotta-light: rgba(218, 99, 25, 0.1);
    --lr-olive: #4a5a3a;
    --lr-olive-light: rgba(74, 90, 58, 0.08);
    --lr-charcoal: #1a1a1a;
    --lr-text: #2d2a26;
    --lr-text-muted: #6b6560;
    --lr-text-light: #9a948e;
    --lr-white: #ffffff;
    --lr-border: rgba(218, 99, 25, 0.15);
    --lr-shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --lr-shadow-md: 0 8px 30px rgba(26, 26, 26, 0.08);
    --lr-shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.12);
    --lr-radius: 16px;
    --lr-radius-sm: 8px;
    --lr-radius-lg: 24px;
    --lr-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --lr-font-display: 'Playfair Display', Georgia, serif;
    --lr-font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --lr-container: 1200px;
}

/* ===== Reset ===== */
.lr * { box-sizing: border-box; margin: 0; padding: 0; }
.lr {
    color: var(--lr-text);
    line-height: 1.6;
    font-family: var(--lr-font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.lr img { max-width: 100%; height: auto; display: block; }
.lr a { text-decoration: none; color: inherit; }

.lr .container {
    max-width: var(--lr-container);
    margin: 0 auto;
    padding: 0 16px;
}

/* ==========================================================
   HEADER — Opaque par défaut, transparent uniquement sur homepage
   ========================================================== */
.lr-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(253, 242, 227, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lr-border);
    box-shadow: var(--lr-shadow-sm);
    transition: all 0.4s ease;
}

/* Transparent uniquement sur la homepage */
.lr-header-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.lr-header-transparent.scrolled {
    background: rgba(253, 242, 227, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--lr-border);
    box-shadow: var(--lr-shadow-sm);
}

.lr-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 16px;
    max-width: var(--lr-container);
    margin: 0 auto;
}

.lr-logo img {
    height: 32px;
    width: auto;
}

/* Nav — hidden on mobile */
.lr-nav {
    display: none;
    font-size: 0.9rem;
}

.lr-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--lr-cream);
    padding: 1.5rem 16px;
    gap: 1.25rem;
    box-shadow: var(--lr-shadow-md);
    border-top: 1px solid var(--lr-border);
}

/* Liens nav — sombres par défaut (pages intérieures) */
.lr-nav a:not(.lr-header-cta) {
    font-weight: 500;
    color: var(--lr-text-muted);
    transition: color 0.4s ease;
    padding: 4px 0;
}

.lr-nav a:not(.lr-header-cta):hover { color: var(--lr-terracotta); }

/* Blancs uniquement sur homepage avant scroll */
.lr-header-transparent .lr-nav a:not(.lr-header-cta) { color: rgba(255, 255, 255, 0.85); }
.lr-header-transparent .lr-nav a:not(.lr-header-cta):hover { color: var(--lr-white); }
.lr-header-transparent.scrolled .lr-nav a:not(.lr-header-cta) { color: var(--lr-text-muted); }
.lr-header-transparent.scrolled .lr-nav a:not(.lr-header-cta):hover { color: var(--lr-terracotta); }

/* Menu mobile ouvert : liens toujours sombres */
.lr-nav.active a:not(.lr-header-cta) { color: var(--lr-text-muted); }
.lr-nav.active a:not(.lr-header-cta):hover { color: var(--lr-terracotta); }

/* CTA Réserver */
.lr-header-cta {
    background: var(--lr-terracotta);
    color: var(--lr-white) !important;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(218, 99, 25, 0.25);
    white-space: nowrap;
}

.lr-header-cta:hover {
    background: var(--lr-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 99, 25, 0.35);
}

/* Burger — sombre par défaut, blanc sur homepage */
.lr-burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}

.lr-burger span {
    width: 22px; height: 2px;
    background: var(--lr-charcoal);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.lr-header-transparent .lr-burger span { background: var(--lr-white); }
.lr-header-transparent.scrolled .lr-burger span { background: var(--lr-charcoal); }

.lr-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lr-burger.active span:nth-child(2) { opacity: 0; }
.lr-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================
   HERO — Mobile first (vertical video)
   ========================================================== */
.lr-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--lr-charcoal);
}

.lr-hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.lr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.35) 0%,
        rgba(26, 26, 26, 0.1) 40%,
        rgba(26, 26, 26, 0.55) 100%
    );
}

.lr-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.25rem;
    max-width: 700px;
    opacity: 0;
    animation: lrFadeUp 1s ease 0.3s forwards;
}

.lr-hero-tagline {
    font-family: var(--lr-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--lr-terracotta);
    margin-bottom: 1rem;
    opacity: 0;
    animation: lrFadeUp 0.8s ease 0.5s forwards;
}

.lr-hero h1 {
    font-family: var(--lr-font-display);
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.05;
    color: var(--lr-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: lrFadeUp 0.8s ease 0.7s forwards;
}

.lr-hero h1 em {
    font-style: italic;
    color: var(--lr-terracotta);
}

.lr-hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.65;
    opacity: 0;
    animation: lrFadeUp 0.8s ease 0.9s forwards;
}

.lr-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    opacity: 0;
    animation: lrFadeUp 0.8s ease 1.1s forwards;
}

.lr-hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.4);
    animation: lrBounce 2s infinite;
}

.lr-hero-scroll svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ==========================================================
   BUTTONS — Touch-friendly (min 48px height)
   ========================================================== */
.lr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    min-height: 48px;
    border-radius: 100px;
    font-family: var(--lr-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--lr-transition);
    cursor: pointer;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

.lr-btn-primary {
    background: var(--lr-terracotta);
    color: var(--lr-white);
    box-shadow: 0 8px 25px rgba(218, 99, 25, 0.3);
    width: 100%;
}

.lr-btn-primary:hover {
    background: var(--lr-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(218, 99, 25, 0.4);
}

.lr-btn-outline {
    background: transparent;
    color: var(--lr-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    width: 100%;
}

.lr-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--lr-white);
}

.lr-btn-cream {
    background: var(--lr-cream);
    color: var(--lr-terracotta);
    border: 1px solid var(--lr-border);
    width: 100%;
}

/* ==========================================================
   SECTIONS — Mobile base
   ========================================================== */
.lr-section {
    padding: 3.5rem 0;
}

.lr-section-cream { background: var(--lr-cream); }
.lr-section-white { background: var(--lr-white); }
.lr-section-dark { background: var(--lr-charcoal); color: var(--lr-white); }

.lr-section-title {
    font-family: var(--lr-font-display);
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lr-section-subtitle {
    font-size: 0.95rem;
    color: var(--lr-text-muted);
    text-align: center;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    padding: 0 8px;
}

.lr-section-dark .lr-section-subtitle { color: rgba(255, 255, 255, 0.6); }

.lr-divider {
    width: 50px; height: 2px;
    background: var(--lr-terracotta);
    margin: 1rem auto 1.25rem;
    border-radius: 1px;
}

/* ==========================================================
   SCOOTERS — Mobile: single column
   ========================================================== */
.lr-scooters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lr-scooter-card {
    background: var(--lr-white);
    border-radius: var(--lr-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lr-border);
    box-shadow: var(--lr-shadow-sm);
}

.lr-scooter-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    background: var(--lr-cream);
}

.lr-scooter-body { padding: 1.5rem; }

.lr-scooter-name {
    font-family: var(--lr-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.lr-scooter-desc {
    color: var(--lr-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.lr-scooter-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.lr-spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--lr-text-muted);
    background: var(--lr-cream);
    padding: 6px 12px;
    border-radius: 100px;
}

.lr-spec svg {
    width: 14px; height: 14px;
    stroke: var(--lr-terracotta);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ==========================================================
   TARIFS — Mobile: single column
   ========================================================== */
.lr-tarifs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
}

.lr-tarif-card {
    background: var(--lr-white);
    border: 2px solid var(--lr-border);
    border-radius: var(--lr-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.lr-tarif-card.popular {
    border-color: var(--lr-terracotta);
    box-shadow: 0 12px 35px rgba(218, 99, 25, 0.12);
}

.lr-tarif-card.popular::before {
    content: 'Populaire';
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    background: var(--lr-terracotta);
    color: var(--lr-white);
    padding: 3px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lr-tarif-duration {
    font-family: var(--lr-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.lr-tarif-price {
    font-family: var(--lr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lr-terracotta);
    margin-bottom: 0.15rem;
}

.lr-tarif-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--lr-text-muted);
}

.lr-tarif-detail {
    font-size: 0.85rem;
    color: var(--lr-text-light);
    margin-bottom: 1.5rem;
}

.lr-tarif-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.lr-tarif-features li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--lr-text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.lr-tarif-features li:last-child { border-bottom: none; }
.lr-tarif-features li::before {
    content: '✓';
    color: var(--lr-terracotta);
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================
   RESERVATION CTA
   ========================================================== */
.lr-reservation {
    background: linear-gradient(135deg, var(--lr-charcoal) 0%, #2d3a28 100%);
    color: var(--lr-white);
    text-align: center;
    padding: 3.5rem 16px;
    position: relative;
    overflow: hidden;
}

.lr-reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(218, 99, 25, 0.12) 0%, transparent 60%);
}

.lr-reservation .container { position: relative; z-index: 2; }

.lr-reservation h2 {
    font-family: var(--lr-font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.lr-reservation p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

/* ==========================================================
   EQUIPEMENTS — Mobile: 2 columns
   ========================================================== */
.lr-equip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lr-equip-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--lr-white);
    border-radius: var(--lr-radius);
    border: 1px solid var(--lr-border);
}

.lr-equip-icon {
    width: 56px; height: 56px;
    margin: 0 auto 0.75rem;
    background: var(--lr-terracotta-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lr-equip-name {
    font-family: var(--lr-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.lr-equip-desc {
    font-size: 0.8rem;
    color: var(--lr-text-muted);
}

/* ==========================================================
   CIRCUITS — Mobile: single column
   ========================================================== */
.lr-circuits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.lr-circuit-card {
    border-radius: var(--lr-radius-lg);
    overflow: hidden;
    position: relative;
    height: 260px;
}

.lr-circuit-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lr-circuit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.85) 100%);
}

.lr-circuit-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    z-index: 2;
}

.lr-circuit-tag {
    display: inline-block;
    background: var(--lr-terracotta);
    color: var(--lr-white);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.lr-circuit-title {
    font-family: var(--lr-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--lr-white);
    margin-bottom: 0.35rem;
}

.lr-circuit-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================
   AVIS — Mobile: single column
   ========================================================== */
.lr-avis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.lr-avis-card {
    background: var(--lr-white);
    border-radius: var(--lr-radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--lr-border);
    position: relative;
}

.lr-avis-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem; right: 1rem;
    font-family: var(--lr-font-display);
    font-size: 4rem;
    color: var(--lr-terracotta-light);
    line-height: 1;
}

.lr-avis-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.lr-avis-stars span { color: #f59e0b; font-size: 0.9rem; }

.lr-avis-text {
    font-style: italic;
    color: var(--lr-text);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.lr-avis-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lr-avis-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--lr-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lr-font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lr-terracotta);
    flex-shrink: 0;
}

.lr-avis-name { font-weight: 600; font-size: 0.88rem; }
.lr-avis-source { font-size: 0.75rem; color: var(--lr-text-light); }

/* ==========================================================
   FAQ — Mobile
   ========================================================== */
.lr-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lr-faq-item {
    border-bottom: 1px solid var(--lr-border);
}

.lr-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-family: var(--lr-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lr-charcoal);
    gap: 1rem;
    -webkit-tap-highlight-color: transparent;
}

.lr-faq-icon {
    width: 28px; height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 2px solid var(--lr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--lr-terracotta);
    transition: all var(--lr-transition);
}

.lr-faq-item.active .lr-faq-icon {
    background: var(--lr-terracotta);
    border-color: var(--lr-terracotta);
    color: var(--lr-white);
    transform: rotate(45deg);
}

.lr-faq-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.lr-faq-answer-inner {
    padding-bottom: 1.25rem;
    color: var(--lr-text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ==========================================================
   ABOUT — Mobile: stacked
   ========================================================== */
.lr-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.lr-about-img {
    border-radius: var(--lr-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.lr-about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.lr-about-text h2 {
    font-family: var(--lr-font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.lr-about-text p {
    color: var(--lr-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.lr-about-values {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.lr-about-value { text-align: center; flex: 1; }
.lr-about-value-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.lr-about-value-label { font-weight: 600; font-size: 0.8rem; color: var(--lr-charcoal); }

/* ==========================================================
   PARTENAIRES
   ========================================================== */
.lr-partenaires-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.lr-partenaire {
    display: block;
    border-radius: var(--lr-radius-lg);
    overflow: hidden;
    transition: all var(--lr-transition);
    box-shadow: var(--lr-shadow-sm);
    background: var(--lr-white);
}

.lr-partenaire:hover {
    transform: translateY(-5px);
    box-shadow: var(--lr-shadow-lg);
}

.lr-partenaire img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.lr-partenaire-name {
    display: block;
    text-align: center;
    padding: 12px 0;
    font-family: var(--lr-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lr-charcoal);
}

/* ==========================================================
   LOCALISATION — Mobile: stacked
   ========================================================== */
.lr-map-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.lr-map-info h3 {
    font-family: var(--lr-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.lr-map-address {
    color: var(--lr-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.lr-map-address strong {
    color: var(--lr-charcoal);
    display: block;
    margin-bottom: 0.15rem;
}

.lr-map-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.lr-map-contact a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--lr-terracotta);
    font-weight: 500;
    font-size: 0.9rem;
    min-height: 44px;
}

.lr-map-embed {
    border-radius: var(--lr-radius-lg);
    overflow: hidden;
    box-shadow: var(--lr-shadow-md);
    height: 300px;
}

.lr-map-embed iframe {
    width: 100%; height: 100%;
    border: 0;
}

/* ==========================================================
   FOOTER — Mobile
   ========================================================== */
.lr-footer {
    background: var(--lr-charcoal);
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 0 1.5rem;
}

.lr-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.lr-footer-logo {
    font-family: var(--lr-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--lr-white);
    margin-bottom: 0.75rem;
}

.lr-footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.lr-footer-desc {
    line-height: 1.65;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.lr-footer-social {
    display: flex;
    gap: 0.75rem;
}

.lr-footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--lr-transition);
    font-size: 1rem;
}

.lr-footer-social a:hover {
    background: var(--lr-terracotta);
    color: var(--lr-white);
}

.lr-footer h4 {
    color: var(--lr-white);
    font-family: var(--lr-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lr-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lr-footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.lr-footer-links a:hover { color: var(--lr-terracotta); }

.lr-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    text-align: center;
}

.lr-footer-legal {
    display: flex;
    gap: 1.25rem;
}

.lr-footer-legal a {
    color: rgba(255,255,255,0.35);
}

.lr-footer-legal a:hover { color: var(--lr-terracotta); }

/* ==========================================================
   LEGAL PAGES
   ========================================================== */
.lr-legal {
    padding: 100px 0 3rem;
    background: var(--lr-cream);
}

.lr-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--lr-white);
    border-radius: var(--lr-radius-lg);
    padding: 2rem 1.25rem;
    box-shadow: var(--lr-shadow-sm);
}

.lr-legal-content h1 {
    font-family: var(--lr-font-display);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.lr-legal-content h2 {
    font-family: var(--lr-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.lr-legal-content p {
    color: var(--lr-text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.lr-legal-content ul {
    margin: 0.75rem 0 1.25rem 1.25rem;
    color: var(--lr-text-muted);
}

.lr-legal-content li {
    margin-bottom: 0.4rem;
    line-height: 1.65;
    font-size: 0.9rem;
}

/* ==========================================================
   LIFESTYLE GRID — scroll horizontal mobile, grid desktop
   ========================================================== */
.lr-lifestyle-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.lr-lifestyle-grid::-webkit-scrollbar { display: none; }

.lr-lifestyle-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
}

.lr-lifestyle-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--lr-radius-lg);
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes lrFadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lrBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

.lr-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lr-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   TABLET — min-width: 768px
   ========================================================== */
@media (min-width: 768px) {
    .lr .container { padding: 0 24px; }

    .lr-section { padding: 5rem 0; }

    .lr-section-title { font-size: 2.5rem; }

    .lr-hero h1 { font-size: 3.5rem; }
    .lr-hero-desc { font-size: 1.05rem; }
    .lr-hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
    .lr-btn-primary,
    .lr-btn-outline,
    .lr-btn-cream { width: auto; }

    .lr-scooters-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .lr-scooter-img { height: 260px; }

    .lr-tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 1.5rem;
    }

    .lr-equip-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

    .lr-circuits-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .lr-circuit-card { height: 320px; }

    .lr-avis-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .lr-lifestyle-grid { overflow-x: visible; display: grid; grid-template-columns: repeat(3, 1fr); }
    .lr-lifestyle-item { flex: none; }
    .lr-lifestyle-item img { height: 280px; }

    .lr-partenaires-grid { grid-template-columns: repeat(3, 1fr); }

    .lr-faq-question { font-size: 1.15rem; padding: 1.5rem 0; }

    .lr-about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .lr-map-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    .lr-map-embed { height: 380px; }

    .lr-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
    .lr-footer-bottom { flex-direction: row; justify-content: space-between; }

    .lr-legal-content { padding: 2.5rem; }
}

/* ==========================================================
   DESKTOP — min-width: 1024px
   ========================================================== */
@media (min-width: 1024px) {
    .lr-header-inner { padding: 1rem 24px; }
    .lr-logo img { height: 40px; }

    /* Desktop nav visible */
    .lr-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .lr-nav a { position: relative; }
    .lr-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px; left: 0;
        width: 0; height: 1.5px;
        background: var(--lr-terracotta);
        transition: width var(--lr-transition);
    }
    .lr-nav a:hover::after { width: 100%; }

    .lr-burger { display: none; }

    .lr-section { padding: 6rem 0; }
    .lr-section-title { font-size: 3rem; }

    .lr-hero h1 { font-size: 4.5rem; }
    .lr-hero-tagline { font-size: 0.8rem; letter-spacing: 3px; }
    .lr-hero-desc { font-size: 1.15rem; }

    .lr-scooter-img { height: 300px; }
    .lr-scooter-body { padding: 2rem; }

    .lr-tarifs-grid { gap: 2rem; }

    .lr-circuits-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .lr-circuit-card { height: 380px; }
    .lr-circuit-card:hover .lr-circuit-img { transform: scale(1.05); }

    .lr-avis-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

    .lr-about-grid { gap: 4rem; }
    .lr-about-text h2 { font-size: 2.5rem; }

    .lr-map-embed { height: 420px; }

    .lr-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }

    .lr-legal-content { padding: 3rem; }
    .lr-legal-content h1 { font-size: 2.5rem; }

    /* Hover effects — desktop only */
    .lr-scooter-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--lr-shadow-lg);
        border-color: var(--lr-terracotta);
    }

    .lr-tarif-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--lr-shadow-lg);
    }

    .lr-equip-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--lr-shadow-md);
        border-color: var(--lr-terracotta);
    }

    .lr-avis-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--lr-shadow-md);
    }
}
/* ==========================================================
   BOOQABLE — Style intégré charte Leman Rental
   ========================================================== */
.lr-reservation .booqable-datepicker,
.lr-reservation .booqable-product-list-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Datepicker */
.lr-reservation [class*="Container-PhN"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 12px !important;
}

.lr-reservation [class*="Detail-"] {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
    background: transparent !important;
    border: none !important;
}

/* Notice "Select your rental period" */
.lr-reservation .booqable-product-list-notice {
    color: rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
}

/* Grid */
.lr-reservation .booqable-product-list-grid {
    gap: 1.5rem !important;
}

/* Cards */
.lr-reservation .booqable-product {
    background: #ffffff !important;
    border: 1px solid rgba(218, 99, 25, 0.12) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.lr-reservation .booqable-product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Nom produit */
.lr-reservation .bq-product-name {
    font-family: var(--lr-font-body) !important;
    font-weight: 600 !important;
    color: #2d2a26 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

/* Prix */
.lr-reservation .bq-price-details {
    color: #da6319 !important;
    font-weight: 700 !important;
}

/* Bouton panier */
.lr-reservation .bq-button.bq-branded {
    background: #da6319 !important;
    border: none !important;
    border-radius: 10px !important;
}

.lr-reservation .bq-button.bq-branded:hover {
    background: #c45614 !important;
}

/* Fix zone nom/prix — override le height:70px de Booqable */
.lr-reservation .bq-details {
    height: auto !important;
    min-height: 80px !important;
    padding: 14px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}
.lr-reservation .bq-product-title-wrapper.bq-has-prices {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.lr-reservation .bq-product-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
}

.lr-reservation .bq-price-details {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    display: block !important;
    clear: both !important;
}