/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Surface */
  --ivory: #ffffff;
  --ivory-warm: #f7f7f7;

  /* Background (alias kept for legacy class hooks) */
  --navy-deep: #ffffff;
  --navy: #ffffff;
  --navy-2: #f5f5f5;
  --navy-mist: #ececec;
  --green-deep: #ffffff;
  --green: #ffffff;
  --green-2: #f5f5f5;
  --green-mist: #ececec;
  --ink: #0a0a0a;

  /* Accents (mono — no more gold) */
  --gold: #0a0a0a;
  --gold-2: #4a4a4a;

  /* Text on white (single source of truth) */
  --text-1: #0a0a0a;                /* primary — noir */
  --text-2: rgba(10,10,10,0.78);    /* secondaire */
  --text-3: rgba(10,10,10,0.58);    /* tertiaire */
  --text-4: rgba(10,10,10,0.42);    /* muted */

  /* Lines */
  --line: rgba(10,10,10,0.12);
  --line-strong: rgba(10,10,10,0.22);
  --line-light: rgba(10,10,10,0.10);
  --line-light-strong: rgba(10,10,10,0.20);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--ivory);
  color: var(--ink);
}

/* The whole landing page — dark cohesive premium surface */
.page {
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 96px;
  background: var(--green-deep);
  color: var(--text-1);
}

/* Subtle ambient texture for depth */
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(10,10,10,0.08), transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(10,10,10,0.05), transparent 70%);
}
.page > * { position: relative; z-index: 1; }

@media (min-width: 540px) {
  .page { box-shadow: 0 30px 80px -30px rgba(12,26,46,0.4); }
}

/* ── Section dividers — ornamental gold rule with center motif ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 28px;
  color: rgba(10,10,10,0.5);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,10,10,0.4), transparent);
}
.divider-mark {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
.hero-title, .apport-title, .sec-title, .final-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
em { font-style: normal; color: var(--gold); }
.method .sec-title em { color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: transparent;
  color: var(--text-1);
  padding: 56px 28px 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(10,10,10,0.14), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(28,51,88,0.45), transparent 60%);
  pointer-events: none;
}
.hero-grain { display: none; }
.hero-inner { position: relative; }

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.monogram {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 3px;
}
.brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

/* Portrait */
.portrait-wrap {
  position: relative;
  width: 116px;
  height: 116px;
  margin: 0 auto 28px;
}
.portrait-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--line-light-strong);
}
.portrait-ring::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(10,10,10,0.35);
}
.portrait {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
  filter: contrast(1.05);
}
.portrait-badge {
  position: absolute;
  bottom: -4px;
  right: -10px;
  background: var(--text-1);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 8px 4px 6px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 4px;
}

.hero-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 28px;
  color: var(--text-1);
  text-wrap: balance;
  padding-bottom: 4px;
}
.hero-lede {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 16px 0 28px;
  text-wrap: pretty;
}

/* CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--text-1);
  color: #ffffff;
}
.btn-primary:hover { background: #2a2a2a; }
.btn-primary .btn-sub {
  font-weight: 500;
  font-size: 12.5px;
  opacity: 0.7;
  margin-left: 4px;
}
.btn-primary.big { padding: 20px 22px; font-size: 16.5px; }

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text-1);
}
.btn-secondary:hover { background: rgba(10,10,10,0.04); }

/* Buttons stay on dark surface — keep ivory contrast */
.method .btn-secondary, .final .btn-secondary {
  border-color: var(--line-light-strong);
  color: var(--text-1);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text-1);
  align-self: stretch;
}
.btn-ghost:hover { background: rgba(10,10,10,0.04); }

.hero-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.quick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 6px 4px;
}
.quick:hover { color: var(--text-1); }
.quick-sep { color: var(--text-4); }

/* ── APPORTEURS ─────────────────────────────────────────────── */
.apport {
  background: transparent;
  color: var(--text-1);
  padding: 40px 28px 40px;
  position: relative;
  overflow: hidden;
}
.apport::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(10,10,10,0.06), transparent 70%);
  pointer-events: none;
}
.apport-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(10,10,10,0.35);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
  position: relative;
}
.apport-title {
  font-size: 28px;
  margin-bottom: 32px;
  position: relative;
  color: var(--text-1);
  text-wrap: balance;
  padding-bottom: 4px;
}
.apport-lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 28px;
  text-wrap: pretty;
  position: relative;
}

.reward {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px 22px 22px;
  background: linear-gradient(135deg, rgba(10,10,10,0.18), rgba(10,10,10,0.04));
  border: 1px solid rgba(10,10,10,0.4);
  border-radius: 18px;
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.reward::before {
  content: "";
  position: absolute;
  top: 12px; right: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.reward-amount {
  display: flex;
  align-items: baseline;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.reward-currency {
  font-size: 28px;
  font-weight: 500;
  margin-right: 2px;
  opacity: 0.7;
}
.reward-num {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.reward-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
  line-height: 1.25;
}
.reward-fine {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.apport-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  position: relative;
}
.apport-steps li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
}
.apport-steps li:last-child { border-bottom: 1px solid var(--line-light); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
  min-width: 28px;
}
.step-t {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-1);
}
.step-d {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.45;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services {
  background: transparent;
  color: var(--text-1);
  padding: 16px 28px 40px;
}
.services .sec-eyebrow { color: var(--gold); }
.services .sec-title { color: var(--text-1); }
.services .serv-item { border-top-color: rgba(10,10,10,0.2); }
.services .serv-item:last-child { border-bottom-color: rgba(10,10,10,0.2); }
.services .serv-bullet { background: rgba(10,10,10,0.15); color: var(--gold); border: 1px solid rgba(10,10,10,0.4); }
.services .serv-t { color: var(--text-1); line-height: 1.25; }
.services .serv-d { color: var(--text-3); line-height: 1.45; }
.sec-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.sec-title {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--text-1);
}
.sec-title.light { color: var(--text-1); }

.serv-list { list-style: none; padding: 0; margin: 0; }
.serv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.serv-item:last-child { border-bottom: 1px solid var(--line); }
.serv-bullet {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(10,10,10,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.serv-t {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-1);
}
.serv-d {
  font-size: 13px;
  color: var(--text-3);
}

/* ── METHOD ───────────────────────────────────────────────── */
.method {
  background: transparent;
  color: var(--text-1);
  padding: 48px 28px 48px;
}
.method .sec-title { color: var(--text-1); }
.method .sec-title em { color: var(--gold); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.method-card {
  background: transparent;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.method-ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-1);
  margin-bottom: 4px;
}
.method-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--text-1);
}
.method-d {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-3);
}

/* ── FINAL CTA ─────────────────────────────────────────────── */
.final {
  background: transparent;
  padding: 48px 28px 56px;
  text-align: center;
  position: relative;
  color: var(--text-1);
}
.final-title { color: var(--text-1); }
.final .btn-secondary {
  border-color: var(--line-strong);
  color: var(--text-1);
}
.final::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 32px;
  background: var(--gold);
  opacity: 0.5;
}

.final-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.final-title {
  font-size: 36px;
  margin-bottom: 28px;
  color: var(--text-1);
}
.final .btn-primary {
  display: flex;
  margin-bottom: 10px;
}
.final .btn-secondary {
  display: flex;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.foot {
  background: transparent;
  color: var(--text-3);
  padding: 24px 28px 56px;
  text-align: center;
  position: relative;
}
.foot::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,10,10,0.4), transparent);
}
.foot-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-line {
  font-size: 13px;
  color: var(--text-1);
  margin-bottom: 4px;
}
.foot-mini {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.foot-legal {
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--text-4);
  max-width: 320px;
  margin: 0 auto;
}

/* ── STICKY BAR ─────────────────────────────────────────────── */
.sticky {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: calc(100% - 24px);
  max-width: 432px;
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  z-index: 30;
  box-shadow: 0 10px 30px -10px rgba(10,10,10,0.18);
}
.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-1);
  border: none;
  background: transparent;
}
.sticky-btn.primary {
  background: var(--text-1);
  color: #ffffff;
}
