/* ============================================================
       VARIABLES & RESET
    ============================================================ */
:root {
  --fond: #fafaf7; /* blanc cassé très léger, chaud */
  --fond-alt: #f5f3ee; /* légèrement plus soutenu pour alterner les sections */
  --terracotta: #c97a5a; /* couleur principale chaude */
  --or: #c9a24d; /* accent doré */
  --or-light: rgba(201, 162, 77, 0.12); /* fond subtil or */
  --marine: #2d354d; /* titres & éléments forts — moins dominant */
  --marine-soft: rgba(45, 53, 77, 0.06); /* bordures, fonds très légers */
  --blanc: #ffffff;
  --text: #2d354d;
  --text-soft: #4a5060;
  --banner-h: 38px;
  --nav-h: 120px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--fond);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
       TOP BANNER
    ============================================================ */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: auto;
  min-height: var(--banner-h);
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 6px 1rem;
}
.top-banner-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

/* ============================================================
       NAVBAR
    ============================================================ */
.navbar {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 53, 77, 0.08);
  transition: box-shadow 0.4s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(45, 53, 77, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-logo-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--marine);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta a {
  background: var(--marine) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px;
  letter-spacing: 0.12em !important;
  transition: background 0.3s !important;
}
.nav-cta a:hover {
  background: var(--terracotta) !important;
}
.nav-cta a::after {
  display: none !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--marine);
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--banner-h);
  z-index: 999;
  background: var(--fond);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s,
    visibility 0.35s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--marine);
  letter-spacing: 0.08em;
}
.mobile-menu .mob-cta {
  font-family: "DM Sans", sans-serif !important;
  font-size: 0.85rem !important;
  background: var(--marine);
  color: var(--blanc) !important;
  padding: 0.7rem 2.5rem;
  border-radius: 50px;
}

/* ============================================================
       HERO
    ============================================================ */
.hero {
  padding-top: calc(var(--banner-h) + var(--nav-h));
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--fond);
  overflow: hidden;
}

.hero-left {
  padding: 6rem 4rem 6rem 6rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--marine);
  margin-bottom: 1.8rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: #3d4557;
  max-width: 480px;
  margin-bottom: 2.6rem;
  text-wrap: pretty;
  text-align: justify;
  hyphens: auto;
}
.hero-body strong {
  font-weight: 500;
  color: var(--marine);
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--marine);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: background 0.3s;
  text-align: center;
}
.btn-primary:hover {
  background: var(--terracotta);
}
.btn-secondary {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--marine);
  border-bottom: 1px solid var(--or);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.btn-secondary:hover {
  color: var(--terracotta);
}

.hero-note {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-soft);
  font-style: italic;
  opacity: 0.8;
}

.hero-right {
  position: relative;
  min-height: 600px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 53, 77, 0.35);
  z-index: 1;
}

/* ============================================================
       BANDEAU CITATION
    ============================================================ */
.bandeau-citation {
  background: var(--marine);
  padding: 3.5rem 8%;
  text-align: center;
}
.bandeau-citation blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: #f8f4f0;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}
.bandeau-citation cite {
  display: block;
  margin-top: 1.2rem;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
}

/* ============================================================
       ABOUT
    ============================================================ */
.about-outer {
  position: relative;
  overflow: hidden;
}
.about-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
  pointer-events: none;
}
.about-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.about {
  padding: 5rem 6%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-img-wrap {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.circle-img {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--fond-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow:
    rgb(255, 255, 255) 20px 40px 170px 40px,
    rgba(0, 0, 0) 0px 22px 70px 4px;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ci-large {
  width: 320px;
  height: 320px;
}

.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--marine);
  line-height: 1.2;
  margin-bottom: 1.8rem;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}
.divider-line {
  width: 48px;
  height: 2px;
  background: var(--or);
  margin-bottom: 2rem;
  text-align: justify;
  hyphens: auto;
}
.about-text p {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}
.about-text p strong {
  font-weight: 500;
  color: var(--marine);
}
.about-formation {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.2rem 1.6rem;
  background: rgba(201, 162, 77, 0.1);
  border-left: 3px solid var(--or);
  border-radius: 0 12px 12px 0;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--marine);
}

/* ============================================================
       NUMEROLOGIE — SECTION PRESENTATION
    ============================================================ */
.numer-intro {
  background: var(--fond-alt);
  padding: 7rem 6%;
}
.numer-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  text-align: justify;
  hyphens: auto;
}
.numer-text .section-label {
  text-align: left;
}
.numer-text .section-title {
  text-align: left;
}
.numer-text p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.9;
  color: #3d4557;
  margin-bottom: 1.2rem;
}
.numer-text p strong {
  font-weight: 500;
  color: var(--marine);
}

.numer-besoins {
  background: var(--marine);
  border-radius: 16px;
  padding: 2.5rem;
}
.numer-besoins-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: #f8f4f0;
  margin-bottom: 1.8rem;
}
.besoin-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.besoin-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.besoin-item p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(248, 244, 226, 0.95);
}

/* ============================================================
       BANDEAU ARBRE / METHODE
    ============================================================ */
.bandeau-methode {
  background: var(--terracotta);
  padding: 5rem 8%;
  text-align: center;
}
.bandeau-methode-inner {
  max-width: 700px;
  margin: 0 auto;
}
.bandeau-methode .section-label {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.bandeau-methode .section-title {
  color: #fff;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.bandeau-methode .divider-line {
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.35);
}
.bandeau-methode p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

/* ============================================================
       CONSULTATIONS
    ============================================================ */
.consultations {
  padding: 8rem 6%;
  max-width: 1200px;
  margin: 0 auto;
}
.consult-header {
  text-align: center;
  margin-bottom: 5rem;
}
.consult-header .section-label {
  text-align: center;
}
.consult-header .section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.consult-header .divider-line {
  margin: 0 auto 2rem;
}
.consult-header p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}

.consult-intro-note {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  padding: 1.4rem 2rem;
  background: var(--or-light);
  border-left: 3px solid var(--or);
  border-radius: 0 12px 12px 0;
}
.consult-intro-note p {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--marine);
  text-wrap: pretty;
}
.consult-intro-note p + p {
  margin-top: 0.4rem;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}
.consult-card {
  background: var(--blanc);
  border: 1.5px solid var(--terracotta);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.consult-card:hover {
  box-shadow: 0 12px 40px rgba(201, 122, 90, 0.18);
  transform: translateY(-4px);
}
.consult-card-num {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(45, 53, 77, 0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}
.consult-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--marine);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.consult-card-desc {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.8;
  color: #3d4557;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.consult-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(45, 53, 77, 0.07);
  padding-top: 1.2rem;
}
.consult-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}
.consult-meta-label {
  font-weight: 300;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}
.consult-meta-value {
  font-weight: 500;
  color: var(--marine);
}
.consult-price {
  margin-top: 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--terracotta);
}
.consult-price span {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-soft);
  font-family: "DM Sans", sans-serif;
}
.btn-consult-cta {
  display: block;
  margin-top: 1.2rem;
  text-align: center;
  padding: 0.65rem 1.2rem;
  border: 1.5px solid var(--terracotta);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-consult-cta:hover {
  background: var(--terracotta);
  color: #fff;
}

/* Formules additionnelles */
.consult-separator {
  margin: 3.5rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.consult-separator::before,
.consult-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(45, 53, 77, 0.12);
}
.consult-separator span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
}

.consult-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.consult-extra-card {
  background: var(--fond-alt);
  padding: 2rem;
  border-radius: 50px;
}
.consult-extra-card .consult-card-title {
  font-size: 1rem;
}
.consult-extra-card .consult-price {
  font-size: 1.4rem;
}

.consult-info {
  max-width: 720px;
  margin: 3.5rem auto 0;
  padding: 1.4rem 2rem;
  background: var(--or-light);
  border-left: 3px solid var(--or);
  border-radius: 0 12px 12px 0;
  text-align: left;
}
.consult-info p {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--marine);
  text-wrap: pretty;
}
.consult-info p:last-child {
  margin-bottom: 0;
}

/* ============================================================
       CTA BANDEAU
    ============================================================ */
.bandeau-cta {
  background: var(--fond-alt);
  padding: 7rem 8%;
  text-align: center;
}
.bandeau-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.bandeau-cta .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bandeau-cta p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
}
.bandeau-cta .btn-primary {
  margin-right: 1rem;
}
.bandeau-cta-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-soft);
  font-style: italic;
}

/* ============================================================
       CONTACT
    ============================================================ */
.contact {
  padding: 8rem 6%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-info .section-title {
  margin-bottom: 1.5rem;
}
.contact-info p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 0; /* annule l'ancien margin-bottom: 2.5rem */
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--fond-alt);
  border: 1px solid rgba(45, 53, 77, 0.08);
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 53, 77, 0.1);
  border-color: rgba(201, 122, 90, 0.25);
}
.contact-card--accent {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--or) 100%);
  border-color: transparent;
}
.contact-card--accent:hover {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(201, 122, 90, 0.35);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(45, 53, 77, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card--accent .contact-card-icon {
  background: rgba(255, 255, 255, 0.2);
}
.contact-card-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--marine);
  text-align: center;
}
.contact-card--accent .contact-card-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

/* Formulaire */
.contact-form-wrap {
  background: var(--blanc);
  border-radius: 16px;
  border: 1px solid rgba(45, 53, 77, 0.08);
  padding: 2.5rem;
}

input,
textarea::placeholder {
  color: #999;
  font-style: italic;
}

.contact-form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--marine);
  margin: 0 0 1.8rem;
}
.contact-form-wrap .form-group {
  margin-bottom: 1.2rem;
}
.contact-form-wrap label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  background: var(--fond);
  border: 1px solid rgba(45, 53, 77, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--marine);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  box-sizing: border-box;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--terracotta);
  background: var(--blanc);
}
.contact-form-wrap textarea {
  resize: vertical;
}

@media (max-width: 760px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
       REVEAL
    ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
       FOOTER
    ============================================================ */
.footer {
  background: var(--marine);
  padding: 4rem 6% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248, 244, 226, 0.1);
}
.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 244, 226, 0.65);
  margin: 1.2rem 0 1.8rem;
  max-width: 280px;
}
.footer-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ecru);
  margin-bottom: 0.2rem;
}
.footer-sub {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(248, 244, 226, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: rgba(248, 244, 226, 0.7);
  transition:
    border-color 0.3s,
    color 0.3s;
}
.footer-social a:hover {
  border-color: var(--or);
  color: var(--or);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.4rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(248, 244, 226, 0.65);
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--blanc);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  color: rgba(248, 244, 226, 0.65);
}
.footer-contact-item span {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(248, 244, 226, 0.65);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(248, 244, 226, 0.4);
  letter-spacing: 0.05em;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(248, 244, 226, 0.4);
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--ecru);
}

.footer-mail {
  margin-left: 0.3rem;
}

.creator_logo {
  width: 35px;
  height: auto;
  transition: filter 0.3s;
}

/* ============================================================
       TÉMOIGNAGES
    ============================================================ */
.temoignages {
  background: var(--fond-alt);
  padding: 7rem 6%;
}
.temoignages-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.temoignage-card {
  background: var(--blanc);
  border: 1.5px solid var(--terracotta);
  border-radius: 16px;
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.temoignage-card:hover {
  box-shadow: 0 12px 40px rgba(201, 122, 90, 0.15);
  transform: translateY(-4px);
}
.temoignage-quote {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.35;
  margin-bottom: -0.5rem;
}
.temoignage-text {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-soft);
  font-style: italic;
  flex-grow: 1;
}
.temoignage-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-top: 1px solid rgba(45, 53, 77, 0.07);
  padding-top: 1rem;
  margin-top: auto;
}

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

/* ============================================================
       FOOTER CREATOR LINK
    ============================================================ */
.footer-creator-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-creator-link span {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(248, 244, 226, 0.4);
  white-space: nowrap;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (min-width: 1400px) {
  .consultations {
    max-width: 1400px;
  }
  .consult-card {
    padding: 3rem 2.5rem;
  }
  .contact {
    max-width: 1100px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 3rem 2rem;
    order: 2;
  }
  .hero-right {
    min-height: 380px;
    order: 1;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .numer-intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .consult-grid {
    grid-template-columns: 1fr;
  }
  .consult-extra {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .navbar {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-left {
    padding: 2rem 1.5rem;
  }
  .about,
  .numer-intro,
  .consultations {
    padding: 5rem 5%;
  }
  .contact {
    padding: 5rem 5%;
  }
  .bandeau-citation {
    padding: 3rem 6%;
  }
  .bandeau-cta {
    padding: 5rem 6%;
  }
  .ci-large {
    width: 200px;
    height: 200px;
  }
  .consult-separator::before,
  .consult-separator::after {
    display: none;
  }
  .consult-separator {
    justify-content: center;
  }
}
