/* ============================================================
   IMMO CARRIÈRE — Charte graphique v1.0
   ============================================================ */

:root {
  /* Verts */
  --green-forest: #1F4D3D;
  --green-light: #2D6B56;
  --green-dark: #112E24;
  --green-deepest: #0A1F18;

  /* Ors */
  --gold: #C9A85C;
  --gold-light: #D4C08A;
  --gold-dark: #A6863A;

  /* Neutres */
  --black: #0D0D0D;
  --white: #FFFFFF;
  --cream: #FBF8F1;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: rgba(13, 13, 13, 0.68);
  --border: rgba(201, 168, 92, 0.24);
  --border-soft: rgba(255, 255, 255, 0.08);

  /* Typographie */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Tailles */
  --container: 1240px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Ombres */
  --shadow-sm: 0 4px 14px rgba(10, 31, 24, 0.08);
  --shadow: 0 18px 48px rgba(10, 31, 24, 0.14);
  --shadow-lg: 0 40px 80px rgba(10, 31, 24, 0.22);

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.display-xl {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.display-md {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.lead {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  color: var(--muted-dark);
  max-width: 62ch;
  line-height: 1.75;
}

.gold {
  color: var(--gold);
}

em.highlight {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 500;
}

/* ============================================================
   CONTAINER & SECTIONS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.4rem);
}

section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
}

.section-dark {
  background: var(--green-dark);
  color: var(--white);
}

.section-dark .lead {
  color: var(--muted);
}

.section-forest {
  background: var(--green-forest);
  color: var(--white);
}

.section-forest .lead {
  color: var(--muted);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header .lead {
  margin: 1.2rem auto 0;
}

/* Séparateur décoratif */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem 0;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--gold);
}

.divider svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 10px 30px rgba(201, 168, 92, 0.28);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 168, 92, 0.36);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-ghost {
  padding: 0.5rem 0;
  background: transparent;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  font-size: 0.85rem;
}

.btn-ghost:hover {
  letter-spacing: 0.08em;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(17, 46, 36, 0.0);
  backdrop-filter: blur(0);
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 31, 24, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.site-logo svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.site-logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  line-height: 1.1;
}

.site-logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 0.4rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: all 0.3s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease);
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 168, 92, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(45, 107, 86, 0.3), transparent 50%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--green-deepest) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 92, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 92, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 1.06;
  margin-bottom: 1.8rem;
}

.hero-content h1 .gold {
  font-style: italic;
  font-weight: 500;
}

.hero-content .lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  max-width: 52ch;
  margin-bottom: 2.4rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-soft);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta-item strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-meta-item span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* Carte clé décorative */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 3rem 2.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, var(--gold), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.4rem;
  color: var(--gold);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero-badge {
  position: absolute;
  padding: 0.7rem 1.2rem;
  background: var(--white);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 168, 92, 0.25);
}

.hero-badge.top { top: 8%; right: -6%; }
.hero-badge.bottom { bottom: 10%; left: -8%; background: var(--green-forest); color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   PILLARS / CONCEPT
   ============================================================ */
.pillars {
  background: var(--cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.pillar-card {
  padding: 2.4rem 2rem;
  background: var(--white);
  border: 1px solid rgba(31, 77, 61, 0.1);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

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

.pillar-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-style: italic;
}

.pillar-card h3 {
  font-size: 1.35rem;
  color: var(--green-forest);
  margin-bottom: 0.8rem;
}

.pillar-card p {
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   SPLIT SECTION (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse .split-media { order: 2; }

.split-content h2 {
  margin-bottom: 1.4rem;
}

.split-content .lead {
  margin-bottom: 2rem;
}

.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-forest), var(--green-dark));
  box-shadow: var(--shadow);
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(201, 168, 92, 0.18), transparent 40%),
    linear-gradient(transparent 50%, rgba(10, 31, 24, 0.6));
}

.split-media svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  color: var(--gold);
  opacity: 0.55;
}

.split-media .overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
}

.split-media .overlay strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.split-media .overlay span {
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-list {
  margin: 1.8rem 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.98rem;
}

.feature-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-top: 2px;
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 92, 0.2);
  align-items: center;
}

.founder-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--green-forest), var(--green-deepest));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 40% 30%, rgba(201, 168, 92, 0.25), transparent 55%);
}

.founder-portrait svg {
  width: 50%;
  color: var(--gold);
  opacity: 0.6;
  position: relative;
}

.founder-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--green-forest);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.6rem;
  border-left: 2px solid var(--gold);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(31, 77, 61, 0.1);
}

.founder-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.founder-stat span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-dark);
  margin-top: 0.4rem;
  display: block;
}

.founder-name {
  margin-top: 1.6rem;
}

.founder-name strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green-forest);
  display: block;
}

.founder-name span {
  font-size: 0.85rem;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   PROGRAM STEPS
   ============================================================ */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  padding: 2rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}

.step:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 92, 0.04);
  transform: translateY(-4px);
}

.step-num {
  counter-increment: step;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.step-num::before {
  content: "0" counter(step);
  display: inline-block;
  margin-right: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   APPS (WebApps showcase)
   ============================================================ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.app-card {
  position: relative;
  padding: 2.6rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 77, 61, 0.1);
  transition: all 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(201, 168, 92, 0.14);
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
  width: fit-content;
}

.app-card h3 {
  font-size: 1.6rem;
  color: var(--green-forest);
  margin-bottom: 0.8rem;
}

.app-card p {
  color: var(--muted-dark);
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.app-mock {
  margin-top: 1.6rem;
  padding: 1.4rem;
  background: linear-gradient(145deg, var(--green-dark), var(--green-deepest));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.app-mock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-mock::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 14px 0 0 rgba(255, 255, 255, 0.2), 28px 0 0 rgba(255, 255, 255, 0.1);
}

.app-mock-body {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.app-mock-line {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(201, 168, 92, 0.3), rgba(201, 168, 92, 0.08));
}

.app-mock-line:nth-child(2) { width: 82%; }
.app-mock-line:nth-child(3) { width: 60%; background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)); }
.app-mock-line:nth-child(4) { width: 70%; background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)); }

.app-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  padding: 4rem 0;
  background: var(--green-forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(201, 168, 92, 0.12), transparent 50%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat strong {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.stat span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.testimonial {
  padding: 2.4rem;
  background: var(--white);
  border: 1px solid rgba(31, 77, 61, 0.1);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.4s var(--ease);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--green-forest);
  margin-bottom: 1.6rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(31, 77, 61, 0.08);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-forest), var(--green-dark));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-forest);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-deepest));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 92, 0.12), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(45, 107, 86, 0.3), transparent 40%);
}

.cta-band .container {
  position: relative;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
  margin: 0 auto 1.4rem;
}

.cta-band p {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.4rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deepest);
  color: var(--muted);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .site-logo {
  margin-bottom: 1.4rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 1.6rem;
}

.footer-contact {
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADERS (inner pages)
   ============================================================ */
.page-hero {
  padding: 12rem 0 6rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 168, 92, 0.12), transparent 50%),
    linear-gradient(160deg, var(--green-dark), var(--green-deepest));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 92, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 92, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.page-hero-inner {
  position: relative;
  max-width: 780px;
}

.breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  padding: 2.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 77, 61, 0.1);
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--green-forest);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.92rem;
  color: var(--muted-dark);
  margin-bottom: 1.8rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 4px;
}

.contact-info-list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-forest);
  margin-bottom: 0.2rem;
}

.contact-info-list span,
.contact-info-list a {
  font-size: 0.92rem;
  color: var(--muted-dark);
  line-height: 1.6;
}

.contact-info-list a:hover { color: var(--gold-dark); }

.contact-form {
  padding: 2.8rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 77, 61, 0.1);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-forest);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--cream);
  border: 1px solid rgba(31, 77, 61, 0.15);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 92, 0.12);
}

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

.form-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted-dark);
  margin-bottom: 1.6rem;
}

.form-check input { margin-top: 4px; }

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.visible { display: block; }

.form-status.success {
  background: rgba(45, 107, 86, 0.12);
  color: var(--green-forest);
  border-left: 3px solid var(--green-forest);
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2.8rem;
  margin-bottom: 0.8rem;
  color: var(--green-forest);
  font-size: 1.5rem;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p,
.legal-content ul {
  margin-bottom: 1rem;
  color: var(--muted-dark);
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.4rem;
  list-style: disc;
}

.legal-content strong { color: var(--green-forest); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .pillars-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .split-media { max-width: 500px; }
  .founder-card { grid-template-columns: 1fr; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .apps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--green-deepest);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1rem; }
  .nav-cta .btn { display: none; }

  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-badge.top { right: 4%; }
  .hero-badge.bottom { left: 4%; }
  .hero-meta { gap: 1.4rem; }

  .pillars-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .founder-stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }

  .section-header { text-align: left; }
  .divider { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-content .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .site-logo-text small { display: none; }
  .contact-form { padding: 1.8rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ═══════════════════════════════════════════════════════════
   V2 — ÉPURE, PHOTOS ET ANIMATIONS
   ═══════════════════════════════════════════════════════════
   ============================================================ */

/* Rythme général plus aéré */
section {
  padding: clamp(5rem, 11vw, 10rem) 0;
}

.section-header { margin-bottom: 4.5rem; }

/* Barre de progression de scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(201, 168, 92, 0.6);
}

/* Grain subtil sur les fonds sombres */
.section-dark,
.section-forest,
.hero,
.page-hero,
.cta-band,
.stats-band {
  position: relative;
}

.section-dark::after,
.section-forest::after,
.hero::after,
.page-hero::after,
.cta-band::after,
.stats-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   HERO V2 — photo, parallax, titre animé
   ============================================================ */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 9rem 0 6rem;
  color: var(--white);
  overflow: hidden;
  background: var(--green-deepest);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.9);
  transform: scale(1.08);
  will-change: transform;
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 168, 92, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(45, 107, 86, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(10, 31, 24, 0.5) 0%, rgba(10, 31, 24, 0.85) 100%);
}

.hero-v2 .container {
  position: relative;
  z-index: 2;
}

.hero-v2-inner {
  max-width: 920px;
}

.hero-v2 h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: 1.04;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-v2 h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  animation: wordIn 0.9s var(--ease) forwards;
}

.hero-v2 h1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero-v2 h1 .word:nth-child(2) { animation-delay: 0.2s; }
.hero-v2 h1 .word:nth-child(3) { animation-delay: 0.3s; }
.hero-v2 h1 .word:nth-child(4) { animation-delay: 0.4s; }
.hero-v2 h1 .word:nth-child(5) { animation-delay: 0.5s; }
.hero-v2 h1 .word:nth-child(6) { animation-delay: 0.6s; }
.hero-v2 h1 .word:nth-child(7) { animation-delay: 0.7s; }
.hero-v2 h1 .word:nth-child(8) { animation-delay: 0.8s; }
.hero-v2 h1 .word:nth-child(9) { animation-delay: 0.9s; }
.hero-v2 h1 .word:nth-child(10) { animation-delay: 1.0s; }

@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2 .lead {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  max-width: 60ch;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s var(--ease) forwards;
}

.hero-v2 .hero-cta {
  opacity: 0;
  animation: fadeUp 1s 1.3s var(--ease) forwards;
  margin-bottom: 3.5rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2 .hero-meta {
  opacity: 0;
  animation: fadeUp 1s 1.5s var(--ease) forwards;
}

.hero-v2 .eyebrow {
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards;
}

/* Indicateur de scroll */
.hero-scroll-v2 {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s 1.8s var(--ease) forwards;
}

.hero-scroll-v2 .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
}

.hero-scroll-v2 .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
  animation: scrollDot 2.4s var(--ease) infinite;
}

@keyframes scrollDot {
  0% { top: 0; opacity: 1; }
  70% { top: 100%; opacity: 0; }
  100% { top: 0; opacity: 0; }
}

/* ============================================================
   MARQUEE / bandeau glissant
   ============================================================ */
.marquee {
  padding: 2rem 0;
  background: var(--green-forest);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 92, 0.15);
  border-bottom: 1px solid rgba(201, 168, 92, 0.15);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
  color: var(--white);
}

.marquee-item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  display: inline-block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO — bloc texte fort
   ============================================================ */
.manifesto {
  padding: clamp(6rem, 13vw, 12rem) 0;
  background: var(--cream);
  text-align: center;
}

.manifesto-inner {
  max-width: 960px;
  margin: 0 auto;
}

.manifesto h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.2;
  color: var(--green-forest);
  font-weight: 500;
}

.manifesto h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.manifesto .lead {
  margin: 2.6rem auto 0;
  max-width: 620px;
  font-size: 1.08rem;
}

.manifesto .divider-inline {
  margin: 2.4rem auto 0;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   A TO Z — Journey en 4 étapes avec photos
   ============================================================ */
.journey {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.journey-header {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: journey;
}

.journey-step {
  counter-increment: journey;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: all 0.6s var(--ease);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.journey-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
  z-index: -1;
}

.journey-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 24, 0.2) 0%, rgba(10, 31, 24, 0.95) 100%);
  transition: opacity 0.6s var(--ease);
  z-index: -1;
}

.journey-step:hover::before {
  transform: scale(1.1);
}

.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.journey-step[data-img="1"]::before { background-image: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=800&q=80"); }
.journey-step[data-img="2"]::before { background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&q=80"); }
.journey-step[data-img="3"]::before { background-image: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=800&q=80"); }
.journey-step[data-img="4"]::before { background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800&q=80"); }

.journey-step-content {
  position: absolute;
  inset: 0;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  z-index: 1;
}

.journey-step-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.journey-step-num::before {
  content: counter(journey, decimal-leading-zero);
  display: block;
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.journey-step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.journey-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.journey-step:hover p {
  opacity: 1;
  max-height: 200px;
  margin-top: 0.6rem;
}

/* ============================================================
   IMAGE STORY — split avec photo (épuré)
   ============================================================ */
.story {
  background: var(--cream);
}

.story + .story {
  padding-top: 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story.reverse .story-media { order: 2; }

.story-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.story:hover .story-media img,
.story-media:hover img {
  transform: scale(1.05);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(220deg, transparent 40%, rgba(17, 46, 36, 0.4));
  pointer-events: none;
}

.story-tag {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--green-forest);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.story-content h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--green-forest);
  margin-bottom: 1.4rem;
  line-height: 1.15;
}

.story-content .lead {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.story-content p {
  color: var(--muted-dark);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

/* ============================================================
   PILLARS V2 — trois colonnes épurées (sans cartes lourdes)
   ============================================================ */
.pillars-v2 {
  background: var(--cream);
}

.pillars-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 3rem;
}

.pillar-v2 {
  position: relative;
  padding: 0;
  text-align: left;
  transition: transform 0.5s var(--ease);
}

.pillar-v2-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.6rem;
  background: rgba(201, 168, 92, 0.1);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
}

.pillar-v2-icon svg {
  width: 26px;
  height: 26px;
}

.pillar-v2:hover .pillar-v2-icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(201, 168, 92, 0.35);
}

.pillar-v2 h3 {
  font-size: 1.45rem;
  color: var(--green-forest);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.pillar-v2 p {
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ============================================================
   TILT EFFECT (sur cartes)
   ============================================================ */
.tilt {
  transition: transform 0.4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============================================================
   IMAGE CTA avec parallax
   ============================================================ */
.photo-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.photo-cta .bg {
  position: absolute;
  inset: -10%;
  background-image: url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1600&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.9);
  z-index: -1;
  will-change: transform;
}

.photo-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10, 31, 24, 0.75) 90%),
    linear-gradient(180deg, rgba(10, 31, 24, 0.4), rgba(10, 31, 24, 0.85));
  z-index: -1;
}

.photo-cta .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.photo-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 1.6rem;
}

.photo-cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   WEBAPPS V2 — cartes photos
   ============================================================ */
.apps-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.app-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.8rem;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.5s var(--ease);
  box-shadow: var(--shadow);
}

.app-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
  z-index: -2;
}

.app-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 24, 0.2) 0%, rgba(10, 31, 24, 0.9) 70%);
  z-index: -1;
}

.app-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.app-v2:hover::before {
  transform: scale(1.08);
}

.app-v2[data-img="companion"]::before {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1200&q=80");
}

.app-v2[data-img="compass"]::before {
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=1200&q=80");
}

.app-v2 .app-tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-forest);
  backdrop-filter: blur(6px);
  margin: 0;
}

.app-v2 h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.app-v2 p {
  color: var(--muted);
  margin-bottom: 1.6rem;
  max-width: 42ch;
}

.app-v2 .app-actions {
  margin-top: 0;
}

.app-v2 .btn-ghost {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   FOUNDER V2 — avec photo
   ============================================================ */
.founder-v2 {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--green-dark);
  color: var(--white);
}

.founder-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.founder-v2-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.founder-v2-media:hover img { transform: scale(1.05); }

.founder-v2-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 31, 24, 0.6));
  pointer-events: none;
}

.founder-v2-badge {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  z-index: 2;
}

.founder-v2-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.founder-v2-badge span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.founder-v2 blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--white);
  margin: 2rem 0;
  padding-left: 1.8rem;
  border-left: 2px solid var(--gold);
}

.founder-v2 .founder-stats {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.founder-v2 .founder-stat span { color: var(--muted); }

/* ============================================================
   HERO V2 — pages intérieures avec photo
   ============================================================ */
.page-hero-v2 {
  padding: 13rem 0 6rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-v2 .bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.9);
  z-index: -1;
  will-change: transform;
}

.page-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 168, 92, 0.15), transparent 55%),
    linear-gradient(180deg, rgba(10, 31, 24, 0.55), rgba(10, 31, 24, 0.85));
  z-index: -1;
}

.page-hero-v2 .page-hero-inner { max-width: 820px; }

.page-hero-v2 h1 {
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 1.6rem;
}

/* ============================================================
   RESPONSIVE V2
   ============================================================ */
@media (max-width: 1024px) {
  .journey-track { grid-template-columns: 1fr 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .story.reverse .story-media { order: 0; }
  .story-media { max-width: 520px; margin: 0 auto; }
  .pillars-v2-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .apps-v2-grid { grid-template-columns: 1fr; }
  .founder-v2-inner { grid-template-columns: 1fr; }
  .founder-v2-media { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .journey-track { grid-template-columns: 1fr; }
  .journey-step { aspect-ratio: 4 / 3; }
  .marquee-item { font-size: 1.4rem; gap: 2rem; }
  .photo-cta { min-height: 440px; }
  .app-v2 { min-height: 380px; padding: 2rem; }
  .app-v2 h3 { font-size: 1.5rem; }
}

