﻿:root {
    --noir: #141414;
    --teal: #014E54;
    --teal-light: #025f67;
    --cuivre: #C4764F;
    --cuivre-light: #F2B27E;
    --creme: #F0EFED;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  img { max-width: 100%; }

  html, body {
    overscroll-behavior-y: none;
  }

  body {
    font-family: 'Switzer', sans-serif;
    background: var(--creme);
    color: var(--noir);
    overflow-x: hidden;
  }

  /* ─── HERO (no separate topbar, logo overlays) ─── */
  .hero {
    background: linear-gradient(180deg, rgba(0,0,0,0.89) 0%, rgba(0,0,0,0.79) 45%, rgba(0,0,0,0.93) 100%), url('assets/heroimgv1.png') center/cover no-repeat;
    padding: 36px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero-logo {
    position: relative;
    margin: 0 auto 48px;
    display: block;
    height: 62px;
    width: auto;
  }
  .hero h1 {
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    max-width: 860px;
    margin: 0 auto 20px;
    position: relative;
    text-shadow: 0 2px 20px rgba(0,0,0,0.55);
  }
  .hero h1 em { font-style: normal; color: var(--cuivre-light); }
  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.93);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  }

  /* ─── HERO STATS ─── */
  .hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 720px;
    margin: 44px auto;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .hero-stat {
    flex: 1;
    padding: 28px 16px;
    text-align: center;
  }
  .hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.15); }
  .hero-stat-num {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1;
    color: var(--cuivre-light);
    margin-bottom: 8px;
  }
  .hero-stat-label {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
  }
  @media (max-width: 540px) {
    .hero-stat { padding: 20px 8px; }
    .hero-stat-label { font-size: 11px; }
  }

  /* ─── CTA ─── */
  .cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--cuivre), var(--cuivre-light));
    color: var(--white);
    font-family: 'Switzer', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 18px 44px; border-radius: 2px;
    text-decoration: none; cursor: pointer; border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(196,118,79,0.35);
  }
  .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(196,118,79,0.45); }
  .cta-wrap { text-align: center; padding: 20px 0; }
  .cta-note { font-size: 12px; color: rgba(255,255,255,0.62); margin-top: 12px; letter-spacing: 0.5px; }

  /* ─── SECTIONS ─── */
  section { padding: 80px 40px; max-width: 960px; margin: 0 auto; }
  .section-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--cuivre); margin-bottom: 16px; }
  .section-title { font-size: clamp(26px, 3vw, 42px); font-weight: 700; line-height: 1.2; color: var(--noir); margin-bottom: 20px; }
  .section-title em { font-style: normal; color: var(--teal); }
  .section-body { font-size: 16px; line-height: 1.85; color: rgba(20,20,20,0.65); max-width: 680px; }
  .divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 80px;
    padding: 12px 0;
  }
  .divider::before,
  .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cuivre), transparent);
    opacity: 0.45;
  }
  .divider-mark {
    width: 8px;
    height: 8px;
    background: var(--cuivre);
    transform: rotate(45deg);
    opacity: 0.7;
    flex-shrink: 0;
  }

  /* ─── STATS ─── */
  .stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: rgba(20,20,20,0.08);
    border-radius: 2px; overflow: hidden; margin-top: 50px;
  }
  .stat-item { background: var(--creme); padding: 36px 28px; text-align: center; }
  .stat-num { font-size: 44px; font-weight: 700; color: var(--cuivre); line-height: 1; margin-bottom: 8px; }
  .stat-label { font-size: 13px; color: rgba(20,20,20,0.5); letter-spacing: 1px; text-transform: uppercase; }

  /* ─── HOW IT WORKS ─── */
  .steps { margin-top: 50px; display: flex; flex-direction: column; gap: 0; }
  .step { display: flex; gap: 28px; align-items: flex-start; padding: 36px 0; border-bottom: 1px solid rgba(20,20,20,0.08); }
  .step:last-child { border-bottom: none; }
  .step-num {
    min-width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--cuivre), var(--cuivre-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0;
  }
  .step-title { font-size: 18px; font-weight: 700; color: var(--noir); margin-bottom: 8px; }
  .step-body { font-size: 15px; color: rgba(20,20,20,0.6); line-height: 1.75; }
  .step-tag {
    display: inline-block;
    background: rgba(1,78,84,0.08);
    color: var(--teal);
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 4px;
    margin-bottom: 10px;
  }

  /* ─── DIFF CARDS ─── */
  .diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
  .diff-card { background: white; border: 1px solid rgba(1,78,84,0.15); border-radius: 2px; padding: 32px 28px; border-top: 3px solid var(--teal); }
  .diff-icon { font-size: 28px; margin-bottom: 14px; }
  .diff-title { font-size: 17px; font-weight: 700; color: var(--noir); margin-bottom: 8px; }
  .diff-body { font-size: 14px; color: rgba(20,20,20,0.6); line-height: 1.7; }

  /* ─── TESTIMONIALS MARQUEE ─── */
  .testi-section { padding: 80px 0; overflow: hidden; }
  .testi-section-inner { max-width: 960px; margin: 0 auto; padding: 0 40px 40px; }
  .marquee-track {
    display: flex; gap: 16px;
    width: max-content;
    margin-bottom: 16px;
  }
  .marquee-wrap { overflow: hidden; }
  .marquee-wrap.row1 .marquee-track { animation: scrollLeft 40s linear infinite; }
  .marquee-wrap.row2 .marquee-track { animation: scrollRight 45s linear infinite; }
  @keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
  .testi-card {
    background: white;
    border: 1px solid rgba(20,20,20,0.08);
    border-radius: 4px;
    padding: 24px 22px;
    width: 300px; flex-shrink: 0;
  }
  .testi-tag { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
  .testi-stars { color: var(--cuivre); font-size: 14px; margin-bottom: 10px; }
  .testi-quote { font-size: 13px; color: rgba(20,20,20,0.7); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
  .testi-name { font-size: 12px; font-weight: 700; color: var(--noir); }
  .testi-see-all { text-align: center; margin-top: 28px; }
  .testi-see-all a { font-size: 13px; color: rgba(20,20,20,0.4); text-decoration: underline; letter-spacing: 0.3px; }
  .testi-see-all a:hover { color: rgba(20,20,20,0.7); }

  /* ─── TEAM SECTION ─── */
  .team-section {
    background: var(--noir);
    padding: 80px 40px;
    text-align: center;
  }
  .team-section .section-label { color: var(--cuivre); }
  .team-section .section-title { color: var(--white); margin-bottom: 8px; }
  .team-section .section-title em { color: var(--cuivre-light); }
  .team-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 48px auto 40px;
  }
  .team-card-v2 { position: relative; border-radius: 4px; overflow: hidden; }
  .team-photo-wrap {
    width: 100%; aspect-ratio: 3/4;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
    overflow: hidden;
    position: relative;
  }
  .team-name-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--teal);
    padding: 14px 16px;
    text-align: center;
  }
  .team-card-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
  .team-card-role { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; }
  .team-group-photo {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
  }
  .team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .team-group-photo img { width: 100%; height: 100%; object-fit: cover; }
  .team-desc {
    max-width: 600px;
    margin: 24px auto 0;
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
  }

  /* ─── CTA BAND ─── */
  .cta-band {
    background: url('assets/cta-band-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 36px 40px; text-align: center;
    position: relative;
  }
  .cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: var(--teal);
    opacity: 0.94;
    pointer-events: none;
  }
  .cta-band h2 { font-size: clamp(26px, 3.5vw, 46px); font-weight: 700; color: var(--white); max-width: 700px; margin: 0 auto 14px; line-height: 1.2; position: relative; z-index: 1; }
  .cta-band h2 em { font-style: normal; color: var(--cuivre-light); }
  .cta-band p { font-size: 16px; color: rgba(255,255,255,0.88); margin-bottom: 36px; position: relative; z-index: 1; }
  .cta-band p:last-child { margin-bottom: 0; }
  .cta-band .cta-btn { position: relative; z-index: 1; }



  /* ─── CTA BAND FINAL (SPLIT) ─── */
  .cta-band-final {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0 5%;
    background: url('assets/heroimgv2.png') center 22%/cover no-repeat;
    background-attachment: fixed;
  }
  .cta-band-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
  }
  .cta-split-panel {
    position: relative;
    z-index: 1;
    background: rgba(1, 78, 84, 0.82);
    width: 44%;
    min-width: 360px;
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    margin-left: calc(2% - 525px);
  }
  .cta-split-panel .section-label { color: var(--cuivre); }
  .cta-split-heading {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
  }
  .cta-split-heading em { font-style: normal; color: var(--cuivre-light); }
  .cta-split-note {
    font-size: 12px;
    color: rgba(255,255,255,0.62);
    letter-spacing: 0.5px;
    margin-top: 16px;
  }
  /* ─── BOOKING PAGE ─── */
  .booking-hero {
    min-height: calc(100vh - 80px);
    background: linear-gradient(rgba(0,0,0,0.66), rgba(0,0,0,0.66)), url('assets/city-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
  }
  .booking-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 40px 80px;
  }
  .booking-logo {
    height: 46px;
    width: auto;
    margin-bottom: 60px;
  }
  .booking-content {
    text-align: center;
    max-width: 620px;
  }
  .booking-content .section-label { color: var(--cuivre); margin-bottom: 16px; }
  .booking-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .booking-title em { font-style: normal; color: var(--cuivre-light); }
  .booking-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 48px;
  }
  /* ─── BOOKING FORM ─── */
  .booking-form {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 40px 36px;
    border-radius: 2px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-row {
    display: flex;
    gap: 16px;
  }
  .form-row .form-group { flex: 1; min-width: 0; }
  @media (max-width: 420px) {
    .form-row { flex-direction: column; gap: 20px; }
  }
  .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(20,20,20,0.65);
    letter-spacing: 0.5px;
  }
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--creme);
    border: 1px solid rgba(20,20,20,0.15);
    border-radius: 2px;
    color: var(--noir);
    font-family: 'Switzer', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input[type="text"]::placeholder,
  .form-group input[type="tel"]::placeholder { color: rgba(20,20,20,0.3); }
  .form-group input[type="text"]:focus,
  .form-group input[type="tel"]:focus,
  .form-group select:focus { border-color: var(--cuivre); }
  .form-group select { cursor: pointer; }
  .form-group select option { background: var(--white); color: var(--noir); }
  .radio-group,
  .toggle-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .radio-btn,
  .toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: var(--creme);
    border: 1px solid rgba(20,20,20,0.15);
    border-radius: 2px;
    color: rgba(20,20,20,0.65);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .radio-btn input,
  .toggle-btn input { display: none; }
  .radio-btn:has(input:checked),
  .toggle-btn:has(input:checked) {
    border-color: var(--cuivre);
    background: rgba(196,118,79,0.1);
    color: var(--noir);
  }
  .booking-form .cta-btn { align-self: flex-start; margin-top: 8px; }
  .form-note {
    font-size: 12px;
    color: rgba(20,20,20,0.4);
    letter-spacing: 0.5px;
    margin-top: 4px;
  }
  .merci-card {
    background: var(--white);
    padding: 56px 48px;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  }
  .merci-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--cuivre), var(--cuivre-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--white);
    margin: 0 auto 28px;
  }
  .merci-card .section-label { color: var(--cuivre); margin-bottom: 16px; }
  .merci-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--noir);
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .merci-title em { font-style: normal; color: var(--cuivre); }
  .merci-sub {
    font-size: 16px;
    color: rgba(20,20,20,0.62);
    line-height: 1.75;
    margin-bottom: 32px;
  }
  .merci-card .cta-btn { display: inline-block; }

  /* ─── FOOTER ─── */
  footer { background: var(--noir); border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 40px; text-align: center; }
  .footer-logo { height: 26px; margin-bottom: 10px; }
  .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 8px; }
  .footer-links a { color: rgba(255,255,255,0.35); font-size: 11px; text-decoration: none; letter-spacing: 0.5px; }
  .footer-links a:hover { color: rgba(255,255,255,0.6); }
  .footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); }
  .footer-disclaimer { font-size: 10px; color: rgba(255,255,255,0.12); margin-top: 6px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5; }

  /* ─── LEGAL PAGES ─── */
  .legal-topbar {
    background: var(--noir);
    padding: 20px 40px;
    text-align: center;
  }
  .legal-topbar img { height: 40px; width: auto; }
  .legal-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 40px 96px;
  }
  .legal-wrap .section-label { color: var(--cuivre); margin-bottom: 14px; }
  .legal-wrap h1 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--noir);
    margin-bottom: 10px;
  }
  .legal-updated {
    font-size: 13px;
    color: rgba(20,20,20,0.45);
    margin-bottom: 48px;
  }
  .legal-wrap h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--teal);
    margin: 44px 0 14px;
  }
  .legal-wrap p,
  .legal-wrap li {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(20,20,20,0.72);
    margin-bottom: 14px;
  }
  .legal-wrap ul { padding-left: 22px; margin-bottom: 14px; }
  .legal-wrap li { margin-bottom: 8px; }
  .legal-wrap a { color: var(--cuivre); }
  .legal-back {
    display: inline-block;
    margin-top: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
  }
  .legal-back:hover { text-decoration: underline; }

  /* ─── RESPONSIVE ─── */
  /* Tablets & down: neutralize the wide-desktop split-panel offset, disable fixed bg (janky on touch) */
  @media (max-width: 1200px) {
    .cta-split-panel { width: 56%; min-width: unset; margin-left: 0; }
  }
  @media (max-width: 1024px) {
    .cta-band, .cta-band-final { background-attachment: scroll; }
    .team-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
    .testi-see-all { display: none; }
  }

  /* Tablet portrait & large phones */
  @media (max-width: 760px) {
    .hero { padding: 28px 22px 56px; }
    .hero-logo { height: 53px; margin-bottom: 32px; }
    .hero h1 { margin-bottom: 18px; }
    .hero-sub { margin-bottom: 8px; }
    .hero-stats { margin: 44px auto; }
    .hero-stat { padding: 22px 10px; }
    section { padding: 56px 22px; }
    .steps { margin-top: 36px; }
    .diff-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
    .testi-section { padding: 56px 0; }
    .testi-section-inner { padding: 0 22px 32px; }
    /* Avis : on stoppe le défilement et on empile des cartes plus petites */
    .marquee-wrap { overflow: visible; }
    .marquee-wrap.row1 { margin-bottom: 0; }
    .marquee-wrap.row2 { display: none; } /* une seule rangée sur téléphone */
    .marquee-track {
      animation: none !important;
      width: auto;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 0;
      padding: 0 22px;
    }
    /* on garde 4 avis (les suivants + doublons de boucle sont masqués) */
    .marquee-track .testi-card:nth-child(n+5) { display: none; }
    .testi-card {
      width: 100%; max-width: 440px; padding: 18px 18px;
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .testi-card.in-view { opacity: 1; transform: translateY(0); }
    .marquee-track .testi-card:nth-child(1) { transition-delay: 0.05s; }
    .marquee-track .testi-card:nth-child(2) { transition-delay: 0.15s; }
    .marquee-track .testi-card:nth-child(3) { transition-delay: 0.25s; }
    .marquee-track .testi-card:nth-child(4) { transition-delay: 0.35s; }
    .testi-quote { font-size: 12.5px; margin-bottom: 12px; }
    .team-section { padding: 56px 22px; }
    .team-grid-3 { grid-template-columns: 1fr; max-width: 230px; margin: 36px auto 32px; }
    .cta-band { padding: 48px 22px; }
    .cta-split-panel { width: 100%; padding: 56px 28px; }
    .cta-band-final { min-height: unset; }
    .divider { margin: 0 24px; }
    .booking-hero { min-height: auto; }
    .booking-inner { padding: 32px 22px 56px; }
    .booking-logo { margin-bottom: 40px; }
    .booking-form { padding: 32px 22px; }
    .merci-card { padding: 40px 24px; }
    .legal-topbar { padding: 18px 22px; }
    .legal-wrap { padding: 48px 22px 72px; }
    footer { padding: 24px 22px; }
  }

  /* Small phones */
  @media (max-width: 480px) {
    .hero h1 { font-size: 27px; }
    .hero-sub { font-size: 15px; }
    .section-title { font-size: 24px; }
    .step { gap: 16px; padding: 26px 0; }
    .step-num { min-width: 44px; height: 44px; font-size: 16px; }
    .cta-wrap .cta-btn,
    .cta-band .cta-btn,
    .cta-split-panel .cta-btn,
    .booking-form .cta-btn {
      width: 100%; text-align: center; padding: 16px 20px;
    }
    .footer-links { flex-wrap: wrap; gap: 12px 18px; }
    .radio-group, .toggle-group { gap: 8px; }
  }

  /* Respect du réglage "réduire les animations" : on affiche les avis directement */
  @media (prefers-reduced-motion: reduce) {
    .testi-card { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .hero h1   { animation: fadeUp 0.7s ease both; }
  .hero-sub  { animation: fadeUp 0.7s 0.15s ease both; }
  .hero-stats { animation: fadeUp 0.7s 0.25s ease both; }
  .hero .cta-btn { animation: fadeUp 0.7s 0.4s ease both; }