/* ═══════════════════════════════════════════════
   BATCH-COOKEUSE — style.css
   ═══════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #405D4D;
  --green-soft: #A8B95A;
  --gold:       #D9A441;
  --cta:        #E36A4C;
  --bg:         #FAFAF6;
  --bg2:        #F3F2EC;
  --white:      #FFFFFF;
  --text:       #2A2A2A;
  --text-muted: #7A7A6A;
  --radius:     12px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ── CUSTOM CURSOR ───────────────────────────── */
#cursor { display: none; }

/* ── PAGE TRANSITION ─────────────────────────── */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  display: flex;
}
.pt-panel {
  flex: 1;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ── LANGUAGE SWITCHER ───────────────────────── */
#lang-switcher {
  display: flex;
  gap: 4px;
  border-radius: 99px;
  padding: 4px 10px;
  border: 1px solid rgba(64,93,77,0.15);
}
#lang-switcher button {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 99px;
  transition: var(--transition);
}
#lang-switcher button.active {
  color: var(--white);
  background: var(--green);
}

/* ── NAVBAR ──────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(250,250,246,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(64,93,77,0.08);
  transition: padding 0.3s;
}
#navbar.scrolled {
  padding: 14px 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text strong {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--green);
  letter-spacing: .01em;
}
.nav-logo-text span {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  position: relative;
  letter-spacing: .02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--cta);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--cta) !important; transform: translateY(-1px); }

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--green);
  font-style: italic;
}

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BOTANICAL SVG DECO ──────────────────────── */
.botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(64,93,77,0.25);
}
.btn-primary:hover { background: var(--cta); box-shadow: 0 6px 28px rgba(227,106,76,0.3); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-cta {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(227,106,76,0.3);
}
.btn-cta:hover { background: var(--green); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(217,164,65,0.3);
}

/* ── SECTION COMMONS ─────────────────────────── */
.section { position: relative; overflow: hidden; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--green);
  line-height: 1.18;
  font-weight: 700;
}
.section-title em {
  font-style: italic;
  color: var(--cta);
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ════════════════════════════════════════════════
   HOME PAGE
   ════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 88px;
  background: var(--bg);
  overflow: hidden;
}
.hero-content {
  padding: 80px 48px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,185,90,0.15);
  border: 1px solid rgba(168,185,90,0.4);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--green);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--cta);
  display: block;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 440px;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cta);
  opacity: 0.82;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
}
.hero-badge {
  position: absolute;
  bottom: 60px; right: 40px;
  z-index: 3;
  width: 110px; height: 110px;
  background: rgba(250,250,246,0.92);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(64,93,77,0.2);
  animation: spin-slow 18s linear infinite;
}
.hero-badge span {
  font-size: 10px;
  line-height: 1.4;
  color: var(--green);
  font-weight: 500;
  padding: 0 12px;
}
.hero-badge svg {
  position: absolute;
  inset: -2px;
  animation: spin-slow 18s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── FEATURES STRIP ──────────────────────────── */
.features-strip {
  background: var(--bg2);
  padding: 52px 0;
  border-bottom: 1px solid rgba(64,93,77,0.08);
}
.features-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--cta), var(--gold));
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px;
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(168,185,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--green);
  font-weight: 600;
}
.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.feature-item:nth-child(2) .feature-icon {
  background: rgba(217,164,65,0.15);
  color: var(--gold);
}
.feature-item:nth-child(4) .feature-icon {
  background: rgba(227,106,76,0.12);
  color: var(--cta);
}
.feature-item:nth-child(5) .feature-icon {
  background: rgba(227,106,76,0.1);
  color: var(--cta);
}

/* ── HOW IT WORKS ────────────────────────────── */
.how-section {
  padding: 120px 0;
  background: var(--bg);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-content { position: relative; z-index: 2; }
.how-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 20px 0 32px;
}
.how-visual {
  position: relative;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
}
.how-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.how-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,106,76,0.12) 0%, transparent 60%);
  z-index: 1;
}

/* ── OFFERS ──────────────────────────────────── */
.offers-section {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
}
.offers-header {
  text-align: center;
  margin-bottom: 64px;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(64,93,77,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  border: 2px solid transparent;
  display: block;
  color: inherit;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(64,93,77,0.14);
  border-color: var(--gold);
}
.offer-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 99px;
}
.offer-img {
  height: 180px;
  overflow: hidden;
}
.offer-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.offer-card:hover .offer-img img { transform: scale(1.06); }
.offer-body { padding: 24px; }
.offer-icon {
  width: 44px; height: 44px;
  background: rgba(168,185,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--green);
}
.offer-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 4px;
}
.offer-sessions {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.offer-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.offer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.offer-link:hover { gap: 10px; }

/* ── QUOTE + TESTIMONIAL ─────────────────────── */
.quote-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 420px;
}
.quote-visual {
  position: relative;
  overflow: hidden;
}
.quote-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.quote-block {
  background: var(--cta);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 24px; left: 36px;
  font-family: var(--font-serif);
  font-size: 100px;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.quote-text em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  margin-top: 8px;
  opacity: 0.85;
}
.quote-author {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.testimonial-block {
  background: var(--bg2);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.testimonial-header h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--green);
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-top: 6px; }
.google-reviews-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cta);
  letter-spacing: .04em;
}

/* ════════════════════════════════════════════════
   PRESENTATION PAGE
   ════════════════════════════════════════════════ */
.pres-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  background: var(--green);
}
.pres-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pres-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.pres-hero-content {
  position: relative;
  z-index: 2;
  background: transparent;
}
.pres-hero-content .section-title { color: var(--white); }
.pres-hero-content .section-label { color: var(--green-soft); }
.pres-hero-content .section-subtitle { color: rgba(255,255,255,0.75); }

.parcours-section { padding: 100px 0; background: var(--bg); }
.parcours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.parcours-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 600px;
}
.parcours-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.parcours-img-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(250,250,246,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
  border-left: 3px solid var(--cta);
}
.parcours-img-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--green);
}
.parcours-img-badge span {
  font-size: 12px;
  color: var(--text-muted);
}
.parcours-text h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}
.parcours-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.parcours-text p:last-of-type { margin-bottom: 0; }

/* Pour qui section */
.pour-qui-section {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}
.pour-qui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.pour-qui-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border-left: 3px solid var(--green-soft);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pour-qui-card:hover {
  transform: translateY(-4px);
  border-color: var(--cta);
  box-shadow: 0 8px 32px rgba(64,93,77,0.1);
}
.pour-qui-card h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 600;
}
.pour-qui-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   TARIFS PAGE
   ════════════════════════════════════════════════ */
.tarifs-hero {
  padding: 160px 0 80px;
  background: var(--bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 0;
}
.tarif-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(64,93,77,0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.tarif-card:hover {
  transform: translateY(-6px);
  border: 2px solid var(--gold);
  box-shadow: 0 16px 48px rgba(64,93,77,0.14);
}
.tarif-card:hover .tarif-card-top {
  background: rgba(217,164,65,0.06);
}
.tarif-card:hover .tarif-price {
  color: var(--gold);
}
.tarif-card-top {
  padding: 36px 28px 24px;
  background: var(--bg2);
  border-bottom: 1px solid rgba(64,93,77,0.08);
}
.tarif-card-icon {
  width: 52px; height: 52px;
  background: rgba(168,185,90,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}
.tarif-card-top h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 4px;
}
.tarif-sessions {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.tarif-price-wrap { margin: 16px 0; }
.tarif-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-sans);
  line-height: 1;
}
.tarif-price sup { font-size: 20px; vertical-align: top; margin-top: 8px; }
.tarif-after {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.tarif-after span {
  background: rgba(227,106,76,0.1);
  color: var(--cta);
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 12px;
}
.tarif-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tarif-card-body .btn { margin-top: auto; }
.tarif-card { cursor: pointer; }
.tarif-card-body > .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.tarif-card .btn:hover { transform: none; }
.tarif-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.tarif-features { list-style: none; margin-bottom: 24px; }
.tarif-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--bg2);
}
.tarif-features li::before {
  content: '✓';
  color: var(--green-soft);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}
/* ── SERVICES COMPLÉMENTAIRES ────────────────── */
.services-compl {
  margin-bottom: 48px;
}
.services-compl-header {
  text-align: center;
  margin-bottom: 28px;
}
.services-compl-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}
.services-compl-header p {
  font-size: 15px;
  color: var(--text-muted);
}
.services-compl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.services-compl-card {
  background: var(--bg2);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid var(--green-soft);
}
.services-compl-card.cta {
  border-left-color: var(--cta);
  background: rgba(227,106,76,0.04);
}
.services-compl-icon {
  width: 48px; height: 48px;
  background: rgba(168,185,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-compl-icon.cta {
  background: rgba(227,106,76,0.12);
}
.services-compl-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--green);
  font-weight: 700;
}
.services-compl-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.services-compl-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ── ET APRÈS ? ──────────────────────────────── */
.et-apres-block {
  margin-bottom: 48px;
}
.et-apres-header {
  text-align: center;
  margin-bottom: 28px;
}
.et-apres-header h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .04em;
}
.et-apres-header p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 6px;
}
.et-apres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.et-apres-card {
  background: var(--bg2);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: pointer;
}
.et-apres-card > .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.et-apres-card:hover {
  border-color: var(--green-soft);
  box-shadow: 0 8px 32px rgba(64,93,77,0.1);
}
.et-apres-card.featured {
  background: var(--white);
  border: 2px solid rgba(217,164,65,0.3);
  box-shadow: 0 4px 24px rgba(217,164,65,0.08);
}
.et-apres-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(217,164,65,0.18);
}
.et-apres-icon {
  width: 52px; height: 52px;
  background: rgba(168,185,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.et-apres-icon.gold {
  background: rgba(217,164,65,0.15);
}
.et-apres-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.et-apres-label.gold { color: var(--gold); }
.et-apres-mention {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -6px;
}
.et-apres-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.et-apres-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  font-family: var(--font-sans);
}
.et-apres-price sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 10px;
  font-weight: 600;
}
.et-apres-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: -4px;
}
.et-apres-after {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.et-apres-after span {
  background: rgba(227,106,76,0.1);
  color: var(--cta);
  padding: 2px 8px;
  border-radius: 99px;
}
.et-apres-lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}
.et-apres-lines li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg2);
  border-radius: 10px;
  flex-wrap: wrap;
}
.et-apres-lines li span {
  font-size: 13px;
  color: var(--text-muted);
  min-width: 130px;
}
.et-apres-lines li strong {
  font-size: 18px;
  color: var(--gold);
  font-weight: 800;
}
.et-apres-lines li small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.et-apres-lines li em {
  font-style: normal;
  font-size: 12px;
  color: var(--cta);
  background: rgba(227,106,76,0.08);
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: auto;
  white-space: nowrap;
}
.et-apres-flex {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
}
.et-apres-card .btn { margin-top: auto; }
.et-apres-card .btn:hover { transform: none; }

.cesu-block {
  background: var(--green);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 80px;
}
.cesu-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.cesu-text h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.cesu-text p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.cesu-text strong { color: var(--gold); }

/* ════════════════════════════════════════════════
   MARINE PAGE
   ════════════════════════════════════════════════ */
.marine-hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 88px;
  overflow: hidden;
}
.marine-hero-content {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.marine-hero-visual {
  position: relative;
  overflow: hidden;
}
.marine-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.marine-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 20%);
  z-index: 1;
}

/* ════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════ */
.contact-hero {
  padding: 160px 0 80px;
  background: var(--bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 0;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg2);
  border-radius: 12px;
  border-left: 3px solid var(--green-soft);
  font-size: 14px;
  color: var(--text);
}
.contact-items .contact-item:first-child {
  border-left-color: var(--cta);
}
.contact-items .contact-item:last-child {
  border-left-color: var(--cta);
}
.contact-item svg { color: var(--green); flex-shrink: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(64,93,77,0.08);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--green);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--green);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(64,93,77,0.15);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(64,93,77,0.08);
}
.form-group textarea { resize: none; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success {
  display: none;
  padding: 14px 18px;
  background: rgba(168,185,90,0.15);
  border: 1px solid var(--green-soft);
  border-radius: 10px;
  color: var(--green);
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
  background: var(--green);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--cta));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 280px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--green-soft) !important;
}
.footer-logo-text strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
}
.footer-logo-text span {
  font-size: 11px;
  color: var(--green-soft);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── PRESENTATION SERVICE ROWS ───────────────── */
.pres-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.pres-service-row:last-of-type { margin-bottom: 0; }
.pres-service-img {
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
}
.pres-service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── MARINE VOYAGES ──────────────────────────── */
.marine-voyages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── MARINE PHILOSOPHIE ──────────────────────── */
.marine-philo-split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── IMAGE COVER ─────────────────────────────── */
.hero-visual img,
.how-visual img,
.parcours-img img,
.marine-hero-visual img,
.pres-hero-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.offer-img img,
.tarif-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  #navbar { padding: 16px 32px; }
  #navbar.scrolled { padding: 12px 32px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 120px 32px 60px; }
  .hero-visual { height: 320px; order: -1; }
  .hero-img-wrap::after { background: linear-gradient(to bottom, var(--bg) 0%, transparent 40%); }
  .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-visual { height: 340px; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-visual { height: 240px; }
  .parcours-grid { grid-template-columns: 1fr; }
  .parcours-img { height: 380px; }
  .pour-qui-grid { grid-template-columns: 1fr 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .marine-hero { grid-template-columns: 1fr; }
  .marine-hero-content { padding: 60px 32px; }
  .marine-hero-visual { height: 340px; order: -1; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  /* Presentation services */
  .pres-service-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 72px; }
  .pres-service-img { height: 320px; }
  /* Marine */
  .marine-voyages-grid { grid-template-columns: repeat(2, 1fr); }
  .marine-philo-split { grid-template-columns: 1fr; }
  .marine-philo-split > div:first-child { padding: 60px 40px !important; }
  .marine-philo-split > div:last-child { min-height: 360px !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  #navbar { padding: 14px 20px; }
  #navbar.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  #navbar > .nav-cta { display: none; }
  .nav-drawer { display: flex; }
  .how-section,
  .offers-section,
  .pour-qui-section,
  .parcours-section { padding: 72px 0; }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 34px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pour-qui-grid { grid-template-columns: 1fr; }
  .cesu-block { flex-direction: column; text-align: center; }
  .et-apres-grid { grid-template-columns: 1fr; }
  .et-apres-card { padding: 28px 24px; }
  .services-compl-grid { grid-template-columns: 1fr; }
  .services-compl-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-block,
  .testimonial-block { padding: 40px 24px; }
  .hero-visual { height: 260px; }
  .hero-badge { width: 86px; height: 86px; bottom: 16px; right: 16px; }
  .how-visual { height: 240px; }
  .parcours-img { height: 260px; }
  .marine-hero-visual { height: 280px; }
  .marine-hero-content { padding: 48px 20px; }
  .offer-img { height: 160px; }
  .quote-visual { height: 200px; }
  .how-grid,
  .parcours-grid,
  .marine-hero,
  .contact-grid { grid-template-columns: 1fr; }
  /* Home */
  .offers-grid { grid-template-columns: 1fr; }
  /* Tarifs / Contact heroes */
  .tarifs-hero { padding: 120px 0 48px; }
  .contact-hero { padding: 120px 0 48px; }
  /* Presentation services */
  .pres-service-row { gap: 28px; margin-bottom: 56px; }
  .pres-service-img { height: 240px; }
  /* Marine */
  .marine-voyages-grid { grid-template-columns: repeat(2, 1fr); }
  .marine-philo-split > div:first-child { padding: 48px 24px !important; }
  .marine-philo-split > div:last-child { min-height: 260px !important; }
  /* Et après lines — wrap proprement */
  .et-apres-lines li { flex-wrap: wrap; gap: 6px; }
  .et-apres-lines li em { margin-left: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 100px 16px 40px; }
  .hero-title { font-size: 28px; }
  .section-title { font-size: 22px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .marine-voyages-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .pres-service-img { height: 200px; }
  .hero-visual { height: 220px; }
  .offer-img { height: 140px; }
  .tarifs-hero { padding: 100px 0 40px; }
  .contact-hero { padding: 100px 0 40px; }
  .et-apres-card { padding: 24px 16px; }
  .cesu-block { padding: 28px 20px; }
  .hero-badge { width: 90px; height: 90px; bottom: 16px; right: 16px; }
}

/* ════════════════════════════════════════════════
   NOUVELLES SECTIONS — GALERIE, TARIFS 4 FORMULES
   ════════════════════════════════════════════════ */

/* ── GALERIE HOME ────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── TARIFS GRID 4 FORMULES ─────────────────── */
.tarifs-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tarif-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.tarif-badge.standard { background: rgba(64,93,77,0.1); color: var(--green); }
.tarif-badge.popular  { background: rgba(217,164,65,0.2); color: #b8862a; }
.tarif-price-gross {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.tarif-card.popular { border: 2px solid var(--gold); }
.tarif-card.popular .tarif-card-top { background: rgba(217,164,65,0.07); }
.tarif-card.popular .tarif-price { color: var(--gold); }
.tarifs-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* ── OPTION COURSES ─────────────────────────── */
.option-courses-block {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  border: 1px solid rgba(64,93,77,0.1);
}
.option-courses-icon {
  width: 60px;
  height: 60px;
  background: rgba(64,93,77,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}
.option-courses-block h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--green);
  margin-bottom: 6px;
}
.option-courses-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}
.option-courses-block p { font-size: 14px; color: var(--text-muted); }

/* ── PRESTATION INCLUSE ─────────────────────── */
.prestation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--green);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
  color: white;
}
.prestation-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  font-weight: 600;
  grid-column: 1 / -1;
}
.prestation-icon { font-size: 30px; margin-bottom: 10px; }
.prestation-grid p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.9); }

/* ── TARIFS MINI GALERIE ────────────────────── */
.tarifs-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.tarifs-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
}
.tarifs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.tarifs-gallery-item:hover img { transform: scale(1.04); }

/* ── RESPONSIVE NOUVEAUX ÉLÉMENTS ──────────── */
@media (max-width: 1024px) {
  /* Galerie home : 2 cols sur tablette */
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-item        { height: 240px; }
  /* Prestation : padding réduit sur tablette */
  .prestation-grid     { padding: 28px 24px; gap: 16px; }
}
@media (max-width: 768px) {
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-item        { height: 220px; }
  .tarifs-grid-4       { grid-template-columns: 1fr; }
  .prestation-grid     { grid-template-columns: 1fr; gap: 12px; padding: 24px 20px; }
  .option-courses-block{ flex-direction: column; text-align: center; }
  .tarifs-gallery      { grid-template-columns: 1fr; }
  .tarifs-gallery-item { height: 200px; }
}
@media (max-width: 480px) {
  .gallery-grid        { grid-template-columns: 1fr; }
  .gallery-item        { height: 220px; }
  .option-courses-block{ padding: 20px; }
  .prestation-grid     { padding: 20px 16px; }
  .tarifs-note         { font-size: 13px; }
}

/* ════════════════════════════════════════════════
   TARIFS — DOUBLE COLONNE OFFRE/POST-AGRÉMENT
   ════════════════════════════════════════════════ */

/* ── LAYOUT 2 COLONNES ──────────────────────── */
.tarifs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.tarif-col {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(64,93,77,0.10);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.tarif-col-header {
  padding: 20px 28px;
  text-align: center;
}
.tarif-col-header.actuelle { background: var(--cta); color: white; }
.tarif-col-header.post     { background: var(--green); color: white; }
.tarif-col-header h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin: 0;
}
.tarif-col-header p {
  font-style: italic;
  font-size: 13px;
  opacity: 0.88;
  margin-top: 4px;
  margin-bottom: 0;
}
.tarif-col-rate {
  font-size: 30px;
  font-weight: 800;
  margin-top: 10px;
  line-height: 1;
}
.tarif-col-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.tarif-col-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  padding: 6px 0 10px;
  border-bottom: 1px solid rgba(64,93,77,0.08);
  margin-bottom: 4px;
}
.tarif-col-price-label span { font-weight: 400; }

/* ── LIGNES DE FORMULE ──────────────────────── */
.tarif-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(64,93,77,0.07);
}
.tarif-row:last-of-type { border-bottom: none; }
.tarif-row-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(64,93,77,0.10);
}
.tarif-row-info { flex: 1; min-width: 0; }
.tarif-row-info strong {
  display: block;
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  line-height: 1.3;
}
.tarif-row-info span {
  font-size: 12px;
  color: var(--text-muted);
}
.tarif-row-price { text-align: right; flex-shrink: 0; }
.tarif-row-price .brut {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.tarif-row-price .net {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.tarif-row-price .net small { font-size: 12px; font-weight: 400; }
.tarif-row-price .net-label {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}
.tarif-popular-badge {
  display: inline-block;
  background: rgba(217,164,65,0.2);
  color: #b8862a;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: .04em;
  margin-left: 4px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ── OPTION COURSES DANS COLONNE ────────────── */
.tarif-option-courses {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--bg2);
  border-radius: 12px;
  border: 1px solid rgba(64,93,77,0.1);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.tarif-option-courses strong {
  color: var(--green);
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

/* ── ONGLETS MOBILE ─────────────────────────── */
.tarif-tabs {
  display: none;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(64,93,77,0.15);
}
.tarif-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg2);
  color: var(--text-muted);
  transition: var(--transition);
  user-select: none;
}
.tarif-tab.active { background: var(--green); color: white; }

/* ── PRESTATION COMPREND ────────────────────── */
.prestation-block {
  background: var(--green);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  color: white;
  margin-top: 40px;
}
.prestation-item-icon { font-size: 28px; margin-bottom: 10px; }
.prestation-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
}
.foyers-mention {
  text-align: center;
  padding: 18px 20px;
  background: var(--bg2);
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── MINI GALERIE TARIFS ────────────────────── */
.tarif-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.tarif-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
}
.tarif-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.tarif-gallery-item:hover img { transform: scale(1.04); }

/* ── RESPONSIVE DOUBLE COLONNE ──────────────── */
@media (max-width: 900px) {
  .tarifs-cols              { grid-template-columns: 1fr; }
  .tarif-tabs               { display: flex; }
  .tarif-col:last-child     { display: none; }
  .tarif-col:last-child.active { display: flex; }
  .tarif-col:first-child.hidden { display: none; }
  .prestation-block         { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px; }
}
@media (max-width: 768px) {
  .tarif-gallery            { grid-template-columns: 1fr; }
  .tarif-gallery-item       { height: 200px; }
  .tarif-col-header         { padding: 16px 20px; }
  .tarif-col-body           { padding: 16px 16px 20px; }
}
@media (max-width: 480px) {
  .tarif-row-price .net     { font-size: 17px; }
  .tarif-popular-badge      { display: none; }
}

/* ════════════════════════════════════════════════
   TARIFS — TABLEAU DÉTAIL & CARTES INVESTISSEMENT
   ════════════════════════════════════════════════ */

/* ── LABEL "VOTRE INVESTISSEMENT" ───────────── */
.tarif-invest-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 2px;
}
.tarif-price-brut-mention {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── TABLEAU DÉTAIL TARIFS ───────────────────── */
.tarif-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.tarif-detail-table {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(64,93,77,0.08);
  margin-top: 32px;
}
.tarif-detail-table thead tr { background: var(--green); color: white; }
.tarif-detail-table thead th {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}
.tarif-detail-table tbody tr:nth-child(even) { background: var(--bg2); }
.tarif-detail-table tbody tr:nth-child(odd)  { background: var(--bg); }
.tarif-detail-table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid rgba(64,93,77,0.06);
}
.tarif-detail-table tbody td:first-child { font-weight: 600; color: var(--green); }
.tarif-detail-table .td-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}
.tarif-detail-table .td-brut {
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
}

/* ── RESPONSIVE TABLEAU ─────────────────────── */
@media (max-width: 1024px) {
  .tarif-detail-table thead th,
  .tarif-detail-table tbody td { padding: 12px 16px; font-size: 14px; }
  .tarif-detail-table .td-price { font-size: 18px; }
}
@media (max-width: 768px) {
  .tarif-table-wrap { margin: 0 -20px; border-radius: 0; }
  .tarif-detail-table { border-radius: 0; margin-top: 24px; }
  .tarif-detail-table thead th,
  .tarif-detail-table tbody td { padding: 10px 12px; font-size: 13px; }
  .tarif-detail-table .td-price { font-size: 16px; }
}
@media (max-width: 480px) {
  .tarif-table-wrap { margin: 0 -16px; }
}

/* ════════════════════════════════════════════════
   GOOGLE REVIEWS — avis dynamiques
   ════════════════════════════════════════════════ */

.reviews-loading {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}
.reviews-global {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(64,93,77,0.12);
}
.reviews-global-score {
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-sans);
  line-height: 1;
}
.reviews-global-count {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: .03em;
}
.review-item {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(64,93,77,0.07);
}
.review-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-initial {
  background: rgba(64,93,77,0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-text { margin-bottom: 4px; }
.review-date {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.review-expand-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--cta);
  font-family: inherit;
  text-decoration: underline;
}
