/*
Theme Name: Delta Finance
Theme URI: https://www.deltafinance.ch/
Author: Nexyweb
Description: Thème sur mesure pour Delta Finance SA (Family Office, Genève). Reproduction fidèle de la charte validée. Phase 1 : page d'accueil pour validation.
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: delta-finance
*/

/* ====== Styles portés depuis la maquette validée (injectés ci-dessous) ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark: #262a32;
  --dark2: #2e333c;
  --green: #7ddb9b;
  --cream: #f1eee9;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--cream); overflow-x: hidden; font-size: 16px; line-height: 1.6; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(38,42,50,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(125,219,155,0.08);
}
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.logo-text { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--cream); letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; flex-wrap: wrap; }
.nav-links a { font-size: 13px; font-weight: 400; color: rgba(241,238,233,0.65); text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-lang { border: 1px solid rgba(125,219,155,0.3); border-radius: 20px; padding: 4px 12px; font-size: 12px; color: var(--green); font-weight: 500; letter-spacing: 0.05em; }
.nav-cta { background: var(--green); color: var(--dark); font-size: 13px; font-weight: 500; padding: 9px 22px; border-radius: 25px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; letter-spacing: 0.02em; white-space: nowrap; }
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── SECTION 1 : HERO SPLASH ─── */
.hero-splash {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 90px 24px 60px; position: relative; overflow: hidden; text-align: center;
}
@media (min-width: 769px) { .hero-splash { padding: 80px 40px 60px; } }
@media (min-width: 1025px) { .hero-splash { padding: 80px 80px 60px; } }
.hero-splash-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image: linear-gradient(rgba(125,219,155,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(125,219,155,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-logo-bg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 2;
}
.hero-logo-bg svg { width: min(72vw, 640px); height: auto; opacity: 0.045; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-splash-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; }
.hero-brand {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-bottom: 52px;
  animation: heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0s both;
}
.hero-brand svg { width: clamp(200px, 28vw, 340px); height: auto; }
.hero-brand-sub {
  font-size: 11px; letter-spacing: 0.22em; color: rgba(241,238,233,0.38);
  text-transform: uppercase; font-weight: 400;
}
.hero-tagline {
  font-family: var(--font-body); font-size: clamp(14px, 1.5vw, 18px); letter-spacing: 0.28em; font-weight: 500;
  color: var(--green); text-transform: uppercase; margin-bottom: 60px;
  display: flex; align-items: center; gap: 20px;
  animation: heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}
.hero-tagline::before, .hero-tagline::after { content: none; }
.btn-primary {
  background: var(--green); color: var(--dark); font-size: 15px; font-weight: 500;
  padding: 18px 44px; border-radius: 50px; text-decoration: none; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); letter-spacing: 0.05em;
  box-shadow: 0 4px 28px rgba(125,219,155,0.2);
  animation: heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}
.btn-primary::after { content: '→'; font-size: 16px; transition: transform 0.25s ease; }
.btn-primary:hover { background: #8aeaa8; transform: translateY(-3px); box-shadow: 0 14px 44px rgba(125,219,155,0.38); }
.btn-primary:hover::after { transform: translateX(5px); }
.hero-content { padding: 70px 24px; background: var(--dark2); }
@media (min-width: 769px) { .hero-content { padding: 90px 40px; } }
@media (min-width: 1025px) { .hero-content { padding: 100px 80px; } }
.hero-content-inner { max-width: 1200px; margin: 0 auto; }
.hero-title { font-family: var(--font-display); font-size: clamp(38px, 4.5vw, 64px); line-height: 1.06; color: var(--cream); margin-bottom: 24px; font-weight: 400; }
.hero-intro { font-size: 15px; color: rgba(241,238,233,0.58); max-width: 660px; line-height: 1.85; margin-bottom: 64px; font-weight: 300; }
.hero-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.hero-sub-card { background: var(--dark); padding: 48px 44px; transition: background 0.3s; }
.hero-sub-card:first-child { border-radius: 14px 0 0 14px; }
.hero-sub-card:last-child { border-radius: 0 14px 14px 0; }
.hero-sub-card:hover { background: rgba(125,219,155,0.04); }
.hero-sub-title { font-family: var(--font-display); font-size: 22px; color: var(--cream); margin-bottom: 16px; font-weight: 400; line-height: 1.3; }
.hero-sub-text { font-size: 14px; color: rgba(241,238,233,0.58); line-height: 1.85; font-weight: 300; }
.hero-mission .mission-label { font-size: 12px; letter-spacing: 0.15em; color: var(--green); font-weight: 500; text-transform: uppercase; display: block; margin-bottom: 22px; }
.hero-mission ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-mission ul li { font-size: 14px; color: rgba(241,238,233,0.65); display: flex; align-items: center; gap: 12px; font-weight: 300; }
.hero-mission ul li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(125,219,155,0.5); background: rgba(125,219,155,0.08); flex-shrink: 0; }

/* ─── SHARED SECTION STYLES ─── */
.section { padding: 70px 24px; }
@media (min-width: 769px) { .section { padding: 90px 40px; } }
@media (min-width: 1025px) { .section { padding: 100px 80px; } }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.2em; color: var(--green); font-weight: 500; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 42px); color: var(--cream); font-weight: 400; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 15px; color: rgba(241,238,233,0.55); line-height: 1.8; font-weight: 300; max-width: 680px; margin-bottom: 60px; }

/* ─── VALEURS ─── */
.valeurs-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 1025px) { .valeurs-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 769px) and (max-width: 1024px) { .valeurs-grid { grid-template-columns: 1fr 1fr; } }
.valeur-card { background: var(--dark); padding: 40px 28px; transition: background 0.3s; cursor: default; }
.valeur-card:first-child { border-radius: 14px 0 0 14px; }
.valeur-card:last-child { border-radius: 0 14px 14px 0; }
.valeur-card:hover { background: rgba(125,219,155,0.06); }
.valeur-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--cream); margin-bottom: 12px; }
.valeur-card p { font-size: 13.5px; color: rgba(241,238,233,0.5); line-height: 1.7; font-weight: 300; }
.valeur-num { font-size: 11px; letter-spacing: 0.15em; color: rgba(125,219,155,0.4); font-weight: 500; margin-bottom: 20px; display: block; }

/* ─── PHILOSOPHIE ─── */
/* ─── SECTION 4 : PHILOSOPHIE ─── */
.philo-section { background: var(--dark); padding: 70px 24px; }
@media (min-width: 769px) { .philo-section { padding: 90px 40px; } }
@media (min-width: 1025px) { .philo-section { padding: 100px 80px; } }
.philo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1025px) { .philo-inner { grid-template-columns: 1fr 1fr; gap: 100px; } }
.philo-left .section-label { margin-bottom: 20px; }
.philo-left h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); color: var(--cream); font-weight: 400; line-height: 1.15; margin-bottom: 40px; }
.philo-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(241,238,233,0.07); }
.philo-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.philo-block h3 { font-family: var(--font-display); font-size: 18px; color: var(--cream); font-weight: 400; margin-bottom: 8px; }
.philo-block p { font-size: 14px; color: rgba(241,238,233,0.55); line-height: 1.75; font-weight: 300; }
.philo-right-visual { background: var(--dark2); border-radius: 16px; padding: 52px 44px; border: 1px solid rgba(125,219,155,0.08); position: relative; overflow: hidden; }
.philo-right-visual::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(125,219,155,0.07) 0%, transparent 70%); }
.philo-quote { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); color: var(--cream); font-weight: 400; line-height: 1.5; font-style: italic; margin-bottom: 40px; position: relative; z-index: 1; }
.philo-stats { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
.philo-stat { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(241,238,233,0.06); }
.philo-stat-num { font-family: var(--font-display); font-size: 36px; color: var(--green); font-weight: 400; line-height: 1; min-width: 64px; }
.philo-stat-label { font-size: 13px; color: rgba(241,238,233,0.5); line-height: 1.5; font-weight: 300; }
.btn-link { font-size: 14px; color: var(--green); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-weight: 400; margin-top: 32px; transition: gap 0.2s; }
.btn-link:hover { gap: 14px; }
/* ─── SECTION 5 : NOS SERVICES ─── */
.services-section { background: var(--dark2); padding: 70px 24px; }
@media (min-width: 769px) { .services-section { padding: 90px 40px; } }
@media (min-width: 1025px) { .services-section { padding: 100px 80px; } }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-intro { max-width: 700px; margin-bottom: 60px; }
.services-intro p { font-size: 15px; color: rgba(241,238,233,0.55); line-height: 1.8; font-weight: 300; margin-top: 16px; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2px; margin-bottom: 48px; }
@media (min-width: 769px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { background: var(--dark); padding: 44px 36px; transition: background 0.3s; }
.service-card:nth-child(1) { border-radius: 14px 0 0 0; }
.service-card:nth-child(2) { border-radius: 0 14px 0 0; }
.service-card:nth-child(3) { border-radius: 0 0 0 14px; }
.service-card:nth-child(4) { border-radius: 0 0 14px 0; }
.service-card:hover { background: rgba(125,219,155,0.05); }
.service-card h3 { font-family: var(--font-display); font-size: 19px; color: var(--cream); font-weight: 400; margin-bottom: 12px; line-height: 1.25; }
.service-card p { font-size: 13.5px; color: rgba(241,238,233,0.5); line-height: 1.75; font-weight: 300; }
.service-num { font-size: 11px; letter-spacing: 0.15em; color: rgba(125,219,155,0.4); font-weight: 500; margin-bottom: 18px; display: block; }

/* ─── CHIFFRES CLÉS ─── */
.chiffres-section { background: var(--dark); padding: 64px 24px; }
@media (min-width: 769px) { .chiffres-section { padding: 80px 40px; } }
@media (min-width: 1025px) { .chiffres-section { padding: 90px 80px; } }
.chiffres-inner { max-width: 1200px; margin: 0 auto; }
.chiffres-intro { font-size: 15px; color: rgba(241,238,233,0.55); line-height: 1.8; font-weight: 300; max-width: 700px; margin: 0 auto 60px; text-align: center; }
.chiffres-grid { display: grid; grid-template-columns: 1fr; gap: 2px; max-width: 700px; margin: 0 auto; }
@media (min-width: 769px) { .chiffres-grid { grid-template-columns: repeat(2, 1fr); } }
.chiffre-cell { background: var(--dark2); padding: 50px 36px; text-align: center; }
.chiffre-cell:first-child { border-radius: 14px 0 0 14px; }
.chiffre-cell:last-child { border-radius: 0 14px 14px 0; }
.chiffre-num { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--green); margin-bottom: 14px; font-weight: 400; }
.chiffre-label { font-size: 12px; letter-spacing: 0.1em; color: rgba(241,238,233,0.4); text-transform: uppercase; font-weight: 400; }

/* ─── SEO BLOCKS ─── */
.seo-section { background: var(--dark2); padding: 56px 24px; }
@media (min-width: 769px) { .seo-section { padding: 72px 40px; } }
@media (min-width: 1025px) { .seo-section { padding: 80px; } }
.seo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 1025px) { .seo-inner { grid-template-columns: 1fr 1fr 1fr; } }
.seo-block { background: var(--dark); padding: 44px 36px; transition: background 0.3s; }
.seo-block:first-child { border-radius: 14px 0 0 14px; }
.seo-block:last-child { border-radius: 0 14px 14px 0; }
.seo-block:hover { background: rgba(125,219,155,0.04); }
.seo-block h3 { font-family: var(--font-display); font-size: 20px; color: var(--cream); font-weight: 400; margin-bottom: 16px; line-height: 1.25; }
.seo-block p { font-size: 13.5px; color: rgba(241,238,233,0.5); line-height: 1.8; font-weight: 300; }

/* ─── PARTENAIRES MARQUEE ─── */
.partners-section { background: var(--dark); padding: 80px 0; }
.partners-inner { max-width: 100%; }
.partners-inner .section-label { padding: 0 80px; margin-bottom: 48px; }
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  padding: 16px 0;
}
.marquee-track:hover { animation-play-state: paused; }
.partner-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.partner-logo:hover { opacity: 1; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── CONTACT ─── */
.contact-section { background: var(--green); padding: 70px 24px; }
@media (min-width: 769px) { .contact-section { padding: 90px 40px; } }
@media (min-width: 1025px) { .contact-section { padding: 100px 80px; } }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1025px) { .contact-inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-left .section-label { color: rgba(38,42,50,0.55); }
.contact-left h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); color: var(--dark); font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
.contact-left p { font-size: 15px; color: rgba(38,42,50,0.65); line-height: 1.8; font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field {
  background: rgba(241,238,233,0.06); border: 1px solid rgba(241,238,233,0.14);
  border-radius: 8px; padding: 14px 18px; font-size: 14px;
  color: var(--dark); font-family: var(--font-body); font-weight: 300;
  outline: none; width: 100%; transition: all 0.2s;
}
.form-field::placeholder { color: rgba(241,238,233,0.3); }
.form-field:focus { background: rgba(241,238,233,0.1); border-color: rgba(125,219,155,0.45); }
textarea.form-field { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--dark); color: var(--green); font-size: 14px; font-weight: 500;
  padding: 14px 30px; border-radius: 28px; border: none; cursor: pointer;
  font-family: var(--font-body); transition: all 0.25s; align-self: flex-start;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--dark2); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: #111317; padding: 56px 24px; border-top: none; }
@media (min-width: 769px) { footer { padding: 64px 40px; } }
@media (min-width: 1025px) { footer { padding: 80px; } }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
@media (min-width: 769px) and (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1025px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; } }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand p { font-size: 13.5px; color: rgba(241,238,233,0.38); line-height: 1.75; font-weight: 300; max-width: 240px; margin-top: 16px; }
.footer-social { margin-top: 20px; }
.footer-social a { font-size: 13px; color: rgba(241,238,233,0.35); text-decoration: none; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-social a:hover { color: var(--green); }
.footer-col h4 { font-size: 11px; letter-spacing: 0.15em; color: rgba(241,238,233,0.28); text-transform: uppercase; font-weight: 500; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 13.5px; color: rgba(241,238,233,0.48); text-decoration: none; font-weight: 300; transition: color 0.2s; line-height: 1.5; }
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px;
  border-top: 1px solid rgba(241,238,233,0.07);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(241,238,233,0.2); font-weight: 300; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12px; color: rgba(241,238,233,0.2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
/* Footer responsive */
@media (min-width: 769px) and (max-width: 1024px) {
	footer { padding: 64px 40px; }
	.footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
	footer { padding: 56px 24px; }
	.footer-inner { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
	.footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ─── OVERRIDES GRAISSES — Plus Jakarta Sans (Lock Sans approx.) ─── */
/* Les titres principaux : Plus Jakarta Sans 600 pour remplacer le serif 400 */
.hero-title       { font-weight: 600; letter-spacing: -0.01em; }
.section-title    { font-weight: 600; letter-spacing: -0.01em; }
.philo-left h2    { font-weight: 600; letter-spacing: -0.01em; }
.contact-left h2  { font-weight: 600; letter-spacing: -0.01em; }

/* Sous-titres de cartes et blocks : 500 */
.hero-sub-title   { font-weight: 500; }
.valeur-card h3   { font-weight: 500; }
.philo-block h3   { font-weight: 500; }
.service-card h3  { font-weight: 500; }
.seo-block h3     { font-weight: 500; }

/* Stats et grands chiffres : 700 pour l'impact visuel */
.philo-stat-num   { font-weight: 700; letter-spacing: -0.02em; }
.chiffre-num      { font-weight: 700; letter-spacing: -0.03em; }

/* Citation en italique : conserver la légèreté */
.philo-quote      { font-weight: 400; font-style: italic; letter-spacing: -0.005em; }

/* Nav et boutons : ajustements fins */
.logo-text        { font-weight: 600; letter-spacing: 0.02em; }
.nav-cta          { font-weight: 600; }
.btn-primary      { font-weight: 600; }
.btn-submit       { font-weight: 600; }

/* Hero tagline en small caps */
.hero-tagline     { font-weight: 600; letter-spacing: 0.3em; }
.hero-brand-sub   { font-weight: 300; letter-spacing: 0.25em; }

/* Section labels */
.section-label    { font-weight: 600; letter-spacing: 0.18em; }
.valeur-num, .service-num { font-weight: 500; letter-spacing: 0.14em; }


/* 1. SECTION LABELS — pill crème très subtil en fond */
.section-label {
  display: inline-block;
  background: rgba(241,238,233,0.06);
  border: 1px solid rgba(241,238,233,0.14);
  border-radius: 20px;
  padding: 4px 14px;
  color: rgba(241,238,233,0.65);
  letter-spacing: 0.18em;
  font-size: 11px;
}

/* 2. NUMÉROS DE CARTES — crème au lieu du vert délavé */
.valeur-num {
  color: rgba(241,238,233,0.35);
  font-size: 10px;
  letter-spacing: 0.2em;
}
.service-num {
  color: rgba(241,238,233,0.35);
  font-size: 10px;
  letter-spacing: 0.2em;
}

/* 3. BORDURE GAUCHE crème sur hover des cartes */
.valeur-card {
  border-left: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.valeur-card:hover {
  background: rgba(125,219,155,0.05);
  border-left-color: rgba(241,238,233,0.2);
}
.service-card {
  border-left: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover {
  background: rgba(125,219,155,0.04);
  border-left-color: rgba(241,238,233,0.2);
}
.seo-block {
  border-left: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.seo-block:hover {
  background: rgba(125,219,155,0.04);
  border-left-color: rgba(241,238,233,0.18);
}

/* 4. LIGNES DE SÉPARATION — teinte crème au lieu de blanc */
.philo-stat {
  border-top: 1px solid rgba(241,238,233,0.09);
}
.philo-block {
  border-bottom: 1px solid rgba(241,238,233,0.09);
}

/* 5. GUILLEMET DÉCORATIF crème sur la citation */
.philo-right-visual {
  position: relative;
  overflow: hidden;
}
.philo-right-visual::after {
  content: 'C';
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 1;
  color: rgba(241,238,233,0.05);
  pointer-events: none;
  z-index: 0;
  font-weight: 700;
}

/* 6. NAV — fine trace crème sur la bordure bottom */
nav {
  border-bottom: 1px solid rgba(241,238,233,0.07);
  box-shadow: 0 1px 0 0 rgba(125,219,155,0.05);
}

/* 7. CHAMPS FORMULAIRE — focus crème */
.form-field:focus {
  background: rgba(38,42,50,0.13);
  border-color: rgba(241,238,233,0.45);
  box-shadow: 0 0 0 3px rgba(241,238,233,0.06);
}

/* 8. FOOTER — filet crème discret sur les colonnes */
.footer-col {
  border-top: 1px solid rgba(241,238,233,0.06);
  padding-top: 4px;
}
.footer-col h4 {
  color: rgba(241,238,233,0.35);
}

/* 9. HERO CONTENT — fine ligne crème sous le titre principal */
.hero-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(241,238,233,0.2);
  margin-top: 20px;
}

/* 10. CHIFFRES CLÉS — label en crème légère */
.chiffre-label {
  color: rgba(241,238,233,0.45);
  letter-spacing: 0.12em;
}

/* 11. HERO SUB-CARDS — fine bordure crème en haut */
.hero-sub-card {
  border-top: 1px solid rgba(241,238,233,0.06);
  transition: background 0.3s, border-top-color 0.3s;
}
.hero-sub-card:hover {
  background: rgba(125,219,155,0.04);
  border-top-color: rgba(241,238,233,0.14);
}



/* ═══════════════════════════════════════════════════
   CRÈME VISIBLE — refonte du système de couleur crème
   ═══════════════════════════════════════════════════ */

/* 1. SECTION CHIFFRES CLÉS → fond crème complet */
.chiffres-section {
  background: var(--cream) !important;
}
.chiffres-section .section-label {
  background: rgba(38,42,50,0.07);
  border: 1px solid rgba(38,42,50,0.15);
  color: rgba(38,42,50,0.55);
}
.chiffres-section .section-title {
  color: var(--dark);
}
.chiffres-intro {
  color: rgba(38,42,50,0.6) !important;
}
.chiffre-cell {
  background: rgba(38,42,50,0.05) !important;
}
.chiffre-cell:first-child { border-radius: 14px 0 0 14px; }
.chiffre-cell:last-child  { border-radius: 0 14px 14px 0; }
.chiffre-num {
  color: var(--dark) !important;
  font-weight: 700;
}
.chiffre-label {
  color: rgba(38,42,50,0.5) !important;
}

/* 2. SECTION LABELS — pill crème vraiment visible */
.section-label {
  display: inline-block;
  background: rgba(241,238,233,0.1);
  border: 1px solid rgba(241,238,233,0.28);
  border-radius: 20px;
  padding: 4px 14px;
  color: rgba(241,238,233,0.75) !important;
  letter-spacing: 0.18em;
  font-size: 11px;
}

/* 3. NUMÉROS DE CARTES — crème opaque et visible */
.valeur-num, .service-num {
  color: rgba(241,238,233,0.45) !important;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 500;
}

/* 4. LIGNE DÉCO HERO — une des deux lignes en crème */
.hero-tagline::before {
  background: var(--cream) !important;
  opacity: 0.3;
}

/* 5. CARTE PHILOSOPHIE — bordure crème visible sur accent box */
.philo-right-visual {
  border: 1px solid rgba(241,238,233,0.18) !important;
}
.philo-stat-num {
  color: var(--green);
}

/* 6. FOOTER — quasi-noir */
footer {
  background: #111317 !important;
  border-top: none !important;
}
footer .logo svg { filter: none; }
footer .logo-text { color: var(--cream) !important; }

/* 7. HERO CONTENT — sous-titre avec trait crème bien visible */
.hero-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  background: rgba(241,238,233,0.35);
  margin-top: 22px;
}

/* 8. HOVER CARTES — ligne gauche crème franche */
.valeur-card:hover { border-left: 2px solid rgba(241,238,233,0.5) !important; }
.service-card:hover { border-left: 2px solid rgba(241,238,233,0.5) !important; }

/* Supprimer les anciens overrides trop discrets */


/* ─── CITATION PHILOSOPHIE ─── */
.philo-citation {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: rgba(241,238,233,0.85);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

/* ─── CAROUSEL EXPERTISE ─── */
.carousel-section { background: var(--dark2); padding: 70px 24px; }
@media (min-width: 769px) { .carousel-section { padding: 90px 40px; } }
@media (min-width: 1025px) { .carousel-section { padding: 100px 80px; } }
.carousel-inner { max-width: 1200px; margin: 0 auto; }
.carousel-header { margin-bottom: 48px; }
.carousel-track {
  display: grid;
}
.carousel-slide {
  grid-row: 1;
  grid-column: 1;
  background: var(--dark);
  border-radius: 16px;
  padding: 56px 52px 40px;
  border: 1px solid rgba(241,238,233,0.07);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.45s ease;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  animation: carouselFade 0.45s ease;
}
@keyframes carouselFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.carousel-slide h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--cream);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  max-width: 720px;
}
.carousel-slide p {
  font-size: 15px;
  color: rgba(241,238,233,0.55);
  line-height: 1.85;
  font-weight: 300;
  max-width: 780px;
}
.carousel-progress {
  height: 2px;
  background: rgba(241,238,233,0.07);
  border-radius: 2px;
  margin-top: 36px;
  overflow: hidden;
}
.carousel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, rgba(125,219,155,0.4), var(--green));
  border-radius: 2px;
  width: 0%;
}
.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(125,219,155,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active { width: 28px; border-radius: 3px; background: var(--green); }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(241,238,233,0.18);
  background: transparent;
  color: rgba(241,238,233,0.6);
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  line-height: 1;
}
.carousel-arrow:hover { border-color: var(--green); color: var(--green); background: rgba(125,219,155,0.06); }

/* ─── PARTNERS LABEL ALIGNEMENT ─── */
.partners-label-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 0;
}
.partners-inner .section-label { margin-left: 0; }

/* ─── CONTACT — hiérarchie des textes ─── */
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.contact-left p {
  font-size: 14px;
  color: rgba(38,42,50,0.6);
  line-height: 1.8;
  font-weight: 300;
}
.contact-inner { align-items: center !important; }

/* ─── CHIFFRES — forcer couleurs sombres (priorité) ─── */
.chiffres-section .section-label,
.chiffres-section .section-label[style] {
  color: rgba(38,42,50,0.65) !important;
  border-color: rgba(38,42,50,0.2) !important;
  background: rgba(38,42,50,0.08) !important;
}
.chiffres-section .section-title { color: var(--dark) !important; }


/* ═══ ANIMATIONS ═══ */
.nav-links a { position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--green); transition: width 0.28s cubic-bezier(0.22,1,0.36,1); }
.nav-links a:hover::after { width: 100%; }
.logo svg { transition: filter 0.3s ease; }
.logo:hover svg { filter: drop-shadow(0 0 8px rgba(125,219,155,0.45)); }
.sr { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.sr.in { opacity: 1; transform: translateY(0); }
.sr-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.sr-left.in { opacity: 1; transform: translateX(0); }
.sr-right { opacity: 0; transform: translateX(32px); transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.sr-right.in { opacity: 1; transform: translateX(0); }
.sr-label { opacity: 0; transform: translateX(-14px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.sr-label.in { opacity: 1; transform: translateX(0); }
.valeur-card { transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important; }
.valeur-card:hover { transform: translateY(-5px) !important; box-shadow: 0 16px 44px rgba(0,0,0,0.22) !important; }
.service-card { transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important; }
.service-card:hover { transform: translateY(-5px) !important; box-shadow: 0 16px 44px rgba(0,0,0,0.22) !important; }
.philo-right-visual { transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.philo-right-visual:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }

/* ─── CAROUSEL progress bar — @keyframes (fiable dès le 1er slide) ─── */
@keyframes carouselProgress {
  from { width: 0%; }
  to   { width: 100%; }
}
.carousel-progress-bar { height: 100%; background: linear-gradient(90deg, rgba(125,219,155,0.4), var(--green)); border-radius: 2px; width: 0%; }
.carousel-progress-bar.running { animation: carouselProgress 5s linear forwards; }



/* ─── VIDÉO HERO BACKGROUND ─── */
.hero-splash-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  pointer-events: none;
}
.hero-splash-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(38,42,50,0.42) 0%,
    rgba(38,42,50,0.28) 50%,
    rgba(38,42,50,0.55) 100%
  );
  z-index: 1; pointer-events: none;
}

/* ─── HERO SLIDESHOW ARRIÈRE-PLAN (désactivé — la vidéo fusée suffit) ─── */
.hero-slideshow { display: none; }
.hero-slide-bg { display: none; }
.hero-splash { background: var(--dark); }

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  height: 380px; overflow: hidden;
}
@media (max-width: 900px) { .photo-strip { grid-template-columns: 1fr; height: 240px; } }
.photo-strip-item {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.photo-strip-item:hover { transform: scale(1.05); z-index: 1; }
.photo-strip-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,28,35,0.38);
  transition: background 0.5s ease;
  pointer-events: none;
}
.photo-strip-item:hover::after { background: rgba(26,28,35,0.10); }

/* ─── PHILOSOPHIE — photo à droite ─── */
.philo-right-photo {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 500px;
  background-size: cover; background-position: center;
}
.philo-right-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(38,42,50,0.18) 0%,
    rgba(38,42,50,0.72) 100%);
  z-index: 1;
}
.philo-photo-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 36px 36px;
  z-index: 2;
}
.philo-photo-stat {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0; border-top: 1px solid rgba(241,238,233,0.18);
}
.philo-photo-stat:first-child { border-top: none; }
.philo-photo-stat-num {
  font-family: var(--font-display); font-size: 34px;
  color: var(--green); font-weight: 700; min-width: 60px; line-height: 1;
  letter-spacing: -0.02em;
}
.philo-photo-stat-label {
  font-size: 13px; color: rgba(241,238,233,0.78);
  line-height: 1.5; font-weight: 300;
}

/* ─── CAROUSEL — photo en fond ─── */
.carousel-slide { position: relative; overflow: hidden; }
.carousel-slide-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14; z-index: 0;
  transition: opacity 0.45s ease;
}
.carousel-slide.active .carousel-slide-photo-bg { opacity: 0.20; }
.carousel-slide-content { position: relative; z-index: 1; }

/* ─── CONTACT — photo en fond ─── */
.contact-section { position: relative; overflow: hidden; }
.contact-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.contact-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(125,219,155,0.90);
  z-index: 1;
}
.contact-inner { position: relative; z-index: 2; }

/* ─── CONTACT SPLIT avec photo ─── (mobile-first) */
.contact-section {
  background: var(--dark) !important;
  padding: 70px 24px !important;
}
@media (min-width: 769px) { .contact-section { padding: 90px 40px !important; } }
@media (min-width: 1025px) { .contact-section { padding: 100px 80px !important; } }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
}
.contact-form-panel {
  background: rgba(241,238,233,0.04);
  border: 1px solid rgba(241,238,233,0.08);
  border-radius: 16px;
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-panel .section-label {
  color: var(--green) !important;
}
.contact-form-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-form-panel p {
  font-size: 14px;
  color: rgba(241,238,233,0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

/* ─── SÉPARATEURS DE SECTIONS ─── */
section, .photo-strip, .style-gallery {
  border-top: 1px solid rgba(125,219,155,0.12);
}
.hero-splash { border-top: none; }

/* ─── STYLE GALLERY ─── */
.style-gallery { position: relative; height: 520px; overflow: hidden; cursor: pointer; }
.style-gallery-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s ease;
}
.style-gallery-slide.active { opacity: 1; }
.style-gallery-gradient {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(38,42,50,0.18) 0%,
    transparent 35%,
    transparent 55%,
    rgba(38,42,50,0.72) 100%
  );
}
.style-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(38,42,50,0.55); border: 1px solid rgba(241,238,233,0.18);
  color: var(--cream); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
}
.style-gallery-arrow:hover { background: rgba(125,219,155,0.22); border-color: var(--green); transform: translateY(-50%) scale(1.08); }
.style-gallery-arrow.prev { left: 32px; }
.style-gallery-arrow.next { right: 32px; }
.style-gallery-ui {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 28px 44px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.style-gallery-label {
  font-size: 11px; letter-spacing: 0.2em; color: var(--green);
  font-weight: 500; text-transform: uppercase;
}
.style-gallery-counter {
  font-family: var(--font-display); font-size: 13px;
  color: rgba(241,238,233,0.55); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 10px;
}
.style-gallery-counter span.current { color: var(--cream); font-size: 18px; font-weight: 300; }
.style-gallery-dots { display: flex; gap: 8px; align-items: center; }
.style-gallery-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(241,238,233,0.28); border: none; padding: 0; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.style-gallery-dot.active { background: var(--green); transform: scale(1.5); }


/* ====== PAGES INTÉRIEURES (Nexyweb) ====== */
.page-hero { background: var(--dark2); padding: 130px 24px 64px; position: relative; overflow: hidden; }
@media (min-width: 769px) { .page-hero { padding: 150px 40px 80px; } }
@media (min-width: 1025px) { .page-hero { padding: 172px 80px 90px; } }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 3; }
.page-eyebrow { font-size: 11px; letter-spacing: 0.2em; color: var(--green); font-weight: 500; text-transform: uppercase; margin-bottom: 20px; }
.page-title { font-family: var(--font-display); font-size: clamp(38px, 5vw, 70px); line-height: 1.05; color: var(--cream); font-weight: 400; margin-bottom: 26px; }
.page-title em { font-style: italic; color: var(--green); }
.page-lead { font-size: 16px; color: rgba(241,238,233,0.6); max-width: 640px; line-height: 1.85; font-weight: 300; }
.page-badge { margin-top: 38px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(241,238,233,0.32); }
.valeurs-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tag { display: inline-block; background: rgba(125,219,155,0.12); color: var(--green); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 30px; margin-bottom: 24px; }
.quote-band { background: var(--dark); padding: 96px 80px; }
.quote-band-inner { max-width: 900px; margin: 0 auto; border-left: 2px solid var(--green); padding-left: 48px; }
.quote-band-inner p { font-family: var(--font-display); font-size: clamp(21px, 2.4vw, 30px); font-style: italic; font-weight: 300; color: var(--cream); line-height: 1.55; }
.quote-band-inner cite { display: block; margin-top: 26px; font-style: normal; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } .valeurs-grid.cols-3 { grid-template-columns: 1fr; } .valeurs-grid { grid-template-columns: 1fr; } }

/* ====== ÉQUIPE (page À propos) ====== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
.team-card { background: var(--dark2); padding: 36px 30px; transition: background 0.3s; }
.team-card:hover { background: rgba(125,219,155,0.05); }
.team-photo { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--dark) 0%, #313742 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px solid rgba(125,219,155,0.25); }
.team-initials { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--green); letter-spacing: 1px; }
.team-name { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--cream); margin-bottom: 5px; }
.team-role { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.team-bio { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(241,238,233,0.5); }

/* ====== PILIERS (page Services) ====== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
.pillar { background: var(--dark2); padding: 48px 34px; border-top: 2px solid var(--green); }
.pillar-num { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block; }
.pillar-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--cream); margin-bottom: 22px; }
.pillar-list { list-style: none; }
.pillar-list li { font-size: 13.5px; font-weight: 300; color: rgba(241,238,233,0.55); padding: 11px 0; border-bottom: 1px solid rgba(125,219,155,0.08); line-height: 1.5; }
.pillar-list li:last-child { border-bottom: none; }

/* ====== INFO GRID (page Contact) ====== */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.info-block { background: var(--dark2); padding: 38px 30px; border-top: 2px solid var(--green); }
.info-label { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--cream); margin-bottom: 16px; }
.info-lines p { font-size: 13.5px; font-weight: 300; color: rgba(241,238,233,0.55); line-height: 2; margin: 0; }
.info-lines a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(125,219,155,0.3); }
.info-lines a:hover { border-bottom-color: var(--green); }

/* ====== FORMULAIRE simple (page Contact) ====== */
.cform { max-width: 720px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cform .full { grid-column: 1 / -1; }
.cform label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(241,238,233,0.45); margin-bottom: 8px; }
.cform input, .cform textarea { width: 100%; background: var(--dark2); border: 1px solid rgba(125,219,155,0.15); color: var(--cream); padding: 13px 16px; font-family: var(--font-body); font-size: 14px; font-weight: 300; border-radius: 6px; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--green); }
.cform textarea { min-height: 130px; resize: vertical; }
.disclaimer { max-width: 900px; margin: 56px auto 0; font-size: 11.5px; font-weight: 300; color: rgba(241,238,233,0.3); line-height: 1.7; text-align: center; }
@media (max-width: 900px) { .team-grid, .pillars { grid-template-columns: 1fr; } .info-grid { grid-template-columns: 1fr 1fr; } .cform { grid-template-columns: 1fr; } }

/* ====== EFFET PHOTO « forme de logo » (démo Gregory) ====== */
.fx-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.fx-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin: 18px 0 6px; }
.fx-desc { font-size: 13px; color: rgba(241,238,233,0.5); line-height: 1.6; font-weight: 300; }
.fx-stage { position: relative; aspect-ratio: 261 / 131; background: var(--dark2); overflow: hidden; border-radius: 8px; }
.fx-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.fx-clip { clip-path: url(#deltaClip); }
.fx-shade { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(34,39,47,0.10), rgba(34,39,47,0.50)); pointer-events: none; }
.fx-emblem-logo { position: absolute; right: -3%; bottom: -10%; width: 46%; height: auto; opacity: 0.92; pointer-events: none; }
.fx-emblem-logo polygon { fill: var(--green); }
.fx-bevel { clip-path: polygon(0 0, 100% 0, 100% 66%, 50% 100%, 0 66%); }
@media (max-width: 900px) { .fx-row { grid-template-columns: 1fr; } }

/* ====== EFFETS PHOTO v2 — variations style A (logo) & C (géométrique) ====== */
.fx2-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.fx2-stage { position: relative; aspect-ratio: 261 / 131; background: var(--dark2); overflow: hidden; border-radius: 8px; }
.fx2-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
/* A2 — découpe logo + contour vert */
.fx-clip-outline { position: absolute; inset: 0; background: var(--green); clip-path: url(#deltaClip); transform: scale(1.07); }
/* A3 — découpe logo duotone vert */
.fx-duo { position: absolute; inset: 0; background: var(--green); clip-path: url(#deltaClip); mix-blend-mode: color; opacity: 0.6; pointer-events: none; }
/* C2 — double biseau haut + bas */
.fx-bevel2 { clip-path: polygon(0 12%, 50% 0, 100% 12%, 100% 88%, 50% 100%, 0 88%); }
/* C3 — encoche delta en haut */
.fx-notch { clip-path: polygon(0 0, 42% 0, 50% 15%, 58% 0, 100% 0, 100% 100%, 0 100%); }
@media (max-width: 900px) { .fx2-row { grid-template-columns: 1fr; } }

/* ====== HERO — grand logo delta décalé à droite (inspiré du site actuel) ====== */
.hero-delta-graphic {
  position: absolute;
  top: 50%; right: -7%;
  transform: translateY(-50%);
  width: 54%; max-width: 860px;
  z-index: 1; pointer-events: none;
}
.hero-delta-graphic svg { width: 100%; height: auto; display: block; }
.hero-delta-graphic polygon {
  fill: rgba(125,219,155,0.07);
  stroke: rgba(125,219,155,0.5);
  stroke-width: 1.1;
  stroke-linejoin: round;
}
/* léger éclaircissement de la vidéo dans la forme du logo */
.hero-splash::after {
  content: '';
  position: absolute;
  top: 50%; right: -7%;
  transform: translateY(-50%);
  width: 54%; height: 64%;
  z-index: 1;
  clip-path: url(#deltaClipFx);
  -webkit-clip-path: url(#deltaClipFx);
  -webkit-backdrop-filter: brightness(1.14) saturate(1.1);
  backdrop-filter: brightness(1.14) saturate(1.1);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-delta-graphic { width: 92%; right: -18%; }
  .hero-splash::after { display: none; }
}

/* ====== LAYOUTS PHOTO CRÉATIFS (pages) ====== */
/* A — split asymétrique photo / légende */
.ph-split { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.ph-split.rev .ph-img { order:2; }
.ph-img { position:relative; aspect-ratio:4/3; background-size:cover; background-position:center; border-radius:14px; overflow:hidden; }
.ph-img::after { content:''; position:absolute; right:0; bottom:0; width:38%; height:38%; background:rgba(125,219,155,0.16); clip-path:polygon(100% 0,100% 100%,0 100%); }
.ph-cap .k { font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--green); margin-bottom:14px; }
.ph-cap p { font-size:15px; line-height:1.85; color:rgba(241,238,233,.6); font-weight:300; }
/* B — bande pleine largeur + logo en surimpression */
.ph-band { position:relative; min-height:440px; background-size:cover; background-position:center; border-radius:16px; overflow:hidden; display:flex; align-items:center; }
.ph-band-shade { position:absolute; inset:0; background:linear-gradient(90deg, rgba(34,39,47,.88) 0%, rgba(34,39,47,.45) 60%, rgba(34,39,47,.2) 100%); }
.ph-band-logo { position:absolute; right:-2%; top:50%; transform:translateY(-50%); width:38%; opacity:.55; }
.ph-band-logo polygon { fill:none; stroke:rgba(125,219,155,.6); stroke-width:1.3; }
.ph-band-txt { position:relative; z-index:2; padding:48px 56px; max-width:560px; }
.ph-band-txt h3 { font-family:var(--font-display); font-size:30px; color:var(--cream); font-weight:400; margin-bottom:12px; }
.ph-band-txt p { font-size:14.5px; color:rgba(241,238,233,.65); line-height:1.8; font-weight:300; }
/* C — photo découpée en forme de logo */
.ph-delta { position:relative; aspect-ratio:2/1; background:var(--dark2); border-radius:12px; overflow:hidden; }
.ph-delta-img { position:absolute; inset:5% 7%; background-size:cover; background-position:center; clip-path:url(#deltaClipFx); -webkit-clip-path:url(#deltaClipFx); }
@media(max-width:900px){ .ph-split{grid-template-columns:1fr;gap:32px;} .ph-split.rev .ph-img{order:0;} .ph-band-logo{display:none;} .ph-band-txt{padding:32px;} }

/* ====== MENU BURGER MOBILE ====== */
.nav-burger { display:none; flex-direction:column; justify-content:center; gap:5px; width:42px; height:42px; background:none; border:0; cursor:pointer; padding:9px; z-index:101; }
.nav-burger span { display:block; width:24px; height:2px; background:var(--cream); border-radius:2px; transition:transform .3s, opacity .3s; }
nav.open .nav-burger span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
nav.open .nav-burger span:nth-child(2){ opacity:0; }
nav.open .nav-burger span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) {
  nav { padding: 16px 22px; }
  .nav-burger { display:flex; }
  nav .nav-links {
    position:fixed; top:70px; left:0; right:0;
    flex-direction:column; align-items:flex-start;
    background:rgba(34,39,47,0.98); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
    padding:26px 28px 30px; gap:20px; margin:0;
    border-bottom:1px solid rgba(125,219,155,.12);
    max-height:0; overflow:hidden; opacity:0; pointer-events:none;
    transition:max-height .38s ease, opacity .25s ease;
  }
  nav .nav-links a { font-size:15px; }
  nav .nav-cta { display:none; }
}

/* ====== PAGES LÉGALES ====== */
.legal { max-width: 820px; }
.legal h2 { font-family: var(--font-display); font-size: 22px; color: var(--cream); font-weight: 500; margin: 34px 0 12px; }
.legal p, .legal li { font-size: 14.5px; line-height: 1.85; color: rgba(241,238,233,0.62); font-weight: 300; margin-bottom: 16px; }
.legal ul { padding-left: 20px; }
.legal .legal-note { font-size: 12.5px; color: rgba(125,219,155,0.8); border-left: 2px solid var(--green); padding: 10px 16px; background: rgba(125,219,155,0.05); margin-bottom: 28px; }

/* ====== MESSAGE FORMULAIRE ====== */
.cform-msg { max-width:720px; margin:0 auto 22px; padding:14px 18px; border-radius:8px; font-size:14px; text-align:center; }
.cform-msg.ok { background:rgba(125,219,155,0.12); color:var(--green); border:1px solid rgba(125,219,155,0.3); }
.cform-msg.err { background:rgba(219,125,125,0.12); color:#e6a3a3; border:1px solid rgba(219,125,125,0.35); }

/* ====== DÉMO VARIANTES DE HERO ====== */
.hv { position:relative; min-height:74vh; display:flex; align-items:center; justify-content:center; overflow:hidden; background:#1f242b; }
.hv + .hv { margin-top:2px; }
.hv-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.hv-veil { position:absolute; inset:0; background:linear-gradient(rgba(38,42,50,.5),rgba(38,42,50,.6)); z-index:1; }
.hv-content { position:relative; z-index:5; text-align:center; padding:0 24px; }
.hv-wordmark { font-family:var(--font-display); font-size:clamp(34px,5vw,60px); font-weight:600; color:#fff; letter-spacing:-0.01em; }
.hv-wordmark span { color:var(--green); }
.hv-tag { font-size:clamp(11px,1.4vw,15px); letter-spacing:.28em; text-transform:uppercase; color:var(--green); margin-top:18px; font-weight:500; }
.hv-label { position:absolute; top:18px; left:22px; z-index:6; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:#fff; background:rgba(0,0,0,.45); padding:7px 14px; border-radius:20px; border:1px solid rgba(125,219,155,.35); }
.hv svg { display:block; }
/* V1 — delta XXL outline à droite */
.hv1-delta { position:absolute; right:-7%; top:50%; transform:translateY(-50%); width:52%; z-index:2; }
.hv1-delta polygon { fill:rgba(125,219,155,.07); stroke:rgba(125,219,155,.5); stroke-width:1.1; stroke-linejoin:round; }
/* V2 — logo RETOURNÉ (pointe en bas) */
.hv2-delta { position:absolute; left:50%; top:48%; transform:translate(-50%,-50%) rotate(180deg); width:60%; max-width:780px; z-index:2; }
.hv2-delta polygon { fill:none; stroke:rgba(125,219,155,.4); stroke-width:1.1; stroke-linejoin:round; }
/* V3 — image DANS le delta (découpe géante) */
.hv3 { background:#15191e; }
.hv3-clip { position:absolute; inset:6% 16%; background-size:cover; background-position:center; clip-path:url(#deltaClipFx); -webkit-clip-path:url(#deltaClipFx); z-index:1; }
.hv3 .hv-content { mix-blend-mode:difference; }
/* V4 — split : delta-clip à droite, texte à gauche */
.hv4 { justify-content:flex-start; }
.hv4-img { position:absolute; right:0; top:0; bottom:0; width:52%; background-size:cover; background-position:center; clip-path:polygon(18% 0,100% 0,100% 100%,0 100%); z-index:1; }
.hv4-img::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,#1f242b 0%,transparent 45%); }
.hv4 .hv-content { text-align:left; max-width:560px; margin-left:7%; z-index:5; }
@media(max-width:768px){ .hv1-delta,.hv2-delta{width:92%;opacity:.7} .hv4-img{width:100%;opacity:.35} .hv4 .hv-content{margin-left:24px} }

/* ====== HERO V4 — split (variante choisie) ====== */
.hero-splash { flex-direction: row; align-items: center; justify-content: flex-start; text-align: left; }
.hero-slideshow, .hero-splash-video {
  left: auto; right: 0; width: 54%;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-splash-overlay { background: linear-gradient(90deg, var(--dark) 0%, var(--dark) 38%, rgba(38,42,50,0.30) 64%, transparent 92%); }
.hero-splash-content { align-items: flex-start; text-align: left; max-width: 600px; margin-left: 7%; }
.hero-brand { align-items: flex-start; }
.hero-tagline { justify-content: flex-start; }
.hero-delta-graphic, .hero-logo-bg { display: none; }
.hero-splash::after { display: none; }
@media (max-width: 820px) {
  .hero-splash { flex-direction: column; justify-content: center; text-align: center; padding: 90px 24px 60px; }
  .hero-slideshow, .hero-splash-video { left:0; right:0; width: 100%; clip-path: none; -webkit-clip-path: none; opacity: 1; }
  .hero-splash-overlay { background: linear-gradient(rgba(38,42,50,.55), rgba(38,42,50,.72)); }
  .hero-splash-content { align-items: center; text-align: center; margin: 0 auto; }
  .hero-brand { align-items: center; }
  .hero-tagline { justify-content: center; }
}

/* ====== SÉLECTEUR DE LANGUE (Polylang) ====== */
.nav-lang { display:inline-flex; gap:7px; align-items:center; border:none; padding:0; }
.nav-lang a { color: rgba(241,238,233,0.5); text-decoration:none; font-size:12px; font-weight:600; letter-spacing:.06em; transition:color .2s; }
.nav-lang a.active { color: var(--green); }
.nav-lang a:hover { color: var(--green); }
.nav-lang i { color: rgba(241,238,233,0.25); font-style:normal; font-weight:400; }

/* ====== HEADER — recentrage du menu (sélecteur + CTA à droite) ====== */
nav .nav-links { flex: 1 1 auto; justify-content: center; }
nav .nav-lang { margin-left: auto; }
@media (max-width: 1024px) {
  nav .nav-links { flex: none; }
  nav .nav-lang { margin-left: 0; }
}

/* ====== PHOTOS PAGES — versions enrichies ====== */
/* Découpe logo + contour vert (plus créatif) */
.ph-delta { margin: 0 auto; max-width: 1040px; }
.ph-delta::before { content:''; position:absolute; inset:5% 7%; background:var(--green); opacity:.45; clip-path:url(#deltaClipFx); -webkit-clip-path:url(#deltaClipFx); transform:scale(1.025); }
.ph-delta .ph-delta-img { z-index:1; }
.ph-delta-cap { text-align:center; margin-top:18px; font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--green); }
/* Bande cinématographique : coupe angulaire haut + bas + légende */
.ph-cinema { position:relative; min-height:380px; background-size:cover; background-position:center; overflow:hidden; clip-path:polygon(0 0,100% 6%,100% 94%,0 100%); display:flex; align-items:flex-end; }
.ph-cinema::after { content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(34,39,47,.85) 0%, rgba(34,39,47,.25) 50%, rgba(34,39,47,.55) 100%); }
.ph-cinema .ph-cine-txt { position:relative; z-index:2; padding:40px 56px; }
.ph-cinema .ph-cine-txt .k { font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--green); margin-bottom:8px; }
.ph-cinema .ph-cine-txt h3 { font-family:var(--font-display); font-size:28px; color:var(--cream); font-weight:400; }
/* Split : accent vert + légende sur la photo */
.ph-img .ph-on { position:absolute; left:0; bottom:0; background:var(--green); color:var(--dark); font-size:11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; padding:8px 16px; }
@media(max-width:900px){ .ph-cinema{clip-path:polygon(0 0,100% 3%,100% 97%,0 100%);} .ph-cinema .ph-cine-txt{padding:28px;} }

/* ====== PHOTO « BORD ANGULAIRE » (façon site actuel) ====== */
.edge { display:grid; grid-template-columns:1fr 1fr; align-items:stretch; min-height:520px; background:var(--dark2); overflow:hidden; }
.edge-photo { background-size:cover; background-position:center; min-height:520px; }
.edge-text { display:flex; flex-direction:column; justify-content:center; padding:64px clamp(40px,6vw,96px); }
.edge-text .k { font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--green); margin-bottom:16px; }
.edge-text h3 { font-family:var(--font-display); font-size:clamp(24px,3vw,38px); color:var(--cream); font-weight:400; line-height:1.15; margin-bottom:18px; }
.edge-text h3 em { font-style:italic; color:var(--green); }
.edge-text p { font-size:15px; color:rgba(241,238,233,.6); line-height:1.85; font-weight:300; }
.edge.right .edge-photo { order:2; clip-path:polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
.edge.left  .edge-photo { clip-path:polygon(0 0, 100% 0, 86% 100%, 0 100%); }
@media(max-width:900px){ .edge{grid-template-columns:1fr;} .edge.right .edge-photo,.edge.left .edge-photo{order:0;clip-path:polygon(0 0,100% 0,100% 90%,0 100%);min-height:300px;} .edge-text{padding:40px 28px;} }

/* ====== CORRECTIFS ====== */
/* header : espace entre sélecteur de langue et bouton RDV */
nav .nav-lang { flex-shrink:0; }
nav .nav-cta { margin-left: 24px; flex-shrink:0; }
/* edge : photo à gauche -> ordre correct */
.edge.left .edge-photo { order: 0; }
.edge.left .edge-text { order: 1; }
/* variante parallélogramme (coupe sur les 2 bords) */
.edge.para.right .edge-photo { clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%); }
.edge.para.left  .edge-photo { clip-path: polygon(0 0, 84% 0, 100% 100%, 16% 100%); }

/* ====== V2 — DESIGN « MAQUETTE CONTENU » (Cormorant) — namespacé .cm- ====== */
.cm-hero { background:#22272F; padding:160px 56px 90px; position:relative; overflow:hidden; }
.cm-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(125,219,155,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(125,219,155,.04) 1px,transparent 1px); background-size:60px 60px; pointer-events:none; }
.cm-inner { max-width:1100px; margin:0 auto; position:relative; z-index:2; }
.cm-eyebrow { display:inline-flex; align-items:center; gap:12px; font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--green); margin-bottom:36px; font-weight:400; }
.cm-eyebrow::before { content:''; width:20px; height:1px; background:var(--green); }
.cm-title { font-family:'Cormorant Garamond',serif; font-size:clamp(44px,5.5vw,72px); font-weight:300; line-height:1.06; color:#fff; margin-bottom:26px; }
.cm-title em { color:var(--green); font-style:italic; }
.cm-vline { display: none; }
.cm-sub { font-size:15px; font-weight:300; line-height:1.8; color:rgba(255,255,255,.5); max-width:580px; }
.cm-badge { margin-top:48px; font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.22); }
.cm-sec { padding:96px 56px; background:#2E333C; }
.cm-sec.dd { background:#22272F; }
.cm-sec.dc { background:#353B45; }
.cm-label { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--green); margin-bottom:16px; }
.cm-stitle { font-family:'Cormorant Garamond',serif; font-size:clamp(28px,3vw,44px); font-weight:300; line-height:1.15; color:#fff; margin-bottom:14px; }
.cm-stitle em { color:var(--green); font-style:italic; }
.cm-srule { display: none; }
.cm-g3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; }
/* grilles à 4 cartes (About / DeltaCense) → 2×2 propre au lieu de 3+orphelin */
.cm-g3:has(.cm-card:nth-child(4)) { grid-template-columns:1fr 1fr; }
.cm-g2 { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.cm-card { background:#2E333C; padding:44px 36px; border-top:2px solid var(--green); }
.cm-sec .cm-card { background:#22272F; }
.cm-card .cnum { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:300; color:var(--green); opacity:.5; display:block; margin-bottom:14px; }
.cm-card h3 { font-family:'Cormorant Garamond',serif; font-size:21px; font-weight:500; color:#fff; margin-bottom:14px; }
.cm-card p { font-size:13.5px; font-weight:300; line-height:1.8; color:rgba(255,255,255,.55); }
.cm-quote { background:#353B45; border-left:3px solid var(--green); padding:48px 52px; }
.cm-quote p { font-family:'Cormorant Garamond',serif; font-size:23px; font-style:italic; font-weight:300; color:#fff; line-height:1.6; }
.cm-quote cite { display:block; font-style:normal; font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--green); margin-top:22px; }
.cm-tag { display:inline-block; background:var(--green); color:#22272F; font-size:9px; font-weight:600; letter-spacing:2px; text-transform:uppercase; padding:6px 14px; margin-bottom:20px; }
.cm-team { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; }
.cm-tcard { background:#353B45; padding:40px 32px; border-top:2px solid transparent; transition:border-color .25s; }
.cm-tcard:hover { border-top-color:var(--green); }
.cm-tphoto { width:72px; height:72px; border-radius:2px; background:linear-gradient(135deg,#22272F,#353B45); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.cm-tphoto span { font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--green); letter-spacing:2px; }
.cm-tname { font-family:'Cormorant Garamond',serif; font-size:19px; color:#fff; margin-bottom:4px; }
.cm-trole { font-size:10px; letter-spacing:1.2px; text-transform:uppercase; color:var(--green); margin-bottom:14px; }
.cm-tbio { font-size:13px; font-weight:300; line-height:1.7; color:rgba(255,255,255,.4); }
.cm-pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; }
.cm-pillar { background:#2E333C; padding:52px 38px; border-top:2px solid var(--green); }
.cm-pillar .pnum { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:var(--green); margin-bottom:18px; display:block; }
.cm-pillar h3 { font-family:'Cormorant Garamond',serif; font-size:22px; color:#fff; margin-bottom:18px; }
.cm-pillar ul { list-style:none; } .cm-pillar li { font-size:13px; font-weight:300; color:rgba(255,255,255,.45); padding:9px 0; border-bottom:1px solid rgba(125,219,155,.08); line-height:1.5; }
.cm-pillar li:last-child { border-bottom:none; }
.cm-cgrid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; }
.cm-cblock { background:#2E333C; padding:42px 32px; border-top:2px solid var(--green); }
.cm-cblock h4 { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:500; color:#fff; margin-bottom:14px; }
.cm-cblock p { font-size:13px; font-weight:300; color:rgba(255,255,255,.5); line-height:1.9; }
.cm-cblock a { color:var(--green); text-decoration:none; }

/* ====== RESPONSIVE — système .cm- (pages internes v2) ====== */
/* TABLETTE & PETIT ÉCRAN : reflows intermédiaires (≤900px) */
@media (max-width: 900px) {
	.cm-hero { padding: 130px 36px 78px; }
	.cm-sec { padding: 78px 36px; }
	.cm-inner { padding: 0; }
	/* grilles à 3 items : passent en 1 col (sinon orphelin moche) */
	.cm-g3, .cm-pillars { grid-template-columns: 1fr !important; gap: 24px !important; }
	/* 2-col stack */
	.cm-g2 { grid-template-columns: 1fr !important; gap: 40px !important; }
	/* grilles denses : 2 col sur tablette (équipe 6 cartes, contact 4 blocs, about 4 cartes) */
	.cm-team, .cm-cgrid { grid-template-columns: 1fr 1fr !important; gap: 1px !important; }
	.cm-g3:has(.cm-card:nth-child(4)) { grid-template-columns: 1fr 1fr !important; gap: 1px !important; }
	.cm-card, .cm-pillar { padding: 36px 28px; }
	.cm-title { font-size: clamp(40px, 6.5vw, 60px); }
	.cm-stitle { font-size: clamp(28px, 4.5vw, 40px); }
}
/* MOBILE : tout en 1 col, paddings et tailles resserrés (≤600px) */
@media (max-width: 600px) {
	.cm-hero { padding: 110px 22px 58px; }
	.cm-sec { padding: 60px 22px; }
	.cm-team, .cm-cgrid { grid-template-columns: 1fr !important; }
	.cm-g3:has(.cm-card:nth-child(4)) { grid-template-columns: 1fr !important; }
	.cm-card, .cm-pillar, .cm-tcard, .cm-cblock { padding: 28px 20px; }
	.cm-quote { padding: 28px 22px; }
	.cm-quote p { font-size: 19px; }
	.cm-title { font-size: clamp(34px, 9vw, 48px); }
	.cm-stitle { font-size: clamp(24px, 7vw, 36px); }
	.cm-eyebrow { margin-bottom: 22px; }
	.cm-sub { font-size: 14px; line-height: 1.65; }
}

/* ====== TABLETTE 769-1024px : palier 2-col pour les grilles v1 héritées ====== */
@media (min-width: 769px) and (max-width: 1024px) {
	.team-grid { grid-template-columns: 1fr 1fr !important; }
	.pillars { grid-template-columns: 1fr 1fr !important; }
	.valeurs-grid.cols-3 { grid-template-columns: 1fr 1fr !important; }
	.valeurs-grid { grid-template-columns: 1fr 1fr !important; }
	.info-grid { grid-template-columns: 1fr 1fr !important; }
	.fx-row, .fx2-row { grid-template-columns: 1fr 1fr !important; }
	.photo-strip { grid-template-columns: 1fr 1fr !important; }
}

/* ====== MOBILE (≤768px) — empilage agressif : tout en 1 col, paddings réduits ====== */
@media (max-width: 768px) {
	.hero-sub-grid,
	.philo-inner,
	.services-grid,
	.chiffres-grid,
	.seo-inner,
	.contact-inner,
	.form-row,
	.two-col,
	.ph-split,
	.edge,
	.info-grid,
	.contact-split,
	.team-grid,
	.pillars,
	.valeurs-grid,
	.valeurs-grid.cols-3,
	.fx-row,
	.fx2-row,
	.photo-strip,
	.footer-inner {
		grid-template-columns: 1fr !important;
		gap: 32px !important;
	}
	.section, .philo-section, .services-section, .chiffres-section, .partners-section, .contact-section, .seo-section, .carousel-section { padding-left: 24px !important; padding-right: 24px !important; }
	.section-inner, .philo-inner, .services-inner, .chiffres-inner, .contact-inner { padding-left: 0 !important; padding-right: 0 !important; }
	.photo-strip { height: auto !important; }
	.photo-strip-item { height: 240px !important; min-height: 240px; }
	.philo-right-photo { min-height: 320px !important; }
	.section-title { font-size: clamp(28px, 7vw, 38px) !important; line-height: 1.2 !important; }
	.philo-citation { font-size: clamp(24px, 6.5vw, 32px) !important; line-height: 1.25 !important; }
	.hero-title { font-size: clamp(32px, 9vw, 48px) !important; line-height: 1.1 !important; }
	.valeur-card:first-child, .valeur-card:last-child { border-radius: 0 !important; }
	.valeur-card { padding: 32px 22px !important; }
	.service-card { padding: 32px 22px !important; }
}

/* ====== TABLETTE (769-1024) — empiler photos + contenu plutôt que côte à côte ====== */
@media (min-width: 769px) and (max-width: 1024px) {
	.philo-inner { grid-template-columns: 1fr !important; gap: 50px !important; }
	.philo-right-photo { min-height: 380px !important; }
	.photo-strip { grid-template-columns: 1fr !important; height: auto !important; }
	.photo-strip-item { height: 300px !important; min-height: 300px; }
	.contact-inner { grid-template-columns: 1fr !important; gap: 50px !important; }
	.hero-sub-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
	.seo-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
	.ph-split { grid-template-columns: 1fr !important; gap: 36px !important; }
	.edge { grid-template-columns: 1fr !important; }
	.edge.right .edge-photo, .edge.left .edge-photo { order: 0 !important; clip-path: polygon(0 0,100% 0,100% 90%,0 100%) !important; min-height: 320px !important; }
	footer { padding: 56px 32px !important; }
	.footer-inner { grid-template-columns: 1fr 1fr !important; gap: 40px !important; max-width: 100% !important; }
	.footer-bottom { max-width: 100% !important; flex-wrap: wrap !important; }
}

/* ====== ANTI-OVERFLOW mobile/tablette ====== */
@media (max-width: 1024px) {
	html, body { overflow-x: hidden; max-width: 100vw; }
	header, footer, nav, .hero-splash, .section, .philo-section, .services-section, .chiffres-section, .partners-section, .contact-section, .seo-section, .carousel-section, .page-hero, .cm-hero, .cm-sec {
		max-width: 100vw;
		overflow-x: hidden;
	}
	img, iframe, video { max-width: 100%; }
	nav { padding-left: 16px; padding-right: 16px; }
	.nav-burger { z-index: 200; flex-shrink: 0; }
}

/* ====== HOME — pattern edge photo (alignement avec pages secondaires) ====== */

/* HERO CONTENT — bleed full-width + photo diagonale */
.hero-content { padding: 0 !important; background: var(--dark2); overflow: hidden; }
.hero-content-inner { max-width: none !important; margin: 0 !important; padding: 0 !important; }
.hero-presentation-grid { gap: 0 !important; align-items: stretch !important; }
.hero-presentation-grid > div:first-child {
	padding: 60px 24px;
	display: flex; flex-direction: column; justify-content: center;
}
.hero-presentation-grid > div:first-child > a { align-self: flex-start; }
.hero-presentation-grid > div:last-child {
	position: relative; overflow: hidden; min-height: 320px;
}
.hero-presentation-grid > div:last-child img {
	width: 100% !important; height: 100% !important;
	object-fit: cover !important; display: block !important;
	border-radius: 0 !important; opacity: 1 !important;
	position: absolute !important; inset: 0 !important;
	clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
@media (min-width: 769px) {
	.hero-presentation-grid > div:first-child { padding: 80px 40px; }
	.hero-presentation-grid > div:last-child { min-height: 420px; }
}
@media (min-width: 1025px) {
	.hero-presentation-grid > div:first-child { padding: 96px clamp(40px, 6vw, 96px); }
	.hero-presentation-grid > div:last-child { min-height: 600px; }
	.hero-presentation-grid > div:last-child img {
		clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
	}
}

/* Override des paddings forcés par le bloc anti-overflow ci-dessus */
@media (max-width: 1024px) {
	.hero-content {
		padding-left: 0 !important; padding-right: 0 !important;
	}
}

/* ===== Brief #2 : fix débordement du texte vert du hero ===== */
.hero-tagline { flex-wrap: wrap; max-width: 600px; letter-spacing: 0.16em; line-height: 1.7; }


/* ===== Brief #3 (v2) : section bateau en demi-largeur + bord angulaire (comme 'family office') ===== */
.philo-section { padding: 0 !important; background: var(--dark2) !important; }
.philo-inner { max-width: none !important; margin: 0 !important; gap: 0 !important; align-items: stretch !important; grid-template-columns: 1fr 1fr !important; min-height: 520px; }
.philo-left { padding: 64px clamp(40px,6vw,96px) !important; display: flex; flex-direction: column; justify-content: center; }
.philo-right-photo { min-height: 520px !important; border-radius: 0 !important; height: 100%; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
@media (max-width: 900px) {
  .philo-inner { grid-template-columns: 1fr !important; }
  .philo-right-photo { clip-path: polygon(0 0,100% 0,100% 90%,0 100%) !important; min-height: 320px !important; }
  .philo-left { padding: 40px 28px !important; }
}
