/* --- Variables --- */
:root {
  --bg: #080809;
  --bg-soft: #0e0e10;
  --surface: #141416;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8e6e3;
  --text-muted: #9a9691;
  --accent: #c9a962;
  --accent-dim: rgba(201, 169, 98, 0.4);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space-unit: 1.5rem;
  --max-width: 720px;
  --radius: 2px;
}

/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(8, 8, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links > li:not(.nav-dropdown) > a[aria-current="page"] {
  color: var(--accent);
}

.btn-nav {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
}

.btn-nav:hover {
  background: #d4b872;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    background: #0e0e10;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav {
    background: #080809;
  }
}

/* --- Nav menus déroulants --- */
.nav {
  overflow: visible;
}

.nav-links > li.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--text);
  outline: none;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 1px;
}

.nav-dropdown-panel {
  list-style: none;
  margin: 0;
  padding: 0.45rem 0;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 228px;
  background: rgba(14, 14, 16, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1002;
}

.nav-dropdown-panel li {
  margin: 0;
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-panel a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 0.85rem;
    margin-top: 0.25rem;
    margin-bottom: 0.35rem;
    border-left: 2px solid var(--accent-dim);
    min-width: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }

  .nav-dropdown-panel a {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.78rem;
  }

  .nav-dropdown-panel li:last-child a {
    border-bottom: none;
  }
}

/* --- Lueur d'entrée --- */
.page-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 70vw;
  max-width: 900px;
  height: 100vh;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 9999;
  animation: glow-sweep 2.2s ease-in-out 0.3s both;
}

@keyframes glow-sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(calc(100vw + 100%)); }
}

/* --- Page container --- */
.page {
  min-height: 100vh;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-unit) * 4) var(--space-unit);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0c;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 9, 0.5) 0%, rgba(8, 8, 9, 0.88) 50%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8, 8, 9, 0.5) 0%, transparent 45%, rgba(8, 8, 9, 0.6) 100%),
    url("public/d9c997a2-35d0-4699-9581-57537918d87e.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  text-align: center;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 calc(var(--space-unit) * 1.5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 var(--space-unit);
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 calc(var(--space-unit) * 1.2);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta-text {
  font-size: 0.85rem;
  color: var(--accent-dim);
  letter-spacing: 0.12em;
  margin: 0 0 calc(var(--space-unit) * 2);
}

/* --- Boutons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: #d4b872;
  color: var(--bg);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* --- Shared section styles --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 calc(var(--space-unit) * 1.5);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  text-align: center;
  margin: 0 0 calc(var(--space-unit) * 3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- EXPÉRIENCE / PASS --- */
.experience-section {
  padding: calc(var(--space-unit) * 6) var(--space-unit);
  background: var(--bg);
}

.pass-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: calc(var(--space-unit) * 1.5);
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

@media (max-width: 900px) {
  .pass-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pass-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.pass-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pass-card > *:not(.pass-img) {
  padding-left: calc(var(--space-unit) * 1.5);
  padding-right: calc(var(--space-unit) * 1.5);
}

.pass-card > .pass-icon {
  padding-top: calc(var(--space-unit) * 1.2);
}

.pass-card > *:last-child {
  padding-bottom: calc(var(--space-unit) * 1.5);
}

.pass-card--featured {
  border-color: var(--accent-dim);
}

.pass-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.pass-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.pass-tagline {
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0 0 var(--space-unit);
  font-style: italic;
}

.pass-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-unit);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pass-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.pass-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-dim);
  font-size: 0.8rem;
}

.pass-ideal {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-style: italic;
}

.pass-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin: auto 0 0;
}

.pass-days {
  margin-bottom: var(--space-unit);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pass-days p {
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.pass-days strong {
  color: var(--text);
}

.pass-includes-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.pass-signature {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--accent);
  margin: auto 0 0;
  padding-top: 0.75rem;
}

.pass-card-cta {
  margin-top: calc(var(--space-unit) * 1.25);
}

.pass-reserve-btn {
  font-size: 0.78rem;
  padding: 0.85rem 1rem;
}

/* --- POUR QUI --- */
.audience-section {
  padding: calc(var(--space-unit) * 5) var(--space-unit);
  background: var(--bg-soft);
  text-align: center;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: calc(var(--space-unit) * 2);
}

.audience-tags span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.audience-baseline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
}

/* --- DIFFÉRENCE --- */
.difference-section {
  padding: calc(var(--space-unit) * 6) var(--space-unit);
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: calc(var(--space-unit) * 3);
  max-width: 1040px;
  margin: 0 auto;
}

.difference-img {
  flex: 0 0 380px;
  border-radius: var(--radius);
  overflow: hidden;
}

.difference-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .difference-section {
    flex-direction: column;
    text-align: center;
  }

  .difference-img {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}

.difference-text {
  flex: 1;
  text-align: center;
}

.difference-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-unit);
  line-height: 1.7;
}

.difference-lead {
  color: var(--text) !important;
  margin-top: calc(var(--space-unit) * 2) !important;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: var(--space-unit) 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.detail-list li {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- APPROCHE --- */
.approach-section {
  padding: calc(var(--space-unit) * 6) var(--space-unit);
  background: var(--bg-soft);
}

.approach-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--space-unit) * 1.5);
}

@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.approach-phase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--space-unit) * 1.5);
}

.approach-phase h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 var(--space-unit);
}

.approach-phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach-phase li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.approach-phase li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-dim);
}

/* --- PROCESSUS --- */
.process-section {
  padding: calc(var(--space-unit) * 6) var(--space-unit);
  background: var(--bg);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--space-unit) * 1.5);
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

.step {
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto calc(var(--space-unit) * 0.75);
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- POSITIONNEMENT --- */
.positioning-section {
  padding: calc(var(--space-unit) * 4) var(--space-unit);
  background: var(--bg-soft);
}

.positioning-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.positioning-content > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-unit);
}

.positioning-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.positioning-list li {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- TARIFS --- */
.pricing-section {
  padding: calc(var(--space-unit) * 6) var(--space-unit);
  background: var(--bg);
}

.pricing-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 calc(var(--space-unit) * 2.5);
}

.pricing-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--space-unit) * 1.5);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--space-unit) * 1.5);
  text-align: center;
}

.pricing-card--featured {
  border-color: var(--accent-dim);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
}

.price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* --- NOTRE HISTOIRE --- */
.story-section {
  padding: calc(var(--space-unit) * 6) var(--space-unit);
  background: var(--bg-soft);
}

.story-hero-img {
  max-width: var(--max-width);
  margin: 0 auto calc(var(--space-unit) * 3);
  border-radius: var(--radius);
  overflow: hidden;
}

.story-hero-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}

.story-blocks {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 2.5);
}

.story-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.story-block p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* --- FORMULAIRE --- */
.form-section#formulaire {
  scroll-margin-top: 5.5rem;
}

.form-section {
  padding: calc(var(--space-unit) * 6) var(--space-unit);
  background: var(--bg);
}

.form-alt-contact {
  margin-top: calc(var(--space-unit) * 2.5);
  padding-top: calc(var(--space-unit) * 2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.form-alt-contact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}

.form-alt-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.form-container {
  max-width: 480px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 calc(var(--space-unit) * 2);
  color: var(--text);
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 1.2);
}

.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent-dim);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-message {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
}

.form-message[hidden] {
  display: none;
}

.form-message--success {
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid var(--accent-dim);
  color: var(--text);
}

.form-message--error {
  background: rgba(180, 80, 80, 0.15);
  border: 1px solid rgba(180, 80, 80, 0.4);
  color: #e8a0a0;
}

/* --- FOOTER --- */
.footer {
  padding: calc(var(--space-unit) * 2) var(--space-unit);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer p {
  margin: 0;
}

/* --- Vision section (homepage) --- */
.vision-section {
  padding: calc(var(--space-unit) * 5) var(--space-unit);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.vision-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.vision-diamond {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-unit);
}

.vision-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 calc(var(--space-unit) * 2);
}

.vision-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.vision-quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.vision-quote p:last-child {
  margin-bottom: 0;
  color: var(--accent);
}

/* --- Inner pages --- */
.page--inner {
  padding-top: 4.5rem;
}

.page-header {
  padding: calc(var(--space-unit) * 3) var(--space-unit) calc(var(--space-unit) * 4);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 calc(var(--space-unit) * 2);
  color: var(--text);
}

.page-header > p {
  text-align: left;
  max-width: var(--max-width);
  margin: 0 auto 1rem;
  color: var(--text-muted);
}

.page-header > p:last-of-type {
  margin-bottom: 0;
}

.content-section {
  padding: calc(var(--space-unit) * 4) var(--space-unit);
  max-width: 820px;
  margin: 0 auto;
}

.content-section--en {
  border-left: 2px solid var(--accent);
  padding-left: calc(var(--space-unit) * 2.5);
}

.content-section .section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.content-section > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.content-section > p:last-child {
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--space-unit) * 1.5);
  margin-bottom: calc(var(--space-unit) * 1.25);
}

.testimonial-card:last-child {
  margin-bottom: 0;
}

.testimonial-card blockquote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-card blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}

.testimonial-card blockquote footer {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0;
}

.cta-section {
  width: 100%;
  padding: calc(var(--space-unit) * 5) var(--space-unit);
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  box-sizing: border-box;
}

.cta-section .btn {
  display: inline-block;
}

.cta-section-subtitle {
  margin: calc(var(--space-unit) * 1.5) auto 0;
  max-width: 520px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.content-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin: calc(var(--space-unit) * 1.5) 0 0.5rem;
}

.content-section h3:first-child {
  margin-top: 0;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.content-section li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.content-section li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-dim);
  font-size: 0.8rem;
}

.pack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: calc(var(--space-unit) * 1.5);
  margin-bottom: calc(var(--space-unit) * 1.25);
}

.pack-card:last-child {
  margin-bottom: 0;
}

.pack-card h3 {
  margin-top: 0;
}

.cta-section-stats {
  margin: calc(var(--space-unit) * 2) auto 0;
  max-width: 560px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- LP Ads (page non référencée, liens campagnes) --- */
.ads-lp-header {
  padding: calc(var(--space-unit) * 1.25) var(--space-unit);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.ads-lp-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
}

.ads-lp-logo:hover {
  color: var(--accent);
}

.ads-lp-section {
  padding: calc(var(--space-unit) * 4) var(--space-unit) calc(var(--space-unit) * 2);
}

.ads-lp-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ads-before-pack {
  text-align: center;
  margin-bottom: calc(var(--space-unit) * 2);
}

.ads-lp-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 calc(var(--space-unit) * 1.5);
}

.ads-lp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.ads-lp-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.ads-lp-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-dim);
  font-size: 0.8rem;
}

.ads-lp-list--compact {
  margin-top: calc(var(--space-unit) * 1);
}

.ads-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin: calc(var(--space-unit) * 2) 0 calc(var(--space-unit) * 3);
}

.ads-pass-grid {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.pass-card--ads-focus {
  border-color: var(--accent-dim);
}

.ads-after-pack {
  text-align: center;
  margin-top: calc(var(--space-unit) * 3);
  margin-bottom: calc(var(--space-unit) * 0.5);
}

.ads-after-lead {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 calc(var(--space-unit) * 1);
}

.ads-quick-section {
  padding-top: calc(var(--space-unit) * 2);
}

.ads-quick-container {
  max-width: 440px;
}

.ads-quick-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 calc(var(--space-unit) * 1.25);
  line-height: 1.5;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(212, 184, 114, 0.12);
  color: var(--accent);
}

.btn-whatsapp {
  background: #1f9d55;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1a8548;
  color: #fff;
}

/* --- LP Deal (ads juridique / négociation) --- */
.lp-deal-lp .page-glow {
  animation-duration: 1.6s;
}

.lp-deal-hero {
  min-height: calc(100dvh - 3.5rem);
  min-height: calc(100vh - 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-unit) * 3) var(--space-unit);
  box-sizing: border-box;
}

.lp-network-hero {
  min-height: auto;
  padding-top: calc(var(--space-unit) * 4);
  padding-bottom: calc(var(--space-unit) * 3);
}

.lp-network-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
  margin: 0 0 calc(var(--space-unit) * 1.5);
}

.lp-network-lead {
  margin-bottom: calc(var(--space-unit) * 2);
}

.lp-network-lead p {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.lp-network-lead p:last-child {
  margin-bottom: 0;
}

.lp-network-points {
  text-align: left;
  max-width: 100%;
}

.lp-network-pack-section {
  padding-top: calc(var(--space-unit) * 2);
}

.lp-network-cta-row {
  margin-top: calc(var(--space-unit) * 2);
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-deal-hero-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.lp-deal-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 calc(var(--space-unit) * 1);
}

.lp-deal-subtitle {
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 0 calc(var(--space-unit) * 2);
}

.lp-deal-hook {
  text-align: center;
  margin-bottom: calc(var(--space-unit) * 2.5);
}

.lp-deal-hook p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.lp-deal-hook p:last-child {
  margin-bottom: 0;
}

.lp-deal-hero-cta.ads-cta-row {
  margin-bottom: 0;
}

.lp-deal-section {
  padding: calc(var(--space-unit) * 4) var(--space-unit);
  border-top: 1px solid var(--border);
}

.lp-deal-section-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.lp-deal-section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 calc(var(--space-unit) * 1.5);
}

.lp-deal-shortlist {
  margin-bottom: calc(var(--space-unit) * 2);
}

.lp-deal-form-section {
  border-top: 1px solid var(--border);
  scroll-margin-top: 0.5rem;
}

.lp-sticky-cta {
  display: none;
}

@media (max-width: 720px) {
  .lp-has-sticky-cta {
    padding-bottom: 4.25rem;
  }

  .lp-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10050;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(8, 8, 9, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    box-sizing: border-box;
  }

  .lp-sticky-cta__btn {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 0.35rem;
    border-radius: var(--radius);
    border: none;
    line-height: 1.2;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .lp-sticky-cta__btn--primary {
    background: var(--accent);
    color: var(--bg);
  }

  .lp-sticky-cta__btn--primary:hover {
    background: #d4b872;
    color: var(--bg);
  }

  .lp-sticky-cta__btn--outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
  }

  .lp-sticky-cta__btn--outline:hover {
    background: rgba(212, 184, 114, 0.1);
  }

  .lp-sticky-cta__btn--wa {
    background: #1f9d55;
    color: #fff;
  }

  .lp-sticky-cta__btn--wa:hover {
    background: #1a8548;
    color: #fff;
  }
}
