/* ============================================
   Variables & Reset
   ============================================ */
:root {
  --cream: #FAF6EE;
  --cream-dark: #F1E8DB;
  --primary: #BA6947;
  --primary-dark: #9A5038;
  --primary-light: #D4896A;
  --primary-pale: #F5EBE5;
  --warm: #EDD9CC;
  --dark: #3A3128;
  --medium: #6B5F50;
  --light-text: #8A7C6A;
  --white: #FFFFFF;
  --border: #E7DBCD;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --max-width: 1180px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-pill: 40px;
  --shadow-sm: 0 1px 6px rgba(74,54,38,0.06), 0 2px 18px rgba(74,54,38,0.05);
  --shadow: 0 4px 28px rgba(74,54,38,0.10);
  --shadow-md: 0 18px 40px -18px rgba(94,66,42,0.28);
  --shadow-lg: 0 24px 60px -20px rgba(94,66,42,0.30);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--warm); color: var(--primary-dark); }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.12; font-weight: 400; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); letter-spacing: -0.01em; }
em { font-style: italic; color: var(--primary); }

/* ============================================
   Layout
   ============================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 760px; margin: 0 auto; }
.section { padding: 5rem 0; }
.section--light { background: var(--cream-dark); }
.section--primary { background-color: var(--primary); background-image: radial-gradient(ellipse at 80% 110%, rgba(255,255,255,0.07) 0%, transparent 52%); color: var(--white); }
.section--primary .section__subtitle,
.section--primary .section__desc { color: rgba(255,255,255,0.85); }
.section--primary .section__title { color: var(--white); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section__header--left { text-align: left; margin: 0 0 3rem; }
.section__subtitle {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.85rem;
}
.section__subtitle::before {
  content: ''; display: block; width: 26px; height: 1px;
  background: currentColor; opacity: 0.85; flex-shrink: 0;
}
.section__title { color: var(--dark); margin-bottom: 1rem; }
.section__desc { color: var(--medium); font-size: 1.0625rem; line-height: 1.7; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.1rem; border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 500;
  letter-spacing: 0.03em; cursor: pointer; border: 1.5px solid transparent;
  transition: var(--transition); text-decoration: none;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 6px 20px -6px rgba(186,105,71,0.45); }
.btn--primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  box-shadow: 0 10px 26px -6px rgba(186,105,71,0.5); transform: translateY(-1px);
}
.btn--secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--secondary:hover { background: var(--primary-pale); }
.btn--outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--large { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ============================================
   Navigation
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.header--scrolled { background: rgba(250,246,238,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(74,54,38,0.07), 0 4px 24px rgba(74,54,38,0.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav__logo img { height: 64px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__logo-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--dark); }
.nav__logo-title { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); }
.nav__menu { display: flex; align-items: center; gap: 0.2rem; flex-shrink: 0; }
.nav__link {
  padding: 0.5rem 0.8rem; border-radius: 4px; font-size: 0.875rem;
  color: var(--medium); transition: var(--transition);
}
.nav__link:hover { color: var(--dark); }
.nav__link.active { color: var(--primary); }
.nav__link--cta {
  background: var(--primary); color: var(--white) !important;
  padding: 0.55rem 1.35rem; margin-left: 0.5rem; border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px -6px rgba(186,105,71,0.5);
}
.nav__link--cta:hover { background: var(--primary-dark); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* Hamburger → X */
.nav__toggle span { transition: transform 0.25s ease, opacity 0.2s ease; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: flex; }

  /* Overlay plein écran sous le header */
  .nav__menu {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2.25rem 2.5rem 3.5rem;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .nav__menu.open { display: flex; animation: navOverlayIn 0.3s ease both; }

  /* Items principaux — grand serif, séparés par une ligne, entrée échelonnée */
  .nav__menu > li { border-bottom: 1px solid var(--border); }
  .nav__menu > li:first-child { border-top: 1px solid var(--border); }
  .nav__menu > li:last-child { border: none; margin-top: 2.25rem; }
  .nav__menu.open > li { animation: navItemIn 0.5s cubic-bezier(0.22,1,0.36,1) both; }
  .nav__menu.open > li:nth-child(1) { animation-delay: 0.06s; }
  .nav__menu.open > li:nth-child(2) { animation-delay: 0.12s; }
  .nav__menu.open > li:nth-child(3) { animation-delay: 0.18s; }
  .nav__menu.open > li:nth-child(4) { animation-delay: 0.24s; }
  .nav__menu.open > li:nth-child(5) { animation-delay: 0.30s; }
  .nav__menu.open > li:nth-child(6) { animation-delay: 0.36s; }

  .nav__link {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 1.3rem 0.25rem;
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--dark);
    text-align: left;
    border-radius: 0;
    background: none;
    transition: color 0.25s ease, padding-left 0.3s cubic-bezier(0.22,1,0.36,1);
  }
  .nav__link::after {
    content: '→';
    font-family: var(--font-sans); font-size: 1.05rem; color: var(--primary);
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
  }
  .nav__link:hover, .nav__link.active { color: var(--primary); background: none; padding-left: 0.85rem; }
  .nav__link:hover::after, .nav__link.active::after { opacity: 1; transform: translateX(0); }

  /* Bouton CTA — conserve son style pill */
  .nav__link--cta {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: var(--primary);
    color: var(--white) !important;
    padding: 1.1rem 2rem;
    border-radius: var(--radius-pill);
    text-align: center;
    justify-content: center;
    padding-left: 2rem;
  }
  .nav__link--cta::after { content: none; }
  .nav__link--cta:hover { background: var(--primary-dark); color: var(--white) !important; padding-left: 2rem; }

  /* Header solide quand le menu est ouvert */
  .header--menu-open { background: var(--cream) !important; backdrop-filter: none !important; box-shadow: none !important; }
}

/* Animations du menu mobile */
@keyframes navOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden;
  padding-top: 80px;
}
.hero__content {
  padding: 4rem 3rem; text-align: center;
  max-width: 600px; margin: 0 auto;
}
.hero__tagline {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero__tagline::before { content: ''; display: block; width: 32px; height: 1px; background: var(--primary); }
.hero__title {
  font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.05;
  color: var(--dark); margin-bottom: 1.5rem; letter-spacing: -0.025em;
}
.hero__subtitle { font-size: 1.0625rem; color: var(--medium); line-height: 1.75; margin-bottom: 2.5rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.hero__zones { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: var(--light-text); }
.hero__zones svg { color: var(--primary); flex-shrink: 0; }
.hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.25rem; margin-top: 2rem;
  padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.hero__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__stat-value { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 500; color: var(--dark); line-height: 1; }
.hero__stat-label { font-size: 0.78rem; letter-spacing: 0.03em; color: var(--light-text); }
@media (max-width: 640px) { .hero__stats { gap: 1.5rem; } }
.hero__image {
  height: 100vh; position: relative; overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(250,246,238,0.55) 32%, transparent 58%);
}

/* Entrée orchestrée du hero d'accueil */
.hero__tagline  { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.05s backwards; }
.hero__title    { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s backwards; }
.hero__subtitle { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.28s backwards; }
.hero__actions  { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s backwards; }
.hero__zones    { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.52s backwards; }
.hero__stats    { animation: rise-in 0.8s cubic-bezier(0.22,1,0.36,1) 0.62s backwards; }
@keyframes hero-img-in {
  from { opacity: 0; transform: scale(1.045); }
  to   { opacity: 1; transform: scale(1); }
}
.hero__image img { animation: hero-img-in 1.3s cubic-bezier(0.22,1,0.36,1) backwards; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 3rem 0 2rem; max-width: 100%; margin: 0; }
  .hero__image { height: 60vw; max-height: 400px; }
  .hero__image::after { background: linear-gradient(to bottom, transparent 60%, var(--cream) 100%); }
}
@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
}

/* ============================================
   Service Cards
   ============================================ */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.service-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover .service-card__img { transform: scale(1.06); }
/* Voile dégradé toujours présent pour la lisibilité, renforcé au survol */
.service-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem 1.15rem;
  background: linear-gradient(to top,
    rgba(74,54,38,0.82) 0%, rgba(74,54,38,0.5) 32%, rgba(74,54,38,0.08) 62%, rgba(74,54,38,0) 100%);
  transition: background 0.45s ease;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top,
    rgba(74,54,38,0.9) 0%, rgba(74,54,38,0.62) 42%, rgba(74,54,38,0.22) 72%, rgba(74,54,38,0.04) 100%);
}
.service-card__title {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500;
  color: var(--white); line-height: 1.2;
  transform: translateY(0); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.service-card__desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.86); line-height: 1.5;
  margin-top: 0.45rem;
  opacity: 0; max-height: 0; overflow: hidden;
  transform: translateY(6px);
  transition: opacity 0.4s ease, max-height 0.5s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover .service-card__desc,
.service-card:focus-visible .service-card__desc { opacity: 1; max-height: 8rem; transform: translateY(0); }
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--warm); margin-top: 0.9rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease 0.05s, transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.05s;
}
.service-card:hover .service-card__link,
.service-card:focus-visible .service-card__link { opacity: 1; transform: translateY(0); }
.service-card__link i { font-style: normal; transition: transform 0.3s ease; }
.service-card:hover .service-card__link i { transform: translateX(4px); }
.service-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
/* Écrans tactiles : pas de survol → tout reste visible */
@media (hover: none) {
  .service-card__desc { opacity: 1; max-height: 8rem; transform: none; }
  .service-card__link { opacity: 1; transform: none; }
}
/* Tablette : 3 colonnes deviendraient trop étroites → 2 colonnes */
@media (min-width: 641px) and (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   About Teaser
   ============================================ */
.about-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-teaser__photo { border-radius: 190px 190px var(--radius) var(--radius); overflow: hidden; aspect-ratio: 3/4; max-width: 380px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.about-teaser__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser__text { color: var(--medium); line-height: 1.75; margin-bottom: 1.25rem; font-size: 1.0625rem; }

@media (max-width: 768px) {
  .about-teaser__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-teaser__photo { max-width: 340px; margin: 0 auto; }
}

/* ============================================
   Zone Badges
   ============================================ */
.zones__grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.zone-badge {
  padding: 0.5rem 1.25rem; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35); border-radius: 4px;
  font-size: 0.9rem; color: var(--white);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section { background: linear-gradient(150deg, var(--cream-dark) 0%, var(--warm) 60%, #e8cabb 100%); }
.cta-section__content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-section__title { margin-bottom: 1rem; }
.cta-section__text { color: var(--medium); font-size: 1.0625rem; margin-bottom: 2.5rem; line-height: 1.7; }
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CTA centrée en fin de page service (sur fond terracotta) */
.section-cta { text-align: center; max-width: 620px; margin: 0 auto; }
.section-cta .section__desc { margin-bottom: 2rem; }
.section-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   Page Hero (inner pages)
   ============================================ */
.page-hero {
  padding: 0;
  background:
    radial-gradient(ellipse 640px 440px at 88% -12%, rgba(186,105,71,0.14) 0%, transparent 64%),
    radial-gradient(ellipse 560px 400px at -6% 118%, rgba(237,217,204,0.6) 0%, transparent 62%),
    var(--cream-dark);
  position: relative; overflow: hidden;
  min-height: 300px; display: flex; align-items: flex-end;
  margin-top: -80px;
  border-bottom: 1px solid var(--border);
}
/* Ornements : anneaux fins en filigrane, signature discrète du site */
.page-hero::before {
  content: ""; position: absolute; top: -110px; right: -70px;
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(186,105,71,0.20);
  pointer-events: none;
}
.page-hero::after {
  content: ""; position: absolute; top: 40px; right: 160px;
  width: 140px; height: 140px; border-radius: 50%;
  border: 1px solid rgba(186,105,71,0.13);
  pointer-events: none;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: transparent;
}
.page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.3;
}
/* Voile dégradé : ancre le texte et donne de la profondeur */
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--cream) 0%, rgba(250,246,238,0.35) 45%, rgba(250,246,238,0) 100%);
}
.page-hero--has-img .page-hero__bg::after {
  background: linear-gradient(to top, var(--cream) 2%, rgba(250,246,238,0.55) 40%, rgba(250,246,238,0.1) 100%);
}
.page-hero__content {
  position: relative; z-index: 1;
  padding: 175px 0 3rem; width: 100%;
}
.page-hero--has-img { min-height: 380px; }
.page-hero--has-img .page-hero__bg img { opacity: 0.38; }
.page-hero--has-img .page-hero__content { padding-top: 180px; }
.page-hero__subtitle {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.85rem;
}
.page-hero__subtitle::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--primary); flex-shrink: 0;
}
.page-hero__title { font-weight: 300; color: var(--dark); margin-bottom: 1.1rem; }
.page-hero__desc { font-size: 1.0625rem; color: var(--medium); max-width: 560px; line-height: 1.7; }

/* Entrée orchestrée des pages intérieures */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero__subtitle { animation: rise-in 0.7s cubic-bezier(0.22,1,0.36,1) backwards; }
.page-hero__title    { animation: rise-in 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s backwards; }
.page-hero__desc     { animation: rise-in 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s backwards; }

/* ============================================
   Content Blocks
   ============================================ */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid rgba(232,221,213,0.45); }
.content-block:last-child { border-bottom: none; }
.content-block--reverse .content-block__visual { order: -1; }
.content-block__label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem;
}
.content-block__title { margin-bottom: 1.25rem; }
.content-block__text { color: var(--medium); line-height: 1.75; margin-bottom: 1rem; font-size: 1.0625rem; }
.content-block__visual {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  position: relative;
}
.content-block__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.content-block__visual:hover img { transform: scale(1.04); }
.content-block__visual--placeholder {
  background: var(--primary-pale); border-radius: var(--radius); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.content-block__visual--placeholder svg { width: 72px; height: 72px; color: var(--primary); opacity: 0.3; }
.content-block__list { margin: 1.25rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.content-block__list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.9375rem; color: var(--medium); line-height: 1.55;
}
.content-block__list li::before {
  content: ''; display: block; width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.1rem;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
}

@media (max-width: 768px) {
  .content-block { grid-template-columns: 1fr; gap: 2rem; }
  .content-block--reverse .content-block__visual { order: 0; }
}

/* ============================================
   Feature Panel (section sans photo, moderne)
   ============================================ */
.feature-panel {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--primary-pale) 0%, var(--cream) 52%, var(--warm) 145%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.75);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
}
.feature-panel::before {
  content: ""; position: absolute; right: -70px; top: -70px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(186,105,71,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.feature-panel > * { position: relative; z-index: 1; }
.feature-panel__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--white); color: var(--primary);
  box-shadow: var(--shadow-sm); margin-bottom: 1.35rem;
}
.feature-panel__text {
  color: var(--medium); font-size: 1.0625rem; line-height: 1.75;
  max-width: 720px; margin-bottom: 0.5rem;
}
.feature-panel__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem 2.5rem;
  margin: 1.5rem 0 2rem; max-width: 820px;
}
.feature-panel__list li { font-size: 0.9375rem; color: var(--dark); }
@media (max-width: 640px) {
  .feature-panel__list { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* Panneau avec image (sections principales) */
.feature-panel--media {
  display: grid; grid-template-columns: 1.3fr 0.82fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.feature-panel--media .feature-panel__body { min-width: 0; }
.feature-panel--media .feature-panel__list { grid-template-columns: 1fr; margin-bottom: 1.75rem; }
.feature-panel__media {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  width: 100%; max-width: 300px; margin-left: auto;
}
.feature-panel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.feature-panel--media:hover .feature-panel__media img { transform: scale(1.04); }
@media (max-width: 768px) {
  .feature-panel--media { grid-template-columns: 1fr; }
  .feature-panel__media { order: -1; max-width: 260px; margin: 0 auto 0.5rem; }
}

/* ============================================
   Highlight Box
   ============================================ */
.highlight-box {
  position: relative;
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.6rem 1.35rem 3.5rem;
  font-size: 0.9375rem; color: var(--dark); line-height: 1.7; margin: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}
.highlight-box::before {
  content: ""; position: absolute; left: 1.35rem; top: 1.45rem;
  width: 20px; height: 20px;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ============================================
   Formules (cartes sans prix)
   ============================================ */
.formule-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  max-width: 960px; margin: 0 auto;
}
.formule-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.formule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--warm); }
.formule-card--featured {
  background: linear-gradient(160deg, var(--primary-pale) 0%, var(--white) 70%);
  border-color: var(--primary-light);
}
.formule-card__tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem;
}
.formule-card__title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400;
  color: var(--dark); line-height: 1.15;
}
.formule-card__duration {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; color: var(--light-text); margin-top: 0.5rem;
}
.formule-card__duration svg { color: var(--primary); }
.formule-card__desc {
  font-size: 0.9375rem; color: var(--medium); line-height: 1.65;
  margin: 1.1rem 0 1.25rem;
}
.formule-card__list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.formule-card__list li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.875rem; color: var(--medium); line-height: 1.5;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
}
.formule-card__list li:last-child { border-bottom: none; }
.formule-card__list li::before {
  content: ''; display: block; width: 15px; height: 15px; flex-shrink: 0; margin-top: 0.15rem;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.formule-card__featured-note {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary);
}
.formule-card__cta {
  margin-top: auto; padding-top: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--primary);
  transition: gap 0.25s ease;
}
.formule-card__cta:hover { gap: 0.65rem; }
@media (max-width: 860px) {
  .formule-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ============================================
   Service meta (durée / options, sans prix)
   ============================================ */
.service-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  margin-top: 1.75rem;
}
.service-meta__item {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.45rem 0.95rem;
  font-size: 0.8125rem; color: var(--dark); white-space: nowrap;
}
.service-meta__item svg { color: var(--primary); flex-shrink: 0; }
.service-meta__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--primary);
  padding: 0.45rem 0.5rem; transition: gap 0.25s ease;
}
.service-meta__link:hover { gap: 0.6rem; }

/* ============================================
   Price Options inline
   ============================================ */
.price-option {
  background: var(--primary-pale); border-radius: var(--radius-sm);
  padding: 1rem 1.5rem; flex: 1; min-width: 170px;
}
.price-option--gold { background: var(--warm); }
.price-option__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.4rem; }
.price-option--gold .price-option__label { color: var(--primary-dark); }
.price-option__price { font-family: var(--font-serif); font-size: 1.75rem; color: var(--dark); }
.price-option__detail { font-size: 0.8rem; color: var(--light-text); }

/* ============================================
   Pricing
   ============================================ */
.pricing__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.pricing-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.pricing-card__header { background: var(--primary-pale); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
.pricing-card__category { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.4rem; }
.pricing-card__title { font-family: var(--font-serif); font-size: 1.375rem; color: var(--dark); }
.pricing-card__body { padding: 1.5rem 2rem; }
.pricing-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.875rem 0; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.pricing-item:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-item__name { color: var(--dark); line-height: 1.4; flex: 1; }
.pricing-item__detail { font-size: 0.8rem; color: var(--light-text); margin-top: 0.2rem; }
.pricing-item__right { text-align: right; flex-shrink: 0; }
.pricing-item__price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary); font-weight: 400; }
.pricing-item__charge { font-size: 0.75rem; color: var(--light-text); margin-top: 0.1rem; }
.pricing-note {
  background: var(--warm); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  font-size: 0.9rem; color: var(--dark); margin-top: 2.5rem; line-height: 1.65;
}

/* ============================================
   Contact
   ============================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info__item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-info__icon {
  width: 44px; height: 44px; background: var(--primary-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-info__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.25rem; }
.contact-info__value { font-size: 1rem; color: var(--dark); line-height: 1.55; }
.contact-info__value a:hover { color: var(--primary); }
.contact-social { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.contact-social a { display: flex; align-items: center; gap: 0.4rem; color: var(--primary); }
.booking-box {
  background: var(--primary-pale); border: 1px solid var(--warm);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem;
}
.booking-box__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem;
}
.booking-box__text { font-size: 0.9375rem; color: var(--medium); margin-bottom: 1rem; line-height: 1.55; }
.form-required { color: var(--primary); }
.btn--block { width: 100%; justify-content: center; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-form__title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--dark); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.form-input, .form-textarea, select.form-input {
  width: 100%; padding: 0.875rem 1.125rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.9375rem;
  color: var(--dark); background: var(--cream); transition: var(--transition); outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(186,105,71,0.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--light-text); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { background: var(--primary-pale); border: 1px solid var(--warm); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: 0.9375rem; color: var(--primary-dark); display: none; margin-bottom: 1.5rem; }

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================
   Footer
   ============================================ */
.footer { background: linear-gradient(165deg, #3a3128 0%, #251d15 100%); color: rgba(255,255,255,0.62); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; padding: 4rem 1.5rem 3rem; max-width: var(--max-width); margin: 0 auto; }
.footer__logo { height: 104px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__tagline { font-size: 0.9rem; font-style: italic; font-family: var(--font-serif); opacity: 0.5; margin-top: 0.5rem; }
.footer__heading { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 1.25rem; }
.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { font-size: 0.9375rem; transition: var(--transition); }
.footer__nav a:hover { color: var(--white); }
.footer__contact p { font-size: 0.9375rem; margin-bottom: 0.6rem; line-height: 1.5; }
.footer__contact a { transition: var(--transition); }
.footer__contact a:hover { color: var(--white); }
.footer__social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer__social a:hover { background: var(--primary); color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; } }

/* ============================================
   Timeline (about page)
   ============================================ */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0.6rem; top: 0.5rem; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -1.9rem; top: 0.45rem; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--primary); }
.timeline-year { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.4rem; }
.timeline-title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--dark); margin-bottom: 0.5rem; }
.timeline-text { font-size: 0.9375rem; color: var(--medium); line-height: 1.65; }

/* ============================================
   Value cards
   ============================================ */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem 1.35rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.value-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.value-card__number {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500;
  color: var(--primary); line-height: 1; margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.value-card__number::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--primary); vertical-align: middle; margin-right: 0.5rem; opacity: 0.6; }
.value-card__title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--dark); margin-bottom: 0.4rem; }
.value-card__text { font-size: 0.85rem; color: var(--medium); line-height: 1.55; }

/* ============================================
   Stat cards (chiffres clés)
   ============================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.25rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.4rem;
  text-align: center; box-shadow: var(--shadow-sm);
}
.stat-card__value {
  display: block; font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 2.8rem); color: var(--primary); line-height: 1;
}
.stat-card__label { font-size: 0.875rem; color: var(--medium); margin-top: 0.65rem; line-height: 1.5; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .stat-card { display: flex; align-items: center; gap: 1.25rem; text-align: left; padding: 1.25rem 1.4rem; }
  .stat-card__value { font-size: 2rem; flex-shrink: 0; min-width: 84px; }
  .stat-card__label { margin-top: 0; }
}

/* ============================================
   Duo cards (deux colonnes comparées)
   ============================================ */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 960px; margin: 0 auto; }
.duo-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.duo-card__title {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400;
  color: var(--dark); margin-bottom: 1rem; padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.duo-card .content-block__list { margin: 0; }
@media (max-width: 768px) { .duo-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ============================================
   Pillar cards (3 vignettes en ligne)
   ============================================ */
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1080px; margin: 3rem auto 0;
}
.pillar-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 18px 40px -18px rgba(45, 57, 64, 0.28));
  border-color: var(--primary-light);
}
.pillar-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--primary-pale); color: var(--primary);
  margin-bottom: 1.4rem;
}
.pillar-card__title {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500;
  color: var(--dark); line-height: 1.25; margin-bottom: 0.85rem;
}
.pillar-card__text { font-size: 0.9688rem; color: var(--medium); line-height: 1.7; margin: 0; }
@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: 1fr; max-width: 480px; gap: 1.1rem; }
  .pillar-card { padding: 1.85rem 1.6rem; }
}

/* ============================================
   Steps (liste numérotée éditoriale)
   ============================================ */
.steps { list-style: none; counter-reset: step; margin-top: 1.5rem; }
.step {
  counter-increment: step;
  display: flex; gap: 1.4rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--border);
}
.step:first-child { border-top: 1px solid var(--border); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.5rem; color: var(--primary); line-height: 1.2;
  flex-shrink: 0; min-width: 2.2rem;
}
.step__title {
  display: block; font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500; color: var(--dark); margin-bottom: 0.25rem;
}
.step__text { font-size: 0.9375rem; color: var(--medium); line-height: 1.6; }

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s cubic-bezier(0.25,0.1,0.25,1), transform 0.5s cubic-bezier(0.25,0.1,0.25,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }
.fade-in-delay-7 { transition-delay: 0.1s; }
.fade-in-delay-8 { transition-delay: 0.2s; }
.fade-in-delay-9 { transition-delay: 0.3s; }

/* ============================================
   Accessibilité — respect du mouvement réduit
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   Responsive — Intermédiaire (max 1100px)
   ============================================ */
@media (max-width: 1100px) {
  .nav__link { padding: 0.5rem 0.55rem; font-size: 0.8375rem; }
  .nav__link--cta { padding: 0.5rem 1rem; }
}

/* ============================================
   Responsive — Tablette (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__content { padding: 3rem 2rem; }
  .about-teaser__grid { gap: 3rem; }
  .content-block { gap: 2.5rem; }
  .contact__grid { gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}

/* ============================================
   Responsive — Petite tablette (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { height: 55vw; max-height: 380px; }
  .hero__image::after { background: linear-gradient(to bottom, transparent 50%, var(--cream) 95%); }
  .hero__content { padding: 2rem 0 3rem; max-width: 100%; margin: 0; }

  /* Page hero */
  .page-hero { min-height: 240px; margin-top: -68px; }
  .page-hero__content { padding-top: 155px !important; padding-bottom: 2.25rem; }

  /* Sections */
  .section__header { margin-bottom: 2.5rem; }

  /* About */
  .about-teaser__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-teaser__photo { max-width: 300px; margin: 0 auto; }

  /* Value grid (override inline style) */
  .value-grid,
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
}

/* ============================================
   Responsive — Mobile (max 640px)
   ============================================ */
@media (max-width: 640px) {
  :root { --radius: 6px; }

  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }

  /* Typographie */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }

  /* Navigation */
  .nav { height: 68px; }
  .nav__logo img { height: 52px; }
  .nav__menu { top: 68px; padding: 2rem 2rem 3.5rem; }
  .nav__link { padding: 1.25rem 0; font-size: 1.625rem; }

  /* Hero — recaler par rapport à la nav 68px */
  .hero { padding-top: 68px; }

  /* Hero */
  .hero__image { height: 72vw; max-height: 300px; }
  .hero__content { padding: 1.5rem 0 2.5rem; }
  .hero__tagline { font-size: 0.7rem; margin-bottom: 0.875rem; }
  .hero__tagline::before { width: 20px; }
  .hero__title { font-size: 1.9rem; margin-bottom: 0.875rem; }
  .hero__subtitle { font-size: 0.9375rem; margin-bottom: 1.5rem; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 1.25rem; justify-content: center; }
  .hero__actions .btn { width: auto; padding: 0.7rem 1.25rem; font-size: 0.875rem; min-height: 44px; }
  .hero__zones { font-size: 0.78rem; flex-wrap: wrap; line-height: 1.5; }

  /* Page hero */
  .page-hero { min-height: 220px; margin-top: -68px; }
  .page-hero__content { padding-top: 145px !important; padding-bottom: 2rem; }
  .page-hero__title { font-size: 2rem; }
  .page-hero__desc { font-size: 0.9375rem; }

  /* Services */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Content blocks */
  .content-block { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
  .content-block--reverse .content-block__visual { order: 0; }
  .content-block__text { font-size: 1rem; }

  /* CTA */
  .cta-section__actions { flex-direction: column; }
  .cta-section__actions .btn { width: 100%; justify-content: center; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card__header,
  .pricing-card__body { padding: 1.25rem; }

  /* Price options (inline flex dans massage.html) */
  .price-option { flex: 0 0 100%; min-width: 0; }

  /* Value grid (override inline style) */
  .value-grid,
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Contact */
  .contact__grid { gap: 2rem; }
  .contact-form { padding: 1.5rem; }
  .contact-form__title { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* iOS : empêche le zoom automatique sur les inputs */
  .form-input,
  .form-textarea,
  select.form-input { font-size: 16px; }

  /* Sections générales */
  .section__header { margin-bottom: 2rem; }
  .section__desc { font-size: 1rem; }

  /* Footer */
  .footer__grid { padding: 2.5rem 1.25rem 2rem; gap: 1.75rem; }
  .footer__logo { height: 88px; }
  .footer__bottom { padding: 1rem 1.25rem; font-size: 0.75rem; }

  /* Boutons — taille minimum pour le touch */
  .btn { min-height: 48px; padding: 0.875rem 1.5rem; }
  .btn--large { min-height: 52px; padding: 1rem 2rem; }
  .nav__link--cta { min-height: 44px; }

  /* Zone badges */
  .zone-badge { font-size: 0.82rem; padding: 0.45rem 1rem; }

  /* Highlight box — conserver la place de l'icône à gauche */
  .highlight-box { font-size: 0.9rem; padding: 1rem 1.25rem 1rem 3.1rem; }
  .highlight-box::before { left: 1.1rem; top: 1.15rem; }

  /* Timeline */
  .timeline { padding-left: 2rem; }
  .timeline-title { font-size: 1.2rem; }
  .timeline-text { font-size: 0.9rem; }

  /* ════════════════════════════════════════
     Polish smartphone : centrage & respiration
     ════════════════════════════════════════ */

  /* Hero — micro-stats empilées et centrées */
  .hero__title { font-size: 2.1rem; line-height: 1.1; }
  .hero__stats { flex-direction: column; align-items: center; gap: 1.05rem; margin-top: 1.75rem; padding-top: 1.5rem; }
  .hero__stat { align-items: center; }
  .hero__stat-value { font-size: 1.4rem; }

  /* Page hero (pages intérieures) — centré */
  .page-hero__content { text-align: center; }
  .page-hero__subtitle { justify-content: center; }
  .page-hero__desc { margin-left: auto; margin-right: auto; }

  /* En-têtes de section alignés à gauche → centrés sur mobile */
  .section__header--left { text-align: center; margin-left: auto; margin-right: auto; }

  /* Blocs de contenu — titres/texte centrés, listes centrées mais lisibles */
  .content-block { text-align: center; }
  .content-block__list { width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; text-align: left; }
  .content-block__visual { margin-left: auto; margin-right: auto; }

  /* Panneaux « feature » — centrés */
  .feature-panel { text-align: center; }
  .feature-panel__text { margin-left: auto; margin-right: auto; }
  .feature-panel__list { width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; text-align: left; }

  /* Vignettes « pilier » — centrées */
  .pillar-card { text-align: center; align-items: center; }
  .pillar-card__text { max-width: 30ch; }

  /* L'encart highlight garde son texte à gauche (icône à gauche) */
  .highlight-box { text-align: left; }
}

/* ── Services sub-nav ──────────────────────────────────────────────────── */
.services-subnav {
  position: sticky; top: 80px;
  z-index: 90;
  background: rgba(250,246,238,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.services-subnav__track {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: safe center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-subnav__track::-webkit-scrollbar { display: none; }
/* Contrôle segmenté : un seul bloc cohérent et clairement interactif */
.services-subnav__list {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  list-style: none; margin: 0;
  padding: 4px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: inset 0 1px 3px rgba(74,54,38,0.06);
  flex-shrink: 0;
}
.services-subnav__dot { display: none; }
.services-subnav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.25s ease;
}
.services-subnav__label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--medium);
  transition: color 0.2s ease;
}
.services-subnav__link:hover { background: rgba(255,255,255,0.6); }
.services-subnav__link:hover .services-subnav__label { color: var(--dark); }
/* Onglet actif : pastille terracotta, texte blanc */
.services-subnav__link.active {
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(186,105,71,0.30);
  cursor: default;
}
.services-subnav__link.active .services-subnav__label { color: var(--white); font-weight: 600; }
.services-subnav__bar { display: none; }
@media (max-width: 960px) { .services-subnav { top: 68px; } }
@media (max-width: 640px) {
  .services-subnav__track { padding: 0.7rem 1.25rem; }
}

/* ── Pager services (précédent / suivant) ──────────────────────────────── */
.service-pager {
  max-width: 820px; margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  border-top: 1px solid var(--border);
}
.service-pager__link {
  display: inline-flex; align-items: center; gap: 1rem;
  flex: 1; min-width: 0;
}
.service-pager__link--next { justify-content: flex-end; text-align: right; }
.service-pager__sep { width: 1px; align-self: stretch; background: var(--border); flex-shrink: 0; }
.service-pager__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary); color: var(--white);
  box-shadow: 0 2px 8px rgba(186,105,71,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-pager__link:hover .service-pager__icon {
  transform: scale(1.1);
  box-shadow: 0 5px 16px rgba(186,105,71,0.38);
}
.service-pager__meta { display: flex; flex-direction: column; min-width: 0; }
.service-pager__cue {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--light-text); margin-bottom: 0.25rem;
}
.service-pager__name {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--dark);
  line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.service-pager__link:hover .service-pager__name { color: var(--primary); }
@media (max-width: 540px) {
  .service-pager { padding: 2.5rem 1.25rem; gap: 0.75rem; }
  .service-pager__sep { display: none; }
  .service-pager__link { gap: 0.65rem; }
  .service-pager__icon { width: 40px; height: 40px; }
  .service-pager__name { font-size: 1.05rem; }
  .service-pager__cue { font-size: 0.6rem; letter-spacing: 0.1em; }
}

/* ── Definition (éditorial) ────────────────────────────────────────────── */
.section--definition { padding-top: 0; padding-bottom: 0; }
.section--definition .container { padding-top: 4rem; padding-bottom: 4rem; }
.definition { max-width: 760px; margin: 0 auto; text-align: center; }
.definition__eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.definition__eyebrow::after {
  content: ""; display: block; width: 32px; height: 1px;
  background: var(--primary-light); margin: 0.85rem auto 0;
}
.definition__lead {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.32; color: var(--dark);
  margin-top: 1.5rem;
}
.definition__lead em { font-style: italic; color: var(--primary); }
.definition__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
  margin-top: 2.5rem; text-align: left;
}
.definition__card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.definition__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--warm); }
.definition__card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-pale); color: var(--primary);
  margin-bottom: 1rem;
}
.definition__card-label {
  display: block; font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500; color: var(--dark);
  margin-bottom: 0.4rem;
}
.definition__card p {
  font-size: 0.875rem; line-height: 1.6; color: var(--medium);
}
@media (max-width: 760px) {
  .definition__meta { grid-template-columns: 1fr; gap: 0.9rem; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.faq-answer {
  font-size: 0.9375rem;
  color: var(--medium);
  line-height: 1.7;
  max-width: 680px;
}
/* Accordéon (activé par JS — sans JS, tout reste visible) */
.faq--accordion .faq-question {
  position: relative; cursor: pointer; margin-bottom: 0;
  padding-right: 2.5rem; user-select: none; transition: color 0.2s ease;
}
.faq--accordion .faq-question:hover { color: var(--primary); }
.faq--accordion .faq-question:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 2px; }
.faq--accordion .faq-question::after {
  content: ''; position: absolute; right: 2px; top: 0.3em;
  width: 10px; height: 10px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(45deg); transition: transform 0.3s ease;
}
.faq--accordion .faq-item.open .faq-question::after { transform: rotate(-135deg); top: 0.6em; }
.faq--accordion .faq-answer {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.faq--accordion .faq-item.open .faq-answer { max-height: 600px; opacity: 1; margin-top: 0.85rem; }

/* ── Footer credits ────────────────────────────────────────────────────── */
.footer__bottom { display: flex; flex-direction: column; gap: 0.35rem; }
.footer__credits { color: rgba(255,255,255,0.22); font-size: 0.75rem; }
.footer__credits a { color: rgba(255,255,255,0.4); text-decoration: underline; transition: var(--transition); }
.footer__credits a:hover { color: rgba(255,255,255,0.75); }
.footer__bottom a { color: rgba(255,255,255,0.4); text-decoration: underline; transition: var(--transition); }
.footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* ── Cookie banner ─────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  border-top: 2px solid var(--primary);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cookie-banner--hidden { transform: translateY(110%); }
.cookie-banner__text { flex: 1; line-height: 1.55; }
.cookie-banner__text a { color: var(--primary-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.cookie-banner__btn--accept:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.cookie-banner__btn--refuse {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.25);
}
.cookie-banner__btn--refuse:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ── Legal page ────────────────────────────────────────────────────────── */
.legal-content { color: var(--medium); }
.legal-block { margin-bottom: 3rem; }
.legal-block h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-block h3 { font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 600; color: var(--dark); margin: 1.25rem 0 0.5rem; }
.legal-block p { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 0.75rem; }
.legal-block a { color: var(--primary); text-decoration: underline; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin: 1rem 0; }
.legal-table th { background: var(--dark); color: var(--white); padding: 0.75rem 1rem; text-align: left; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.04em; }
.legal-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-table tr:nth-child(even) td { background: var(--cream-dark); }
.legal-table code { font-size: 0.8rem; background: var(--primary-pale); color: var(--primary); padding: 1px 5px; border-radius: 3px; }
