/* ===================================================
   HABIBMEHMOOD.COM — Design System v2.1
   Inspiration: Tony Robbins × Dan Martell
   Palette: Noir profond (#0A0A0A) · Rouge Pantone 187C (#A6192E) · Blanc cassé (#F5F1EA)
   Typo: Inter (titres + corps) — unifié, sans-serif
   =================================================== */

:root {
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --red: #A6192E;
  --red-dark: #7A1221;
  --red-glow: rgba(166, 25, 46, 0.25);
  --white: #F5F1EA;
  --white-pure: #FFFFFF;
  --cream: #FAF7F2;
  --gray: #8A8A8A;
  --gray-light: #6B6B6B;
  --gray-border-dark: rgba(245, 241, 234, 0.1);
  --gray-border-light: rgba(10, 10, 10, 0.1);

  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1240px;
  --content-width: 780px;

  --radius: 2px;
  --radius-lg: 6px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-red: 0 20px 50px rgba(166, 25, 46, 0.3);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
svg { display: block; }

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
p { margin-bottom: 1.2em; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--red);
}
.lead { font-size: 1.25rem; line-height: 1.55; opacity: 0.85; }
strong { color: var(--white-pure); font-weight: 600; }
.italic { font-style: italic; }
.accent-red { color: var(--red); }

/* ============= LAYOUT ============= */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.content { max-width: var(--content-width); margin: 0 auto; }
.section { padding: 7rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-light {
  background: var(--cream);
  color: var(--black);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--black); }
.section-light strong { color: var(--black); }
.section-light .eyebrow { color: var(--red); }
.section-light .eyebrow::before { background: var(--red); }
.divider { width: 60px; height: 2px; background: var(--red); margin: 2rem 0; }
.divider-center { margin: 2rem auto; }
.center { text-align: center; }

/* ============= HEADER ============= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-border-dark);
  transition: all var(--transition);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border: 1px solid var(--gray-border-dark);
}
.logo-svg { width: 24px; height: 24px; flex-shrink: 0; }
.logo-text-main { display: block; line-height: 1; }
.logo-text-sub {
  display: block; font-family: var(--font-sans);
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  color: var(--red); margin-top: 3px;
}
.nav { display: flex; gap: 2.5rem; align-items: center; }
.nav a {
  font-size: 0.9rem; font-weight: 500;
  opacity: 0.75;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width var(--transition);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--red);
  opacity: 1 !important;
  color: var(--red);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red); color: var(--white-pure); }
.mobile-toggle { display: none; font-size: 1.6rem; color: var(--white); }

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--black); padding: 2rem;
    border-bottom: 1px solid var(--gray-border-dark); gap: 1.5rem;
  }
  .nav.open { display: flex; }
  .mobile-toggle { display: block; }
}

/* ============= HERO SPLIT (Tony Robbins x Dan Martell) ============= */
.hero {
  min-height: 100vh;
  padding: 9rem 2rem 6rem;
  display: flex; align-items: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}
.hero-content h1 .accent {
  color: var(--red);
  font-style: italic;
  display: block;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  max-width: 520px; margin-bottom: 2.5rem;
  opacity: 0.82; line-height: 1.55;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 3rem;
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.6;
}
.hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta span::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}

/* Hero Portrait card (placeholder for photo) */
.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-soft);
  box-shadow: var(--shadow-card);
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3) contrast(1.05) brightness(0.9);
  transition: filter var(--transition-slow);
}
.hero-portrait:hover img { filter: grayscale(0) contrast(1) brightness(1); }
.hero-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-portrait-frame {
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid var(--red);
  z-index: -1;
  border-radius: var(--radius-lg);
}
.hero-portrait .portrait-placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--black-card) 0%, var(--black-soft) 100%),
    radial-gradient(circle at 30% 40%, var(--red-glow), transparent 50%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: rgba(245, 241, 234, 0.4);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-portrait .portrait-placeholder svg {
  width: 80px; height: 80px;
  margin-bottom: 1rem; opacity: 0.4;
}
.hero-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.hero-portrait-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
  color: var(--white);
}
.hero-portrait-badge .name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}
.hero-portrait-badge .role {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.7; margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-portrait { margin: 0 auto; max-width: 380px; }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: var(--white-pure);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(166, 25, 46, 0.3);
}
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-ghost { border-color: var(--white); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--black); }
.section-light .btn-ghost { border-color: var(--black); color: var(--black); }
.section-light .btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-arrow::after { content: "→"; transition: transform var(--transition); }
.btn:hover .btn-arrow::after { transform: translateX(5px); }

/* ============= TRUST STRIP (references intellectual proof) ============= */
.trust-strip {
  padding: 3rem 2rem;
  background: var(--black-soft);
  border-top: 1px solid var(--gray-border-dark);
  border-bottom: 1px solid var(--gray-border-dark);
}
.trust-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.5;
}
.trust-names {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  opacity: 0.8;
}
.trust-names span { white-space: nowrap; }

/* ============= STATS / NUMBERS BAND ============= */
.stats {
  padding: 5rem 0;
  background: var(--cream);
  color: var(--black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.stat {
  text-align: center;
  padding: 1rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--black);
  opacity: 0.75;
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
}

/* ============= BIG QUOTE (Tony Robbins style) ============= */
.big-quote {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.big-quote::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, var(--red-glow), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(166,25,46,0.1), transparent 70%);
}
.big-quote-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.big-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.25;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.big-quote blockquote .accent {
  color: var(--red);
  display: block;
}
.big-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--red);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.big-quote-attr {
  margin-top: 3rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ============= BENTO GRID (Dan Martell style) ============= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bento-card {
  background: var(--black-card);
  border: 1px solid var(--gray-border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-card);
}
.bento-card-num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.bento-card h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.bento-card p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 0; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.tall { min-height: 320px; }
.bento-card.featured {
  background:
    linear-gradient(135deg, rgba(166,25,46,0.15), transparent 70%),
    var(--black-card);
  border-color: var(--red);
}

.section-light .bento-card {
  background: var(--white-pure);
  border-color: var(--gray-border-light);
  box-shadow: var(--shadow-soft);
}
.section-light .bento-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-card);
}
.section-light .bento-card p { color: var(--black); opacity: 0.75; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.span-3, .bento-card.span-2, .bento-card.span-4 { grid-column: span 1; }
}

/* ============= FRAMEWORK TIMELINE (Dan Martell Growth Track style) ============= */
.framework {
  margin-top: 4rem;
  position: relative;
}
.framework-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}
.framework-track::before {
  content: "";
  position: absolute;
  top: 36px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 50%, var(--red) 100%);
  opacity: 0.3;
}
.framework-step {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}
.framework-node {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--red);
  color: var(--white-pure);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative; z-index: 2;
  box-shadow: 0 10px 30px rgba(166, 25, 46, 0.35);
}
.framework-days {
  font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.framework-step h4 {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.framework-step p { font-size: 0.95rem; opacity: 0.8; }

@media (max-width: 800px) {
  .framework-track { grid-template-columns: 1fr; gap: 2.5rem; }
  .framework-track::before { display: none; }
}

/* ============= PRINCIPLES LIST ============= */
.principles {
  counter-reset: principle;
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.principle {
  display: flex; gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-border-dark);
  align-items: flex-start;
}
.section-light .principle { border-bottom-color: var(--gray-border-light); }
.principle:last-child { border-bottom: none; }
.principle::before {
  counter-increment: principle;
  content: "0" counter(principle);
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--red);
  min-width: 100px;
  line-height: 0.9;
  font-weight: 700;
}
.principle-body h4 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 700;
}
.principle-body p { margin-bottom: 0; opacity: 0.85; }

@media (max-width: 640px) {
  .principle { flex-direction: column; gap: 1rem; }
  .principle::before { font-size: 2.4rem; min-width: auto; }
}

/* ============= CASE CARD ============= */
.case {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 3rem;
  background: var(--black-card);
  border: 1px solid var(--gray-border-dark);
  border-radius: var(--radius-lg);
}
.section-light .case {
  background: var(--white-pure);
  border-color: var(--gray-border-light);
  box-shadow: var(--shadow-soft);
}
.case-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-soft);
  position: relative;
}
.case-photo .portrait-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  background:
    linear-gradient(135deg, var(--black-soft), var(--black-card)),
    radial-gradient(circle at 30% 30%, var(--red-glow), transparent 50%);
  color: rgba(245, 241, 234, 0.35);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.case-photo .portrait-placeholder svg { width: 60px; height: 60px; margin-bottom: 0.75rem; opacity: 0.4; }
.case-body .case-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.case-meta {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border-dark);
}
.section-light .case-meta { border-top-color: var(--gray-border-light); }
.case-meta strong { color: var(--red); }

@media (max-width: 700px) {
  .case { grid-template-columns: 1fr; padding: 2rem; }
  .case-photo { max-width: 240px; margin: 0 auto; }
}

/* ============= PRICING ============= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  padding: 2.5rem 2rem;
  background: var(--black-card);
  border: 1px solid var(--gray-border-dark);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(166, 25, 46, 0.1), var(--black-card));
  transform: scale(1.02);
}
.pricing-card.featured::before {
  content: "Le plus choisi";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white-pure);
  padding: 0.4rem 1.1rem; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.pricing-range {
  font-size: 0.85rem; color: var(--gray);
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--red);
  margin-bottom: 0.25rem;
  line-height: 1;
  font-weight: 700;
}
.pricing-amount sup { font-size: 1.3rem; vertical-align: super; opacity: 0.7; }
.pricing-target {
  font-size: 0.78rem; opacity: 0.5; margin-bottom: 1.5rem;
}
.pricing-list {
  list-style: none; flex-grow: 1; margin-bottom: 2rem;
}
.pricing-list li {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-border-dark);
  position: relative; padding-left: 1.8rem;
}
.pricing-list li::before {
  content: "";
  position: absolute; left: 0; top: 1.15rem;
  width: 12px; height: 2px;
  background: var(--red);
}
.pricing-list li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* ============= DUAL LIST (promesse / pas promesse) ============= */
.dual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  text-align: left;
}
.dual-list h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--red);
  font-family: var(--font-sans);
}
.dual-list.inverted h4:nth-of-type(2),
.dual-list h4.muted { color: var(--gray); }
.dual-list ul { list-style: none; }
.dual-list ul li {
  padding: 0.8rem 0 0.8rem 1.8rem;
  border-bottom: 1px solid var(--gray-border-dark);
  position: relative;
}
.section-light .dual-list ul li { border-bottom-color: var(--gray-border-light); }
.dual-list ul li:last-child { border-bottom: none; }
.dual-list .yes li::before {
  content: "◆"; position: absolute; left: 0;
  color: var(--red); font-size: 0.7rem; top: 1.2rem;
}
.dual-list .no li { opacity: 0.85; }
.dual-list .no li::before {
  content: "✕"; position: absolute; left: 0;
  color: var(--gray); font-weight: 700; top: 0.85rem;
}

@media (max-width: 700px) {
  .dual-list { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============= FAQ ============= */
.faq {
  max-width: 820px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-border-dark);
}
.section-light .faq-item { border-bottom-color: var(--gray-border-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.7rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.section-light .faq-question { color: var(--black); }
.faq-question:hover { color: var(--red); }
.faq-toggle {
  font-size: 1.6rem; color: var(--red); flex-shrink: 0;
  transition: transform var(--transition);
  font-family: var(--font-sans); font-weight: 300;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  opacity: 0.85;
}
.faq-item.open .faq-answer {
  max-height: 1000px;
  padding: 0 0 1.7rem;
}

/* ============= MIROIR ============= */
.miroir {
  padding: 4.5rem 3.5rem;
  background:
    linear-gradient(135deg, rgba(166,25,46,0.06), transparent 60%),
    var(--black-card);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 3rem 0;
  box-shadow: var(--shadow-card);
}
.miroir-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.miroir-sub {
  color: var(--red); letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 2rem; display: block;
}
.miroir-list { list-style: none; margin-top: 2rem; }
.miroir-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-border-dark);
  padding-left: 2rem; position: relative;
}
.miroir-list li::before {
  content: "→";
  position: absolute; left: 0; color: var(--red); font-weight: 700;
}
.miroir-list li:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .miroir { padding: 2.5rem 2rem; }
}

/* ============= BIG CTA ============= */
.cta-block {
  padding: 7rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(166, 25, 46, 0.18), transparent 70%),
    var(--black);
  border-top: 1px solid var(--gray-border-dark);
  border-bottom: 1px solid var(--gray-border-dark);
}
.cta-block h2 { max-width: 800px; margin: 0 auto 1.5rem; }
.cta-block p { max-width: 600px; margin: 0 auto 2.5rem; opacity: 0.85; }
.cta-note {
  margin-top: 2rem; font-size: 0.88rem; opacity: 0.55;
  letter-spacing: 0.05em;
}

/* ============= ABOUT ============= */
.about-hero {
  padding: 12rem 2rem 4rem;
  text-align: center;
  background: var(--black);
}
.about-hero h1 {
  max-width: 900px; margin: 0 auto 1.5rem;
  font-style: italic;
}
.about-hero p { max-width: 680px; margin: 0 auto; opacity: 0.85; }
.about-body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
}
.about-body h2 { margin-top: 4rem; margin-bottom: 1.5rem; }
.about-body h3 {
  margin-top: 2.5rem; margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
}
.about-body ul { list-style: none; margin-bottom: 2rem; }
.about-body ul li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}
.about-body ul li::before {
  content: "◆"; color: var(--red);
  position: absolute; left: 0; font-size: 0.7rem; top: 0.9rem;
}
.pull-quote {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-style: italic;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 3px solid var(--red);
  margin: 2.5rem 0;
  line-height: 1.4;
  font-weight: 700;
}

/* About split: portrait + story */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.about-portrait {
  aspect-ratio: 4/5;
  background: var(--black-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.about-portrait .portrait-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  background:
    linear-gradient(135deg, var(--black-soft), var(--black-card)),
    radial-gradient(circle at 30% 30%, var(--red-glow), transparent 50%);
  color: rgba(245, 241, 234, 0.35);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.about-portrait .portrait-placeholder svg { width: 80px; height: 80px; margin-bottom: 1rem; opacity: 0.4; }

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait { max-width: 420px; margin: 0 auto; }
}

/* ============= CONTACT ============= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h1 { margin-bottom: 1.5rem; }
.contact-meta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-border-dark);
  font-size: 0.95rem; opacity: 0.85;
}
.contact-meta p { margin-bottom: 0.7rem; }
.contact-meta strong { color: var(--red); }
.calendly-embed {
  min-height: 720px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.calendly-placeholder {
  min-height: 720px;
  background: var(--black-card);
  border: 1px dashed var(--gray-border-dark);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: var(--gray);
  padding: 3rem;
  text-align: center;
}
.calendly-placeholder h3 {
  font-family: var(--font-sans); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--red); margin-bottom: 1rem;
}
.calendly-placeholder p { font-size: 0.95rem; opacity: 0.75; max-width: 400px; }
.calendly-placeholder code {
  display: inline-block;
  margin-top: 1rem; padding: 0.4rem 0.8rem;
  background: var(--black); font-size: 0.85rem;
  color: var(--red); font-family: monospace;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============= MERCI ============= */
.merci-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(166, 25, 46, 0.12), transparent 70%),
    var(--black);
}
.merci-check {
  width: 80px; height: 80px;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2.5rem;
  transform: rotate(45deg);
  position: relative;
}
.merci-check::after {
  content: "✓"; color: var(--red); font-size: 2.2rem; transform: rotate(-45deg);
  font-weight: 700;
}
.merci-questions {
  max-width: 640px; margin: 3rem auto 0;
  text-align: left;
}
.merci-q {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--gray-border-dark);
  display: flex; gap: 1.5rem;
}
.merci-q:last-child { border-bottom: none; }
.merci-q-num {
  font-family: var(--font-serif);
  font-size: 2rem; color: var(--red);
  line-height: 1; font-weight: 700;
  flex-shrink: 0;
}
.merci-signature {
  margin-top: 4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  opacity: 0.85;
  font-weight: 700;
}

/* ============= FOOTER ============= */
.footer {
  padding: 4rem 2rem 2rem;
  background: var(--black);
  border-top: 1px solid var(--gray-border-dark);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { opacity: 0.7; max-width: 320px; margin-top: 1rem; }
.footer-brand .tagline {
  font-family: var(--font-serif); font-style: italic;
  color: var(--red); font-size: 1rem; margin-top: 1rem;
  margin-bottom: 0;
}
.footer h5 {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.75rem; color: var(--red); font-weight: 700;
  margin-bottom: 1.2rem; font-family: var(--font-sans);
}
.footer a { display: block; padding: 0.3rem 0; opacity: 0.75; }
.footer a:hover { opacity: 1; color: var(--red); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid var(--gray-border-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; opacity: 0.6;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-up-delay-1 { animation-delay: 0.12s; }
.fade-up-delay-2 { animation-delay: 0.24s; }
.fade-up-delay-3 { animation-delay: 0.36s; }
.fade-up-delay-4 { animation-delay: 0.48s; }

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============= UTILS ============= */
.mt-3 { margin-top: 3rem; }
.mt-5 { margin-top: 5rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* ============= SLOTS WIDGET (Contact) ============= */
.slots-widget {
  background: var(--black-card);
  border: 1px solid var(--gray-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.section-light .slots-widget {
  background: var(--white);
  border: 1px solid var(--gray-border-light);
  color: var(--black);
  box-shadow: var(--shadow-soft);
}
.slots-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-border-dark);
  margin-bottom: 1.5rem;
}
.section-light .slots-header {
  border-bottom-color: var(--gray-border-light);
}
.slots-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.slot {
  position: relative;
}
.slot a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-border-dark);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  transition: all var(--transition);
  color: inherit;
  text-decoration: none;
}
.section-light .slot a {
  border-color: var(--gray-border-light);
  background: var(--cream);
}
.slot a:hover {
  border-color: var(--red);
  background: var(--red-glow);
  transform: translateX(4px);
}
.section-light .slot a:hover {
  background: rgba(166, 25, 46, 0.05);
}
.slot-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  padding: 0.5rem 0;
  border-right: 1px solid var(--gray-border-dark);
  padding-right: 1.25rem;
  margin-right: 0.25rem;
}
.section-light .slot-date {
  border-right-color: var(--gray-border-light);
}
.slot-day {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 600;
}
.slot-num {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.2rem 0;
}
.slot-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  font-weight: 500;
}
.slot-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.slot-time {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.slot-meta {
  font-size: 0.82rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
}
.slot-arrow {
  font-size: 1.2rem;
  color: var(--red);
  opacity: 0.7;
  transition: all var(--transition);
}
.slot a:hover .slot-arrow {
  opacity: 1;
  transform: translateX(2px);
}
.slot-booked {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-border-dark);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.01);
  opacity: 0.4;
  cursor: not-allowed;
}
.section-light .slot-booked {
  border-color: var(--gray-border-light);
  background: rgba(0,0,0,0.02);
}
.slot-booked .slot-time,
.slot-booked .slot-meta {
  text-decoration: line-through;
}
.slots-footer {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border-dark);
  font-size: 0.9rem;
  opacity: 0.75;
  text-align: center;
}
.section-light .slots-footer {
  border-top-color: var(--gray-border-light);
}
