@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --bleu-marine: #1a2845;
  --or:          #c9aa6f;
  --blanc:       #FFFFFF;
  --noir:        #0D0D0D;
  --gris-clair:  #F5F4F1;

  --font-titres: 'Playfair Display', Georgia, serif;
  --font-corps:  'Roboto', system-ui, -apple-system, sans-serif;

  --max-width:   1200px;
  --transition:  0.3s ease;

  --header-height: 115px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-corps);
  font-weight: 400;
  line-height: 1.65;
  color: var(--noir);
  background: var(--blanc);
}

h1, h2, h3, h4 {
  font-family: var(--font-titres);
  font-weight: 500;
  line-height: 1.2;
  color: var(--bleu-marine);
  letter-spacing: -0.01em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gris-clair);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-corps);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--or);
  background: var(--or);
  color: var(--bleu-marine);
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--bleu-marine);
  color: var(--blanc);
  border-color: var(--bleu-marine);
}

/* ============================================================
   HEADER + NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bleu-marine);
  height: var(--header-height);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__logo img {
  height: 88px;
  width: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  font-family: var(--font-corps);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--or);
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color var(--transition);
}

.site-nav__link:hover {
  color: var(--blanc);
}

.site-nav__link--cta {
  border: 1px solid var(--or);
  padding: 0.625rem 1.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.site-nav__link--cta:hover {
  background: var(--or);
  color: var(--bleu-marine);
}

.site-nav__item--has-dropdown > .site-nav__link::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 0.35em;
  display: inline-block;
}

.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  background: var(--bleu-marine);
  border: 2px solid var(--or);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--or);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.site-nav__dropdown li a:hover {
  background: var(--or);
  color: var(--bleu-marine);
}

.site-nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.site-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--or);
  margin: 5px auto;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile : navigation en panneau plein écran */
@media (max-width: 900px) {
  .site-nav__burger {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bleu-marine);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

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

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
  }

  .site-nav__item {
    border-bottom: 1px solid rgba(201, 170, 111, 0.15);
  }

  .site-nav__link {
    padding: 1.25rem 1.5rem;
    display: block;
  }

  .site-nav__link--cta {
    border: 0;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  .site-nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0;
    min-width: 0;
  }

  .site-nav__item--has-dropdown:hover .site-nav__dropdown {
    transform: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bleu-marine);
  color: var(--blanc);
  padding: 4rem 0 1.5rem;
  font-size: 0.9rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.site-footer__col {
  text-align: center;
}

/* ============================================================
   FORMULAIRE DYNAMIQUE — Contact
   ============================================================ */

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

.form-progress {
  height: 4px;
  background: rgba(26, 40, 69, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.form-progress__bar {
  height: 100%;
  background: var(--or);
  transition: width var(--transition);
  width: 0%;
}

.form-slide {
  animation: formFadeIn 0.4s ease;
}

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

@keyframes formFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-slide h2 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-slide__hint {
  color: rgba(13, 13, 13, 0.55);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
}

.form-options {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.form-options--two-cols {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .form-options--two-cols {
    grid-template-columns: 1fr;
  }
}

.form-option {
  background: var(--blanc);
  border: 1px solid rgba(26, 40, 69, 0.15);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-corps);
  font-size: 1rem;
  color: var(--bleu-marine);
  transition: all var(--transition);
  text-align: left;
  position: relative;
}

.form-option:hover {
  border-color: var(--or);
  background: rgba(201, 170, 111, 0.05);
}

.form-option.is-selected {
  border-color: var(--or);
  background: rgba(201, 170, 111, 0.12);
  border-width: 2px;
  padding: calc(1.1rem - 1px) calc(1.4rem - 1px);
  font-weight: 500;
}

.form-option.is-selected::after {
  content: "✓";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--or);
  font-weight: 700;
  font-size: 1.1rem;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-nav .form-back {
  background: transparent;
  color: var(--bleu-marine);
  border-color: rgba(26, 40, 69, 0.2);
}

.form-nav .form-back:hover {
  background: rgba(26, 40, 69, 0.05);
  border-color: var(--bleu-marine);
  color: var(--bleu-marine);
}

.form-nav .form-next {
  margin-left: auto;
}

.form-nav .form-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--or);
  color: var(--bleu-marine);
  border-color: var(--or);
}

.form-fields {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.form-fields--two-cols {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .form-fields--two-cols {
    grid-template-columns: 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 0.88rem;
  color: var(--bleu-marine);
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(26, 40, 69, 0.15);
  font-family: var(--font-corps);
  font-size: 1rem;
  color: var(--noir);
  background: var(--blanc);
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--or);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

.form-success {
  text-align: center;
  padding: 3rem 0;
}

.form-success__icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--or);
  color: var(--bleu-marine);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-success h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.05rem;
  color: rgba(13, 13, 13, 0.7);
  max-width: 520px;
  margin: 0 auto;
}

.site-footer__title {
  font-family: var(--font-titres);
  font-size: 1.1rem;
  color: var(--or);
  margin-bottom: 1rem;
  font-weight: 500;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.site-footer__links {
  list-style: none;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.site-footer__links a:hover {
  color: var(--or);
}

.site-footer__bottom {
  border-top: 1px solid rgba(201, 170, 111, 0.25);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__bottom p {
  margin: 0;
  color: inherit;
}

.site-footer__bottom a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.site-footer__bottom a:hover {
  border-bottom-color: currentColor;
}

@media (max-width: 800px) {
  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 500px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--bleu-marine);
  color: var(--blanc);
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero__title {
  color: var(--blanc);
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-size: 3.5rem;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .hero__title { font-size: 2.25rem; }
  .hero { padding: 3.5rem 0; }
}

/* ============================================================
   ACTIVITÉ — 3 colonnes
   ============================================================ */

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.activity-col__image {
  aspect-ratio: 16 / 10;
  background: var(--gris-clair);
  border: 1px dashed rgba(26, 40, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 13, 13, 0.4);
  font-style: italic;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  overflow: hidden;
}

.activity-col__image:has(img) {
  background: transparent;
  border: 0;
  padding: 0;
}

.activity-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.johan-block__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.activity-col__bar {
  width: 40px;
  height: 2px;
  background: var(--or);
  margin: 0 auto 1.5rem;
}

.activity-col h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.activity-col p {
  margin: 0;
}

@media (max-width: 800px) {
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   SECTION TITRES + LEAD + CTA CENTRÉ
   ============================================================ */

.section__title {
  text-align: center;
  margin-bottom: 1rem;
}

.section__lead {
  text-align: center;
  font-size: 1.05rem;
  margin: 0 auto 3rem;
  max-width: 640px;
}

.section__title + .comparison,
.section__title + .objectifs-grid,
.section__title + .reviews,
.section__title + .partners-grid {
  margin-top: 3rem;
}

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   COMPARISON — Pourquoi Æther
   ============================================================ */

.comparison {
  max-width: 900px;
  margin: 0 auto;
  background: var(--blanc);
  border: 1px solid rgba(26, 40, 69, 0.1);
}

.comparison__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(26, 40, 69, 0.1);
}

.comparison__row:last-child {
  border-bottom: 0;
}

.comparison__row > div {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
}

.comparison__header {
  background: var(--bleu-marine);
  color: var(--blanc);
}

.comparison__header > div {
  font-family: var(--font-titres);
  font-size: 1.05rem;
  font-weight: 500;
}

.comparison__header > div:last-child {
  color: var(--or);
}

.comparison__label {
  font-weight: 500;
  color: var(--bleu-marine);
}

.comparison__cell--bank {
  color: rgba(13, 13, 13, 0.7);
}

.comparison__cell--aether {
  color: var(--bleu-marine);
  font-weight: 500;
  background: rgba(201, 170, 111, 0.06);
}

.comparison__check {
  color: var(--or);
  margin-right: 0.5rem;
  font-weight: 700;
}

.comparison__cross {
  color: rgba(0, 0, 0, 0.4);
  margin-right: 0.5rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .comparison {
    border: 0;
    background: transparent;
  }
  .comparison__header {
    display: none;
  }
  .comparison__row {
    grid-template-columns: 1fr;
    border: 1px solid rgba(26, 40, 69, 0.1);
    margin-bottom: 1rem;
    background: var(--blanc);
  }
  .comparison__row > div {
    border-bottom: 1px solid rgba(26, 40, 69, 0.05);
  }
  .comparison__row > div:last-child {
    border-bottom: 0;
  }
  .comparison__cell--bank::before {
    content: "Banque : ";
    font-weight: 500;
    color: var(--bleu-marine);
    margin-right: 0.4rem;
  }
  .comparison__cell--aether::before {
    content: "Æther : ";
    font-weight: 500;
    color: var(--or);
    margin-right: 0.4rem;
  }
}

/* ============================================================
   BLOC JOHAN
   ============================================================ */

.johan-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.placeholder-photo {
  background: var(--gris-clair);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 13, 13, 0.4);
  font-style: italic;
  border: 1px dashed rgba(26, 40, 69, 0.2);
  text-align: center;
  padding: 1rem;
}

.johan-block__text h2 {
  margin-bottom: 1.5rem;
}

.johan-block__text p {
  text-align: justify;
}

@media (max-width: 800px) {
  .johan-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   GRILLE OBJECTIFS
   ============================================================ */

.objectifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.objectif-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blanc);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(26, 40, 69, 0.1);
  transition: all var(--transition);
  min-height: 100px;
}

.objectif-card h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--bleu-marine);
  flex: 1;
  padding-right: 1rem;
  font-family: var(--font-titres);
  font-weight: 500;
  transition: color var(--transition);
}

.objectif-card__arrow {
  color: var(--or);
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.objectif-card:hover {
  background: var(--bleu-marine);
  border-color: var(--bleu-marine);
}

.objectif-card:hover h3 {
  color: var(--or);
}

.objectif-card:hover .objectif-card__arrow {
  transform: translateX(4px);
}

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

@media (max-width: 600px) {
  .objectifs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AVIS / RÉASSURANCE
   ============================================================ */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review {
  background: var(--gris-clair);
  padding: 2rem 1.75rem;
  border-top: 2px solid var(--or);
}

.review__stars {
  color: var(--or);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.review__text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review__author {
  color: var(--bleu-marine);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 800px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PARTENAIRES
   ============================================================ */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.partner-logo {
  background: var(--blanc);
  border: 1px dashed rgba(26, 40, 69, 0.2);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 13, 13, 0.35);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  padding: 0.35rem;
  overflow: hidden;
}

.partner-logo:has(img) {
  border: 1px solid rgba(26, 40, 69, 0.08);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 0.5rem;
}

@media (max-width: 800px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  background: var(--bleu-marine);
  color: var(--blanc);
  padding: 5rem 0;
  text-align: center;
}

.cta-final h2 {
  color: var(--blanc);
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ============================================================
   SECTION SOMBRE — Variante fond bleu marine
   ============================================================ */

.section-dark {
  background: var(--bleu-marine);
  color: var(--blanc);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .section__title {
  color: var(--blanc);
}

.section-dark p,
.section-dark .section__lead {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .placeholder-photo {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 170, 111, 0.4);
  color: rgba(255, 255, 255, 0.5);
}

.section-dark .review {
  background: rgba(255, 255, 255, 0.04);
  border-top-color: var(--or);
}

.section-dark .review__text {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .review__author {
  color: var(--or);
}

.section-dark .placeholder-content {
  color: rgba(255, 255, 255, 0.55);
}

.section-dark .btn {
  background: var(--or);
  color: var(--bleu-marine);
  border-color: var(--or);
}

.section-dark .btn:hover {
  background: var(--blanc);
  color: var(--bleu-marine);
  border-color: var(--blanc);
}

/* ============================================================
   PAGE-INTERIEUR — Hero court pour pages secondaires
   ============================================================ */

.page-hero {
  background: var(--bleu-marine);
  color: var(--blanc);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--blanc);
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.placeholder-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
  color: rgba(13, 13, 13, 0.55);
  font-style: italic;
}

/* ============================================================
   PAGES EXPERTISES — Tags produits + grille d'index
   ============================================================ */

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 760px;
  margin: 2rem auto 0;
}

.product-tag {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--gris-clair);
  border: 1px solid rgba(26, 40, 69, 0.1);
  color: var(--bleu-marine);
  font-size: 0.95rem;
  font-weight: 500;
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.expertise-card {
  background: var(--blanc);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(26, 40, 69, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
}

.expertise-card:hover {
  border-color: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 40, 69, 0.06);
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin: 0;
}

.expertise-card p {
  margin: 0;
  color: rgba(13, 13, 13, 0.75);
  font-size: 0.95rem;
}

.expertise-card__link {
  color: var(--or);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.expertise-card:hover .expertise-card__link {
  gap: 0.75rem;
}

@media (max-width: 700px) {
  .expertises-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE APPROCHE — Citations, blocs split, étapes, convictions
   ============================================================ */

.quote-feature {
  font-family: var(--font-titres);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--bleu-marine);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  line-height: 1.45;
}

.section-dark .quote-feature {
  color: var(--blanc);
}

.split-block + .quote-feature {
  margin-top: 4rem;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.split-block--reverse {
  grid-template-columns: 1.2fr 1fr;
}

.split-block--reverse .split-block__photo {
  order: 2;
}

.split-block--start {
  align-items: start;
}

.split-block__photo .placeholder-photo {
  aspect-ratio: 4 / 5;
}

.split-block__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.split-block__text p {
  margin-bottom: 1rem;
  text-align: justify;
}

.split-block__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .split-block,
  .split-block--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-block--reverse .split-block__photo {
    order: 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--blanc);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(26, 40, 69, 0.1);
  display: flex;
  flex-direction: column;
}

.step-card__image {
  aspect-ratio: 16 / 10;
  background: var(--gris-clair);
  border: 1px dashed rgba(26, 40, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 13, 13, 0.4);
  font-style: italic;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  text-align: center;
  overflow: hidden;
}

.step-card__image:has(img) {
  background: transparent;
  border: 0;
  padding: 0;
  display: block;
  position: relative;
}

.step-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-card__number {
  font-family: var(--font-titres);
  font-size: 2.5rem;
  color: var(--or);
  margin-bottom: 0.25rem;
  line-height: 1;
  font-weight: 500;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card__free-tag {
  display: inline-block;
  background: var(--or);
  color: var(--bleu-marine);
  padding: 0.15rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 0.4rem;
  vertical-align: middle;
  font-family: var(--font-corps);
}

.step-card__duration {
  display: block;
  color: rgba(13, 13, 13, 0.55);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.step-card p {
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 1000px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.convictions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.conviction-card {
  background: var(--blanc);
  border-top: 3px solid var(--or);
  border-bottom: 1px solid rgba(26, 40, 69, 0.08);
  border-left: 1px solid rgba(26, 40, 69, 0.08);
  border-right: 1px solid rgba(26, 40, 69, 0.08);
  padding: 2.5rem 1.75rem;
}

.conviction-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.conviction-card p {
  margin: 0;
  font-size: 0.95rem;
  text-align: justify;
}

a.conviction-card {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-top-width var(--transition);
}

a.conviction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  border-top-width: 5px;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

/* ============================================================
   PAGES LEGALES — Mentions légales, Politique de confidentialité
   ============================================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--bleu-marine);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--bleu-marine);
  font-weight: 500;
}

.legal-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.legal-content ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  text-align: justify;
}

.legal-content address {
  font-style: normal;
  background: var(--gris-clair);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-left: 3px solid var(--or);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .convictions-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE CABINET — Valeurs (2x2), liste réglementée, quote-author
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.section-dark .conviction-card h3 {
  color: var(--bleu-marine);
}

.section-dark .conviction-card p {
  color: var(--noir);
}

.section-dark .step-card h3 {
  color: var(--bleu-marine);
}

.section-dark .step-card p {
  color: var(--noir);
}

.section-dark .pillar-card h3 {
  color: var(--bleu-marine);
}

.section-dark .pillar-card p {
  color: var(--noir);
}

/* ============================================================
   PILIERS — 3 colonnes façon socle grec
   ============================================================ */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--blanc);
  padding: 2.5rem 2rem 2rem;
  border-top: 1px solid rgba(26, 40, 69, 0.08);
  border-left: 1px solid rgba(26, 40, 69, 0.08);
  border-right: 1px solid rgba(26, 40, 69, 0.08);
  border-bottom: 4px solid var(--or);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pillar-card__number {
  font-family: var(--font-titres);
  font-size: 3rem;
  color: var(--or);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-weight: 500;
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pillar-card p {
  margin: 0;
  font-size: 0.95rem;
  text-align: justify;
}

@media (max-width: 800px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GRILLE 3 COLONNES — Cartes informatives (Univers d'investissement)
   ============================================================ */

.three-cols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 800px) {
  .three-cols-grid {
    grid-template-columns: 1fr;
  }
}

.regulated-list {
  list-style: none;
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 0;
}

.regulated-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.regulated-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--or);
  font-weight: 700;
  font-size: 1.15rem;
}

.quote-feature__author {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-style: normal;
  color: rgba(13, 13, 13, 0.65);
  letter-spacing: 0.04em;
  font-family: var(--font-corps);
}

.section-dark .quote-feature__author {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   MEGA DROPDOWN — Variante détaillée (Nos expertises)
   ============================================================ */

.site-nav__dropdown--mega {
  min-width: 480px;
  padding: 0.5rem 0;
}

.site-nav__dropdown--mega li a {
  padding: 0.7rem 1.5rem;
  border-left: 2px solid transparent;
  background: transparent;
  color: inherit;
  transition: background var(--transition), border-color var(--transition);
}

.site-nav__dropdown--mega li a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  border-left-color: var(--or);
}

.site-nav__dropdown--mega strong {
  display: block;
  font-family: var(--font-titres);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--or);
  margin-bottom: 0.2rem;
}

.site-nav__dropdown--mega span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 400;
}

.site-nav__dropdown--mega li a:hover span {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .site-nav__dropdown--mega {
    min-width: 0;
  }
  .site-nav__dropdown--mega span {
    display: none;
  }
}
