/* =========================================================
   CAP CROISSANCE — Design System
   Palette: Navy deep, Gold warm, Ivory, Ink
   ========================================================= */

:root {
  --navy-900: #07152F;
  --navy-800: #0A1F44;
  --navy-700: #122C5C;
  --navy-600: #1B3A72;
  --gold-500: #D4A94A;
  --gold-600: #B88A2B;
  --gold-300: #ECD39A;
  --ivory: #F7F4EE;
  --cream: #FAF7F1;
  --ink: #1A1F2C;
  --muted: #5E6474;
  --line: rgba(10, 31, 68, 0.10);
  --line-strong: rgba(10, 31, 68, 0.18);
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 6px rgba(7, 21, 47, 0.06);
  --shadow: 0 18px 40px -20px rgba(7, 21, 47, 0.25);
  --shadow-lg: 0 40px 80px -30px rgba(7, 21, 47, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

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

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); line-height: 1.15; }
h3 { font-size: 1.3rem; line-height: 1.3; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow-light { color: var(--gold-300); }
.eyebrow-light::before { background: var(--gold-300); }

.accent { color: var(--gold-600); font-family: var(--font-serif); font-style: italic; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 10px 24px -8px rgba(212, 169, 74, 0.55);
}
.btn-primary:hover {
  background: var(--gold-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(212, 169, 74, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn-ghost-light {
  color: var(--ivory);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

/* ========= HEADER / NAV ========= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-900);
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-800);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-menu a:hover { background: rgba(10, 31, 68, 0.06); }

.nav-cta {
  background: var(--navy-800);
  color: var(--white) !important;
  padding: 10px 20px !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--navy-900) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========= HERO ========= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(212,169,74,0.35), transparent 70%);
  top: -120px; right: -120px;
}
.hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,58,114,0.8), transparent 70%);
  bottom: -200px; left: -180px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content .eyebrow { color: var(--gold-300); }
.hero-content .eyebrow::before { background: var(--gold-300); }

.hero-lead {
  font-size: 1.15rem;
  color: rgba(247, 244, 238, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-lead strong { color: var(--white); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 560px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
}
.hero-stats li { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-300);
  margin-left: 2px;
  vertical-align: super;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(247, 244, 238, 0.65);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(212,169,74,0.25);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-2deg);
}
.hero-card img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212,169,74,0.18), transparent 60%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 0.9rem;
  animation: floaty 6s ease-in-out infinite;
}
.hero-badge strong { display: block; font-weight: 600; color: var(--white); }
.hero-badge em { font-style: normal; font-size: 0.76rem; color: rgba(255,255,255,0.7); }
.badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-badge-1 { top: 10%; left: -5%; animation-delay: 0s; }
.hero-badge-2 { bottom: 12%; right: -8%; animation-delay: -3s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold-300);
  border-radius: 3px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ========= MANIFESTE ========= */
.manifeste {
  background: var(--ivory);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifeste-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifeste-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 28px;
}
.manifeste-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--navy-900);
  font-weight: 500;
  margin: 0;
}
.hl {
  position: relative;
  white-space: nowrap;
  color: var(--gold-600);
  font-style: italic;
}

/* ========= SECTION HEAD ========= */
.section-head {
  max-width: 760px;
  margin-bottom: 72px;
}
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .eyebrow { padding-left: 38px; padding-right: 38px; }
.section-head-center .eyebrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--gold-500);
}
.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1em;
}

/* ========= APPROACH / PILLARS ========= */
.approach { padding: 120px 0; background: var(--cream); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-featured {
  background: var(--navy-900);
  color: var(--ivory);
  border-color: transparent;
}
.pillar-featured h3 { color: var(--white); }
.pillar-featured p { color: rgba(247,244,238,0.78); }
.pillar-featured .pillar-num { color: var(--gold-300); }
.pillar-featured ul li { color: rgba(247,244,238,0.85); border-color: rgba(255,255,255,0.12); }
.pillar-featured ul li::before { color: var(--gold-300); }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.pillar h3 { margin-bottom: 14px; font-size: 1.55rem; }
.pillar p { color: var(--muted); margin-bottom: 20px; }

.pillar ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.pillar ul li {
  padding: 12px 0 12px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.pillar ul li:first-child { border-top: 1px solid var(--line); }
.pillar ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold-600);
  font-weight: 600;
}

/* ========= SERVICES ========= */
.services { padding: 120px 0; background: var(--ivory); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); margin-bottom: 16px; }
.service-meta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-600);
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}

/* ========= AUDIENCE ========= */
.audience {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}
.audience-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.audience-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.audience-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--navy-800);
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 500;
}
.audience-list li span {
  color: var(--gold-600);
  font-weight: 700;
}

.quote-card {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,169,74,0.18), transparent 65%);
  pointer-events: none;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold-500);
  display: block;
  margin-bottom: 20px;
}
.quote-card p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.55;
  margin-bottom: 24px;
}
.quote-card p em {
  font-style: italic;
  color: var(--gold-300);
}
.quote-author {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-300);
  text-transform: uppercase;
  font-weight: 600;
}

/* ========= FOUNDER ========= */
.founder {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: "";
  position: absolute;
  top: 10%; right: -12%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(212,169,74,0.10), transparent 65%);
  pointer-events: none;
}

.founder-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-visual { display: flex; justify-content: center; }

.founder-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  filter: grayscale(15%) contrast(1.02);
  position: relative;
  z-index: 2;
}
.founder-accent {
  position: absolute;
  inset: -14px -14px auto auto;
  width: 70%;
  height: 70%;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}
.founder-accent::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 90px; height: 90px;
  background:
    radial-gradient(circle, rgba(212,169,74,0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.founder-sign {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--navy-900);
  color: var(--ivory);
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 3px solid var(--gold-500);
}
.founder-sign span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.founder-sign em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.founder-text h2 {
  margin-bottom: 20px;
}
.founder-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy-800);
  font-weight: 500;
  margin-bottom: 20px;
}
.founder-text p {
  color: var(--muted);
  line-height: 1.75;
}
.founder-text strong { color: var(--navy-900); font-weight: 600; }

.founder-values {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 14px;
}
.founder-values li {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.founder-values li:hover {
  border-color: var(--gold-500);
  transform: translateX(4px);
}
.founder-values strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-600);
  font-weight: 600;
}
.founder-values span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.founder-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  margin: 8px 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder-credentials div { display: flex; flex-direction: column; gap: 4px; }
.founder-credentials strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy-900);
  line-height: 1;
}
.founder-credentials span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.founder-cta { margin-top: 8px; }

/* ========= RESULTS ========= */
.results {
  padding: 120px 0;
  background: var(--navy-900);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,169,74,0.1), transparent 60%);
  pointer-events: none;
}
.results .section-head h2 { color: var(--white); }
.results .section-head .section-lead { color: rgba(247,244,238,0.75); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.result-card {
  padding: 40px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.result-card:hover {
  transform: translateY(-6px);
  background: rgba(212, 169, 74, 0.08);
  border-color: rgba(212, 169, 74, 0.35);
}
.result-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 18px;
  line-height: 1;
}
.result-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.result-card p {
  color: rgba(247,244,238,0.72);
  margin: 0;
  font-size: 0.95rem;
}

/* ========= TESTIMONIALS ========= */
.testimonials { padding: 120px 0; background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin: 0;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-300);
  opacity: 0.6;
  pointer-events: none;
}
.testimonial blockquote {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
}
.testimonial figcaption {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial figcaption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.testimonial figcaption span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ========= CTA ========= */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800) 50%, var(--navy-700));
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,74,0.2), transparent 70%);
  filter: blur(40px);
}
.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-content p {
  color: rgba(247,244,238,0.78);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-full { margin-bottom: 20px; }
.cta-form span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.25s, background 0.25s;
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(212,169,74,0.05);
}
.cta-form textarea { resize: vertical; min-height: 110px; }
.cta-form .btn { width: 100%; }
.form-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(247,244,238,0.6);
  text-align: center;
}
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(212,169,74,0.15);
  border: 1px solid var(--gold-500);
  border-radius: 10px;
  color: var(--gold-300);
  font-size: 0.9rem;
  text-align: center;
}
.form-error {
  margin-top: 16px;
  padding: 14px;
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.55);
  border-radius: 10px;
  color: #f4b4b4;
  font-size: 0.9rem;
  text-align: center;
}
.form-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.btn[aria-busy="true"] { opacity: 0.65; cursor: wait; }
.btn[aria-busy="true"]::after {
  content: "";
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  margin-left: 8px;
  animation: btnSpin 0.7s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* ========= FOOTER ========= */
.site-footer {
  background: var(--navy-900);
  color: rgba(247,244,238,0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 12px; }
.footer-cols a {
  font-size: 0.92rem;
  color: rgba(247,244,238,0.7);
  transition: color 0.25s;
}
.footer-cols a:hover { color: var(--gold-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(247,244,238,0.5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ========= REVEAL ANIMATIONS ========= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE — Tablet → Large phone → Small phone
   ========================================================= */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .pillars, .results-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .audience-container { grid-template-columns: 1fr; gap: 40px; }
  .cta-container { grid-template-columns: 1fr; gap: 40px; }
  .founder-container { grid-template-columns: 1fr; gap: 56px; }
  .founder-visual { order: -1; }
  .founder-photo-wrap { max-width: 400px; }
}

/* ---- Large phone / small tablet (≤ 820px) ---- */
@media (max-width: 820px) {
  /* NAV */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: 84%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 96px 20px 40px;
    background: var(--cream);
    box-shadow: -20px 0 60px rgba(7, 21, 47, 0.18);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.05rem; padding: 14px 16px; }
  .nav-cta { margin: 12px 0 0; text-align: center; }

  .site-header { padding: 14px 0; }
  .brand-tag { display: none; }
  .brand-logo { width: 42px; height: 42px; border-radius: 10px; }
  .brand-name { font-size: 1.02rem; }
  .brand { gap: 10px; }

  /* SECTION SPACING */
  .approach, .services, .audience, .founder, .results, .testimonials, .cta {
    padding: 72px 0;
  }
  .manifeste { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  /* HERO */
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  .hero-content { text-align: left; }
  .hero-lead { font-size: 1.05rem; margin-bottom: 28px; }
  .hero-actions { margin-bottom: 40px; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
  }
  .stat-num { font-size: 1.8rem; }
  .stat-unit { font-size: 1.1rem; }
  .stat-label { font-size: 0.75rem; }

  .hero-visual { max-width: 340px; }
  .hero-card { border-radius: var(--radius-lg); transform: rotate(-1.5deg); }
  .hero-badge {
    padding: 10px 14px;
    font-size: 0.82rem;
    border-radius: 14px;
  }
  .hero-badge strong { font-size: 0.92rem; }
  .hero-badge em { font-size: 0.7rem; }
  .badge-icon { width: 32px; height: 32px; font-size: 0.95rem; }
  .hero-badge-1 { top: 6%; left: 4%; }
  .hero-badge-2 { bottom: 8%; right: 4%; }

  .hero-scroll { display: none; }

  /* MANIFESTE */
  .manifeste-text { font-size: 1.4rem; }

  /* GRIDS → single column */
  .pillars, .services-grid, .results-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillar, .service-card, .testimonial { padding: 32px 26px; }
  .pillar ul li { padding: 10px 0 10px 22px; }
  .result-card { padding: 32px 24px; }

  /* AUDIENCE */
  .quote-card { padding: 44px 32px; }
  .quote-card p { font-size: 1.12rem; }
  .quote-mark { font-size: 4rem; margin-bottom: 12px; }

  /* FOUNDER */
  .founder-photo-wrap { max-width: 340px; }
  .founder-sign { left: -10px; bottom: 20px; padding: 12px 18px; }
  .founder-sign span { font-size: 1rem; }
  .founder-sign em { font-size: 0.7rem; }
  .founder-values li { grid-template-columns: 120px 1fr; gap: 14px; padding: 14px 16px; }
  .founder-values strong { font-size: 0.98rem; }
  .founder-values span { font-size: 0.9rem; }
  .founder-credentials { grid-template-columns: 1fr; gap: 14px; padding: 20px 0; }
  .founder-credentials strong { font-size: 1.2rem; }

  /* CTA */
  .cta-form { padding: 24px; }
  .form-row { gap: 14px; }
  .cta-content p { font-size: 1rem; }

  /* FOOTER */
  .site-footer { padding: 64px 0 0; }
  .footer-container { padding-bottom: 40px; gap: 36px; }
  .footer-cols { gap: 24px; }
}

/* ---- Phone (≤ 600px) ---- */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 1.12; }
  h2 { font-size: clamp(1.55rem, 6vw, 1.9rem); }
  h3 { font-size: 1.2rem; }

  .btn { padding: 13px 22px; font-size: 0.92rem; }
  .btn-lg { padding: 15px 26px; font-size: 0.95rem; }

  /* HERO */
  .hero { padding: 110px 0 48px; }
  .hero-lead { font-size: 1rem; line-height: 1.65; margin-bottom: 24px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-actions .btn { width: 100%; }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
    row-gap: 18px;
  }
  .hero-stats li:nth-child(3) {
    grid-column: span 2;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 18px;
  }
  .stat-num { font-size: 1.7rem; }

  /* HERO VISUAL — badges repositionnés à l'intérieur de la carte */
  .hero-visual { max-width: 300px; }
  .hero-card { transform: none; }
  .hero-badge-1 { top: 10px; left: 10px; }
  .hero-badge-2 { bottom: 10px; right: 10px; }
  .hero-badge {
    padding: 9px 12px;
    gap: 10px;
    background: rgba(7,21,47,0.6);
    border-color: rgba(212,169,74,0.25);
  }

  /* EYEBROW */
  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    padding-left: 30px;
    margin-bottom: 14px;
  }
  .eyebrow::before { width: 20px; }
  .section-head-center .eyebrow { padding-right: 30px; }
  .section-head-center .eyebrow::after { width: 20px; }

  /* SECTIONS */
  .approach, .services, .audience, .founder, .results, .testimonials, .cta {
    padding: 60px 0;
  }

  /* FOUNDER mobile */
  .founder-photo-wrap { max-width: 280px; }
  .founder-accent { inset: -10px -10px auto auto; }
  .founder-sign { left: 50%; transform: translateX(-50%); bottom: -18px; }
  .founder-lead { font-size: 1.02rem; }
  .founder-values {
    margin: 24px 0;
  }
  .founder-values li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 16px;
  }
  .founder-cta { width: 100%; }
  .manifeste { padding: 52px 0; }
  .manifeste-text { font-size: 1.2rem; line-height: 1.4; }
  .manifeste-eyebrow { margin-bottom: 20px; }
  .section-head { margin-bottom: 32px; }
  .section-lead { font-size: 1rem; }

  /* CARDS */
  .pillar, .service-card, .testimonial { padding: 28px 22px; }
  .pillar-num { font-size: 0.82rem; margin-bottom: 14px; }
  .pillar h3 { font-size: 1.3rem; }
  .service-icon { width: 48px; height: 48px; margin-bottom: 18px; }
  .service-icon svg { width: 24px; height: 24px; }

  /* RESULTS */
  .result-card { padding: 28px 22px; }
  .result-num { font-size: 1.8rem; margin-bottom: 12px; }

  /* AUDIENCE */
  .audience-list li {
    padding: 14px 0;
    font-size: 0.96rem;
    gap: 12px;
  }
  .quote-card { padding: 36px 24px; border-radius: var(--radius); }
  .quote-card p { font-size: 1.05rem; line-height: 1.55; }
  .quote-mark { font-size: 3.4rem; }

  /* TESTIMONIALS */
  .testimonial::before { font-size: 3.6rem; top: 14px; right: 22px; }
  .testimonial blockquote { font-size: 0.98rem; }

  /* CTA */
  .cta-form { padding: 22px 20px; border-radius: var(--radius); }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .cta-form input,
  .cta-form textarea { padding: 12px 14px; font-size: 16px; } /* 16px évite le zoom iOS */

  /* FOOTER */
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-logo { width: 56px; height: 56px; }
}

/* ---- Very small phone (≤ 380px) ---- */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .brand-name { font-size: 0.95rem; }
  .brand-logo { width: 38px; height: 38px; }
  .nav-toggle { width: 40px; height: 40px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats li:nth-child(3) {
    grid-column: auto;
    border-top: none;
    padding-top: 0;
  }
  .hero-stats li {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
  .stat-label { margin-top: 0; }

  .footer-cols { grid-template-columns: 1fr; }
}

/* ---- Short landscape phones (avoid hero being cut) ---- */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero-scroll { display: none; }
}
