:root {
  --blue: #0080FE;
  --blue-dark: #045f9e;
  --orange: #de6906;
  --ink: #1c2b3a;
  --muted: #5f6b76;
  --paper: #ffffff;
  --bg: #f4f7fa;
  --line: #e3e8ec;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid var(--line);
  background: var(--paper); position: sticky; top: 0; z-index: 50;
  flex-wrap: wrap; gap: 12px;
}
.site-header .logo img { height: 56px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; flex-wrap: wrap; }
.site-nav a {
  color: var(--ink); font-weight: 600; font-size: 14.5px; text-transform: uppercase; letter-spacing: .03em;
}
.site-nav a.active, .site-nav a:hover { color: var(--blue); }
.site-nav .btn-book {
  background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em;
}
.site-nav .btn-book:hover { background: var(--orange); color: #fff; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 15px;
}
.social-icons a:hover { background: var(--blue); color: #fff; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 900px) {
  .site-nav ul { display: none; width: 100%; order: 3; flex-direction: column; gap: 4px; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 10px; }
  .site-nav.open ul { display: flex; }
  .site-nav { width: 100%; }
  .burger { display: block; }
}

/* Hero slider */
.hero-slider { position: relative; height: 62vh; min-height: 380px; max-height: 640px; overflow: hidden; background: var(--ink); }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slider::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,30,.15) 0%, rgba(10,20,30,.55) 100%);
}
.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0;
}
.hero-dots button.active { background: #fff; }

/* Page hero (interior pages) */
.page-hero {
  height: 34vh; min-height: 220px; position: relative; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(12,22,34,.5); }
.page-hero h1 {
  position: relative; z-index: 1; color: #fff; text-align: center; margin: 0;
  font-size: clamp(28px, 4.5vw, 46px); text-transform: uppercase; letter-spacing: .04em;
}

/* Section title (no image) */
.section-title { text-align: center; padding: 50px 24px 10px; }
.section-title h1, .section-title h2 {
  font-size: clamp(26px, 4vw, 40px); text-transform: uppercase; letter-spacing: .03em; margin: 0 0 12px;
}
.section-title p { color: var(--muted); margin: 0; }

/* Intro (home) */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 60px 24px; max-width: 1180px; margin: 0 auto; }
.intro img { border-radius: 10px; }
.intro .text p { color: var(--muted); font-size: 16px; }
.intro .text a.btn { display: inline-block; margin-top: 8px; background: var(--blue); color: #fff; padding: 12px 26px; border-radius: 999px; font-weight: 700; }
.intro .text a.btn:hover { background: var(--orange); color: #fff; }
@media (max-width: 800px) { .intro { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials { background: var(--bg); padding: 60px 24px; text-align: center; }
.testimonial-track { max-width: 760px; margin: 0 auto; min-height: 150px; }
.testimonial-quote { display: none; }
.testimonial-quote.active { display: block; }
.testimonial-quote .icon { font-size: 30px; color: var(--blue); margin-bottom: 14px; }
.testimonial-quote .msg { font-size: 17px; color: var(--ink); font-style: italic; margin: 0 0 14px; }
.testimonial-quote .name { font-weight: 700; color: var(--muted); font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em; }

/* Video CTA band */
.video-band {
  padding: 70px 24px; text-align: center; background: var(--ink); color: #fff;
}
.video-band a.btn {
  display: inline-block; background: var(--blue); color: #fff; padding: 14px 32px; border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
}
.video-band a.btn:hover { background: var(--orange); }

/* Poster grid (Services / Tarifs overview) */
.poster-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
  padding: 10px 24px 60px; max-width: 1180px; margin: 0 auto;
}
.poster-grid.two-col { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
@media (max-width: 700px) { .poster-grid.two-col { grid-template-columns: 1fr; } }
.poster {
  position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--ink);
}
.poster img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .4s, opacity .3s; }
.poster:hover img { transform: scale(1.06); opacity: 1; }
.poster .label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 100%);
  color: #fff; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .03em;
}
.category-label {
  text-align: center; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--blue); margin: 46px 0 18px;
}

/* Sub-service page layout */
.service-page main { padding-bottom: 60px; }
.service-lede {
  max-width: 820px; margin: 40px auto; padding: 0 24px; font-size: 17px; color: var(--muted);
}
.service-lede p { margin: 0 0 16px; }
.service-lede a.tel { color: var(--blue); font-weight: 700; }
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px;
  max-width: 1100px; margin: 0 auto 60px; padding: 0 24px;
}
.gallery img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* Contact feature blocks */
.contact-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
  max-width: 900px; margin: 0 auto; padding: 40px 24px;
}
.contact-feature { display: flex; gap: 16px; align-items: flex-start; }
.contact-feature .icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-feature h3 { margin: 0 0 4px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.contact-feature a, .contact-feature p { margin: 0; font-size: 17px; color: var(--ink); }

/* Contact form */
.contact-form-wrap { max-width: 640px; margin: 0 auto 60px; padding: 0 24px; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 8px; font-size: 15px; font-family: inherit;
}
.contact-form button {
  justify-self: end; background: var(--blue); color: #fff; border: none; padding: 13px 30px;
  border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; cursor: pointer; font-size: 14px;
}
.contact-form button:hover { background: var(--orange); }
.map-embed { border: none; width: 100%; height: 380px; border-radius: 12px; margin-top: 10px; }

/* Media page */
.media-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
  max-width: 1100px; margin: 0 auto; padding: 40px 24px 70px;
}
.media-grid iframe { width: 100%; border: none; border-radius: 10px; aspect-ratio: 16/9; }

/* Tarifs pricing table */
.tarif-block {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: center;
  max-width: 1000px; margin: 0 auto 50px; padding: 0 24px;
}
.tarif-block img { border-radius: 12px; }
.tarif-block h2 { text-transform: uppercase; letter-spacing: .03em; font-size: 20px; margin: 0 0 16px; }
.tarif-row {
  display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--line);
  padding: 10px 0; font-size: 15px;
}
.tarif-row .price { font-weight: 700; color: var(--blue); white-space: nowrap; }
.tarif-row .price.tbd { color: var(--muted); font-weight: 500; font-style: italic; }
@media (max-width: 700px) { .tarif-block { grid-template-columns: 1fr; } }
.tarif-note { max-width: 700px; margin: 0 auto 60px; padding: 0 24px; font-size: 13px; color: var(--muted); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line); padding: 26px 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 13.5px;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--blue); }
