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

:root {
  --bg: #080807;
  --bg2: #0f0f0d;
  --bg3: #141410;
  --gold: #C9A84C;
  --gold-lt: #E2C97E;
  --gold-dim: rgba(201, 168, 76, 0.10);
  --gold-dim2: rgba(201, 168, 76, 0.18);
  --text: #EDE9DF;
  --text2: #A09880;
  --border: rgba(201, 168, 76, 0.12);
  --border2: rgba(201, 168, 76, 0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: .5;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 3rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8, 8, 7, 0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.55rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text); text-decoration: none; flex-shrink: 0;
  cursor: pointer; background: none; border: none;
}
.logo em { color: var(--gold); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links button {
  font-size: .78rem; font-weight: 300; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text2); background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: color .2s; white-space: nowrap; padding: 0;
}
.nav-links button:hover { color: var(--gold); }

.nav-btn {
  color: var(--gold); border: 1px solid var(--border2); background: transparent;
  padding: .45rem 1.2rem; border-radius: 3px; font-family: 'Outfit', sans-serif;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.nav-btn:hover { background: var(--gold-dim2); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 1px; background: var(--text2); }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: rgba(8, 8, 7, 0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 1.5rem 2rem;
  flex-direction: column; gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu button {
  font-size: .85rem; font-weight: 300; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text2); background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: color .2s; text-align: left; padding: 0;
}
.mobile-menu button:hover { color: var(--gold); }
.mobile-menu .m-cta { color: var(--gold) !important; }

@media (max-width: 820px) { .nav-links { display: none; } .burger { display: flex; } }
@media (max-width: 640px) { nav { padding: 0 1.25rem; } }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 9rem 1.5rem 5rem; position: relative;
}
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.pretitle {
  display: inline-flex; align-items: center; gap: .6rem; color: var(--gold);
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 2.2rem;
}
.pretitle-line { width: 32px; height: 1px; background: var(--gold); opacity: .6; }

h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(3rem, 8vw, 6.2rem); line-height: 1.0;
  letter-spacing: -.01em; margin-bottom: 1.5rem; max-width: 900px;
}
h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem); color: var(--text2);
  max-width: 520px; margin-bottom: .75rem; font-weight: 300; line-height: 1.75;
}
.hero-desc strong { color: var(--text); font-weight: 400; }
.hero-note { font-size: .82rem; color: var(--text2); opacity: .6; font-weight: 300; font-style: italic; margin-bottom: 2.75rem; }

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

.btn-gold {
  background: var(--gold); color: #080807; border: none; padding: .9rem 2.2rem;
  border-radius: 3px; font-family: 'Outfit', sans-serif; font-size: .9rem;
  font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--text2); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: .9rem 2.2rem; border-radius: 3px; font-family: 'Outfit', sans-serif;
  font-size: .9rem; font-weight: 300; cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--border2); color: var(--gold); }

.stat-strip { display: flex; margin-top: 5rem; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.stat-item { padding: 1.25rem 2.5rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-l { font-size: .75rem; color: var(--text2); font-weight: 300; letter-spacing: .06em; text-transform: uppercase; margin-top: .35rem; }

@media (max-width: 600px) {
  .stat-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* SEP */
.sep { display: flex; align-items: center; gap: 1.5rem; max-width: 100%; margin: 0; padding: 0 6vw; opacity: .3; }
.sep-line { flex: 1; height: 1px; background: var(--gold); }
.sep-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* SECTIONS */
.wrap { max-width: 100%; margin: 0; padding: 7rem 6vw; }
.overline { font-size: .7rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }

h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem); line-height: 1.1;
  letter-spacing: -.01em; margin-bottom: .75rem;
}
h2 em { font-style: italic; color: var(--gold); }

.sub { color: var(--text2); font-weight: 300; font-size: clamp(.9rem, 1vw, 1.1rem); max-width: 500px; margin-bottom: 3.5rem; line-height: 1.75; }

/* POUR QUI */
.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .profiles-grid { grid-template-columns: 1fr; } }

.profile { border: 1px solid var(--border); border-radius: 4px; padding: 2.75rem 2.5rem; position: relative; overflow: hidden; transition: border-color .25s; }
.profile:hover { border-color: var(--border2); }
.profile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold-lt) 60%, transparent); opacity: 0; transition: opacity .3s; }
.profile:hover::before { opacity: 1; }
.profile-pill { display: inline-block; background: var(--gold-dim); border: 1px solid var(--border2); color: var(--gold); font-size: .7rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .85rem; border-radius: 2px; margin-bottom: 1.75rem; }
.profile h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 600; margin-bottom: .75rem; line-height: 1.2; }
.profile > p { color: var(--text2); font-size: clamp(.85rem, 0.9vw, 1rem); font-weight: 300; line-height: 1.75; margin-bottom: 1.5rem; }
.trait-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.trait-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: clamp(.82rem, 0.9vw, 1rem); font-weight: 300; color: var(--text2); }
.trait-list li::before { content: '◆'; font-size: .45rem; color: var(--gold); margin-top: .4rem; flex-shrink: 0; }

/* VISION */
.vision-quote { border-left: 2px solid var(--gold); padding: 1.5rem 2rem; background: var(--gold-dim); border-radius: 0 4px 4px 0; margin-bottom: 3.5rem; max-width: 680px; }
.vision-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: var(--text); line-height: 1.6; font-weight: 400; }
.vision-quote span { display: block; margin-top: .75rem; font-family: 'Outfit', sans-serif; font-size: .78rem; font-style: normal; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }

.col-card { border: 1px solid var(--border); border-radius: 4px; padding: 2rem 1.75rem; }
.col-no { border-color: rgba(201, 100, 76, 0.2); }
.col-yes { border-color: var(--border2); }
.col-label { font-size: .7rem; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.25rem; }
.col-no .col-label { color: #c96044; }
.col-yes .col-label { color: var(--gold); }
.col-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.col-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: clamp(.85rem, 0.9vw, 1rem); font-weight: 300; color: var(--text2); }
.col-no .col-list li::before { content: '✕'; font-size: .65rem; color: #c96044; margin-top: 3px; flex-shrink: 0; }
.col-yes .col-list li::before { content: '✓'; font-size: .75rem; color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.step { background: var(--bg2); padding: 2.5rem 2rem; transition: background .2s; }
.step:hover { background: var(--bg3); }
.step-n { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 400; color: var(--gold-dim2); line-height: 1; margin-bottom: 1.25rem; }
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: .6rem; }
.step p { color: var(--text2); font-size: clamp(.85rem, 0.9vw, 1rem); font-weight: 300; line-height: 1.7; }

/* TEMPS */
.time-box { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .time-box { grid-template-columns: 1fr; } }
.time-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.time-pill { display: inline-block; background: var(--gold-dim); border: 1px solid var(--border2); color: var(--gold); font-size: .7rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .85rem; border-radius: 2px; width: fit-content; }
.time-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; }
.time-card p { color: var(--text2); font-size: clamp(.85rem, 0.9vw, 1rem); font-weight: 300; line-height: 1.7; }

/* OBJECTIONS */
.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .obj-grid { grid-template-columns: 1fr; } }
.obj-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.obj-head { padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--border); }
.obj-role { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: .5rem; }
.obj-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; }
.obj-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.obj-item { display: flex; flex-direction: column; gap: .25rem; }
.obj-fear { font-size: .78rem; color: var(--text2); font-weight: 300; display: flex; align-items: center; gap: .5rem; }
.obj-fear::before { content: '✕'; font-size: .65rem; color: #c96044; flex-shrink: 0; }
.obj-answer { font-size: clamp(.88rem, 0.95vw, 1.05rem); color: var(--text); font-weight: 300; line-height: 1.6; display: flex; align-items: flex-start; gap: .5rem; }
.obj-answer::before { content: '→'; font-size: .8rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* CTA */
.cta-wrap { padding: 5rem 2rem 8rem; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; border: 1px solid var(--border); border-radius: 4px; padding: 5rem 3.5rem; position: relative; background: var(--bg2); }
.cta-inner::before { content: ''; position: absolute; top: -1px; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-inner::after { content: ''; position: absolute; bottom: -1px; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .4; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner .sub { margin: 0 auto 2.5rem; }
.form-row { display: flex; gap: .75rem; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-in { flex: 1; min-width: 200px; background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text); padding: .85rem 1.1rem; border-radius: 3px; font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 300; outline: none; transition: border-color .2s; }
.email-in:focus { border-color: var(--gold); }
.email-in::placeholder { color: var(--text2); }
.fine-print { margin-top: 1.25rem; font-size: .75rem; color: var(--text2); font-weight: 300; letter-spacing: .04em; opacity: .7; }

footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; color: var(--text2); font-size: .8rem; font-weight: 300; letter-spacing: .04em; }

/* ANIMATIONS */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero > * { animation: rise .65s ease both; opacity: 0; }
.hero > *:nth-child(1) { animation-delay: .1s; }
.hero > *:nth-child(2) { animation-delay: .22s; }
.hero > *:nth-child(3) { animation-delay: .34s; }
.hero > *:nth-child(4) { animation-delay: .46s; }
.hero > *:nth-child(5) { animation-delay: .58s; }
.hero > *:nth-child(6) { animation-delay: .70s; }

@media (max-width: 640px) { .cta-inner { padding: 3rem 1.5rem; } }