:root {
  --bg: #f5f9fb;
  --surface: #ffffff;
  --text: #1c2d36;
  --muted: #5b707a;
  --primary: #0f8ea6;
  --secondary: #0cbb8f;
  --ci-orange: #f77f00;
  --ci-green: #009e60;
  --ci-white: #ffffff;
  --sand: #f4e5c7;
  --shadow: 0 12px 30px rgba(13, 48, 64, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, #f5f9fb 0%, #edf6f7 100%);
}

h1,
h2,
h3 {
  font-family: Poppins, Inter, sans-serif;
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  background: #0f2331;
  color: #fff;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__ring {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background: rgba(8, 30, 40, 0.72);
  backdrop-filter: blur(8px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.brand > span {
  color: #ffffff;
}

.brand > span > span {
  color: var(--ci-orange);
}

.nav__toggle {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  border-radius: 10px;
  width: 42px;
  height: 42px;
}

.nav__menu {
  position: absolute;
  top: 76px;
  left: 4vw;
  right: 4vw;
  list-style: none;
  margin: 0;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(9, 31, 41, 0.92);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.lang-btn {
  border: 0;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn--fr {
  background: linear-gradient(90deg, #1f4db8 0 33%, #ffffff 33% 66%, #d33434 66% 100%);
  color: #12243a;
}

.lang-btn--en {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.55rem 0.32rem 0.34rem;
  border-radius: 999px;
  min-height: 34px;
}

.lang-btn__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.lang-btn--en span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.lang-btn__flag {
  display: inline-flex;
  font-size: 1rem;
  line-height: 1;
}

.lang-btn.active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.nav__menu.show {
  display: flex;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(110deg, rgba(5, 22, 31, 0.72) 22%, rgba(6, 55, 70, 0.48) 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  color: #fff;
  padding-top: 6rem;
}

.hero__kicker {
  color: #ffd4a3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.1rem);
  margin-bottom: 0.8rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--ci-orange), var(--ci-green));
  color: var(--ci-white);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section .btn--secondary {
  background: #0c3344;
  color: #fff;
  border: 0;
}

.about {
  display: grid;
  gap: 1.2rem;
}

.about__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  border-top: 4px solid rgba(247, 127, 0, 0.8);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.badges span {
  background: #fff3e6;
  color: #8c4a00;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.highlights {
  display: grid;
  gap: 1rem;
}

.highlights__hero-image {
  width: 100%;
  height: clamp(220px, 48vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow);
}

.highlight {
  background: #fff;
  padding: 1.1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 3px solid rgba(0, 158, 96, 0.55);
}

.signature-quote {
  margin: 0;
  background: #ffffff;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid rgba(247, 127, 0, 0.85);
}

.signature-quote::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: 14px;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: rgba(15, 142, 166, 0.22);
  font-family: Georgia, "Times New Roman", serif;
}

.signature-quote p {
  margin: 0 0 0.8rem;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: #2a3f49;
}

.signature-quote cite {
  font-style: normal;
  font-weight: 800;
  color: #0f8ea6;
  letter-spacing: 0.02em;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.service-card__image {
  width: 100%;
  height: clamp(180px, 28vw, 220px);
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}

.card:hover {
  transform: translateY(-4px);
}

.gallery__header {
  max-width: 680px;
}

.filters {
  margin: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-btn {
  border: 1px solid #b7d3dc;
  background: #fff;
  color: #0d4d61;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}

.filter-btn.active {
  background: var(--ci-green);
  border-color: var(--ci-green);
  color: #fff;
}

.gallery__grid {
  columns: 1;
  column-gap: 0.95rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.95rem;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(3, 13, 19, 0.8));
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}

.gallery__footer {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.social-proof {
  font-size: 1.05rem;
}

.reviews {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid rgba(247, 127, 0, 0.7);
}

.stars {
  color: #ffb624;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.contact {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.contact__infos,
.contact__form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact__form {
  display: grid;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.42rem;
  font-weight: 600;
}

input,
select,
textarea {
  border: 1px solid #c8d9df;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  background: #fff;
}

.contact__consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  font-weight: 500;
}

.contact__consent input[type="checkbox"] {
  margin-top: 0.2rem;
}

.contact__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact__feedback {
  margin: 0;
  min-height: 1.4rem;
  font-weight: 600;
  color: #0d4d61;
}

.contact__feedback--success {
  color: #10724f;
}

.contact__feedback--error {
  color: #b02a37;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 60;
  background: var(--ci-green);
  color: #ffffff;
  font-weight: 800;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  width: min(95vw, 1400px);
  height: min(88vh, 900px);
  object-fit: contain;
  image-rendering: auto;
  border-radius: 14px;
}

.lightbox__caption {
  position: absolute;
  bottom: 1.5%;
  color: #fff;
  text-align: center;
  width: 92vw;
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.lightbox__close {
  top: 12px;
  right: 12px;
}

.lightbox__nav--prev {
  left: 14px;
}

.lightbox__nav--next {
  right: 14px;
}

@media (min-width: 760px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    background: transparent;
    padding: 0;
  }

  .about {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    columns: 2;
  }

  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 1.2rem;
  }

  .contact__infos {
    position: sticky;
    top: 96px;
  }

  .contact__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .contact__form label:nth-of-type(10),
  .contact__form .contact__consent,
  .contact__form button,
  .contact__form input[name="_gotcha"],
  .contact__form input[name="_subject"] {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .gallery__grid {
    columns: 3;
  }
}
