/* =========================================================
   CYT & GO — Choose Your Trip & Go
   Stylesheet — Luxury Transport & Concierge
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
    /* Palette */
    --gold: #C9A961;
    --gold-light: #DCC18A;
    --gold-dark: #A88842;
    --gold-deep: #8B6F35;
    --ink: #0F0E0C;
    --ink-soft: #1C1A17;
    --charcoal: #2A2722;
    --cream: #FAF7F1;
    --cream-soft: #F3EDE0;
    --paper: #FFFFFF;
    --muted: #6B6259;
    --line: rgba(201, 169, 97, 0.25);

    /* Typo */
    --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-cursive: 'Dancing Script', cursive;

    /* Sizing */
    --container: 1240px;
    --radius: 4px;

    /* Motion */
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 120px 0;
    position: relative;
}

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

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 18px;
    font-weight: 500;
}
.eyebrow-light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
}
.section-title .cursive {
    font-family: var(--font-cursive);
    font-weight: 600;
    color: var(--gold);
    font-size: 1.05em;
    display: inline-block;
    line-height: 1;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}
.section-header.light { color: var(--cream); }
.section-header.light .section-title { color: var(--cream); }

.section-intro {
    font-size: 1.08rem;
    color: var(--muted);
    margin: 0;
}

.lead {
    font-size: 1.15rem;
    color: var(--charcoal);
    font-weight: 300;
    margin: 0 0 24px;
    line-height: 1.65;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all .4s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}
.btn-primary:hover {
    background: var(--ink);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(201, 169, 97, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.btn-full { width: 100%; }

/* ---------- HEADER / NAV ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all .4s var(--ease);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(15, 14, 12, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo {
    height: 52px;
    width: auto;
    transition: all .4s var(--ease);
    /* Fond blanc effacé via multiply sur fond sombre */
    mix-blend-mode: multiply;
    /* Masqué sur le hero : le grand logo hero prend toute la place */
    opacity: 0;
    pointer-events: none;
}
/* Réapparaît dès que le header est scrolled */
.site-header.scrolled .brand-logo {
    opacity: 1;
    pointer-events: auto;
    height: 46px;
}

.main-nav ul {
    display: flex;
    gap: 38px;
    align-items: center;
}
.main-nav a {
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 22px !important;
    border: 1px solid var(--gold) !important;
    background: var(--gold);
    color: var(--ink) !important;
    border-radius: var(--radius);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: transparent;
    color: var(--gold) !important;
}

.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 101;
}
.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--cream);
    transition: all .3s var(--ease);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--cream);
    background: var(--ink);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(15,14,12,0.30) 0%, rgba(15,14,12,0.62) 100%),
      linear-gradient(180deg, rgba(15,14,12,0.55) 0%, rgba(15,14,12,0.20) 50%, rgba(15,14,12,0.70) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Logo héro : élément dominant ── */
.hero-logo-wrap {
    opacity: 0;
    animation: heroLogoIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    margin-bottom: 16px;
}
@keyframes heroLogoIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.hero-logo-img {
    width: clamp(180px, 22vw, 320px);
    height: auto;
    display: block;
    margin: 0 auto -13%;
}
.hero-logo-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 700;
    color: var(--cream);
    margin: 4px 0 0;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.01em;
}
.hero-logo-tagline span {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
}

/* Ligne séparatrice ornementale sous le bloc logo */
.hero-logo-wrap::after {
    content: '';
    display: block;
    margin: 12px auto 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 22px;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.7s forwards;
}
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 50px;
    color: rgba(250, 247, 241, 0.82);
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 1px solid rgba(250, 247, 241, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.hero-scroll span {
    width: 2px;
    height: 8px;
    background: var(--gold);
    border-radius: 1px;
    animation: scrollDown 1.8s var(--ease) infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---------- SECTION HISTOIRE ---------- */
.section-histoire {
    background: var(--cream);
}
.checklist {
    margin-top: 32px;
}
.checklist li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.98rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: none; }
.checklist i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.histoire-visual {
    position: relative;
}
.visual-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -20px rgba(15, 14, 12, 0.4);
}
.visual-frame img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.visual-frame:hover img { transform: scale(1.04); }
.visual-frame::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(250, 247, 241, 0.3);
    z-index: 2;
    pointer-events: none;
}
.visual-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 140px;
    height: 140px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(201, 169, 97, 0.5);
}
.badge-number {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ---------- SERVICES ---------- */
.section-services {
    background: var(--paper);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--cream);
    padding: 50px 40px;
    border-radius: var(--radius);
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.service-card:hover {
    background: var(--ink);
    color: var(--cream);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(15, 14, 12, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover h3 { color: var(--gold); }
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--ink);
    transform: rotate(360deg);
}
.service-card:hover .service-link { color: var(--gold); }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 28px;
    transition: all .6s var(--ease);
}
.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
    margin: 0 0 14px;
    transition: color .4s var(--ease);
}
.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 0 24px;
    line-height: 1.7;
}
.service-card:hover p { color: rgba(250, 247, 241, 0.8); }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    transition: all .3s var(--ease);
}
.service-link i { transition: transform .3s var(--ease); }
.service-link:hover i { transform: translateX(6px); }

/* ---------- FLOTTE ---------- */
.section-flotte {
    background: var(--cream);
}
.fleet-note {
    margin-top: 56px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    letter-spacing: 0.06em;
    padding: 28px 40px;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.fleet-note::before,
.fleet-note::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.55rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.fleet-note::before { left: 12px; }
.fleet-note::after  { right: 12px; }
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.fleet-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .5s var(--ease);
    box-shadow: 0 10px 30px -15px rgba(15, 14, 12, 0.1);
}
.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px rgba(15, 14, 12, 0.25);
}
.fleet-card-featured {
    box-shadow: 0 20px 50px -15px rgba(201, 169, 97, 0.4);
    transform: translateY(-10px);
}
.fleet-image {
    height: 260px;
    overflow: hidden;
}
.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.fleet-card:hover .fleet-image img { transform: scale(1.08); }
.fleet-body { padding: 36px 32px; }
.fleet-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    padding: 5px 12px;
    border: 1px solid var(--gold);
    border-radius: 100px;
    margin-bottom: 16px;
}
.fleet-body h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    margin: 0 0 12px;
}
.fleet-body p {
    color: var(--muted);
    margin: 0 0 22px;
    font-size: 0.95rem;
}
.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.fleet-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--charcoal);
}
.fleet-features i { color: var(--gold); font-size: 0.85rem; }

/* ---------- ZONES / CARTE INTERACTIVE v2 ---------- */
.section-zones {
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
}
.zones-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}
.zones-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,14,12,0.9) 0%, rgba(15,14,12,0.75) 100%);
}
.zones-content { position: relative; z-index: 2; }
.section-intro-light { color: rgba(250, 247, 241, 0.75) !important; }

/* ---- Carte illustrée (image statique) ---- */
.map-illustration-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 97, 0.45);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 6px rgba(201,169,97,0.08);
    max-width: 680px;
    margin: 0 auto;
    line-height: 0;
}
.map-illustration-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s var(--ease);
}
.map-illustration-wrap:hover .map-illustration-img {
    transform: scale(1.012);
}

/* ---- Wrapper carte hybride (image + Leaflet) ---- */
.map-hybrid-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 97, 0.45);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55), 0 0 0 8px rgba(201,169,97,0.10);
}

/* ---- Carte Leaflet ---- */

/* ---- Carte Leaflet ---- */
.cyt-map {
    width: 100%;
    height: 660px;
    z-index: 1;
    display: block;
    background: #EDE5D0;
}
/* Ton chaud légèrement papier */
.cyt-map .leaflet-tile-pane {
    filter: saturate(0.88) brightness(1.02) sepia(0.07);
}

/* ---- Barre de recherche flottante ---- */
.map-searchbar {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(640px, calc(100% - 32px));
}
.map-search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.map-search-input-wrap > i {
    position: absolute;
    left: 16px;
    color: #8B3A2A;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 2;
}
.map-search-input-wrap input {
    width: 100%;
    padding: 13px 44px 13px 44px;
    background: rgba(250, 244, 230, 0.97);
    backdrop-filter: blur(8px);
    border: 1.5px solid #C9A961;
    border-radius: 100px;
    color: #2C1A0E;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    outline: none;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 18px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
}
.map-search-input-wrap input::placeholder { color: rgba(44,26,14,0.4); }
.map-search-input-wrap input:focus {
    border-color: #8B3A2A;
    box-shadow: 0 6px 22px rgba(0,0,0,0.25), 0 0 0 3px rgba(139,58,42,0.15);
}
.map-search-clear {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: rgba(44,26,14,0.4);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
    transition: color .2s;
    z-index: 2;
}
.map-search-clear:hover { color: #8B3A2A; }

/* Résultats */
.map-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #FBF6EC;
    border: 1.5px solid #C9A961;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    z-index: 30;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}
.map-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    cursor: pointer;
    transition: background .2s;
    font-size: 0.88rem;
    color: #2C1A0E;
}
.map-search-item i { color: #8B3A2A; flex-shrink: 0; width: 16px; text-align: center; }
.map-search-item div { min-width: 0; }
.map-search-item strong { display: block; font-weight: 600; }
.map-search-item span { font-size: 0.75rem; color: rgba(44,26,14,0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.map-search-item:hover { background: #F5E8D0; }
.map-search-loading, .map-search-empty { cursor: default; color: rgba(44,26,14,0.45); font-size: 0.85rem; }
.map-search-loading:hover, .map-search-empty:hover { background: none; }

/* Bouton Géolocaliser */
.map-geolocate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    background: rgba(250,244,230,0.97);
    border: 1.5px solid #C9A961;
    border-radius: 100px;
    color: #8B3A2A;
    font-size: 0.82rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.map-geolocate-btn:hover {
    background: #8B3A2A;
    color: #FBF6EC;
    border-color: #8B3A2A;
}
.map-geolocate-btn.loading i { animation: spinIcon 1s linear infinite; }
@keyframes spinIcon { to { transform: rotate(360deg); } }

/* ---- Filtres catégories ---- */
.map-filters {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 6px;
    background: rgba(251,246,236,0.97);
    backdrop-filter: blur(12px);
    padding: 9px 14px;
    border-radius: 100px;
    border: 1.5px solid rgba(201,169,97,0.55);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: calc(100% - 32px);
    scrollbar-width: none;
}
.map-filters::-webkit-scrollbar { display: none; }
.map-filter-btn {
    padding: 6px 14px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    background: transparent;
    color: rgba(44,26,14,0.6);
    font-size: 0.77rem;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap;
    line-height: 1.3;
}
.map-filter-btn:hover {
    color: #2C1A0E;
    border-color: rgba(44,26,14,0.2);
    background: rgba(44,26,14,0.05);
}
/* Couleur active par catégorie — fidèle à la légende de la carte touristique */
.map-filter-btn.active { color: #FBF6EC !important; font-weight: 700; }
.map-filter-btn[data-filter="all"].active     { background: #2C1A0E; border-color: #2C1A0E; }
.map-filter-btn[data-filter="village"].active  { background: #2D5A8E; border-color: #2D5A8E; }
.map-filter-btn[data-filter="chateau"].active  { background: #7A1F2E; border-color: #7A1F2E; }
.map-filter-btn[data-filter="musee"].active    { background: #2D5A8E; border-color: #2D5A8E; }
.map-filter-btn[data-filter="gastronomie"].active { background: #9A7520; border-color: #9A7520; }
.map-filter-btn[data-filter="nature"].active   { background: #3A6B35; border-color: #3A6B35; }
.map-filter-btn[data-filter="quartier"].active { background: #7A4A8E; border-color: #7A4A8E; }

/* ---- Info position utilisateur ---- */
.map-user-info {
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: rgba(251,246,236,0.97);
    border: 1.5px solid #C9A961;
    border-radius: 100px;
    color: #2C1A0E;
    font-size: 0.82rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    font-family: var(--font-sans);
}
.map-user-info i { color: #2C6E8A; }
#map-user-clear {
    background: none; border: none;
    color: rgba(44,26,14,0.35);
    cursor: pointer; padding: 2px 4px;
    font-size: 0.8rem; transition: color .2s; margin-left: 4px;
}
#map-user-clear:hover { color: #8B3A2A; }

/* ---- Marqueurs illustrés (style carte touristique) ---- */
.illus-marker-wrapper {
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
}
.illus-marker {
    width: 72px;
    height: 96px;
    cursor: pointer;
    transition: transform .3s cubic-bezier(0.34,1.56,0.64,1), filter .25s var(--ease);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.22)) drop-shadow(0 1px 2px rgba(0,0,0,0.15));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.illus-marker svg {
    width: 64px;
    height: 80px;
    flex-shrink: 0;
}
/* Label nom sous l'icône — style carte touristique */
.illus-label {
    display: block;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 9.5px;
    font-weight: 700;
    font-style: italic;
    color: #2C1A0E;
    text-align: center;
    line-height: 1.15;
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 1px 6px rgba(255,255,255,0.8);
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}
.illus-marker:hover {
    transform: scale(1.15) translateY(-6px);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.32)) drop-shadow(0 2px 4px rgba(0,0,0,0.18));
}
.illus-marker:hover .illus-label {
    white-space: normal;
    text-overflow: unset;
}

/* Marqueur position utilisateur */
.user-marker-wrapper {
    background: transparent !important;
    border: none !important;
}
.user-marker {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-marker-dot {
    width: 14px;
    height: 14px;
    background: #60a5fa;
    border: 2.5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(96,165,250,0.7);
    z-index: 2;
}
.user-marker-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(96,165,250,0.5);
    animation: userPulse 2s ease infinite;
}
@keyframes userPulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---- Popups style "carte papier" ---- */
.cyt-popup-wrapper .leaflet-popup-content-wrapper {
    background: #FBF6EC;
    color: #2C1A0E;
    border: 2px solid #C9A961;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.22), 0 3px 8px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.95);
    padding: 0;
    overflow: hidden;
    /* Texture légère papier */
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 19px,
        rgba(201,169,97,0.06) 19px,
        rgba(201,169,97,0.06) 20px
    );
}
.cyt-popup-wrapper .leaflet-popup-content {
    margin: 0; padding: 0;
    font-family: var(--font-sans);
    line-height: 1.6;
    min-width: 250px;
}
.cyt-popup-wrapper .leaflet-popup-tip-container { margin-top: -2px; }
.cyt-popup-wrapper .leaflet-popup-tip {
    background: #F5ECDA;
    box-shadow: 1px 2px 6px rgba(0,0,0,0.14);
}
.cyt-popup-wrapper a.leaflet-popup-close-button {
    color: rgba(44,26,14,0.4) !important;
    font-size: 18px; top: 36px; right: 10px; transition: color .2s;
    z-index: 2;
}
.cyt-popup-wrapper a.leaflet-popup-close-button:hover { color: #8B3A2A !important; }

/* Badge catégorie en haut du popup */
.cyt-popup-type-badge {
    display: block;
    width: 100%;
    padding: 5px 16px;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    border-radius: 0;
}

.cyt-popup { padding: 14px 18px 16px; }
.cyt-popup-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid #C9A961;
}
.cyt-popup-tag {
    display: inline-block;
    font-size: 0.60rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid;
    padding: 2px 9px;
    border-radius: 100px;
    margin-bottom: 5px;
    font-weight: 600;
    opacity: 0.9;
}
.cyt-popup h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #1A0A04;
    line-height: 1.2;
}
.cyt-popup p {
    font-size: 0.84rem;
    color: rgba(44,26,14,0.7);
    margin: 0 0 12px;
    line-height: 1.55;
}
.popup-duration {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,169,97,0.15);
    border: 1px solid rgba(201,169,97,0.45);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #7A4A00;
    margin-bottom: 12px;
}
.popup-duration-hint { color: rgba(44,26,14,0.38); background: rgba(44,26,14,0.04); border-color: rgba(44,26,14,0.12); }
.popup-duration strong { font-weight: 700; }
.cyt-popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1.5px solid;
    padding-bottom: 1px;
    transition: opacity .2s;
}
.cyt-popup-cta:hover { opacity: 0.7; }

/* ---- Controls Leaflet style carte ---- */
.leaflet-control-zoom a {
    background: rgba(251,246,236,0.95) !important;
    color: #8B3A2A !important;
    border: 1.5px solid #C9A961 !important;
    font-weight: 700 !important;
    transition: all .2s !important;
}
.leaflet-control-zoom a:hover { background: #8B3A2A !important; color: #FBF6EC !important; }
.leaflet-control-attribution {
    background: rgba(251,246,236,0.85) !important;
    color: rgba(44,26,14,0.5) !important;
    font-size: 0.62rem !important;
}
.leaflet-control-attribution a { color: #8B3A2A !important; }

/* ---- Notice temporaire ---- */
.map-notice {
    position: absolute;
    top: 76px; left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    animation: noticeIn .3s ease;
}
@keyframes noticeIn { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } }
.map-notice-error { background: rgba(180,50,50,0.92); color: #fff; border: 1.5px solid rgba(255,100,100,0.4); }
.map-notice-info  { background: #FBF6EC; color: #2C1A0E; border: 1.5px solid #C9A961; }

/* ---- Panneau temps de trajet (sidebar droite) ---- */
.map-durations-panel {
    position: absolute;
    top: 70px;
    right: 14px;
    z-index: 22;
    width: 260px;
    max-height: calc(100% - 140px);
    background: rgba(251, 246, 236, 0.97);
    backdrop-filter: blur(12px);
    border: 1.5px solid #C9A961;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--font-sans);
    animation: panelIn .35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes panelIn {
    from { opacity: 0; transform: translateX(18px) scale(0.97); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
.map-durations-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px 10px;
    border-bottom: 1px solid rgba(201,169,97,0.3);
    font-size: 0.75rem;
    color: #2C1A0E;
    font-weight: 500;
    flex-shrink: 0;
}
.map-durations-header i { color: #8B3A2A; font-size: 0.85rem; }
.map-durations-header span { flex: 1; line-height: 1.3; }
.map-durations-header strong { font-weight: 700; color: #2C1A0E; }
#map-durations-close {
    background: none; border: none;
    color: rgba(44,26,14,0.35); font-size: 0.8rem;
    cursor: pointer; padding: 3px 5px;
    transition: color .2s; flex-shrink: 0;
}
#map-durations-close:hover { color: #8B3A2A; }

.map-durations-list {
    overflow-y: auto;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,169,97,0.4) transparent;
}
.map-durations-list::-webkit-scrollbar { width: 4px; }
.map-durations-list::-webkit-scrollbar-thumb { background: rgba(201,169,97,0.45); border-radius: 4px; }

.map-dur-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    transition: background .18s;
    border-bottom: 1px solid rgba(201,169,97,0.12);
}
.map-dur-item:last-child { border-bottom: none; }
.map-dur-item:hover { background: rgba(201,169,97,0.12); }

.map-dur-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.map-dur-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.map-dur-info strong {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1A0A04;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.map-dur-tag {
    font-size: 0.65rem;
    color: rgba(44,26,14,0.5);
}
.map-dur-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: #7A1F2E;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(122,31,46,0.08);
    padding: 2px 8px;
    border-radius: 100px;
    border: 1px solid rgba(122,31,46,0.18);
}

/* Responsive : panneau sous la carte sur mobile */
@media (max-width: 640px) {
    .map-durations-panel {
        position: static;
        width: 100%;
        max-height: 260px;
        border-radius: 0 0 14px 14px;
        border-top: 2px solid #C9A961;
        border-left: none; border-right: none; border-bottom: none;
        animation: none;
    }
}

/* ---- Footnote ---- */
.map-footnote {
    margin-top: 28px;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(250,247,241,0.65);
}
.map-footnote i { color: var(--gold); margin-right: 6px; }
.map-footnote a { color: var(--gold); border-bottom: 1px solid transparent; margin-left: 4px; transition: border-color .2s; }
.map-footnote a:hover { border-bottom-color: var(--gold); }

/* ---------- POURQUOI ---------- */
.section-pourquoi {
    background: var(--paper);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.pillar {
    text-align: center;
    padding: 30px 20px;
}
.pillar-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 22px;
    opacity: 0.85;
}
.pillar h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 14px;
}
.pillar p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ---------- CALENDRIER MULTI-DATES ---------- */
.label-hint {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.03em;
}
.cal-picker {
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    user-select: none;
    max-width: 280px;
}
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.cal-month-label {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--cream);
    letter-spacing: 0.06em;
}
.cal-nav-btn {
    background: none;
    border: 1px solid var(--line);
    color: var(--gold);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: all .2s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cal-nav-btn:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.cal-day-header {
    text-align: center;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-transform: uppercase;
    padding: 2px 0 5px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid transparent;
    background: none;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    cursor: pointer;
    transition: all .18s var(--ease);
}
.cal-day:hover:not(:disabled) {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 97, 0.08);
}
.cal-day.cal-selected {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    border-color: var(--gold);
}
.cal-day.cal-past {
    color: rgba(255,255,255,0.2);
    cursor: not-allowed;
}
.cal-day.cal-blank {
    pointer-events: none;
    background: none;
    border: none;
}

/* Dates sélectionnées avec options durée */
.cal-selections {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cal-sel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(201, 169, 97, 0.07);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 6px;
    padding: 7px 10px;
    flex-wrap: wrap;
    gap: 6px;
}
.cal-sel-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 6px;
}
.cal-sel-label i { color: var(--gold); font-size: 0.75rem; }
.cal-sel-opts {
    display: flex;
    gap: 5px;
}
.cal-sel-opts input[type="radio"] { display: none; }
.cal-opt {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 20px;
    border: 1px solid var(--line);
    font-size: 0.7rem;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
}
.cal-sel-opts input[type="radio"]:checked + .cal-opt {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    font-weight: 600;
}
.cal-opt:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- CONTACT ---------- */
.section-contact {
    background: var(--ink);
    color: var(--cream);
}
.section-contact .section-title { color: var(--cream); }
.section-contact .lead { color: rgba(250, 247, 241, 0.8); }
.section-contact .eyebrow { color: var(--gold); }

.contact-list {
    margin-top: 40px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.contact-list a, .contact-list address, .contact-list span:not(.contact-label) {
    color: var(--cream);
    font-style: normal;
    font-size: 1rem;
    transition: color .3s var(--ease);
}
.contact-list a:hover { color: var(--gold); }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}
.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all .3s var(--ease);
}
.social-links a:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
}

/* Formulaire */
.reservation-form {
    background: var(--ink-soft);
    padding: 50px 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 169, 97, 0.2);
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    margin: 0 0 32px;
    color: var(--cream);
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: var(--radius);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    transition: all .3s var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250, 247, 241, 0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-group select option { background: var(--ink); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-feedback {
    margin: 18px 0 0;
    padding: 0;
    text-align: center;
    font-size: 0.9rem;
    min-height: 22px;
}
.form-feedback.success { color: var(--gold-light); }
.form-feedback.error { color: #E07A5F; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: #08080A;
    color: rgba(250, 247, 241, 0.7);
    padding: 80px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-logo {
    height: 110px;
    width: auto;
    margin-bottom: 12px;
    /* Fond blanc effacé via screen sur fond noir du footer */
    mix-blend-mode: screen;
}
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0 0 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col a {
    font-size: 0.9rem;
    color: rgba(250, 247, 241, 0.65);
}
.footer-col a:hover { color: var(--gold); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}
.footer-contact i {
    color: var(--gold);
    width: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    padding: 24px 0;
    background: #050506;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(250, 247, 241, 0.5);
}
.footer-legal a {
    color: rgba(250, 247, 241, 0.6);
    margin: 0 4px;
}
.footer-legal a:hover { color: var(--gold); }

/* ---------- FLOATING CTA ---------- */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--gold);
    color: var(--ink);
    padding: 14px 22px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px -10px rgba(201, 169, 97, 0.6);
    z-index: 90;
    transition: all .4s var(--ease);
    opacity: 0;
    transform: translateY(20px);
}
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}
.floating-cta:hover {
    background: var(--ink);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .section { padding: 90px 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 60px; }
    .services-grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .visual-frame img { height: 480px; }

    .cyt-map { height: 520px; }
    .map-searchbar { flex-direction: column; align-items: stretch; gap: 8px; }
    .map-geolocate-btn { justify-content: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 22px; }
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 50px; }

    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--ink);
        padding: 100px 40px;
        transition: right .5s var(--ease);
        box-shadow: -20px 0 40px rgba(0,0,0,0.4);
    }
    .main-nav.open { right: 0; }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .main-nav a { font-size: 1rem; }
    .nav-cta { width: 100%; text-align: center; margin-top: 12px; }
    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .brand-logo { height: 52px; }
    .site-header.scrolled .brand-logo { height: 42px; }

    .hero { min-height: 90vh; }
    .hero-cta .btn { padding: 14px 26px; font-size: 0.75rem; }

    .services-grid, .fleet-grid {
        grid-template-columns: 1fr;
    }
    .service-card, .fleet-body, .reservation-form { padding: 36px 28px; }
    .cyt-map { height: 440px; }
    .map-filters { bottom: 12px; padding: 6px 10px; }
    .map-filter-btn { padding: 5px 10px; font-size: 0.72rem; }
    .pillars-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom .container { justify-content: center; text-align: center; }

    .visual-badge {
        width: 110px;
        height: 110px;
        bottom: -20px;
        right: -10px;
    }

    .floating-cta { bottom: 18px; right: 18px; padding: 12px 18px; }
    .floating-cta span { display: none; }
}

@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }
    .hero-logo-img { width: clamp(220px, 80vw, 360px); }
}
