/* The New Life — feuille de style commune */

:root {
  --gold: #C9A063;
  --gold-light: #E8D4A0;
  --gold-dark: #8A6831;
  --gold-deep: #6E4F1F;
  --bronze: #4A330F;
  --cream: #FBF6EB;
  --cream-soft: #F4ECDC;
  --ink: #2A1E0F;
  --muted: #7A6A4F;
  --line: #E7DCC6;
  --serieux: #E11D48;
  --casual: #F97316;
  --amitie: #16A34A;
  --activite: #2563EB;
  --grad-gold: linear-gradient(135deg, #8A6831 0%, #C9A063 45%, #E8D4A0 100%);
  --grad-bronze: linear-gradient(160deg, #4A330F 0%, #6E4F1F 50%, #8A6831 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; }
::selection { background: var(--gold); color: white; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wordmark { font-family: 'Italianno', cursive; line-height: 1; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-prose { max-width: 760px; margin: 0 auto; padding: 56px 24px; }

/* Boutons */
.btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 26px; border-radius: 16px; font-weight: 700; font-size: 15px; transition: .2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--gold); color: white; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { background: white; color: var(--gold-dark); border: 1px solid var(--gold); }
.btn-ghost:hover { background: rgba(201,160,99,.1); }
.btn-white { background: white; color: var(--gold-deep); }
.btn-white:hover { background: var(--cream); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* Header */
header.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(251,246,235,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
header.site-nav nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
header.site-nav .logo { font-family: 'Italianno', cursive; font-size: 34px; color: var(--gold-dark); }
header.site-nav ul { display: flex; gap: 28px; list-style: none; font-size: 14px; color: rgba(42,30,15,.85); }
header.site-nav ul a { font-weight: 600; transition: .2s; }
header.site-nav ul a:hover, header.site-nav ul a.active { color: var(--gold-dark); }
header.site-nav .actions { display: flex; gap: 12px; align-items: center; }
header.site-nav .actions .btn { height: 40px; padding: 0 16px; font-size: 13px; border-radius: 12px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }
@media (max-width: 760px) {
  header.site-nav ul { display: none; }
  header.site-nav .actions .btn-ghost { display: none; }
  .menu-toggle { display: block; }
  header.site-nav.menu-open ul { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--cream); padding: 24px; border-bottom: 1px solid var(--line); gap: 16px; }
}

/* Hero générique */
.hero { background: var(--grad-gold); color: white; overflow: hidden; }
.hero-inner { max-width: 980px; margin: 0 auto; padding: 90px 24px 110px; text-align: center; }
.hero h1.wordmark { font-size: 96px; color: white; text-shadow: 0 2px 8px rgba(110,79,31,.35); }
@media (min-width: 768px) { .hero h1.wordmark { font-size: 144px; } .hero-inner { padding: 130px 24px 150px; } }
.hero .slogan { font-style: italic; margin-top: 14px; font-size: 20px; color: rgba(255,255,255,.95); }
.hero .tag { margin-top: 44px; font-size: 26px; font-weight: 800; line-height: 1.25; max-width: 780px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .hero .tag { font-size: 36px; } }
.hero .sub { margin-top: 18px; font-size: 16px; color: rgba(255,255,255,.92); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero .ctas { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Hero plus petit pour pages intérieures */
.hero-page { background: var(--grad-gold); color: white; padding: 70px 24px 80px; text-align: center; }
.hero-page .eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; opacity: .85; }
.hero-page h1 { margin-top: 12px; font-size: 38px; line-height: 1.2; font-weight: 800; }
@media (min-width: 768px) { .hero-page h1 { font-size: 56px; } }
.hero-page .desc { margin-top: 18px; font-size: 16px; opacity: .95; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Sections génériques */
section.land { padding: 80px 24px; }
section.land .inner { max-width: 1100px; margin: 0 auto; }
section.land .eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; color: var(--gold-dark); }
section.land h2 { margin-top: 14px; font-size: 32px; font-weight: 800; line-height: 1.2; }
@media (min-width: 768px) { section.land h2 { font-size: 42px; } }
section.land .lead { margin-top: 16px; font-size: 17px; color: rgba(42,30,15,.85); line-height: 1.7; max-width: 700px; }
section.land.cream { background: var(--cream-soft); }
section.land.bronze { background: var(--grad-bronze); color: white; text-align: center; }
section.land.bronze .eyebrow { color: var(--gold-light); }
section.land.bronze .lead { color: rgba(255,255,255,.92); max-width: 680px; margin-left: auto; margin-right: auto; }

/* Grille de principes */
.principles-grid { margin-top: 54px; display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 768px) { .principles-grid { grid-template-columns: 1fr 1fr; gap: 50px; } }
.principle-card { display: flex; gap: 20px; align-items: flex-start; }
.principle-card .ic { flex: none; width: 60px; height: 60px; border-radius: 18px; background: rgba(201,160,99,.15); display: flex; align-items: center; justify-content: center; }
.principle-card h3 { font-size: 19px; font-weight: 800; }
.principle-card p { margin-top: 6px; font-size: 15px; color: rgba(42,30,15,.85); }

/* Flow Dévoilement */
.flow { margin-top: 54px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .flow { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.flow-step { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: 0 2px 12px rgba(110,79,31,.06); }
.flow-step .badge { width: 48px; height: 48px; border-radius: 99px; background: var(--gold-dark); color: white; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.flow-step h4 { margin-top: 16px; font-size: 17px; font-weight: 800; }
.flow-step p { margin-top: 8px; font-size: 14px; color: rgba(42,30,15,.85); line-height: 1.65; }

/* Univers */
.univ-row { margin-top: 54px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 680px) { .univ-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .univ-row { grid-template-columns: repeat(5, 1fr); } }
.univ-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 26px 18px; text-align: center; box-shadow: 0 2px 12px rgba(110,79,31,.06); transition: .2s; }
.univ-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(110,79,31,.12); }
.univ-card .icon { width: 76px; height: 76px; margin: 0 auto 14px; border-radius: 22px; background: var(--cream-soft); display: flex; align-items: center; justify-content: center; }
.univ-card h4 { font-size: 17px; font-weight: 800; }
.univ-card p { margin-top: 6px; font-size: 12.5px; color: var(--muted); }

/* Waitlist */
.waitlist-section { background: var(--grad-bronze); color: white; padding: 90px 24px; }
.waitlist-section .inner { max-width: 560px; margin: 0 auto; text-align: center; }
.waitlist-section .eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; opacity: .85; }
.waitlist-section h2 { margin-top: 14px; font-size: 34px; font-weight: 800; line-height: 1.2; }
@media (min-width: 768px) { .waitlist-section h2 { font-size: 42px; } }
.waitlist-section p.lead-w { margin-top: 18px; opacity: .92; line-height: 1.7; }
.waitlist-section form { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.waitlist-section .row { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-section input[type=email] { flex: 1; min-width: 220px; height: 50px; padding: 0 18px; border-radius: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); color: white; font-size: 15px; outline: none; font-family: inherit; }
.waitlist-section input[type=email]::placeholder { color: rgba(255,255,255,.55); }
.waitlist-section input[type=email]:focus { background: rgba(255,255,255,.16); border-color: white; }
.waitlist-section label.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; opacity: .9; text-align: left; line-height: 1.6; }
.waitlist-section label.consent input { margin-top: 4px; flex: none; }
.waitlist-section .micro { margin-top: 24px; font-size: 11.5px; opacity: .65; }
.waitlist-section a.link { text-decoration: underline; text-underline-offset: 2px; }
.waitlist-section .ok { display: none; margin-top: 20px; padding: 16px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: 14px; font-size: 14px; }
.waitlist-section .ok.show { display: block; }

/* CTA final */
.cta-final { padding: 90px 24px; text-align: center; background: var(--cream); }
.cta-final h2.wordmark { font-size: 64px; color: var(--gold-dark); line-height: 1.1; }
@media (min-width: 768px) { .cta-final h2.wordmark { font-size: 88px; } }
.cta-final p { margin-top: 12px; color: var(--muted); font-size: 16px; }
.cta-final .btn { margin-top: 28px; height: 52px; padding: 0 32px; font-size: 15px; }

/* Pages de prose (Manifeste, Confidentialité, CGU) */
.prose { padding: 60px 0; }
.prose h2 { font-size: 26px; font-weight: 800; margin-top: 40px; margin-bottom: 14px; }
.prose h3 { font-size: 18px; font-weight: 800; margin-top: 28px; margin-bottom: 10px; }
.prose p { font-size: 16px; line-height: 1.8; color: rgba(42,30,15,.88); margin-bottom: 14px; }
.prose ul, .prose ol { margin: 14px 0 14px 28px; }
.prose li { font-size: 16px; line-height: 1.8; margin-bottom: 6px; color: rgba(42,30,15,.88); }
.prose .lead-prose { font-size: 18px; line-height: 1.75; color: var(--ink); margin-bottom: 24px; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { font-style: italic; }
.prose .pull { padding: 18px 22px; background: var(--cream-soft); border-left: 4px solid var(--gold); border-radius: 8px; margin: 20px 0; }
.prose .pull p:last-child { margin-bottom: 0; }
.prose a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
footer.site-foot { border-top: 1px solid var(--line); background: var(--cream); margin-top: 0; padding-top: 56px; }
footer.site-foot .grid { display: grid; grid-template-columns: 1fr; gap: 36px; font-size: 14px; padding-bottom: 36px; }
@media (min-width: 768px) { footer.site-foot .grid { grid-template-columns: 1fr 1fr 1fr; gap: 48px; } }
footer.site-foot .brand .logo { font-family: 'Italianno', cursive; font-size: 34px; color: var(--gold-dark); }
footer.site-foot .brand .tag { font-size: 13px; color: var(--muted); font-style: italic; margin-top: 4px; }
footer.site-foot .brand p { margin-top: 14px; color: var(--muted); line-height: 1.7; }
footer.site-foot h4 { font-weight: 800; color: var(--ink); margin-bottom: 14px; font-size: 14px; }
footer.site-foot ul { list-style: none; }
footer.site-foot ul li { margin-bottom: 9px; }
footer.site-foot ul a { color: var(--muted); transition: .2s; }
footer.site-foot ul a:hover { color: var(--gold-dark); }
footer.site-foot .copy { border-top: 1px solid var(--line); text-align: center; font-size: 11.5px; color: var(--muted); padding: 22px 0; }

/* Bandeau cookies léger (juste session) */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: white; padding: 18px 24px; display: none; z-index: 100; }
.cookie-banner.show { display: block; }
.cookie-banner .inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.cookie-banner p { flex: 1; min-width: 220px; font-size: 13px; line-height: 1.6; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner button { background: var(--gold); color: var(--ink); border: none; padding: 10px 20px; border-radius: 10px; font-weight: 800; cursor: pointer; font-family: inherit; }

/* 404 */
.error404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.error404 .code { font-family: 'Italianno', cursive; font-size: 120px; color: var(--gold-dark); line-height: 1; }
.error404 h2 { font-size: 28px; font-weight: 800; margin-top: 8px; }
.error404 p { color: var(--muted); margin-top: 12px; }
.error404 .btn { margin-top: 24px; }
