:root {
  /* Palette “quiet luxury” */
  --ivory: #f6f1e6;
  --offwhite: #fbfaf7;
  --warm-gray: #6f6a63;
  --navy: #0e1a2b;
  --anthracite: #131416;

  /* Accents */
  --gold: #c8b06a; /* or plus doux (moins jaune) */

  /* UI */
  --header-height: 88px;
  --radius: 14px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.10);

  /* Texte */
  --text: rgba(19, 20, 22, 0.86);
  --muted: rgba(19, 20, 22, 0.62);
  --muted-2: rgba(19, 20, 22, 0.52);

  /* Liens header */
  --nav-text: rgba(255, 255, 255, 0.78);
}

/* Base */
html, body {
  background: var(--offwhite);
}

body {
  font-family: "Cormorant", serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Contenu sous header fixe */
.page-content {
  padding-top: var(--header-height);
}

/* Ancres */
section {
  scroll-margin-top: var(--header-height);
}

/* Helpers */
.bg-black {
  background-color: #000 !important;
}

/* Navbar */
.navbar {
  min-height: var(--header-height);
  background: var(--navy) !important; /* bleu nuit plutôt que noir pur */
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Logo image */
.site-logo {
  height: 72px;
  width: auto;
  display: block;
}

/* Liens menu (gris chaud -> or au hover) */
.nav-link-gold {
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--nav-text) !important;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-link-gold:hover,
.nav-link-gold:focus,
.nav-link-gold[aria-current="page"] {
  color: var(--gold) !important;
}

/* mobile spacing */
.navbar-nav .nav-link {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* =========================
   BANDEAU TITRE (intro-title)
   ========================= */
.intro-title {
  background: var(--ivory);
  padding: clamp(3.2rem, 6vw, 5.2rem) 0;
  text-align: center;
  border-bottom: 1px solid rgba(19, 20, 22, 0.08);
}

.intro-title__headline {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 0.6rem 0;
  color: rgba(19, 20, 22, 0.92);
}

.intro-title__subline {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.10em;
  color: rgba(19, 20, 22, 0.58);
  margin: 0;
}

/* =========================
   HERO
   ========================= */
.hero {
  min-height: calc(92vh - var(--header-height));
  background-image: url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  display: flex;
  align-items: center;
  padding: 3.2rem 0;
}

/* voile bleu nuit subtil (cohérence palette) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 26, 43, 0.30),
    rgba(14, 26, 43, 0.18)
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero__card {
  max-width: 860px;
  width: 100%;
  text-align: center;

  background: rgba(251, 250, 247, 0.80); /* offwhite translucide */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(19, 20, 22, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);

  padding: clamp(1.4rem, 3vw, 2.4rem);
}

/* Titre de hero (en H2 maintenant) */
.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: rgba(19, 20, 22, 0.90);
}

.hero__text {
  margin: 0 auto 0.95rem auto;
  max-width: 64ch;
  line-height: 1.85;
  font-size: 1.02rem;
  color: rgba(19, 20, 22, 0.72);
}

.hero__text--strong {
  margin-top: 0.6rem;
  font-weight: 600;
  color: rgba(19, 20, 22, 0.82);
}

/* =========================
   SECTIONS
   ========================= */
.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section--light {
  background: var(--offwhite);
}

.section--white {
  background: #ffffff;
}

.section--dark {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.86);
}

/* En-têtes de section */
.section__header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.section__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.12;
  margin: 0;
  color: rgba(19, 20, 22, 0.90);
}

.section__divider {
  width: 84px;
  height: 2px;
  margin: 1rem auto 0;
  background: rgba(19, 20, 22, 0.14);
}

/* Variante clair sur fond sombre */
.section__title--light {
  color: #ffffff;
}

.section__divider--light {
  background: rgba(255, 255, 255, 0.25);
}

/* Texte section */
.section__lead {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(19, 20, 22, 0.74);
  margin-bottom: 1.25rem;
}

.section__text {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.95;
  color: rgba(19, 20, 22, 0.68);
  margin-bottom: 1.1rem;
}

.section__text--strong {
  font-weight: 600;
  color: rgba(19, 20, 22, 0.80);
  margin-top: 0.6rem;
}

/* =========================
   AXES (Services)
   ========================= */
.axes {
  display: grid;
  gap: 1rem;
}

/* cartes plus “papier” (ivoire) */
.axis {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.1rem;

  background: var(--offwhite);
  border: 1px solid rgba(19, 20, 22, 0.10);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  box-shadow: var(--shadow-soft);
}

.axis__badge {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.06em;

  color: rgba(19, 20, 22, 0.70);
  background: rgba(19, 20, 22, 0.05);
  border: 1px solid rgba(19, 20, 22, 0.08);
}

.axis__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.28rem;
  margin: 0 0 0.35rem 0;
  line-height: 1.2;
  color: rgba(19, 20, 22, 0.88);
}

.axis__text {
  font-family: "Cormorant", serif;
  font-size: 1.05rem;
  color: rgba(19, 20, 22, 0.68);
  line-height: 1.9;
  margin: 0;
}

/* =========================
   CONTACT
   ========================= */
.contact__intro {
  font-family: "Cormorant", serif;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact__phone {
  margin-bottom: 1.2rem;
}

.contact__phone a {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  text-decoration: none;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.contact__phone a:hover {
  text-decoration: underline;
}

.contact__note {
  font-family: "Cormorant", serif;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.62);
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: #0a0d14; /* bleu nuit très profond */
  padding: 1.8rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__text {
  margin: 0;
  font-family: "Cormorant", serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border: 1px solid rgba(200, 179, 122, 0.35); /* doré léger */
  border-radius: 999px;
  line-height: 1;
}

.lang-switch .lang-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200, 179, 122, 0.85);
  text-decoration: none;
  opacity: 0.75;
}

.lang-switch .lang-item:hover {
  opacity: 1;
  text-decoration: none;
}

.lang-switch .lang-item.active {
  background: rgba(200, 179, 122, 0.14);
  opacity: 1;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 576px) {
  .axis {
    grid-template-columns: 1fr;
  }

  .axis__badge {
    width: 48px;
    height: 48px;
  }

  .hero__card {
    border-radius: 12px;
  }
}
