/* ============================================================
   lementor.ca — v2 (style flyer éditorial)
   Palette : bleu nuit dominant + crème + or
   Typo : Inter (sans) + Fraunces italic (display)
   ============================================================ */

:root {
  --ink: #0a1628;
  --ink-2: #0f1d33;
  --ink-3: #142540;
  --ink-line: #1f3050;
  --cream: #f5efe2;
  --cream-2: #ece4d2;
  --cream-3: #e0d6bf;
  --gold: #d4a850;
  --gold-2: #b8893a;
  --gold-soft: #e8c97a;
  --text: #14253a;
  --text-soft: #4a5a6e;
  --text-mute: #6b7a8e;
  --line: #d6cdb6;
  --white: #ffffff;

  --shadow-sm: 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 32px 80px rgba(10, 22, 40, 0.20);

  --radius: 4px;
  --radius-lg: 8px;
  --maxw: 1180px;

  --f-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

/* Accessibilité — texte lu par lecteurs d'écran et indexé par moteurs, invisible visuellement */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
a:hover { color: var(--gold-2); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--cream); padding: 12px 16px; z-index: 1000; }
.skip:focus { left: 12px; top: 12px; }

/* ============================================================
   Topbar
============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--ink-line);
  color: var(--cream);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
}
.topbar__brand {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
}
.topbar__brand:hover { color: var(--gold); }

.topbar__nav {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; align-items: center;
}
.topbar__nav a {
  color: var(--cream); text-decoration: none; font-size: 14px;
  letter-spacing: 0.02em; font-weight: 400;
}
.topbar__nav a:hover { color: var(--gold); }

.topbar__toggle {
  display: none;
  background: transparent; color: var(--cream); border: 1px solid var(--ink-line);
  padding: 8px 14px; border-radius: var(--radius); font: inherit; font-size: 13px; cursor: pointer;
}

@media (max-width: 880px) {
  .topbar__inner { padding: 14px 20px; }
  .topbar__toggle { display: inline-block; }
  .topbar__nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); border-top: 1px solid var(--ink-line);
    flex-direction: column; gap: 0; padding: 8px 20px;
    display: none;
  }
  .topbar__nav.is-open { display: flex; }
  .topbar__nav li { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--ink-line); }
  .topbar__nav li:last-child { border-bottom: none; padding: 14px 0; }
}

/* ============================================================
   Boutons
============================================================ */
.btn {
  display: inline-block;
  font: inherit; font-weight: 600; font-size: 14px;
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--small { padding: 9px 18px; font-size: 12px; letter-spacing: 0.05em; }
.btn--block { width: 100%; text-align: center; }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--ink); }
.btn--outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--outline:hover { background: var(--cream); color: var(--ink); }

/* ============================================================
   Typo communs
============================================================ */
.section-num {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 24px;
}
.section-num--light { color: rgba(245, 239, 226, 0.55); }

.section-mini {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mute);
}

.display {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 24px;
}
.display em {
  font-family: var(--f-serif);
  font-style: italic; font-weight: 400;
  color: var(--gold-2);
  letter-spacing: -0.015em;
}
.display--light { color: var(--cream); }
.display--light em { color: var(--gold); }

.lede {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 0 32px;
}
.lede em { font-family: var(--f-serif); font-style: italic; color: var(--ink); }
.lede--light { color: rgba(245, 239, 226, 0.78); }
.lede--light em { color: var(--gold-soft); }

/* ============================================================
   01 · HERO COUVERTURE
============================================================ */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 80% 20%, rgba(212, 168, 80, 0.08), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(212, 168, 80, 0.05), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; }

.hero__meta {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(245, 239, 226, 0.15);
  padding-bottom: 18px; margin-bottom: 56px;
}
.hero__num, .hero__year {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(245, 239, 226, 0.55);
}

.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.hero__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__photo figcaption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius);
}
.hero__photo--missing {
  background:
    repeating-linear-gradient(
      45deg,
      var(--ink-2) 0, var(--ink-2) 14px,
      var(--ink-3) 14px, var(--ink-3) 28px
    );
}
.hero__photo--missing::before {
  content: "Photo de Frédéric\A à venir";
  white-space: pre;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--f-serif); font-style: italic;
  color: rgba(245, 239, 226, 0.4);
  font-size: 18px;
  padding: 24px;
}

.hero__copy { display: flex; flex-direction: column; }

.hero__eyebrow {
  font-family: var(--f-serif); font-style: italic;
  font-size: 16px; line-height: 1.45;
  color: rgba(245, 239, 226, 0.75);
  margin: 0 0 28px;
}

.hero__h1 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 32px;
}

.hero__tagline {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 40px;
}
.hero__tagline em { font-style: italic; color: var(--gold); }

.hero__cta {
  display: inline-flex; flex-direction: column; gap: 6px;
  background: transparent;
  border: 1.5px solid var(--gold);
  padding: 18px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--cream);
  margin-bottom: 28px;
  align-self: flex-start;
  transition: background 0.15s ease, color 0.15s ease;
}
.hero__cta:hover { background: var(--gold); color: var(--ink); }
.hero__cta-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
}
.hero__cta:hover .hero__cta-eyebrow { color: var(--ink); }
.hero__cta-domain {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; font-weight: 400;
}

.hero__legal {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245, 239, 226, 0.5);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   02 · POINT DE DÉPART
============================================================ */
.point {
  background: var(--cream);
  padding: 96px 0;
}
.point__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .point__inner { grid-template-columns: 1fr; gap: 40px; } }

.point__head { padding-top: 0; }

.painlist {
  list-style: none; margin: 0; padding: 36px 32px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 22px;
}
.painlist li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  align-items: start;
}
.painlist__n {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-top: 4px;
}
.painlist p {
  margin: 0;
  font-size: 16px; line-height: 1.55;
  color: rgba(245, 239, 226, 0.92);
}

.point__prop {
  grid-column: 1 / -1;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.point__prop-text {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic; font-weight: 300;
  color: var(--ink);
  margin: 12px 0 0;
}

/* ============================================================
   03 · POUR QUI
============================================================ */
.audience { background: var(--cream); padding: 96px 0; border-top: 1px dashed var(--cream-3); }
.audience__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.audience__vol {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--text-mute);
}
.audience__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 720px) { .audience__grid { grid-template-columns: 1fr; } }

.aud-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.aud-card__tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.aud-card h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.aud-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 24px;
  flex: 1;
}
.link-arrow {
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.link-arrow:hover { color: var(--gold-2); border-color: var(--gold-2); }

.audience__quote {
  margin: 56px 0 0;
  font-family: var(--f-serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--text-mute);
  text-align: center;
  border-top: 1px dashed var(--cream-3);
  padding-top: 40px;
}
.audience__quote em { color: var(--gold-2); }

/* ============================================================
   04 · MÉTHODE (sombre)
============================================================ */
.method {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0;
}
.method__head { max-width: 720px; margin-bottom: 56px; }

.fort {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.fort__step {
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--ink-line);
}
.fort__step:last-child { border-bottom: 1px solid var(--ink-line); }
.fort__n {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold);
}
.fort__body h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  margin: 0 0 8px;
}
.fort__body p {
  font-size: 15px; line-height: 1.6;
  color: rgba(245, 239, 226, 0.75);
  margin: 0;
  max-width: 60ch;
}
.fort__letter {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  color: var(--gold);
  text-align: right;
  justify-self: end;
}
@media (max-width: 720px) {
  .fort__step { grid-template-columns: auto 1fr; gap: 16px 20px; }
  .fort__letter {
    grid-column: 2; grid-row: 1;
    font-size: 56px; text-align: right;
    align-self: start;
  }
  .fort__body { grid-column: 1 / -1; }
}

/* ============================================================
   05 · TARIFS
============================================================ */
.pricing { background: var(--cream); padding: 96px 0; }
.pricing__head { max-width: 720px; margin-bottom: 56px; }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan--featured {
  background: var(--cream-2);
  color: var(--ink);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  padding: 6px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
}
.plan__name {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 226, 0.78);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.plan--featured .plan__name { color: var(--text-soft); }

.plan__price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin: 0 0 28px;
}
.plan__amount {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(36px, 4.5vw, 52px); line-height: 1;
  color: var(--gold);
}
.plan--featured .plan__amount { color: var(--gold-2); }
.plan__unit { font-size: 13px; opacity: 0.78; }
.plan--featured .plan__unit { color: var(--text-soft); opacity: 1; }

.plan ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.plan ul li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(245, 239, 226, 0.08);
}
.plan--featured ul li {
  border-bottom: 1px solid rgba(10, 22, 40, 0.12);
  color: var(--text);
}
.plan ul li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold);
}
.plan--featured ul li::before { color: var(--gold-2); }

.pricing__note {
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-mute);
  letter-spacing: 0.01em;
}
.pricing__note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   06 · À PROPOS
============================================================ */
.about { background: var(--cream-2); padding: 96px 0; }
.about__head { max-width: 720px; margin-bottom: 56px; }
.about__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }

.about__intro { margin: 0 0 20px; }
.about__quote {
  margin: 0 0 28px; padding: 0;
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.about__quote em { color: var(--gold-2); }
.about__text p {
  font-size: 16px; line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.about__text strong { color: var(--ink); font-weight: 600; }

.about__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stat-cell__num {
  display: block;
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.stat-cell__label {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  line-height: 1.4;
}

.about__legal {
  margin: 48px 0 0;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  border-top: 1px dashed var(--cream-3);
  padding-top: 28px;
}

/* ============================================================
   07 · CONTACT (sombre)
============================================================ */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0;
}
.contact__head { max-width: 720px; margin-bottom: 56px; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }

.contact__steps {
  list-style: none; margin: 0; padding: 0;
}
.contact__steps li {
  padding: 20px 0;
  border-top: 1px solid var(--ink-line);
  font-size: 15px; line-height: 1.6;
  color: rgba(245, 239, 226, 0.82);
}
.contact__steps li:last-child { border-bottom: 1px solid var(--ink-line); }
.contact__steps strong { color: var(--gold); font-weight: 600; }

.contact-form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form__title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 24px;
  color: var(--ink);
}
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit; font-size: 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
 