@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

:root {
  /* PALETTE PUNCHY — couleurs brand assumées */
  --green: #4BA876;
  --green-bright: #5cc28a;
  --green-mid: #2d7a52;
  --green-deep: #1a4d33;
  --green-darker: #0d2e1e;

  --bordeaux: #7B1F34;
  --bordeaux-bright: #9b2742;
  --bordeaux-deep: #5a1525;

  --cream: #faf6ee;
  --cream-warm: #f3ead8;
  --paper: #ffffff;

  --ink: #161616;
  --ink-soft: #3a3a3a;
  --ink-mute: #6b6b6b;

  --line: #e5dfd0;
  --line-soft: #efe9da;

  --shadow-sm: 0 1px 2px rgba(20, 30, 20, 0.06);
  --shadow-md: 0 8px 32px rgba(20, 30, 20, 0.10);
  --shadow-lg: 0 24px 64px rgba(20, 30, 20, 0.16);
  --shadow-xl: 0 32px 80px rgba(20, 30, 20, 0.22);

  --r-sm: 8px;
  --r: 16px;
  --r-lg: 28px;

  --max: 1240px;
  --gutter: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--green-deep); color: white; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ================== SCROLL REVEAL ================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * { transition-delay: var(--delay, 0s); }

/* ================== NOTRE LIEU (split section) ================== */
.lieu-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.lieu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.lieu-image {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 480px;
}

.lieu-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 46, 30, 0.18), transparent 60%);
}

.lieu-content {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.lieu-content h2 { margin-bottom: 28px; }

.lieu-content p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.lieu-meta {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.lieu-meta-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--green-darker);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  font-style: italic;
  font-weight: 400;
}

.lieu-meta-item span {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .lieu-grid { grid-template-columns: 1fr; }
  .lieu-image { min-height: 360px; }
  .lieu-content { padding: 64px 32px; }
}

/* ================== TYPO PUNCHY ================== */

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Raleway', serif;
  color: var(--green-darker);
  letter-spacing: -0.02em;
  font-weight: 500;
}

h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}

h2 em { font-style: italic; font-weight: 400; color: var(--bordeaux); }

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--green-darker);
}

h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--green-darker);
}

p { margin-bottom: 1.1em; line-height: 1.72; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  display: block;
}

.eyebrow.bordeaux { color: var(--bordeaux); }
.eyebrow.cream { color: rgba(255,255,255,0.7); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  display: block;
}

.lead {
  font-family: 'Raleway', sans-serif;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 640px;
}

.intro-text {
  font-family: 'Raleway', sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  font-weight: 400;
}

.intro-text strong { color: var(--ink); font-weight: 700; }

.dropcap::first-letter {
  float: left;
  font-family: 'Fraunces', serif;
  font-size: 5.4em;
  line-height: 0.85;
  font-weight: 400;
  color: var(--green-mid);
  padding: 8px 18px 0 0;
  font-style: italic;
}

/* ================== HEADER ================== */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, background 0.3s;
}

header.scrolled {
  box-shadow: 0 2px 24px rgba(13, 46, 30, 0.10);
  background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon { width: 48px; height: 48px; flex-shrink: 0; }
.logo img { height: 48px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--green-darker);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

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

nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: var(--r-sm);
  transition: all 0.2s;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

nav a:hover { color: var(--green-darker); background: var(--cream); }
nav a.active {
  color: var(--green-darker);
  background: var(--cream);
  position: relative;
}
nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav-cta {
  background: var(--green-darker) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  margin-left: 12px;
  letter-spacing: 0;
  font-size: 14px !important;
}

.nav-cta:hover {
  background: var(--bordeaux) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(123, 31, 52, 0.30);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================== HERO ================== */

.hero {
  position: relative;
  background: var(--green-darker);
  color: white;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: saturate(0.85) contrast(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 46, 30, 0.65) 0%, rgba(13, 46, 30, 0.85) 60%, rgba(13, 46, 30, 0.95) 100%),
    linear-gradient(90deg, rgba(13, 46, 30, 0.85) 0%, rgba(13, 46, 30, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 46, 30, 0.55) 0%, rgba(13, 46, 30, 0.78) 50%, rgba(13, 46, 30, 0.92) 100%),
    linear-gradient(90deg, rgba(13, 46, 30, 0.92) 0%, rgba(13, 46, 30, 0.45) 70%, rgba(13, 46, 30, 0.65) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero h1 {
  color: white;
  font-size: clamp(44px, 7vw, 96px);
  margin-bottom: 36px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 em { color: var(--cream-warm); }

.hero .lead {
  color: rgba(255,255,255,0.78);
  font-size: 20px;
  margin-bottom: 48px;
  max-width: 580px;
  font-weight: 400;
}

.hero .eyebrow { color: var(--cream-warm); }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.hero-btn:last-child { border-bottom: none; }

.hero-btn:hover {
  background: rgba(255,255,255,0.06);
}

.hero-btn-symbol {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.hero-btn-symbol svg { width: 22px; height: 22px; }

.hero-btn:hover .hero-btn-symbol {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--green-darker);
}

.hero-btn-text { flex-grow: 1; }
.hero-btn-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.hero-btn-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-btn-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.hero-btn:hover .hero-btn-arrow {
  color: var(--green-bright);
  transform: translateX(6px);
}

/* ================== BUTTONS ================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.005em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--green-darker);
  color: white;
}
.btn-primary:hover {
  background: var(--bordeaux);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(123, 31, 52, 0.32);
}

.btn-bordeaux {
  background: var(--bordeaux);
  color: white;
}
.btn-bordeaux:hover {
  background: var(--bordeaux-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(123, 31, 52, 0.40);
}

.btn-cream {
  background: var(--cream-warm);
  color: var(--green-darker);
}
.btn-cream:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.btn-light {
  background: white;
  color: var(--green-darker);
}
.btn-light:hover {
  background: var(--cream-warm);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: white;
  color: var(--green-darker);
  border-color: white;
}

/* ================== SECTIONS ================== */

section { position: relative; }

.section { padding: 120px 32px; position: relative; }

.section-paper { background: white; }
.section-cream { background: var(--cream); }
.section-warm { background: var(--cream-warm); }
.section-green { background: var(--green-deep); color: white; }
.section-green h2, .section-green h3, .section-green h4 { color: white; }
.section-bordeaux { background: var(--bordeaux); color: white; }
.section-bordeaux h2, .section-bordeaux h3, .section-bordeaux h4 { color: white; }

.section-dark {
  background: var(--green-darker);
  color: white;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: -1;
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }

.container { max-width: var(--max); margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }

.section-header { margin-bottom: 80px; max-width: 760px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 24px; }
.section-header p {
  font-family: 'Raleway', sans-serif;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

.section-dark .section-header p, .section-green .section-header p {
  color: rgba(255,255,255,0.78);
}

/* ================== GRIDS ================== */

.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 64px;
  align-items: start;
}

/* ================== SERVICE CARDS ================== */

.service-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 48px 40px;
  border: 1px solid var(--line);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}

.service-card.bordeaux::before { background: var(--bordeaux); }
.service-card.bordeaux:hover { border-color: var(--bordeaux); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card.bordeaux .service-icon {
  background: var(--cream-warm);
  color: var(--bordeaux);
}

.service-card h3 { margin-bottom: 14px; }

.service-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-darker);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: gap 0.2s;
}

.service-link:hover { gap: 14px; color: var(--bordeaux); }

.service-card.bordeaux .service-link { color: var(--bordeaux); }
.service-card.bordeaux .service-link:hover { color: var(--bordeaux-bright); }

/* ================== FEATURE BLOCKS ================== */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.feature {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.feature:last-child { border-right: none; }

.feature-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.feature h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 22px;
  letter-spacing: -0.015em;
}

.feature p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ================== STATS ================== */

.stats-band {
  background: var(--cream);
  padding: 80px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  padding: 0 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 400;
  color: var(--green-darker);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 144;
}

.stat-num em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
  font-size: 0.55em;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ================== TESTIMONIAL ================== */

.testimonial-section {
  background: white;
  padding: 120px 32px;
  position: relative;
}

.testimonial {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-mark {
  font-family: 'Fraunces', serif;
  font-size: 180px;
  line-height: 0.5;
  color: var(--green);
  margin-bottom: 32px;
  height: 60px;
  font-weight: 400;
  font-style: italic;
}

.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 40px;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 144;
}

.testimonial-attr {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.testimonial-attr-text {
  font-size: 13px;
  color: var(--ink-mute);
  text-align: left;
  font-weight: 600;
}

.testimonial-attr-text strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 700;
}

/* ================== CTA BAND ================== */

.cta-band {
  background: var(--bordeaux);
  color: white;
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(255,255,255,0.06), transparent),
    radial-gradient(ellipse 700px 500px at 90% 80%, rgba(255,255,255,0.05), transparent);
  z-index: -1;
}

.cta-band h2 {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(38px, 5.5vw, 68px);
  letter-spacing: -0.03em;
}
.cta-band h2 em { color: var(--cream-warm); }

.cta-band p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 19px;
  line-height: 1.55;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================== PAGE HERO ================== */

.page-hero {
  position: relative;
  padding: 100px 32px 120px;
  background: var(--green-darker);
  color: white;
  isolation: isolate;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: saturate(0.8) brightness(0.6);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 46, 30, 0.65) 0%, rgba(26, 77, 51, 0.5) 100%);
  z-index: -1;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  font-weight: 700;
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { margin: 0 12px; opacity: 0.4; }

.page-hero h1 {
  color: white;
  max-width: 920px;
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 28px;
  letter-spacing: -0.035em;
}

.page-hero h1 em { color: var(--cream-warm); }

.page-hero .lead {
  color: rgba(255,255,255,0.82);
  font-size: 21px;
  max-width: 720px;
}

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

/* ================== INFO BOX ================== */

.info-box {
  background: white;
  border-radius: var(--r-lg);
  padding: 44px;
  border: 1px solid var(--line);
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
  font-family: 'Fraunces', serif;
}

.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

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

.info-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-darker);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.info-icon-wrap svg { width: 17px; height: 17px; }

.info-content strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.info-content span {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

/* ================== TEAM ================== */

.team-intro {
  background: var(--cream);
  border-left: 4px solid var(--green);
  padding: 28px 36px;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 32px 0 0;
  max-width: 720px;
}
.team-intro p {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
}
.team-intro a { color: var(--green-darker); font-weight: 700; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 72px;
}

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

.therapist-card {
  background: white;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.therapist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  z-index: 3;
}

.therapist-card:hover::before { transform: scaleX(1); }

.therapist-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.therapist-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--green);
  background-size: cover;
  background-position: center 20%;
  position: relative;
  overflow: hidden;
  filter: grayscale(0.15);
  transition: filter 0.5s, transform 0.5s;
}

.therapist-card:hover .therapist-photo {
  filter: grayscale(0);
  transform: scale(1.04);
}

.therapist-photo[data-empty] {
  background: linear-gradient(160deg, #f0ebe0 0%, #e8ddc4 100%);
  filter: none;
  align-items: center;
  justify-content: center;
}

.therapist-photo[data-empty]::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1.5px dashed rgba(45, 122, 82, 0.20);
  border-radius: 50%;
}

.therapist-photo[data-empty] svg {
  width: 56px;
  height: 56px;
  opacity: 0.22;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

.therapist-info {
  padding: 24px 24px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.therapist-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--green-darker);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.therapist-role {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 500;
}

.therapist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag {
  font-size: 11px;
  background: var(--cream);
  color: var(--green-darker);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
}

/* ================== APPROACH BLOCKS ================== */

.approach-block {
  background: white;
  border-radius: var(--r-lg);
  padding: 64px;
  border: 1px solid var(--line);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.approach-block.green {
  border-left: 4px solid var(--green);
}

.approach-block.bordeaux {
  border-left: 4px solid var(--bordeaux);
}

.approach-block h2 {
  margin-bottom: 32px;
  max-width: 800px;
}

.approach-block p {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.approach-block p strong { color: var(--ink); font-weight: 700; }
.approach-block p em { color: var(--bordeaux); font-style: italic; }

.pull-quote {
  font-family: 'Fraunces', serif;
  border-left: 3px solid var(--green);
  padding: 8px 0 8px 32px;
  margin: 36px 0;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--green-darker);
  letter-spacing: -0.015em;
}

/* key ideas */

.key-ideas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.key-idea {
  padding: 56px 44px;
  position: relative;
  border-right: 1px solid var(--line);
}

.key-idea:last-child { border-right: none; }

.key-idea-num {
  font-family: 'Fraunces', serif;
  font-size: 96px;
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}

.key-idea h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.key-idea p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* ================== CALLOUT ================== */

.callout {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--cream);
  border-radius: var(--r);
  border-left: 4px solid var(--green);
}

.callout strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-darker);
  margin-bottom: 12px;
}

.callout p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.7;
}

/* ================== CONTACT ================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--r-lg);
  padding: 56px;
  border: 1px solid var(--line);
}

.form-title { margin-bottom: 12px; font-size: 32px; }
.form-subtitle {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.form-group { margin-bottom: 24px; }

label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: all 0.2s;
  font-weight: 500;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green-darker);
  background: white;
  box-shadow: 0 0 0 4px rgba(45, 122, 82, 0.10);
}

textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  transition: all 0.2s;
}

.checkbox-item:hover {
  border-color: var(--green);
  background: white;
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green-darker);
  cursor: pointer;
}

.form-note {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 15px;
}

/* card pour pro/institution sidebar */
.contact-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card.bordeaux {
  border-top-color: var(--bordeaux);
}
.contact-card.bordeaux:hover { border-color: var(--bordeaux); }

.contact-card h3 { margin-bottom: 12px; font-size: 21px; }
.contact-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-darker);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.contact-card-link:hover {
  background: var(--green-darker);
  color: white;
  border-color: var(--green-darker);
}

.contact-card.bordeaux .contact-card-link { color: var(--bordeaux); }
.contact-card.bordeaux .contact-card-link:hover {
  background: var(--bordeaux);
  color: white;
  border-color: var(--bordeaux);
}

/* legal */
.legal-box {
  margin-top: 24px;
  padding: 22px 28px;
  background: var(--cream);
  border-radius: var(--r);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  border: 1px solid var(--line);
}

.legal-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ================== FOOTER ================== */

footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.85);
  padding: 96px 32px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: -1;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-brand .logo-name {
  color: white;
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
  font-family: 'Fraunces', serif;
}

.footer-brand .logo-sub {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  display: block;
  margin-bottom: 28px;
  letter-spacing: 0.2em;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.85;
  max-width: 340px;
}

footer h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

footer ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  transition: all 0.2s;
  font-weight: 500;
}

footer ul li a:hover { color: white; padding-left: 4px; }

.footer-info {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-info-icon {
  color: var(--green-bright);
  flex-shrink: 0;
  width: 16px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.footer-info-icon svg { width: 15px; height: 15px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ================== ENTRANCE ANIMATION ================== */

@keyframes entranceUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes entranceFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes entrancePop {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1);    }
}

@media (prefers-reduced-motion: no-preference) {

  .logo-icon {
    animation: entrancePop 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  }
  .logo-text {
    animation: entranceFade 0.5s ease-out both 0.12s;
  }
  nav {
    animation: entranceFade 0.5s ease-out both 0.20s;
  }

  /* Hero — page d'accueil */
  .hero .eyebrow   { animation: entranceUp 0.70s cubic-bezier(0.2,0.8,0.2,1) both 0.30s; }
  .hero h1         { animation: entranceUp 0.80s cubic-bezier(0.2,0.8,0.2,1) both 0.44s; }
  .hero .lead      { animation: entranceUp 0.70s cubic-bezier(0.2,0.8,0.2,1) both 0.58s; }
  .hero-buttons    { animation: entranceUp 0.70s cubic-bezier(0.2,0.8,0.2,1) both 0.70s; }

  /* Hero — pages internes */
  .page-hero .breadcrumb { animation: entranceUp 0.60s ease-out both 0.18s; }
  .page-hero .eyebrow    { animation: entranceUp 0.60s ease-out both 0.28s; }
  .page-hero h1          { animation: entranceUp 0.75s cubic-bezier(0.2,0.8,0.2,1) both 0.40s; }
  .page-hero .lead       { animation: entranceUp 0.65s ease-out both 0.54s; }

}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ================== SKIP TO CONTENT ================== */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 20px;
  background: var(--green-darker);
  color: white;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 0;
}

/* ================== FOCUS VISIBLE ================== */

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ================== PRINT ================== */

@media print {
  header, footer, .cta-band, .hero-buttons { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  body { font-size: 12pt; color: black; }
}

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

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
  .footer-grid > div:last-child { grid-column: span 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .approach-block { padding: 44px; }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .feature:last-child { border-bottom: none; }
  .key-ideas { grid-template-columns: 1fr; }
  .key-idea { border-right: none; border-bottom: 1px solid var(--line); }
  .key-idea:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; padding: 32px 24px; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

@media (max-width: 720px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    border-top: 1px solid var(--line);
    gap: 6px;
  }
  nav.open a { padding: 16px 20px; font-size: 16px; }
  .hamburger { display: flex; }

  .section { padding: 80px 24px; }
  .hero { padding: 80px 24px 64px; min-height: 70vh; }
  .page-hero { padding: 64px 24px 80px; }
  .cta-band { padding: 80px 24px; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .approach-block { padding: 32px 28px; }

  .testimonial blockquote { font-size: 24px; }
  .testimonial-mark { font-size: 120px; height: 40px; }

  .contact-form-wrap { padding: 36px 28px; }
}
