/* =========================================================
   FOOT VACANCES 46 — Feuille de styles globale
   Charte issue du flyer : bleu marine profond + vert lime
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  /* Couleurs principales (extraites du flyer) */
  --navy-900: #021526;
  --navy-800: #06223a;
  --navy-700: #0b2e4d;
  --navy-600: #123b61;
  --lime-500: #9eb000;   /* vert lime accent */
  --lime-400: #b6cc12;
  --lime-300: #c9dd33;
  --cream: #e9e8e4;
  --white: #ffffff;
  --ink: #0c1622;
  --muted: #5a6675;
  --line: rgba(255, 255, 255, 0.12);

  /* Typographie */
  --font-display: "Anton", "Arial Narrow", "Oswald", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Mesures */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(2, 21, 38, 0.18);
  --shadow-sm: 0 8px 24px rgba(2, 21, 38, 0.12);
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--lime-500);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--navy-900);
}

.section-title--light {
  color: var(--white);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
  margin-top: 18px;
}

.lead--light {
  color: rgba(255, 255, 255, 0.78);
}

.text-lime {
  color: var(--lime-500);
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--lime-500);
  color: var(--navy-900);
  box-shadow: 0 12px 26px rgba(158, 176, 0, 0.35);
}

.btn--primary:hover {
  background: var(--lime-400);
  box-shadow: 0 16px 32px rgba(158, 176, 0, 0.45);
}

.btn--light {
  background: var(--white);
  color: var(--navy-900);
}

.btn--light:hover {
  background: var(--cream);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--lime-500);
  color: var(--lime-300);
}

.btn--outline-dark {
  background: transparent;
  border-color: rgba(2, 21, 38, 0.2);
  color: var(--navy-900);
}

.btn--outline-dark:hover {
  border-color: var(--lime-500);
  background: var(--lime-500);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 1.05rem;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 21, 38, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lime-500);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--lime-400);
  margin-top: 3px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link.is-active {
  color: var(--lime-300);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--lime-500);
  border-radius: 2px;
}

.nav__cta {
  margin-left: 10px;
}

/* Burger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero (photo de fond) ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-900);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(2, 21, 38, 0.72) 0%,
      rgba(2, 21, 38, 0.82) 55%,
      rgba(2, 21, 38, 0.95) 100%
    ),
    linear-gradient(110deg, rgba(2, 21, 38, 0.85) 10%, rgba(2, 21, 38, 0.25) 90%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 104px 0 110px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 4px rgba(158, 176, 0, 0.25);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 0.98;
  text-shadow: 0 2px 24px rgba(2, 21, 38, 0.5);
}

.hero h1 .accent {
  color: var(--lime-400);
}

.hero__sub {
  margin-top: 22px;
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 50ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 15px;
  border-radius: 999px;
}

.hero__meta svg {
  width: 18px;
  height: 18px;
  color: var(--lime-400);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero__price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lime-400);
  line-height: 1;
}

/* ---------- Bandeau d'alerte réservation ---------- */
.notice-bar {
  background: var(--lime-500);
  color: var(--navy-900);
  font-weight: 600;
  text-align: center;
  padding: 12px 24px;
  font-size: 0.95rem;
}

.notice-bar a {
  text-decoration: underline;
  font-weight: 800;
}

/* ---------- Cartes / Grilles ---------- */
.grid {
  display: grid;
  gap: 26px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid rgba(2, 21, 38, 0.08);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(158, 176, 0, 0.4);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(158, 176, 0, 0.14);
  color: var(--lime-500);
  margin-bottom: 18px;
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.35rem;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Cartes valeurs (sur fond foncé) */
.values {
  background: var(--navy-900);
  color: var(--white);
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.value-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--lime-400);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

/* ---------- Bloc deux colonnes ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checklist {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 500;
}

.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lime-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23021526' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ---------- Tarifs ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 2px solid rgba(2, 21, 38, 0.1);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  text-align: center;
}

.price-card--featured {
  border-color: var(--lime-500);
  box-shadow: 0 18px 44px rgba(158, 176, 0, 0.18);
}

.price-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime-500);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.4rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--navy-900);
  line-height: 1;
}

.price-card .amount span {
  font-size: 1.3rem;
}

.price-card .note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.price-card ul {
  text-align: left;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}

.price-card ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96rem;
}

.price-card ul li::before {
  content: "✓";
  color: var(--lime-500);
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- Programme / planning ---------- */
.timeline {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.timeline__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(2, 21, 38, 0.08);
  border-left: 4px solid var(--lime-500);
  border-radius: 12px;
  padding: 16px 22px;
}

.timeline__time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--lime-500);
}

.timeline__label {
  font-weight: 600;
  color: var(--navy-900);
}

/* Tableau semaine */
.week {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(2, 21, 38, 0.1);
}

.week table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.week th,
.week td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(2, 21, 38, 0.08);
  font-size: 0.95rem;
}

.week thead th {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.week tbody tr:nth-child(even) {
  background: rgba(158, 176, 0, 0.05);
}

.week td:first-child {
  font-weight: 700;
  color: var(--navy-900);
}

/* ---------- Étapes (réservation) ---------- */
.steps {
  display: grid;
  gap: 22px;
  counter-reset: step;
  max-width: 820px;
  margin: 0 auto;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  background: var(--white);
  border: 1px solid rgba(2, 21, 38, 0.08);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.step > div {
  min-width: 0;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy-900);
  color: var(--lime-400);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.step h3 {
  font-size: 1.25rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.step p a {
  color: var(--lime-500);
  font-weight: 700;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Liste documents requis */
.docs {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.docs li {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(158, 176, 0, 0.08);
  border: 1px solid rgba(158, 176, 0, 0.25);
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.docs li svg {
  width: 20px;
  height: 20px;
  color: var(--lime-500);
  flex-shrink: 0;
}

/* Encadré d'avertissement */
.callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 30px;
  border-left: 5px solid var(--lime-500);
}

.callout svg {
  width: 30px;
  height: 30px;
  color: var(--lime-400);
  flex-shrink: 0;
}

.callout h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.callout p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.97rem;
}

/* ---------- CTA bandeau ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--lime-500), var(--lime-400));
  color: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy-900);
}

.cta-band p {
  max-width: 56ch;
  margin: 16px auto 30px;
  font-weight: 500;
  font-size: 1.05rem;
}

.cta-band .btn--primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(2, 21, 38, 0.28);
}

.cta-band .btn--primary:hover {
  background: var(--navy-800);
}

/* ---------- Page header (sous-pages) ---------- */
.page-hero {
  background: radial-gradient(
      900px 500px at 85% -20%,
      rgba(158, 176, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.page-hero p {
  margin-top: 18px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--lime-300);
}

/* ---------- Formulaire de contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(2, 21, 38, 0.08);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.contact-item__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--lime-400);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h3 {
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-item a:hover {
  color: var(--lime-500);
}

.form {
  background: var(--white);
  border: 1px solid rgba(2, 21, 38, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(2, 21, 38, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: #fbfbfa;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime-500);
  box-shadow: 0 0 0 3px rgba(158, 176, 0, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form__note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq__item {
  background: var(--white);
  border: 1px solid rgba(2, 21, 38, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  text-align: left;
}

.faq__q .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition);
}

.faq__q .icon::before,
.faq__q .icon::after {
  content: "";
  position: absolute;
  background: var(--lime-500);
  border-radius: 2px;
}

.faq__q .icon::before {
  top: 11px;
  left: 2px;
  right: 2px;
  height: 2px;
}

.faq__q .icon::after {
  left: 11px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transition: transform var(--transition);
}

.faq__item.is-open .faq__q .icon::after {
  transform: scaleY(0);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq__a p {
  padding: 0 26px 24px;
  color: var(--muted);
}

/* ---------- Encadrés partenaires ---------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.partner-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.partner-chip span {
  color: var(--lime-400);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat {
  text-align: center;
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--lime-400);
  line-height: 1;
}

.stat__label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

/* ---------- Équipe ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.member {
  background: var(--white);
  border: 1px solid rgba(2, 21, 38, 0.08);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}

.member__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--lime-400);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.member h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
}

.member .role {
  display: inline-block;
  margin-top: 8px;
  background: rgba(158, 176, 0, 0.14);
  color: var(--lime-500);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 28px;
  border-top: 4px solid var(--lime-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 11px;
}

.footer-col a,
.footer-col li {
  font-size: 0.94rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--lime-300);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--lime-300);
}

.footer-credit {
  display: block;
  margin-top: 6px;
}

.footer-credit a {
  color: #ffffff;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #ffffff;
  font-weight: 700;
}

/* ---------- Animation reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner {
    padding: 80px 0 84px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

@media (max-width: 860px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split__media {
    order: -1;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  /* Menu mobile */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--navy-900);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 26px;
    transform: translateY(-130%);
    transition: transform 0.32s ease;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .nav__menu.is-open {
    transform: translateY(0);
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 10px;
  }

  .nav__link.is-active::after {
    display: none;
  }

  .nav__link.is-active {
    background: rgba(158, 176, 0, 0.12);
  }

  .nav__cta {
    margin: 8px 0 0;
  }

  .nav__cta .btn {
    width: 100%;
  }

  /* ---- Bandeau d'annonce compact ---- */
  .notice-bar {
    padding: 9px 16px;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  /* ---- Hero mobile (photo de fond) ---- */
  .hero__inner {
    padding: 52px 0 60px;
  }

  .hero__bg img {
    object-position: center 28%;
  }

  .hero__badge {
    margin-bottom: 16px;
    white-space: normal;
    max-width: 100%;
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .hero__sub {
    font-size: 1rem;
    margin-top: 14px;
    max-width: 42ch;
  }

  .hero__meta {
    gap: 9px;
    margin-top: 22px;
  }

  .hero__meta li {
    font-size: 0.84rem;
    padding: 7px 13px;
  }

  .hero__actions {
    margin-top: 28px;
    gap: 12px;
  }

  .hero__actions .btn,
  .price-card .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .hero__price {
    width: 100%;
    justify-content: center;
    margin-top: 2px;
  }

  .btn {
    padding: 13px 24px;
    font-size: 0.92rem;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .btn--lg {
    padding: 15px 24px;
    font-size: 0.98rem;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 40px 26px;
  }

  .form {
    padding: 26px 22px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .callout {
    flex-direction: column;
    gap: 12px;
  }

  /* Étapes réservation compactes */
  .step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .step::before {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border-radius: 13px;
  }

  .step h3 {
    font-size: 1.12rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 540px) {
  .grid--3,
  .grid--4,
  .team {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .timeline__row {
    grid-template-columns: 76px 1fr;
    gap: 14px;
  }

  .section-title {
    font-size: 1.9rem;
  }
}
