/* ==========================================================================
   LUMANIS - Styles page Particuliers
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables CSS
   -------------------------------------------------------------------------- */
:root {
  --bg: #fdf8f5;
  --paper: #ffffff;
  --ink: #1f2a2a;
  --muted: #5f6b6b;
  --line: rgba(31, 42, 42, 0.10);
  --shadow: 0 14px 30px rgba(31, 42, 42, 0.10);
  --shadow-soft: 0 10px 22px rgba(31, 42, 42, 0.08);
  --radius: 18px;
  --accent: #9b6081;
  --accent-2: #8a5673;
  --sand: #f3eee6;
  --chip: rgba(47, 79, 70, 0.10);
  --max: 1120px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

/* --------------------------------------------------------------------------
   Layout gÃ©nÃ©ral
   -------------------------------------------------------------------------- */
.page-content {
  max-width: 1150px;
  margin: 0 auto;
  background: #fdf8f5;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

/* Menu dÃ©roulant */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(31, 42, 42, 0.82);
  font-size: 14px;
  border-radius: 0;
  transition: background 0.15s ease;
}

.dropdown-menu a:first-child {
  border-radius: 14px 14px 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 14px 14px;
}

.dropdown-menu a:hover {
  background: rgba(155, 96, 129, 0.08);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(253, 248, 245, 0.95);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

/* Logo et nom de marque */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(155, 96, 129, 0.20), rgba(155, 96, 129, 0.06));
  border: 1px solid rgba(155, 96, 129, 0.18);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name strong {
  letter-spacing: 0.2px;
}

.brand-name small {
  color: var(--muted);
  font-size: 12px;
}

/* Navigation principale */
nav {
  display: flex;
  gap: 5px;
  align-items: center;
}

nav a {
  font-size: 14px;
  color: rgba(31, 42, 42, 0.82);
  padding: 8px 10px;
  border-radius: 12px;
}

nav a:hover {
  background: rgba(31, 42, 42, 0.05);
}

/* Menu dÃ©roulant */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(31, 42, 42, 0.82);
  font-size: 14px;
  border-radius: 0;
  transition: background 0.15s ease;
}

.dropdown-menu a:first-child {
  border-radius: 14px 14px 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 14px 14px;
}

.dropdown-menu a:hover {
  background: rgba(155, 96, 129, 0.08);
}

/* Boutons d'action dans l'en-tÃªte */
.header-cta {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.06s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 22px rgba(47, 79, 70, 0.18);
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(31, 42, 42, 0.12);
  color: rgba(31, 42, 42, 0.88);
}

.btn-ghost:hover {
  background: #fff;
}


/* --------------------------------------------------------------------------
   Page Hero
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 34px 0 16px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.card {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  color: rgba(31, 42, 42, 0.72);
  background: rgba(47, 79, 70, 0.08);
  border: 1px solid rgba(47, 79, 70, 0.14);
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

h1 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.sub {
  margin: 0 0 14px;
  color: rgba(31, 42, 42, 0.74);
  font-size: 15.5px;
}

.chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.chip {
  font-size: 12.5px;
  color: rgba(31, 42, 42, 0.82);
  background: rgba(47, 79, 70, 0.10);
  border: 1px solid rgba(47, 79, 70, 0.14);
  padding: 7px 10px;
  border-radius: 999px;
  text-align: center;
}

.visual {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  background:
          radial-gradient(520px 240px at 65% 25%, rgba(255, 255, 255, 0.70), transparent 60%),
          linear-gradient(135deg, rgba(47, 79, 70, 0.28), rgba(243, 238, 230, 0.65));
  position: relative;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(31, 42, 42, 0.05));
  pointer-events: none;
}

.visual .note {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 42, 42, 0.12);
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12.5px;
  color: rgba(31, 42, 42, 0.78);
  max-width: 360px;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  padding: 18px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 600;
}

.section p {
  margin: 0 0 10px;
  color: rgba(31, 42, 42, 0.72);
}

/* --------------------------------------------------------------------------
   Grille
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.mini {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 20px rgba(31, 42, 42, 0.07);
}

.mini h3 {
  margin: 10px 0 6px;
  font-size: 16px;
}

.mini p {
  margin: 0;
  font-size: 13.5px;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(155, 96, 129, 0.16);
  background: rgba(155, 96, 129, 0.06);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  overflow: hidden;
}

/* Icon avec chips sur la mÃƒÂªme ligne */
.icon-with-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.icon-with-chips .icon {
  flex-shrink: 0;
}

.icon-with-chips h3 {
  flex: 1;
  margin: 0 !important;
  min-width: 0;
}

.icon-with-chips .service-chips {
  flex-basis: 100%;
  margin-top: -4px;
}

.icon-with-chips p {
  flex-basis: 100%;
}

.service-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chip-small {
  font-size: 11px;
  color: rgba(31, 42, 42, 0.70);
  background: rgba(47, 79, 70, 0.08);
  border: 1px solid rgba(47, 79, 70, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Ãƒâ€°tapes
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.62));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 22px rgba(31, 42, 42, 0.06);
}

.step strong {
  display: block;
  margin-bottom: 6px;
}

.step span {
  color: rgba(31, 42, 42, 0.70);
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   Bandeau CTA
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(180deg, rgba(243, 238, 230, 0.92), rgba(243, 238, 230, 0.60));
  border: 1px solid rgba(31, 42, 42, 0.08);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(31, 42, 42, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-band p {
  margin: 0;
  color: rgba(31, 42, 42, 0.72);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer {
  padding: 26px 0 34px;
  color: rgba(31, 42, 42, 0.62);
  font-size: 13px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

.label-section {
  padding: 32px 0 38px;
}

.label-wrapper {
  background: linear-gradient(180deg, rgba(243,238,230,0.92), rgba(243,238,230,0.55));
  border: 1px solid rgba(31,42,42,0.08);
  border-radius: 24px;
  padding: 32px 28px 36px;
  box-shadow: 0 14px 30px rgba(31,42,42,0.08);
  text-align: center;
}

.label-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(31,42,42,0.52);
  margin-bottom: 8px;
}

.label-kicker::before,
.label-kicker::after {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(31,42,42,0.18);
}

.label-wrapper h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
}

.label-wrapper > p {
  margin: 0 auto 28px;
  max-width: 600px;
  color: rgba(31,42,42,0.62);
  font-size: 14px;
}

.label-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Card individuelle */
.label-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(31,42,42,0.08);
  border-radius: 18px;
  padding: 28px 22px 24px;
  box-shadow: 0 8px 20px rgba(31,42,42,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.label-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(31,42,42,0.10);
}

/* Barre colorÃ©e en haut */
.label-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
}

.label-card.or::before {
  background: linear-gradient(90deg, #c9a44c, #e8cc72, #c9a44c);
}

.label-card.platine::before {
  background: linear-gradient(90deg, #8a8a8a, #c0c0c0, #8a8a8a);
}

.label-card.diamant::before {
  background: linear-gradient(90deg, #5bbcd6, #8ed8e8, #5bbcd6);
}

/* Image du label */
.label-badge {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

/* Titre du niveau */
.label-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.label-card .label-freq {
  font-size: 13px;
  color: rgba(31,42,42,0.55);
  margin: 0 0 12px;
}

.label-card .label-desc {
  font-size: 13.5px;
  color: rgba(31,42,42,0.68);
  margin: 0 0 16px;
  line-height: 1.5;
}

/* Liste des avantages */
.label-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.label-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(31,42,42,0.72);
  padding: 5px 0;
  border-top: 1px solid rgba(31,42,42,0.06);
}

.label-features li:first-child {
  border-top: none;
}

.label-features li .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  margin-top: 1px;
}

.label-card.or .check {
  background: rgba(201,164,76,0.14);
  color: #b8923e;
}

.label-card.platine .check {
  background: rgba(138,138,138,0.14);
  color: #6b6b6b;
}

.label-card.diamant .check {
  background: rgba(91,188,214,0.14);
  color: #3a9ab5;
}

/* Responsive */
@media (max-width: 980px) {
  .label-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}


/* --------------------------------------------------------------------------
   Burger Menu
   -------------------------------------------------------------------------- */

/* Bouton burger — masqué sur desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 42, 42, 0.12);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.18s ease;
  z-index: 200;
}

.burger:hover {
  background: #fff;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animation croix quand ouvert */
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}

.nav-mobile.open {
  pointer-events: all;
}

/* Fond semi-transparent */
.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 42, 0.35);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-mobile.open .nav-mobile-backdrop {
  opacity: 1;
}

/* Panneau latéral */
.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: #fdf8f5;
  box-shadow: -10px 0 40px rgba(31, 42, 42, 0.15);
  padding: 20px 0 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.nav-mobile.open .nav-mobile-panel {
  transform: translateX(0);
}

/* En-tête du panneau */
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}

.nav-mobile-header .brand-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.3px;
}

/* Bouton fermer dans le panneau */
.nav-mobile-close {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 16px;
  transition: background 0.15s ease;
}

.nav-mobile-close:hover {
  background: rgba(31, 42, 42, 0.06);
}

/* Liens de navigation mobile */
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  gap: 2px;
}

.nav-mobile-links a {
  font-size: 15px;
  color: rgba(31, 42, 42, 0.82);
  padding: 12px 12px;
  border-radius: 12px;
  transition: background 0.15s ease;
  display: block;
}

.nav-mobile-links a:hover {
  background: rgba(155, 96, 129, 0.07);
  color: var(--accent);
}

/* Sous-section "À destination" */
.nav-mobile-group-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(31, 42, 42, 0.42);
  padding: 14px 12px 4px;
  font-weight: 600;
}

.nav-mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 12px;
  margin-bottom: 4px;
}

.nav-mobile-sub a {
  font-size: 14px;
  color: rgba(31, 42, 42, 0.72);
  padding: 10px 12px;
  border-radius: 10px;
  border-left: 2px solid rgba(155, 96, 129, 0.22);
  margin-left: 4px;
  transition: background 0.15s ease;
  display: block;
}

.nav-mobile-sub a:hover {
  background: rgba(155, 96, 129, 0.07);
  border-left-color: var(--accent);
}

/* CTA bas de panneau — collé en bas */
.nav-mobile-cta {
  padding: 20px 20px 0;
  border-top: 1px solid var(--line);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 16px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .header-cta {
    gap: 12px;
  }
}

@media (max-width: 980px) {
  /* Masquer nav desktop, afficher burger */
  nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  /* Header adapté mobile */
  .header-inner {
    justify-content: space-between;
  }

  /* Masquer les CTA téléphone sur mobile */
  .header-cta {
    display: none;
  }

  /* Hero en colonne */
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  /* Grilles en colonne */
  .grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  /* CTA band en colonne */
  .cta-band {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  /* Grille labels */
  .label-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  /* Chips responsive - 2 par ligne, taille uniforme */
  .chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .chip {
    font-size: 12px;
    padding: 7px 10px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 20px 0 12px;
  }
}