/* ============================================================
   DAVID GOOD FRIEND — Feuille de style globale v2.0
   davidgoodfriend.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,900&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy:      #1B3A6B;
  --navy-dark: #142A52;
  --red:       #C8273A;
  --red-dark:  #8B1A28;
  --cream:     #F5ECD7;
  --cream-dark:#EAD9B8;
  --white:     #FFFFFF;
  --text:      #1a1a2e;
  --text-light:#4a4a6a;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --space-section: clamp(3rem, 8vw, 5rem);
  --space-side:    clamp(1.25rem, 4vw, 2rem);
}

html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: var(--sans); background: var(--white); color: var(--text);
  overflow-x: hidden; line-height: 1.5;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img   { max-width: 100%; display: block; height: auto; }
a     { text-decoration: none; color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px; border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute; top: -60px; left: 1rem;
  background: var(--navy); color: var(--cream);
  padding: 10px 16px; border-radius: 4px;
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); border-bottom: 2px solid var(--navy);
  padding: 0 var(--space-side); display: flex; align-items: center;
  justify-content: space-between; height: 72px;
  transition: box-shadow .2s;
}
.logo-img { height: 48px; width: auto; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: .875rem; font-weight: 500; color: var(--text);
  transition: color .2s; position: relative;
}
nav a:hover, nav a.active { color: var(--red); }
nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--red);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.lang-switcher {
  display: flex; border: 2px solid var(--navy);
  border-radius: 6px; overflow: hidden;
}
.lang-switcher a {
  padding: 6px 12px; background: var(--white);
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
  color: var(--navy); transition: all .18s;
  border-right: 1.5px solid var(--navy);
}
.lang-switcher a:last-child { border-right: none; }
.lang-switcher a:hover:not(.active) { background: var(--cream); }
.lang-switcher a.active { background: var(--navy); color: var(--white); }

.btn-nav {
  background: var(--red); color: var(--white); border: none;
  padding: 10px 22px; border-radius: 4px; font-weight: 500;
  font-size: .875rem; cursor: pointer;
  border-bottom: 3px solid var(--red-dark); transition: all .2s;
  white-space: nowrap; display: inline-block;
}
.btn-nav:hover { transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════
   MENU HAMBURGER
   ══════════════════════════════════════════════════════════ */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative; z-index: 101;
}
.menu-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  position: relative; transition: all .3s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 24px; height: 2.5px; background: var(--navy);
  border-radius: 2px; transition: all .3s;
}
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after  { top:  8px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  padding: 2rem var(--space-side) 3rem;
  overflow-y: auto; animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu a {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--navy); padding: .75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--red); }
.mobile-menu .lang-switcher {
  margin-top: 1rem; align-self: flex-start;
  border-bottom: none; display: flex;
}
.mobile-menu .lang-switcher a {
  font-family: var(--sans); font-size: .8rem; padding: 8px 14px;
  border-bottom: none;
}
.mobile-menu .btn-nav {
  margin-top: 1rem; text-align: center;
  padding: 14px 24px; font-size: 1rem;
  align-self: stretch;
}

/* ══════════════════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--red); color: var(--white); border: 2px solid var(--red);
  padding: 14px 28px; border-radius: 4px; font-weight: 500; font-size: 1rem;
  cursor: pointer; display: inline-block; font-family: var(--sans);
  box-shadow: 4px 4px 0 var(--red-dark); transition: all .15s;
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--red-dark); }

.btn-secondary {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  padding: 14px 28px; border-radius: 4px; font-weight: 500; font-size: 1rem;
  cursor: pointer; display: inline-block; font-family: var(--sans);
  box-shadow: 4px 4px 0 var(--navy); transition: all .15s;
}
.btn-secondary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--navy); }

.btn-white {
  background: var(--white); color: var(--red); border: 2px solid var(--white);
  padding: 16px 36px; border-radius: 4px; font-weight: 500; font-size: 1rem;
  cursor: pointer; display: inline-block; font-family: var(--sans);
  box-shadow: 4px 4px 0 rgba(0,0,0,.2); transition: all .15s;
}
.btn-white:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,.3); }

/* ══════════════════════════════════════════════════════════
   SECTIONS & TYPOGRAPHIE
   ══════════════════════════════════════════════════════════ */
.section { padding: var(--space-section) var(--space-side); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: .75rem; font-weight: 500; letter-spacing: 2px;
  color: var(--red); text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--navy); line-height: 1.1; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: clamp(.95rem, 2vw, 1.05rem); color: var(--text-light);
  line-height: 1.7; max-width: 560px; margin-bottom: 3rem;
}

/* ══════════════════════════════════════════════════════════
   BREADCRUMBS (fil d'Ariane SEO)
   ══════════════════════════════════════════════════════════ */
.breadcrumbs {
  padding: 1rem var(--space-side); max-width: 1100px; margin: 0 auto;
  font-size: .8rem; color: var(--text-light);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0 .5rem; }
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li::after { content: '›'; margin-left: .5rem; color: var(--cream-dark); }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════════ */
.cta-section { background: var(--red); padding: var(--space-section) var(--space-side); text-align: center; }
.cta-section h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; color: var(--white); margin-bottom: 1rem; line-height: 1.15;
}
.cta-section p { color: rgba(255,255,255,.9); font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 2.5rem; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--cream); color: var(--text-light);
  padding: 3rem var(--space-side) 2rem; text-align: center;
  font-size: .85rem; border-top: 2px solid var(--cream-dark);
}
.footer-logo { height: 40px; width: auto; margin: 0 auto 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem 1.25rem; margin-bottom: 1.25rem; }
.footer-links a { color: var(--text-light); transition: color .2s; display: inline-block; padding: 4px 0; }
.footer-links a:hover { color: var(--red); }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin: 1.25rem 0; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--cream-dark); display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.1rem;
  color: var(--text-light); transition: all .2s;
}
.footer-social a:hover {
  background: var(--navy); color: var(--cream);
  border-color: var(--navy); transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
  font-size: .8rem; opacity: .8;
}

/* ══════════════════════════════════════════════════════════
   HERO (accueil)
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--cream); padding: 100px var(--space-side) 3rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; background: var(--navy);
  border-radius: 50%; opacity: .06;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: 10%;
  width: 300px; height: 300px; background: var(--red);
  border-radius: 50%; opacity: .05;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--cream-dark);
  border-radius: 20px; padding: 6px 16px;
  font-size: .8rem; font-weight: 500; color: var(--text-light);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2rem, 5vw, 4rem); color: var(--navy);
  line-height: 1.05; margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--red); font-style: italic; }
.hero-content > p {
  font-size: clamp(1rem, 2vw, 1.1rem); color: var(--text-light);
  line-height: 1.7; margin-bottom: 2rem; max-width: 440px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.photo-placeholder {
  width: 280px; height: 320px; background: var(--white);
  border: 3px solid var(--navy); border-radius: 12px;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem; position: relative; overflow: hidden;
}
.photo-placeholder::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%; background: var(--cream); border-top: 2px solid var(--cream-dark);
}
.avatar-circle {
  width: 90px; height: 90px; border-radius: 50%; background: var(--navy);
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: center; font-family: var(--serif); font-size: 2.2rem;
  font-weight: 900; color: var(--cream);
}
.photo-placeholder p { font-size: .8rem; color: var(--text-light); position: relative; z-index: 1; }
.hero-stats { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.stat-card {
  background: var(--white); border: 2px solid var(--navy);
  border-radius: 8px; padding: .875rem 1rem; text-align: center;
  box-shadow: 3px 3px 0 var(--navy); min-width: 85px;
}
.stat-card strong { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.stat-card span { font-size: .7rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════════════
   MÉTHODE
   ══════════════════════════════════════════════════════════ */
.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.method-card {
  background: var(--white); border: 2px solid var(--navy);
  border-radius: 8px; padding: 2rem 1.5rem;
  box-shadow: 4px 4px 0 var(--navy); transition: all .15s;
}
.method-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--navy); }
.method-card:nth-child(2) { border-color: var(--red); box-shadow: 4px 4px 0 var(--red); }
.method-card:nth-child(2):hover { box-shadow: 6px 6px 0 var(--red); }
.method-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--cream); border: 2px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.25rem;
}
.method-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: .75rem; }
.method-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   À PROPOS
   ══════════════════════════════════════════════════════════ */
.about { background: var(--navy); padding: var(--space-section) var(--space-side); }
.about-inner {
  max-width: 1100px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(245,236,215,.3); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem;
}
.about-avatar {
  width: 90px; height: 90px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2.2rem; font-weight: 900; color: var(--navy);
}
.about-photo p { font-size: .8rem; color: rgba(245,236,215,.5); }
.about-content .section-label { color: var(--cream); opacity: .6; }
.about-content .section-title { color: var(--cream); }
.about-content p { color: rgba(245,236,215,.85); line-height: 1.8; margin-bottom: 1.5rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.tag {
  background: rgba(245,236,215,.1); border: 1px solid rgba(245,236,215,.25);
  color: var(--cream); border-radius: 20px; padding: 6px 14px; font-size: .8rem;
}

/* ══════════════════════════════════════════════════════════
   TÉMOIGNAGES
   ══════════════════════════════════════════════════════════ */
.testimonials { background: var(--cream); padding: var(--space-section) var(--space-side); }
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 2px solid var(--navy);
  border-radius: 8px; padding: 10px 18px;
  box-shadow: 3px 3px 0 var(--navy); margin-bottom: 2rem;
  font-size: .9rem; color: var(--text-light);
}
.rating-badge strong { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.rating-badge .stars-inline { color: var(--red); letter-spacing: 2px; }

.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 1.5rem; transition: transform .4s ease; }
.testimonial-card {
  background: var(--white); border: 2px solid var(--navy);
  border-radius: 8px; padding: 1.75rem;
  box-shadow: 3px 3px 0 var(--navy);
  min-width: min(340px, 85vw); max-width: 340px; flex-shrink: 0;
}
.testimonial-card blockquote { font-size: .9rem; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; color: var(--text); }
.testimonial-meta { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--cream); flex-shrink: 0;
}
.testi-name { font-weight: 500; font-size: .875rem; color: var(--navy); }
.testi-origin { font-size: .75rem; color: var(--text-light); }
.stars { color: var(--red); font-size: 13px; margin-bottom: .75rem; letter-spacing: 2px; }
.testi-source { font-size: .7rem; color: var(--text-light); margin-top: .5rem; }
.testi-source a { color: var(--red); }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--navy); background: var(--white); color: var(--navy);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--navy); transition: all .15s;
}
.carousel-btn:hover { background: var(--navy); color: var(--white); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream-dark); border: none; cursor: pointer;
  transition: all .2s;
}
.carousel-dot.active { background: var(--navy); transform: scale(1.3); }

/* ══════════════════════════════════════════════════════════
   TARIFS
   ══════════════════════════════════════════════════════════ */
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--navy); border-radius: 8px; padding: 2rem;
  box-shadow: 4px 4px 0 var(--navy); position: relative;
  transition: all .15s; display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--navy); }
.pricing-card.featured { background: var(--navy); box-shadow: 4px 4px 0 var(--red); }
.pricing-card.featured:hover { box-shadow: 6px 6px 0 var(--red); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .25rem; color: var(--navy); }
.pricing-card.featured h3 { color: var(--cream); }
.pricing-card > p:first-of-type {
  font-size: .85rem; color: var(--text-light); margin-bottom: .75rem;
}
.pricing-card.featured > p:first-of-type { color: rgba(245,236,215,.7); }
.price-amount {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 900;
  color: var(--red); margin: 1rem 0 .25rem; line-height: 1;
}
.pricing-card.featured .price-amount { color: var(--cream); }
.price-unit { font-size: .9rem; font-weight: 400; color: var(--text-light); }
.pricing-card.featured .price-unit { color: rgba(245,236,215,.7); }
.pricing-features { list-style: none; margin: 1.5rem 0; flex: 1; }
.pricing-features li {
  font-size: .875rem; color: var(--text-light);
  padding: 6px 0; border-bottom: 1px solid rgba(27,58,107,.1);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.pricing-card.featured .pricing-features li {
  color: rgba(245,236,215,.85); border-bottom-color: rgba(245,236,215,.1);
}
.check { color: var(--red); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .check { color: var(--cream); }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (pour pages autres qu'accueil)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--cream); padding: 8rem var(--space-side) 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; background: var(--navy);
  border-radius: 50%; opacity: .05;
}
.page-hero h1 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem); color: var(--navy);
  line-height: 1.1; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.page-hero > .section-inner > p,
.page-hero p.subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem); color: var(--text-light);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
  position: relative; z-index: 1; text-align: center !important;
}

/* ══════════════════════════════════════════════════════════
   ÉTAPES HORIZONTALES (page méthode)
   ══════════════════════════════════════════════════════════ */
.steps-horizontal {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3rem; position: relative;
}
.steps-horizontal::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px; background: var(--cream-dark); z-index: 0;
}
.step-h { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  font-family: var(--serif); font-size: 1.6rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; border: 3px solid var(--cream-dark);
  box-shadow: 3px 3px 0 var(--red);
}
.step-h:nth-child(2) .step-num { background: var(--red); box-shadow: 3px 3px 0 var(--navy); }
.step-h h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: .75rem; }
.step-h p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }
.step-h p em { font-style: italic; color: var(--navy); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   CE QUE C'EST / CE QUE CE N'EST PAS
   ══════════════════════════════════════════════════════════ */
.not-list { background: var(--navy); padding: var(--space-section) var(--space-side); }
.not-list .section-title { color: var(--cream); }
.not-list .section-label { color: rgba(245,236,215,.6); }
.not-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.not-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(245,236,215,.2);
  border-radius: 8px; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.not-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.not-card h4 { color: var(--cream); font-size: 1rem; font-weight: 500; margin-bottom: .4rem; }
.not-card p { color: rgba(245,236,215,.7); font-size: .875rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   FAQ (accordéon)
   ══════════════════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 2px solid var(--cream-dark); padding: 1.5rem 0; }
.faq-q {
  font-weight: 600; color: var(--navy); font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 1rem; width: 100%; background: none;
  border: none; text-align: left; font-family: var(--sans);
}
.faq-q::after {
  content: '＋'; font-size: 1.2rem; color: var(--red);
  flex-shrink: 0; transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  color: var(--text-light); line-height: 1.7; font-size: .95rem;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: .75rem; }

/* ══════════════════════════════════════════════════════════
   "COMMENT RÉSERVER" (page tarifs)
   ══════════════════════════════════════════════════════════ */
.how-to { background: var(--cream); padding: var(--space-section) var(--space-side); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.how-step { text-align: center; }
.how-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  font-family: var(--serif); font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; border: 3px solid var(--cream-dark);
}
.how-step h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.how-step p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   CALENDLY
   ══════════════════════════════════════════════════════════ */
.calendly-zone { background: var(--white); padding: var(--space-section) var(--space-side); text-align: center; }
.calendly-placeholder {
  max-width: 720px; margin: 2rem auto 0;
  border: 3px dashed var(--cream-dark); border-radius: 12px;
  padding: 4rem 2rem; background: var(--cream);
}
.calendly-placeholder p { color: var(--text-light); line-height: 1.7; }
.calendly-placeholder code {
  background: rgba(27,58,107,.08); padding: 2px 8px; border-radius: 4px;
  font-size: .85rem; color: var(--navy);
}

/* ══════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════ */
.blog-filters { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 8px 18px; border: 2px solid var(--navy); border-radius: 20px;
  background: var(--white); color: var(--navy); font-weight: 500;
  font-size: .85rem; cursor: pointer; transition: all .15s;
  font-family: var(--sans);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card {
  background: var(--white); border: 2px solid var(--navy);
  border-radius: 8px; overflow: hidden;
  box-shadow: 4px 4px 0 var(--navy); transition: all .15s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--navy); }
.blog-card-img {
  height: 180px; background: var(--cream);
  border-bottom: 2px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block; background: var(--cream); color: var(--navy);
  border-radius: 12px; padding: 3px 10px;
  font-size: .75rem; font-weight: 500;
  margin-bottom: .75rem; border: 1px solid var(--cream-dark);
  align-self: flex-start;
}
.blog-card h3 {
  font-family: var(--serif); font-size: 1.15rem;
  color: var(--navy); margin-bottom: .75rem; line-height: 1.3;
}
.blog-card p { font-size: .875rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.blog-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--cream-dark);
}
.blog-date { font-size: .75rem; color: var(--text-light); }
.blog-read { font-size: .8rem; color: var(--red); font-weight: 500; }

.coming-soon {
  text-align: center; padding: 4rem 2rem;
  border: 3px dashed var(--cream-dark); border-radius: 12px;
  background: var(--cream);
}
.coming-soon p { color: var(--text-light); line-height: 1.7; max-width: 480px; margin: .75rem auto 0; }

.newsletter { background: var(--navy); padding: var(--space-section) var(--space-side); text-align: center; }
.newsletter h2 { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--cream); margin-bottom: 1rem; }
.newsletter > .section-inner > p {
  color: rgba(245,236,215,.75); margin-bottom: 2rem;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.newsletter-form { display: flex; gap: 1rem; max-width: 480px; margin: 2rem auto 0; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 14px 18px;
  border: 2px solid rgba(245,236,215,.3); border-radius: 6px;
  background: rgba(255,255,255,.08); color: var(--cream);
  font-family: var(--sans); font-size: .95rem;
}
.newsletter-form input::placeholder { color: rgba(245,236,215,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--cream); }
.newsletter-form button {
  padding: 14px 24px; background: var(--red); color: var(--white);
  border: none; border-radius: 6px; font-weight: 500; cursor: pointer;
  font-family: var(--sans); font-size: .95rem;
  box-shadow: 3px 3px 0 var(--red-dark); transition: all .15s;
}
.newsletter-form button:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--red-dark); }

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; margin-top: 4rem; }
.contact-info h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-item h4 { font-weight: 500; color: var(--navy); margin-bottom: .25rem; font-size: .95rem; }
.info-item p { color: var(--text-light); font-size: .9rem; line-height: 1.6; }
.info-item a { color: var(--red); }

.contact-form {
  background: var(--white); border: 2px solid var(--navy);
  border-radius: 12px; padding: 2.5rem; box-shadow: 6px 6px 0 var(--navy);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-weight: 500; color: var(--navy);
  margin-bottom: .5rem; font-size: .9rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--cream-dark); border-radius: 6px;
  font-family: var(--sans); font-size: .95rem;
  color: var(--text); background: var(--white); transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.submit-btn {
  width: 100%; padding: 14px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 6px;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  box-shadow: 3px 3px 0 var(--red-dark); transition: all .15s;
  font-family: var(--sans);
}
.submit-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--red-dark); }

.success-msg {
  display: none; background: #e8f5e9; border: 2px solid #4caf50;
  border-radius: 8px; padding: 1rem 1.5rem; color: #2e7d32;
  margin-top: 1rem; font-size: .95rem;
}

/* ══════════════════════════════════════════════════════════
   UTILITAIRES
   ══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp .5s ease both; }
.hero-badge   { animation-delay: .1s; }
.hero h1      { animation-delay: .2s; }
.hero-content > p { animation-delay: .3s; }
.hero-ctas    { animation-delay: .4s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 4 breakpoints
   ══════════════════════════════════════════════════════════ */

/* Tablet landscape : ≤1024px */
@media (max-width: 1024px) {
  nav { gap: 1.25rem; }
  nav a { font-size: .82rem; }
  .btn-nav { padding: 9px 18px; font-size: .82rem; }
  .hero-inner { gap: 2.5rem; }
  .about-inner { gap: 2.5rem; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}

/* Tablet portrait / Large mobile : ≤768px */
@media (max-width: 768px) {
  /* Header : masquer nav desktop, afficher hamburger */
  nav { display: none; }
  header .header-actions .lang-switcher { display: none; }
  header .header-actions .btn-nav { display: none; }
  .menu-toggle { display: flex; }

  header { padding: 0 1.25rem; height: 64px; }
  .logo-img { height: 40px; }
  .mobile-menu { top: 64px; }

  /* Grids en 1 colonne */
  .hero-inner, .about-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content > p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .about-content { order: 2; }
  .about-photo { order: 1; max-width: 280px; margin: 0 auto; }
  .method-grid, .pricing-cards, .how-steps, .not-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Steps horizontal : retire la ligne */
  .steps-horizontal { grid-template-columns: 1fr; gap: 2rem; }
  .steps-horizontal::before { display: none; }

  /* Hero : réduire padding */
  .hero { padding: 90px 1.25rem 3rem; min-height: auto; }
  .page-hero { padding: 6rem 1.25rem 3rem; }
  .photo-placeholder { width: 240px; height: 280px; }

  /* Testimonials : carte plus petite */
  .testimonial-card { min-width: 85vw; max-width: 85vw; }

  footer { padding: 2.5rem 1.25rem 2rem; }
}

/* Small mobile : ≤480px */
@media (max-width: 480px) {
  :root { --space-side: 1.25rem; }
  header { padding: 0 1rem; }
  .logo-img { height: 36px; }

  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: .95rem; }
  .btn-white { padding: 14px 26px; font-size: .95rem; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; }

  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }

  .photo-placeholder { width: 100%; max-width: 220px; height: 260px; }
  .avatar-circle { width: 70px; height: 70px; font-size: 1.8rem; }

  .pricing-card { padding: 1.75rem 1.5rem; }
  .contact-form { padding: 1.75rem 1.25rem; }

  footer { font-size: .8rem; padding: 2rem 1rem; }
  .footer-links { flex-direction: column; gap: .5rem; }
}

/* Very small mobile : ≤360px */
@media (max-width: 360px) {
  :root { --space-side: 1rem; }
  .logo-img { height: 32px; }
  .section-title { font-size: 1.4rem; }
  .hero h1 { font-size: 1.6rem; }
}

/* ══════════════════════════════════════════════════════════
   TRADUCTIONS (afficher langue active uniquement)
   ══════════════════════════════════════════════════════════ */
[data-lang]      { display: none; }
[data-lang="fr"] { display: block; }
span[data-lang]      { display: none; }
span[data-lang="fr"] { display: inline; }
