/* =============================================
   BEATRIZ GONZALEZ — CSS Principal
   Palette : or doux, crème, vert sauge, blanc
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap");

:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-dark: #9a7a35;
  --cream: #faf7f2;
  --cream-dark: #f0ebe1;
  --sage: #8a9e8c;
  --sage-light: #c8d8c9;
  --text: #2d2a25;
  --text-light: #6b6560;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", sans-serif;
  --nav-h: 100px;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.italic {
  font-style: italic;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section[aria-labelledby="services-title"] {
  padding-top: 0;
}
.section--cream {
  background: var(--cream-dark);
}
.section--dark {
  background: var(--text);
  color: var(--white);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--gold-dark);
}
.btn--white:hover {
  background: var(--cream);
}

/* ---- DIVIDER ---- */
.divider {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 32px;
}
.divider--left {
  margin-left: 0;
}

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  background: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.badge--large {
  font-size: 0.9rem;
  padding: 8px 18px;
  margin-bottom: 24px;
}
h2.badge--large {
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}

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

.navbar__logo img {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}
.navbar__logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.navbar__cta {
  margin-left: 16px;
}

/* Burger */
.navbar__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  flex-direction: column;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.navbar__burger:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}
.navbar__burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s,
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__burger span:nth-child(1) {
  width: 18px;
}
.navbar__burger span:nth-child(2) {
  width: 22px;
}
.navbar__burger span:nth-child(3) {
  width: 14px;
}

.navbar__burger:hover span {
  background: var(--gold-dark);
}
.navbar__burger:hover span:nth-child(1),
.navbar__burger:hover span:nth-child(3) {
  width: 22px;
}

.navbar__burger.open {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.navbar__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 20px;
  background: var(--gold-dark);
}
.navbar__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 20px;
  background: var(--gold-dark);
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  z-index: 999;
}
.navbar__mobile.open {
  display: block;
}
.navbar__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text);
}
.navbar__mobile a:last-child {
  border-bottom: none;
}
.navbar__mobile .btn {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

/* =============================================
   HERO — NOUVEAU LAYOUT (photo + texte)
   ============================================= */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: calc((100vh - var(--nav-h)) * 0.744);
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
  background: linear-gradient(90deg, #e9e0cf 0%, #f8f3ea 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(255, 255, 255, 0.22) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__media {
  position: relative;
  height: 100%;
  overflow: hidden;
}

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

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.05) 45%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px 23px 26px 23px;
  color: var(--text);
  background: linear-gradient(
    180deg,
    rgba(255, 248, 235, 0.9) 0%,
    rgba(250, 247, 242, 0.98) 100%
  );
  border-left: 1px solid rgba(201, 168, 76, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(201, 168, 76, 0.08),
    transparent 45%
  );
  pointer-events: none;
}

.hero__content > * {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 7px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--text);
  text-shadow: none;
  margin-bottom: 3px;
  font-weight: 300;
}
.hero__title strong {
  display: block;
  font-weight: 600;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 3px;
}
.hero__location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-style: italic;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 14px;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.hero .btn--gold {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hero .btn--outline {
  color: var(--gold-dark);
  border-color: rgba(201, 168, 76, 0.8);
  background: rgba(255, 255, 255, 0.45);
}
.hero .btn--white {
  background: rgba(255, 255, 255, 0.72);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.hero__certif {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.25;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.hero__certif strong {
  display: block;
  color: var(--gold-dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* =============================================
   SERVICES CARDS
   ============================================= */
.services-intro {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  padding: 36px 32px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}
.card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.card__link {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card__link:hover {
  gap: 10px;
}

/* =============================================
   RECONNEXION SECTION
   ============================================= */
.section--reconnexion {
  padding: 40px 0;
  background: var(--cream-dark);
  margin-bottom: 80px;
}

.reconnexion-inner {
  max-width: 900px;
  margin: 0 auto;
}

.reconnexion__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.reconnexion__list {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 24px;
}

.reconnexion__list li {
  position: relative;
  padding: 16px 16px 16px 16px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 500;
  background: var(--white);
  border-radius: var(--radiuse);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-style: italic;
  font-size: 1.1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.reconnexion__list li:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(176, 141, 87, 0.1);
}

.reconnexion__conclusion {
  text-align: center;
  padding: 20px 0;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 600px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}
.about-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.about-strip__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius);
  pointer-events: none;
  transform: translate(10px, 10px);
}

/* =============================================
   TARIFS
   ============================================= */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.tarif-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.theta {
  background: var(--white);
}
.tarif-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.14);
  transform: translateY(-3px);
}
.tarif-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.15);
}

/* Badge coin supérieur droit (type "Économie") */
.tarif-card__badge-top {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 var(--radius) 0 var(--radius);
}

/* En-tête : nom + sous-titre durée */
.tarif-card__header {
  margin-bottom: 20px;
}
.tarif-card__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 400;
}
.tarif-card__subtitle {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Prix */
.tarif-card__price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-dark);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

/* Ligne économie sous le prix */
.tarif-card__economy {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

/* Liste de features */
.tarif-card__features {
  list-style: none;
  width: 100%;
  margin: 16px 0 28px;
  text-align: left;
}
.tarif-card__features li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tarif-card__features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Bouton pleine largeur en bas */
.tarif-card__btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.temoignage {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.temoignage__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.temoignage__author {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* =============================================
   SECTION TITRE CENTRÉ
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 0;
}
.section-header h2 {
  color: var(--text);
}
.section-header p {
  max-width: 560px;
  margin: 16px auto 0;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  font-weight: 300;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 28px;
}

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.03);
}
.blog-card__body {
  padding: 24px;
}
.blog-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.blog-card__meta {
  font-size: 0.8rem;
  color: var(--sage);
}

/* =============================================
   VIDÉOS — FAÇADE YOUTUBE
   ============================================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.yt-facade {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.yt-facade:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}
.yt-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.yt-facade__play svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s;
}
.yt-facade:hover .yt-facade__play svg {
  transform: scale(1.1);
}
.yt-facade__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
  font-size: 0.9rem;
  z-index: 2;
}
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   PAGE INTÉRIEURE HERO
   ============================================= */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--cream);
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}
.page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero h1 {
  color: var(--text);
  margin-bottom: 16px;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =============================================
   CONTENT PAGE
   ============================================= */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.content-body h2 {
  color: var(--text);
  margin: 40px 0 12px;
}
.content-body h2:first-child {
  margin-top: 0;
}
.content-body ul {
  list-style: none;
  margin: 16px 0 24px;
}
.content-body ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream-dark);
}
.content-body ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 12px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--cream-dark);
  margin-bottom: 20px;
  text-align: center;
}
.sidebar-box h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.sidebar-box .price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 8px 0 4px;
}
.sidebar-box .duration {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.sidebar-box .btn {
  width: 100%;
  text-align: center;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 140px;
  resize: vertical;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.temoignage footer {
  background: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 500;
}

footer ul li {
  margin-bottom: 8px;
}
footer ul li a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
footer ul li a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.social-links a:hover {
  border-color: var(--gold-light);
  background: rgba(201, 168, 76, 0.15);
}

/* =============================================
   BLOG ARTICLE
   ============================================= */
.article-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-header {
  margin-bottom: 40px;
}
.article-header h1 {
  margin-bottom: 16px;
}
.article-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.article-body h2 {
  margin: 40px 0 16px;
  font-size: 1.8rem;
}
.article-body h3 {
  margin: 28px 0 12px;
  font-size: 1.3rem;
}
.article-body p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}
.article-body ul {
  margin: 16px 0 24px 20px;
  list-style: disc;
}
.article-body ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}
.article-hero-image {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  display: block;
}
.article-lead {
  font-size: 1.12rem;
}
.article-callout {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-callout p {
  margin-bottom: 0;
}
.article-callout--soft {
  border-left-color: var(--sage);
  background: rgba(143, 159, 122, 0.08);
}
.article-callout--accent {
  border-left-color: var(--gold-light);
  background: rgba(201, 168, 76, 0.14);
}
.article-signoff {
  margin-top: 36px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* =============================================
   QUI SUIS-JE
   ============================================= */
.timeline {
  margin: 40px 0;
}
.timeline__item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: -32px;
  width: 1px;
  background: var(--cream-dark);
}
.timeline__item:last-child::before {
  display: none;
}
.timeline__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold-dark);
}
.timeline__content h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.timeline__content p {
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1400px) {
  .hero__certif {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .hero__media {
    min-height: 420px;
    height: auto;
    order: 1;
  }
  .hero__content {
    padding: 42px 24px 44px;
    order: 2;
    border-left: none;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
  }
  .about-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-strip__img {
    position: static;
  }

  .content-2col {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .navbar__nav {
    display: none;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }
  .hero__certif {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    text-align: center;
  }
  .hero__certif {
    display: none;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up--1 {
  animation-delay: 0.1s;
}
.fade-up--2 {
  animation-delay: 0.2s;
}
.fade-up--3 {
  animation-delay: 0.3s;
}
.fade-up--4 {
  animation-delay: 0.4s;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #61fd7d 0%, #2bb826 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(43, 184, 38, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(43, 184, 38, 0.4);
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    bottom: 12px;
    left: 12px;
    width: 45px;
    height: 45px;
  }
}

/* =============================================
   ABC TALK BLOCK
   ============================================= */
.abc-talk-block {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(201, 168, 76, 0.03) 100%
  );
  border: 1px solid var(--gold-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.abc-talk-block__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.abc-talk-block__text {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.65;
}
.abc-talk-block__text strong {
  color: var(--text);
}
.abc-talk-block__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.abc-talk-block__link:hover {
  gap: 8px;
}
