/* ================================================
   TORTUGA SOCIAL BOAT — Design System v3
   Chaleureux · Humain · Editorial · Nautique
   Initial Solutions · initial-solutions.ch
   ================================================ */

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

:root {
  --marine:      #0A2540;
  --marine-deep: #061828;
  --bleu:        #1670B0;
  --turquoise:   #0FA3B1;
  --or:          #D4923A;
  --or-doux:     #F5E6CC;
  --sable:       #F7F3EC;
  --blanc:       #FFFFFF;
  --texte:       #1C1C1E;
  --texte-doux:  #5A6475;
  --bordure:     #E4E4E7;

  --nav-h:    70px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 24px 64px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--texte);
  background: var(--blanc);
  padding-top: var(--nav-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.12;
  font-weight: 700;
}

/* ======================================
   NAVIGATION
   ====================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 200;
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blanc);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
}

.nav-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.nav-logo-img { height: 38px; width: auto; }

.nav-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nav-brand-sub {
  display: block;
  font-size: 0.56rem;
  font-weight: 500;
  color: var(--turquoise);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav-item { position: relative; }

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
  user-select: none;
}

.nav-item > a:hover  { color: var(--blanc); background: rgba(255,255,255,0.08); }
.nav-item > a.nav-active { color: var(--turquoise); background: rgba(15,163,177,0.1); }

.nav-arrow {
  width: 10px; height: 6px;
  opacity: 0.4;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.nav-item.is-open > a .nav-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--blanc);
  border-radius: 3px;
  box-shadow: 0 12px 40px rgba(10,37,64,0.18), 0 2px 8px rgba(10,37,64,0.08);
  border: 1px solid var(--bordure);
  padding: 6px;
  z-index: 999;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}

.nav-item.is-open > .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--texte-doux);
  border-radius: 2px;
  transition: background 0.12s, color 0.12s;
}

.nav-dropdown a:hover { background: var(--sable); color: var(--marine); }

.nav-dropdown-divider {
  height: 1px;
  background: var(--bordure);
  margin: 5px 8px;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--or);
  color: var(--blanc);
  padding: 8px 22px;
  border-radius: 3px;
  font-size: 0.81rem;
  font-weight: 600;
  margin-left: 16px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blanc);
  border-radius: 1px;
  transition: transform 0.26s, opacity 0.26s;
}

/* ======================================
   LAYOUT
   ====================================== */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.container-sm { max-width: 780px;  margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.section      { padding: 100px 0; }
.section-sm   { padding: 64px 0; }

.bg-sable  { background: var(--sable); }
.bg-marine { background: var(--marine); }
.bg-deep   { background: var(--marine-deep); }
.bg-blanc  { background: var(--blanc); }

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

/* ======================================
   TYPOGRAPHIE
   ====================================== */
.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 14px;
}

.eyebrow-or { color: var(--or); }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--marine);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-title em { font-style: italic; color: var(--bleu); }

.lead {
  font-size: 1.05rem;
  color: var(--texte-doux);
  line-height: 1.8;
  max-width: 640px;
}

.body-text {
  font-size: 0.93rem;
  color: var(--texte-doux);
  line-height: 1.82;
}

/* ======================================
   BOUTONS
   ====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 0.87rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary     { background: var(--or);     color: var(--blanc);  border-color: var(--or); }
.btn-primary:hover { box-shadow: 0 6px 24px rgba(212,146,58,0.35); }

.btn-secondary   { background: var(--bleu);   color: var(--blanc);  border-color: var(--bleu); }
.btn-secondary:hover { background: #1260a0; box-shadow: 0 6px 24px rgba(22,112,176,0.28); }

.btn-dark        { background: var(--marine); color: var(--blanc);  border-color: var(--marine); }
.btn-dark:hover  { background: #0d3055; }

.btn-outline     { background: transparent; color: var(--marine); border-color: var(--marine); }
.btn-outline:hover { background: var(--marine); color: var(--blanc); }

.btn-ghost-white { background: transparent; color: var(--blanc); border-color: rgba(255,255,255,0.38); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-lg { padding: 16px 36px; font-size: 0.94rem; }
.btn-sm { padding: 9px 20px; font-size: 0.79rem; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ======================================
   HERO ACCUEIL — editorial, humain
   ====================================== */
.hero {
  min-height: 96vh;
  background: var(--marine);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--marine) 0%, transparent 40%);
  z-index: 1;
}

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

.hero-right-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0E3A68 0%, #1670B0 60%, #0FA3B1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  padding: 40px;
}

.hero-right-ph .ph-icon { font-size: 4rem; opacity: 0.25; }

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  color: var(--blanc);
  line-height: 1.06;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero h1 em { font-style: italic; color: var(--or); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ======================================
   BANDE STATS
   ====================================== */
.stats-band {
  background: var(--marine-deep);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.04);
}

.stat-item {
  padding: 38px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--or);
  line-height: 1;
  margin-bottom: 7px;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
}

/* ======================================
   SECTION MISSION — layout asymetrique
   ====================================== */
.mission-wrap {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  min-height: 560px;
}

.mission-text {
  padding: 88px 72px 88px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sable);
}

.mission-visual {
  position: relative;
  overflow: hidden;
}

.mission-visual .img-ph {
  height: 100%;
  min-height: 480px;
}

.mission-badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--or);
  color: var(--blanc);
  padding: 20px 28px;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 500;
  max-width: 200px;
  box-shadow: var(--shadow-md);
}

.mission-badge strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

/* ======================================
   PRESTATIONS — layout editorial
   ====================================== */
.prestations-intro {
  padding: 100px 0 64px;
  background: var(--blanc);
}

/* Prestation featured — grande, pleine largeur */
.presta-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  background: var(--marine);
  margin-bottom: 3px;
}

.presta-featured-img {
  position: relative;
  overflow: hidden;
}

.presta-featured-img .img-ph { height: 100%; min-height: 420px; }

.presta-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10,37,64,0.6) 100%);
}

.presta-featured-content {
  padding: 64px 72px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.presta-featured-content .eyebrow { color: var(--turquoise); }

.presta-featured-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--blanc);
  margin-bottom: 18px;
  font-weight: 600;
}

.presta-featured-content h3 em { color: var(--or); font-style: italic; }

.presta-featured-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 400px;
}

/* Grille 3 colonnes pour les autres */
.presta-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--bordure);
  margin-bottom: 3px;
}

.presta-tile {
  background: var(--blanc);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.22s;
  position: relative;
}

.presta-tile:hover { background: var(--sable); }

.presta-tile-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
}

.presta-tile h3 {
  font-size: 1.15rem;
  color: var(--marine);
  font-weight: 600;
  line-height: 1.25;
}

.presta-tile p {
  font-size: 0.83rem;
  color: var(--texte-doux);
  line-height: 1.68;
  flex: 1;
}

.presta-tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--bordure);
  margin-top: auto;
}

.presta-tile-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--marine);
}

.presta-tile-price strong { color: var(--bleu); font-size: 1rem; }

.presta-tile-link {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--bleu);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: letter-spacing 0.2s;
}

.presta-tile-link:hover { letter-spacing: 0.14em; }

/* Deux colonnes pour les 2 dernieres */
.presta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--bordure);
}

/* ======================================
   SECTION TARIFS
   ====================================== */
.tarif-section { background: var(--marine); }

.tarif-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}

.tarif-table { width: 100%; border-collapse: collapse; }

.tarif-table thead th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tarif-table tbody td {
  padding: 16px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tarif-table tbody td:first-child { font-weight: 600; color: var(--blanc); }
.tarif-table tbody tr:last-child td { border-bottom: none; }
.tarif-highlight { color: var(--or) !important; font-weight: 600 !important; }

.tarif-note {
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(15,163,177,0.07);
  border-left: 3px solid rgba(15,163,177,0.3);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.68;
}

.tarif-devis {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px;
}

.tarif-devis h3 {
  font-size: 1.4rem;
  color: var(--blanc);
  margin-bottom: 22px;
}

.tarif-devis ul { list-style: none; margin-bottom: 28px; }

.tarif-devis li {
  padding: 9px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
}

.tarif-devis li::before { content: '\2192'; color: var(--turquoise); flex-shrink: 0; }
.tarif-devis li:last-child { border-bottom: none; }

.tarif-soutien {
  margin-top: 18px;
  padding: 20px;
  background: rgba(212,146,58,0.08);
  border-left: 3px solid rgba(212,146,58,0.4);
}

.tarif-soutien h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--or);
  margin-bottom: 7px;
}

.tarif-soutien p { font-size: 0.8rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

/* ======================================
   SECTION ETAPES
   ====================================== */
.steps-section {
  background: linear-gradient(160deg, #0A2540 0%, #0E3A68 100%);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15,163,177,0.5);
  background: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--turquoise);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
}

/* ======================================
   SECTION SOUTENIR — accueil
   ====================================== */
.soutenir-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.soutenir-text {
  background: var(--sable);
  padding: 88px 72px 88px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soutenir-iban {
  background: var(--marine);
  padding: 88px 80px 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soutenir-iban .eyebrow { color: var(--or); }
.soutenir-iban h2 { color: var(--blanc); }

.iban-rows { margin-top: 28px; }

.iban-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.iban-row:last-child { border-bottom: none; }

.iban-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise);
  min-width: 90px;
  flex-shrink: 0;
}

.iban-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}

/* Standalone iban-box pour autres pages */
.iban-box {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.iban-box h3 {
  font-size: 1.2rem;
  color: var(--marine);
  margin-bottom: 24px;
}

.iban-box .iban-row {
  border-bottom-color: var(--bordure);
}

.iban-box .iban-label { color: var(--turquoise); }
.iban-box .iban-value { color: var(--marine); }

/* ======================================
   PAGE HERO INTERIEURE
   ====================================== */
.page-hero {
  background: var(--marine);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--turquoise), var(--or), var(--bleu));
}

.page-hero .eyebrow { color: var(--turquoise); }

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--blanc);
  margin-bottom: 18px;
}

.page-hero h1 em { color: var(--or); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.65); }
.page-hero .lead { color: rgba(255,255,255,0.65); }

/* ======================================
   LAYOUTS COMMUNS
   ====================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.align-start { align-items: start; }
.two-col.gap-sm { gap: 48px; }

.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }

.pillar {
  background: var(--blanc);
  padding: 20px;
  border-left: 3px solid var(--turquoise);
  box-shadow: var(--shadow-sm);
}

.pillar h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: 6px;
}

.pillar p { font-size: 0.8rem; color: var(--texte-doux); line-height: 1.62; }

/* ======================================
   ENCADRES
   ====================================== */
.encadre {
  background: var(--sable);
  border-left: 3px solid var(--turquoise);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--texte-doux);
  line-height: 1.68;
}

.encadre strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.encadre-or { border-left-color: var(--or); }
.encadre-or strong { color: var(--or); }

/* ======================================
   PILLS
   ====================================== */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }

.pill {
  background: rgba(22,112,176,0.07);
  color: var(--bleu);
  border: 1px solid rgba(22,112,176,0.18);
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 500;
}

/* ======================================
   PHOTOS / VISUELS
   ====================================== */
.img-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  padding: 20px;
  text-align: center;
  font-family: 'DM Mono', 'Courier New', monospace;
}

.img-ph-icon { font-size: 2.4rem; opacity: 0.4; }

.photo-stack { position: relative; height: 480px; }

.photo-main {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.photo-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 5px solid var(--blanc);
  box-shadow: var(--shadow-lg);
}

.photo-main .img-ph, .photo-accent .img-ph { height: 100%; }

/* ======================================
   BLOCKQUOTE
   ====================================== */
.blockquote {
  border-left: 3px solid var(--or);
  padding: 20px 28px;
  background: var(--or-doux);
  margin: 28px 0;
}

.blockquote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--marine);
  line-height: 1.62;
}

/* ======================================
   FICHES PRESTATIONS
   ====================================== */
.presta-fiche { padding: 88px 0; border-bottom: 1px solid var(--bordure); }
.presta-fiche:last-child { border-bottom: none; }

.presta-fiche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.presta-fiche-grid.reverse { direction: rtl; }
.presta-fiche-grid.reverse > * { direction: ltr; }

.presta-fiche-img { overflow: hidden; aspect-ratio: 4/3; }
.presta-fiche-img .img-ph { height: 100%; }

.presta-fiche-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--marine);
  margin-bottom: 18px;
}

.presta-fiche-content h2 em { color: var(--bleu); font-style: italic; }

/* ======================================
   EQUIPE
   ====================================== */
.equipe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.membre-card { text-align: center; }

.membre-avatar-ph {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blanc);
  margin: 0 auto 14px;
}

.membre-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: 4px;
}

.membre-card p { font-size: 0.73rem; color: var(--turquoise); font-weight: 500; }

/* ======================================
   SPECS BATEAU
   ====================================== */
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.spec-card {
  background: var(--blanc);
  padding: 18px 20px;
  border-top: 3px solid var(--turquoise);
  box-shadow: var(--shadow-sm);
}

.spec-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.spec-value { font-size: 0.94rem; font-weight: 700; color: var(--marine); }

/* ======================================
   IMPACT DOTS
   ====================================== */
.impact-dots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }

.impact-dot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,37,64,0.04);
  padding: 11px 14px;
  font-size: 0.78rem;
  color: var(--texte-doux);
}

.dot { width: 6px; height: 6px; background: var(--turquoise); flex-shrink: 0; }

/* ======================================
   FORMULAIRES
   ====================================== */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--marine);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--bordure);
  border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.87rem;
  color: var(--texte);
  background: var(--blanc);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bleu);
  box-shadow: 0 0 0 3px rgba(22,112,176,0.09);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-checkbox { flex-direction: row !important; align-items: flex-start; gap: 10px; }
.form-checkbox input { width: auto; flex-shrink: 0; margin-top: 3px; }
.form-checkbox label { font-size: 0.77rem; font-weight: 400; color: var(--texte-doux); cursor: pointer; }

.form-note { font-size: 0.73rem; color: var(--texte-doux); }

/* ======================================
   CTA BAND
   ====================================== */
.cta-band {
  background: linear-gradient(135deg, var(--marine) 0%, #0E3A68 100%);
  padding: 96px 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--blanc); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 500px; margin: 0 auto 36px; line-height: 1.78; }

/* ======================================
   CONTACT
   ====================================== */
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-block h3 { font-size: 1.15rem; color: var(--marine); margin-bottom: 18px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.87rem;
  color: var(--texte-doux);
}

.contact-icon {
  width: 34px; height: 34px;
  background: rgba(22,112,176,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.social-links { display: flex; gap: 10px; margin-top: 8px; }

.social-link {
  width: 38px; height: 38px;
  background: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: var(--blanc);
  font-weight: 700;
  transition: background 0.2s;
}

.social-link:hover { background: var(--bleu); }

/* ======================================
   FOOTER
   ====================================== */
.site-footer { background: var(--marine-deep); }

.footer-top { padding: 80px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 2px;
}

.footer-brand-sub {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.74;
  max-width: 260px;
}

.footer-social { display: flex; gap: 8px; margin-top: 20px; }

.footer-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}

.footer-social a:hover { background: var(--bleu); color: var(--blanc); }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.81rem; color: rgba(255,255,255,0.4); transition: color 0.18s; }
.footer-col a:hover { color: var(--blanc); }

.footer-iban {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.iban-line { font-size: 0.73rem; color: rgba(255,255,255,0.36); padding: 3px 0; font-variant-numeric: tabular-nums; }
.iban-line span { color: var(--turquoise); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; margin-right: 6px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding: 24px 0; }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a { color: rgba(255,255,255,0.28); transition: color 0.18s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.68); }

/* ======================================
   ANIMATIONS
   ====================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ======================================
   RESPONSIVE
   ====================================== */


/* ============================================================
   RESPONSIVE — Tortuga Social Boat
   ============================================================ */

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }

body.menu-open { overflow: hidden; padding-right: var(--scrollbar-w, 0px); }
.site-nav { padding-right: var(--scrollbar-w, 0px); }
img, video, svg { display: block; max-width: 100%; height: auto; }
p, li { overflow-wrap: break-word; word-break: normal; }
h1, h2, h3, h4 { overflow-wrap: break-word; text-wrap: balance; }
input, select, textarea { font-size: max(16px, 1rem); }

:root {
  --page-pad: clamp(1rem, 4vw, 3rem);
  --section-v: clamp(2.5rem, 6vw, 6rem);
}

/* ============================================================
   1180px — MENU MOBILE
   ============================================================ */
@media (max-width: 1180px) {

  /* Burger visible */
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 16px; }
  .container, .container-sm { padding-inline: 16px; }

  /* Menu sorti du flux — ne perturbe pas le nav-inner */
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    display: none;
    z-index: 200;
  }

  /* Cacher les liens desktop */
  .nav-menu > .nav-links { display: none; }
  .nav-menu > .btn-nav-cta { display: none; }

  /* Menu ouvert — panneau plein écran */
  .nav-menu.open {
    display: flex !important;
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100dvh - var(--nav-h)) !important;
    background: var(--marine-deep) !important;
    flex-direction: column !important;
    padding: 1rem 1rem 2rem !important;
    overflow-y: auto !important;
    z-index: 200 !important;
    gap: 0 !important;
    align-items: stretch !important;
  }

  .nav-menu.open > .nav-links {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu.open > .btn-nav-cta {
    display: flex !important;
    margin-top: 1rem;
    width: auto;
    align-self: center;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    font-size: 1rem;
    padding: 12px 32px;
  }

  /* Liens */
  .nav-menu.open .nav-item > a {
    color: rgba(255,255,255,0.85) !important;
    padding: 0.875rem 0.75rem !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    white-space: normal !important;
    background: none !important;
  }

  /* Dropdown mobile */
  .nav-menu.open .nav-dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--turquoise) !important;
    background: rgba(255,255,255,0.04) !important;
    padding: 0.25rem 0 0.25rem 1rem !important;
    display: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    transition: none !important;
  }

  .nav-menu.open .nav-item.is-open > .nav-dropdown {
    display: block !important;
  }

  .nav-menu.open .nav-dropdown a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.9rem !important;
    padding: 0.625rem 1rem !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    background: none !important;
    border-radius: 0 !important;
  }
}

/* ============================================================
   960px — TABLETTE PORTRAIT
   ============================================================ */
@media (max-width: 960px) {

  /* Hero vertical */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .hero-right {
    order: 1;
    width: 100%;
    height: clamp(240px, 40svh, 420px);
    min-height: 0;
  }
  .hero-left {
    order: 2;
    width: 100%;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
    min-height: 0;
  }
  .hero-scroll { display: none; }

  /* Grilles */
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .two-col       { grid-template-columns: 1fr; gap: 32px; }
  .presta-fiche-grid { grid-template-columns: 1fr; gap: 32px; }
  .presta-fiche-grid.reverse { direction: ltr; }
  .presta-featured  { grid-template-columns: 1fr; }
  .presta-secondary { grid-template-columns: repeat(2, 1fr); }
  .soutenir-band    { grid-template-columns: 1fr; }
  .tarif-grid       { grid-template-columns: repeat(2, 1fr); }
  .specs-grid       { grid-template-columns: 1fr; }
  .pillars-grid     { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .equipe-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Mission */
  .mission-intro  { grid-template-columns: 1fr; }
  .mission-visual { min-height: clamp(200px, 35vw, 360px); }
  .mission-pillars { grid-template-columns: repeat(2, 1fr); }

  /* Padding */
  .soutenir-text, .soutenir-iban { padding: 3rem 2rem; }
  .presta-featured-content { padding: 2rem; }

  /* Photo stack */
  .photo-stack  { height: auto; position: static; }
  .photo-main   { position: static; width: 100%; }
  .photo-accent { display: none; }

  /* Réservation */
  .resa-grid        { grid-template-columns: 1fr; }
  .resa-form-panel  { position: static !important; }
}

/* ============================================================
   768px — MOBILE
   ============================================================ */
@media (max-width: 768px) {

  :root { --nav-h: 60px; }

  .nav-inner { padding: 0 1rem; }

  /* Typographie */
  h1             { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  h2             { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .lead          { font-size: 1rem; }
  .section       { padding: 2.5rem 0; }

  /* Grilles */
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .equipe-grid   { grid-template-columns: repeat(2, 1fr); }
  .tarif-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .presta-secondary { grid-template-columns: 1fr; }
  .impact-dots   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }

  /* Bandeau nombreux */
  .bandeau-nombreux { grid-template-columns: 1fr; padding: 20px 16px; gap: 16px; }

  /* Boutons */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn, .btn-group a { width: 100%; text-align: center; justify-content: center; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Page hero */
  .page-hero { padding: 2.5rem 0 2rem; }

  /* Inline grids */
  [style*="grid-template-columns:1fr 360px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  [style*="position:sticky"] { position: static !important; }
}

/* ============================================================
   520px — PETIT MOBILE
   ============================================================ */
@media (max-width: 520px) {

  .hero-right    { height: clamp(180px, 45vw, 280px); }
  .steps-grid    { grid-template-columns: 1fr; }
  .equipe-grid   { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  h1             { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .page-hero     { padding: 2rem 0 1.5rem; }

  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
}

/* ============================================================
   375px — TRÈS PETIT MOBILE
   ============================================================ */
@media (max-width: 375px) {
  .section-title { font-size: 1.25rem; }
  h1             { font-size: 1.6rem; }
  .lead          { font-size: 0.95rem; }
  .hero-right    { height: clamp(160px, 45vw, 240px); }
  .stat-number   { font-size: 2rem; }
}

/* ============================================================
   GRAND ÉCRAN 1600px+
   ============================================================ */
@media (min-width: 1600px) {
  .tarif-grid    { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps-grid    { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================================
   ACCESSIBILITÉ
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .particle { display: none; }
}

:focus-visible {
  outline: 2px solid var(--turquoise);
  outline-offset: 3px;
}

.footer-col a, .footer-desc { overflow-wrap: break-word; word-break: break-word; }
.iban-value { overflow-wrap: break-word; word-break: break-all; }

/* ============================================================
   RÉSERVATION
   ============================================================ */
.resa-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  min-width: 0;
}

.resa-form-panel {
  background: var(--sable);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.bandeau-nombreux {
  background: var(--marine);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

/* ============================================================
   ÉTAPES — scroll horizontal mobile
   ============================================================ */
.steps-scroll-wrap {
  overflow: hidden;
}

.steps-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.step-card {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--bordure);
}

.step-card:last-child { border-right: none; }

@media (max-width: 960px) {
  .steps-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .steps-scroll-wrap::-webkit-scrollbar { display: none; }

  .steps-scroll {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
  }

  .step-card {
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .steps-scroll-wrap { scroll-snap-type: x mandatory; }
}

@media (max-width: 520px) {
  .step-card { width: 75vw; max-width: 260px; }
}

/* ============================================================
   ÉQUIPE — mise en page membres
   ============================================================ */
.membre-wrap {
  display: flex;
  gap: 0;
  margin-bottom: 3px;
}

.membre-wrap.reverse {
  flex-direction: row-reverse;
}

.membre-photo {
  flex: 0 0 45%;
  max-width: 45%;
  background: var(--sable);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.membre-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.membre-texte {
  flex: 1;
  background: var(--sable);
  padding: 40px 44px;
}

@media (max-width: 768px) {
  .membre-wrap,
  .membre-wrap.reverse {
    flex-direction: column !important;
  }

  .membre-photo {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .membre-photo img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center top;
  }

  .membre-texte {
    padding: 24px 20px;
  }
}

/* ============================================================
   PAGE TOUTES NOS PRESTATIONS — mobile
   ============================================================ */
@media (max-width: 768px) {
  .prestations-list [style*="padding:28px 24px"] {
    padding: 20px 16px !important;
  }
  .prestations-list [style*="padding:56px 52px"] {
    padding: 20px 16px !important;
  }
  .prestations-list .presta-featured-img,
  .prestations-list [style*="min-height"] {
    min-height: 200px !important;
  }
}

/* Grille activités pour tous */
.activites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .activites-grid {
    grid-template-columns: 1fr;
  }
  .activites-grid > div [style*="aspect-ratio:4/3"] {
    aspect-ratio: 16/7 !important;
  }
}

/* Grille demandes */
.demandes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .demandes-grid {
    grid-template-columns: 1fr;
  }
}

/* Grille blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Bandeau groupes */
.bandeau-groupes {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.bandeau-groupe-item { white-space: nowrap; }
.bandeau-fleche { color: var(--turquoise); flex-shrink: 0; }

@media (max-width: 768px) {
  .bandeau-nombreux {
    grid-template-columns: 1fr !important;
    padding: 20px 16px !important;
    gap: 16px !important;
  }
  .bandeau-groupes {
    gap: 8px;
    font-size: 0.74rem;
  }
}

/* Réservation mobile — calendrier sous le formulaire */
@media (max-width: 960px) {
  .resa-grid {
    grid-template-columns: 1fr !important;
  }
  .resa-grid > div:first-child {
    order: 2; /* calendrier en dessous */
  }
  .resa-grid > .resa-form-panel {
    order: 1; /* formulaire en haut */
    position: static !important;
  }
}

/* Calendrier responsive */
@media (max-width: 520px) {
  .cal-grid {
    gap: 1px !important;
  }
  #cal-grid-wrap > div,
  .cal-grid > div {
    min-height: 36px !important;
    padding: 3px 2px !important;
    font-size: 0.72rem !important;
  }
  #cal-grid-wrap > div span,
  .cal-grid > div span {
    font-size: 0.78rem !important;
  }
}

/* Champs réservation — ne pas déborder sur mobile */
@media (max-width: 960px) {
  .resa-form-panel {
    padding: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .resa-form-panel * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .resa-form-panel input,
  .resa-form-panel select,
  .resa-form-panel textarea,
  .resa-form-panel button[type="submit"] {
    width: 100% !important;
  }

  .resa-form-panel [style*="display:flex"] {
    flex-wrap: wrap !important;
  }
}