/* =============================================================================
   MAITRE MORGANE JOSEPH - styles.css - astr.studio
============================================================================= */

/* ---------------------------------------------------------------------------
   1. CUSTOM PROPERTIES
--------------------------------------------------------------------------- */
:root {
  --ivory:    #f0ebe6;
  --sand:     #ddd5c8;
  --taupe:    #765f5a;
  --espresso: #2f1a12;

  --ease-out-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out-quart:    cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-back:     cubic-bezier(0.34, 1.56, 0.64, 1);

  --dur-fast:      300ms;
  --dur-base:      600ms;
  --dur-slow:      900ms;
  --dur-cinematic: 1400ms;

  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --font-name: 'Playfair Display', Georgia, serif;

  --container-max: 1280px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);
  --nav-h:   96px;
  --nav-h-s: 64px;
  --section-gap: clamp(3.5rem, 7vw, 6rem);

  --fs-h1: clamp(2.4rem, 4.4vw, 3.5rem);
  --fs-h2: clamp(1.875rem, 3.5vw, 2.75rem);
  --fs-h3: clamp(1.4rem, 2.4vw, 2rem);
  --fs-h4: clamp(1.05rem, 1.4vw, 1.3rem);
  --fs-body: clamp(1rem, 1.15vw, 1.0625rem);
  --fs-small: clamp(0.8125rem, 0.95vw, 0.9375rem);
}

/* ---------------------------------------------------------------------------
   2. RESET
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 17px; -webkit-text-size-adjust: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

body {
  background: var(--espresso);
  color: var(--ivory);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.is-locked { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font: inherit; color: inherit; }
address { font-style: normal; }
abbr { text-decoration: none; cursor: help; }

/* ---------------------------------------------------------------------------
   3. SCROLL (native - smooth-scroll wrapper disabled for sticky support)
--------------------------------------------------------------------------- */
.scroll-content { position: static; }
.scroll-spacer  { display: none; }

/* ---------------------------------------------------------------------------
   4. CONTAINER
--------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---------------------------------------------------------------------------
   5. TYPOGRAPHY
--------------------------------------------------------------------------- */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.1;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-weight: 400; letter-spacing: -0.02em; text-wrap: balance; }
h2 { font-size: var(--fs-h2); font-weight: 500; letter-spacing: -0.01em; text-wrap: balance; }

h3,
h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

/* Présentation : le titre complet doit tenir sur une ligne en desktop */
#presentation .section__header h1 {
  font-size: clamp(2.3rem, 3.65vw, 2.95rem);
}

/* Interior pages whose section title is h1 but should use h2 scale visually */
#honoraires .section__header h1,
#faq .section__header h1,
#contact .section__header h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.01em;
}

#faq .section__header,
#contact .section__header {
  max-width: 46rem;
}

#faq .section__header h1 {
  max-width: 24ch;
  text-wrap: balance;
}

#contact .section__header h1 {
  max-width: 13ch;
}

.section__header > h1,
.section__header > h2 {
  position: relative;
  padding-bottom: 0.65rem;
}

.section__header > h1::after,
.section__header > h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(3.25rem, 8vw, 4.75rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(118,95,90,0.82), rgba(118,95,90,0.12));
}

.eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
}

p {
  line-height: 1.75;
  text-wrap: pretty;
}

/* ---------------------------------------------------------------------------
   6. CURSOR
--------------------------------------------------------------------------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
  transition: opacity var(--dur-fast) var(--ease-out-quart),
              transform var(--dur-fast) var(--ease-out-quart);
}

.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
  display: flex; align-items: center; justify-content: center;
  transition: width var(--dur-base) var(--ease-out-quart),
              height var(--dur-base) var(--ease-out-quart),
              background var(--dur-base) var(--ease-out-quart);
}

.cursor-ring__label {
  display: none;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  user-select: none;
}

.cursor-dot.hov-link  { opacity: 0; transform: translate(-50%,-50%) scale(0); }
.cursor-ring.hov-link { width: 72px; height: 72px; background: rgba(255,255,255,0.08); }

.cursor-dot.hov-img   { opacity: 0; transform: translate(-50%,-50%) scale(0); }
.cursor-ring.hov-img  { width: 96px; height: 96px; background: rgba(255,255,255,0.07); }
.cursor-ring.hov-img .cursor-ring__label { display: block; }

@media (pointer: coarse) {
  html,
  body,
  a,
  button,
  .btn {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ---------------------------------------------------------------------------
   7. PAGE OVERLAY
--------------------------------------------------------------------------- */
.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 8000;
  pointer-events: none;
  transition: opacity 800ms var(--ease-in-out-quart);
}
.page-overlay.gone { opacity: 0; }

/* ---------------------------------------------------------------------------
   8. NAVIGATION
--------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition:
    height var(--dur-base) var(--ease-in-out-quart),
    background var(--dur-base) var(--ease-in-out-quart),
    backdrop-filter var(--dur-base) var(--ease-in-out-quart),
    border-color var(--dur-base) var(--ease-in-out-quart),
    transform 500ms var(--ease-in-out-quart);
}

.nav.scrolled {
  height: var(--nav-h-s);
  background: rgba(47,26,18,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: rgba(240,235,230,0.08);
}

.nav.hidden { transform: translateY(-100%); }

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo { flex-shrink: 0; display: flex; align-items: center; }

.nav__logo-img {
  height: 44px; width: auto;
  transition: height var(--dur-base) var(--ease-in-out-quart);
}
.nav.scrolled .nav__logo-img { height: 32px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(240,235,230,0.75);
  position: relative;
  cursor: none;
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out-quart);
}
.nav__link:hover              { color: var(--ivory); }
.nav__link:hover::after       { transform: scaleX(1); }

.nav__links > li {
  display: flex;
  align-items: center;
}

.nav__cta { margin-left: 1rem; flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
  cursor: none;
}
.nav__toggle-line {
  display: block; width: 24px; height: 1px;
  background: var(--ivory);
  transition: transform var(--dur-fast) var(--ease-out-quart),
              opacity var(--dur-fast) var(--ease-out-quart);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------------
   9. BUTTONS
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    background var(--dur-fast) var(--ease-out-quart),
    color var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-quart),
    box-shadow var(--dur-fast) var(--ease-out-quart);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -72%;
  width: 44%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.24) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: transform 700ms var(--ease-out-quart);
  pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(360%) skewX(-20deg);
}

.btn--primary {
  background: var(--ivory);
  color: var(--espresso);
  border: 1px solid var(--ivory);
}
.btn--primary:hover { background: var(--sand); border-color: var(--sand); transform: scale(1.02); }
.btn--primary::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(118,95,90,0.15) 50%,
    transparent 100%
  );
}

.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(240,235,230,0.35);
}
.btn--outline:hover { background: rgba(240,235,230,0.07); border-color: rgba(240,235,230,0.7); }

.btn--ghost {
  background: transparent;
  color: rgba(240,235,230,0.65);
  border: 1px solid rgba(240,235,230,0.15);
}
.btn--ghost:hover { color: var(--ivory); border-color: rgba(240,235,230,0.4); }

.btn--full { width: 100%; justify-content: center; }

.btn__icon { flex-shrink: 0; transition: transform 400ms var(--ease-out-back); }
.btn:hover .btn__icon { transform: translateX(6px); }

/* ---------------------------------------------------------------------------
   10. SECTION BASE
--------------------------------------------------------------------------- */
.section {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.section__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}
.section__header .eyebrow { margin-bottom: 1rem; }

/* Editorial long-form copy */
.presentation__body > p,
.honoraires__text > p,
.home-about__body > p:not(.eyebrow),
.domaine-page .domaine-overview__panel > p:not(.eyebrow),
.domaine-page .domaine-section > p:not(.eyebrow),
.domaine-page .domaine-topic-plain > p:not(.eyebrow) {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
}

/* ---------------------------------------------------------------------------
   11. SECTION LIGHT / DARK
--------------------------------------------------------------------------- */
.section-dark {
  background: var(--espresso);
  color: var(--ivory);
}

.section-light {
  background: var(--ivory);
  color: var(--espresso);
}

/* Light section - child overrides for hardcoded colours */
.section-light .bg-word            { color: var(--taupe); opacity: 0.055; }
.section-light .section-sep__line  { background: var(--taupe); }

/* Pillars */
.section-light .pillar             { background: rgba(47,26,18,0.04); border-color: rgba(47,26,18,0.1); }
.section-light .pillar:hover       { border-color: rgba(47,26,18,0.25); box-shadow: 0 12px 32px rgba(47,26,18,0.08); }
.section-light .pillar__title      { color: var(--espresso); }
.section-light .pillar__text       { color: rgba(47,26,18,0.68); }
.section-light .presentation__body p { color: rgba(47,26,18,0.82); }
.section-light .presentation__img-wrap { background: rgba(47,26,18,0.08); }

/* H-cards */
.section-light .h-card             { background: rgba(47,26,18,0.04); border-color: rgba(47,26,18,0.1); }
.section-light .h-card:hover       { border-color: rgba(47,26,18,0.28); box-shadow: 0 24px 60px rgba(47,26,18,0.1); }
.section-light .h-card::before     { background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(47,26,18,0.07), transparent 60%); }
.section-light .h-card h2          { color: var(--espresso); }
.section-light .h-card p           { color: rgba(47,26,18,0.66); }
.section-light .honoraires__text p { color: rgba(47,26,18,0.8); }

/* Contact cards */
.section-light .c-card             { background: rgba(255,255,255,0.3); border-color: rgba(47,26,18,0.14); box-shadow: 0 14px 40px rgba(47,26,18,0.05); }
.section-light .c-card:hover       { border-color: rgba(47,26,18,0.28); }
.section-light .c-card__text,
.section-light .c-card address     { color: rgba(47,26,18,0.8); }
.section-light .c-card__link       { color: var(--taupe); text-decoration-color: rgba(118,95,90,0.35); }
.section-light .c-card__link:hover { color: var(--espresso); text-decoration-color: var(--espresso); }
.section-light .c-card__note       { color: rgba(47,26,18,0.52); opacity: 1; }
.section-light .contact__intro     { color: rgba(47,26,18,0.72); }

/* Form */
.section-light .form__input {
  background: rgba(255,255,255,0.72);
  border-color: rgba(47,26,18,0.22);
  color: var(--espresso);
}
.section-light .form__input::placeholder { color: rgba(47,26,18,0.42); }
.section-light .form__input:focus  { border-color: rgba(47,26,18,0.45); background: rgba(255,255,255,0.9); }
.section-light .form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f1a12' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 8px;
}
select::-ms-expand { display: none; }
.section-light .form__select option   { background: var(--ivory); color: var(--espresso); }
.section-light .form__label--check    { color: rgba(47,26,18,0.68); }
.section-light .rgpd-link { color: var(--taupe); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(118,95,90,0.45); }
.section-light .form__checkbox        { accent-color: var(--taupe); }
.section-light .form__success         { background: rgba(47,26,18,0.06); border-color: rgba(47,26,18,0.2); color: var(--taupe); }

/* Buttons on light */
.section-light .btn--primary {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}
.section-light .btn--primary:hover { background: rgba(47,26,18,0.82); border-color: rgba(47,26,18,0.82); }
.section-light .btn--primary::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.24) 50%,
    transparent 100%
  );
}
.section-light .btn--outline       { color: var(--espresso); border-color: rgba(47,26,18,0.3); }
.section-light .btn--outline:hover { background: rgba(47,26,18,0.06); border-color: rgba(47,26,18,0.55); }
.section-light .btn--outline::before,
.section-light .btn--ghost::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(118,95,90,0.15) 50%,
    transparent 100%
  );
}

/* Accordion on light */
.section-light .accordion__item       { border-top-color: rgba(47,26,18,0.14); }
.section-light .accordion__item:last-child { border-bottom-color: rgba(47,26,18,0.14); }
.section-light .accordion__item.open  { border-left-color: rgba(47,26,18,0.35); }
.section-light .accordion__label      { color: var(--espresso); }
.section-light .accordion__item.open .accordion__label { color: var(--taupe); }
.section-light .accordion__content    { border-left-color: rgba(118,95,90,0.28); }
.section-light .accordion__content p  { color: rgba(47,26,18,0.78); }
.section-light .accordion__content ul li { color: rgba(47,26,18,0.78); }
.section-light .accordion__content strong { color: var(--espresso); }
.section-light .faq__cat-title        { color: var(--taupe); }

/* Domaine topic plain on light */
.section-light .domaine-topic-plain p { color: rgba(47,26,18,0.78); }
.section-light .domaine-topic-plain h2 { color: var(--espresso); }
.section-light .domaine-topic-plain h3 { color: var(--espresso); }

/* Related cards + FAQ cat intro on light */
.section-light .related-card               { color: var(--espresso); border-color: rgba(47,26,18,0.12); }
.section-light .related-card:hover         { background: rgba(47,26,18,0.05); border-color: rgba(47,26,18,0.22); }
.section-light .related-card__num         { color: var(--taupe); }
.section-light .related-card__title,
.section-light .related-card__name        { color: var(--espresso); }
.section-light .related-card__teaser      { color: rgba(47,26,18,0.78); }
.section-light .faq__cat-intro            { color: rgba(47,26,18,0.68); }

/* Hub cards dark-on-light (domaines.html overview) — dark cards stand out on ivory page */
.section-light .hub-card            { background: rgba(47,26,18,0.88); border-color: rgba(240,235,230,0.08); }
.section-light .hub-card:hover      { background: rgba(47,26,18,0.94); border-color: rgba(240,235,230,0.14); transform: translateY(-4px); }
/* Hub CTA block stays light */
.section-light .hub-cta-block       { background: rgba(47,26,18,0.05); border-color: rgba(47,26,18,0.12); }
.section-light .hub-cta-block p     { color: rgba(47,26,18,0.72); }

/* Presentation sub-headings (h2 styled headings) on light */
.section-light .presentation__body-h2 { color: var(--taupe); opacity: 1; }

/* ---------------------------------------------------------------------------
   12. SECTION LINE SEPARATORS
--------------------------------------------------------------------------- */
.section-sep { display: flex; justify-content: center; padding: 1rem 0; }

.section-sep__line {
  width: 200px; height: 1px;
  background: var(--taupe);
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1200ms var(--ease-in-out-quart);
}
.section-sep__line.is-visible { transform: scaleX(1); }

/* ---------------------------------------------------------------------------
   13. ORNAMENT SEPARATORS (SVG between sections)
--------------------------------------------------------------------------- */
.ornament-sep {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
  color: var(--taupe);
}

.ornament-sep__svg {
  width: 240px;
  height: 24px;
  overflow: visible;
}

.reveal-ornament {
  opacity: 0;
  transition: opacity 1000ms var(--ease-out-quart) 200ms;
}
.reveal-ornament.is-visible { opacity: 1; }

/* ---------------------------------------------------------------------------
   14. ORNAMENT CORNERS
--------------------------------------------------------------------------- */
.ornament-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ornament-corner {
  position: absolute;
  width: 60px; height: 60px;
  color: var(--taupe);
}
.ornament-corner--tl { top: 1.5rem;    left: 1.5rem;  }
.ornament-corner--tr { top: 1.5rem;    right: 1.5rem; }
.ornament-corner--bl { bottom: 1.5rem; left: 1.5rem;  }
.ornament-corner--br { bottom: 1.5rem; right: 1.5rem; }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem, 4vw, 2rem);
}

.section-divider__line {
  flex: 1;
  max-width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118,95,90,0.42), transparent);
}

.section-divider__ornament {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(118,95,90,0.72);
}

.section-divider--sand {
  background: linear-gradient(180deg, var(--sand) 0%, #d4c8bb 100%);
}

/* ---------------------------------------------------------------------------
   15. IMAGE PLACEHOLDER SHIMMER
--------------------------------------------------------------------------- */
.img-placeholder {
  background: linear-gradient(90deg, rgba(118,95,90,0.1) 0%, rgba(118,95,90,0.25) 50%, rgba(118,95,90,0.1) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

.section-light .img-placeholder {
  background: linear-gradient(90deg, rgba(47,26,18,0.05) 0%, rgba(47,26,18,0.13) 50%, rgba(47,26,18,0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------------------------------------------------------------------------
   16. BG DECORATIVE WORD
--------------------------------------------------------------------------- */
.bg-word {
  position: absolute;
  top: 50%; right: -4%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 200;
  color: var(--taupe);
  opacity: 0.055;
  pointer-events: none;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}
.bg-word--left { left: -4%; right: auto; }

/* ---------------------------------------------------------------------------
   17. HERO
   DOM audit 2026-06-02
   - section hero: section#accueil.hero
   - image wrapper: .hero__bg-img.parallax
   - image node: .hero__bg-photo
   - content wrapper: .hero__inner > .hero__content
   - animated content nodes: .hero__eyebrow, .hero__title, .hero__manifesto,
     .hero__ctas, .hero__scroll-indicator
   Existing transitions were already present, but the entry sequence was
   triggered under .site-loader, making it effectively invisible on load.
--------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  mix-blend-mode: overlay;
}

.hero__sticky {
  position: relative;
  height: 100%;
}

/* Background image layer — oversized to give Ken Burns + parallax room to move */
.hero__bg-img {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
  will-change: transform;
}
.hero__bg-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform-origin: 62% 46%;
  animation: hero-image-settle 1800ms var(--ease-out-expo) both,
             hero-kenburns 26s ease-in-out 1800ms infinite alternate;
  will-change: transform;
}
@keyframes hero-image-settle {
  from { transform: scale(1.12); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06) translateY(-1.5%); }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(23,12,8,0.94) 0%, rgba(31,16,12,0.78) 34%, rgba(31,16,12,0.46) 58%, rgba(31,16,12,0.8) 100%),
    linear-gradient(to bottom, rgba(47,26,18,0.06) 0%, rgba(47,26,18,0.18) 48%, rgba(47,26,18,0.72) 100%);
}

/* Radial pulse */
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 15% 25%, rgba(118,95,90,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(221,213,200,0.07) 0%, transparent 70%);
  animation: heroPulse 12s ease-in-out infinite alternate;
}
@keyframes heroPulse { to { transform: scale(1.1); } }

/* Canvas particles */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 1500ms var(--ease-out-quart);
}
.hero__canvas.ready { opacity: 1; }

/* Massive JOSEPH text */
.hero-massive-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.hero-massive-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22vw;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;

  background: url('assets/cour-appel-montpellier-colonnes-hero.jpg') center / cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(221,213,200,0.08);

  opacity: 0.28;
  will-change: font-size, opacity;
}

/* Hero content */
.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding-top: var(--nav-h);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 0;
}

.hero__content {
  position: relative;
  width: min(100%, 56rem);
  max-width: min(100%, 56rem);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  will-change: transform, opacity;
}
.hero__content::before {
  content: none;
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
  color: rgba(227,216,205,0.84);
  position: relative;
  padding-bottom: 1.1rem;
}
.hero__eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 2.4rem; height: 1px;
  background: var(--sand);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
}
.hero__eyebrow.entered::after {
  animation: line-grow 550ms 450ms var(--ease-out-expo) forwards;
}
@keyframes line-grow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
.hero__title {
  font-family: var(--font-name);
  margin-bottom: 1.4rem;
  color: rgba(248,243,238,0.97);
  text-shadow: none;
  display: flex;
  flex-direction: column;
}
.hero__name-main {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.hero__name-sub {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.6rem, 0.9vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(221,213,200,0.65);
  margin-top: 0.7rem;
}

.hero__manifesto {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(234,223,211,0.88);
  line-height: 1.55;
  margin-bottom: 2.2rem;
  max-width: 56ch;
  text-shadow: none;
}
.hero__manifesto-word {
  color: var(--sand);
  font-style: italic;
}

.hero__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero__visual { display: flex; justify-content: center; }

.hero__portrait-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
}
.hero__portrait-frame.is-visible {
  clip-path: inset(0 0 0% 0);
  transition: clip-path var(--dur-cinematic) var(--ease-in-out-quart);
}

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

.hero__portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(47,26,18,0.55) 100%);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  z-index: 4;
}
.hero__scroll-line {
  display: block; width: 1px; height: 48px;
  background: rgba(221,213,200,0.55);
  transform-origin: top;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.55); opacity: 1; }
}
.hero__scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(221,213,200,0.68);
}

/* Hero entry animations */
.hero-anim {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(7px);
  transition:
    opacity 900ms var(--ease-out-expo),
    transform 900ms var(--ease-out-expo),
    filter 900ms var(--ease-out-expo);
}
.hero-anim.entered {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Line-mask reveal for hero name */
.hero__name-main .line-mask {
  display: block;
  overflow: hidden;
  line-height: inherit;
  /* Compense le padding réservé au jambage du J (Playfair Display) */
  margin-bottom: -0.16em;
}
.hero__name-main .line-mask .line {
  display: block;
  /* Réserve la place du jambage descendant du J, sinon rogné par le masque */
  padding-bottom: 0.16em;
  transform: translateY(115%);
  transition: transform 950ms var(--ease-out-expo);
}
.hero__title.entered .hero__name-main .line-mask .line {
  transform: translateY(0);
}

/* ---------------------------------------------------------------------------
   18. SPLIT TEXT
--------------------------------------------------------------------------- */
.split-chars .char-wrap,
.split-words .word-wrap {
  display: inline-block;
  overflow: hidden;
  line-height: 1.15;
  vertical-align: bottom;
}

.split-chars .char-inner,
.split-words .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.split-chars.is-visible .char-inner,
.split-words.is-visible  .word-inner {
  transform: translateY(0);
}

.split-chars .char-space { display: inline-block; width: 0.3em; }

/* ---------------------------------------------------------------------------
   19. SCROLL REVEAL UTILITIES
--------------------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-fade { opacity: 0; transition: opacity 1200ms var(--ease-out-quart); }
.reveal-fade.is-visible { opacity: 1; }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 1000ms var(--ease-out-quart), transform 1000ms var(--ease-out-quart);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.reveal-mask {
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--dur-cinematic) var(--ease-in-out-quart);
}
.reveal-mask.is-visible { clip-path: inset(0 0 0% 0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
}
.reveal-stagger.is-visible > *                  { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1)     { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2)     { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3)     { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4)     { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5)     { transition-delay: 320ms; }

.reveal-flow {
  --flow-offset: 108px;
}

.reveal-flow > * {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 960ms var(--ease-out-expo),
    transform 1040ms var(--ease-out-expo),
    filter 1040ms var(--ease-out-expo);
  will-change: transform, opacity, filter;
}

.reveal-flow[data-reveal-side="left"] > * {
  transform: translate3d(calc(var(--flow-offset) * -1), 0, 0) scale(0.985);
}

.reveal-flow[data-reveal-side="right"] > * {
  transform: translate3d(var(--flow-offset), 0, 0) scale(0.985);
}

.reveal-flow.is-visible > * {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-flow.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-flow.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-flow.is-visible > *:nth-child(3) { transition-delay: 240ms; }
.reveal-flow.is-visible > *:nth-child(4) { transition-delay: 360ms; }
.reveal-flow.is-visible > *:nth-child(5) { transition-delay: 480ms; }
.reveal-flow.is-visible > *:nth-child(6) { transition-delay: 600ms; }

/* ---------------------------------------------------------------------------
   20. PRESENTATION
--------------------------------------------------------------------------- */
.presentation__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.presentation__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: rgba(118,95,90,0.15);
}
.presentation__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.presentation__pillars { display: flex; flex-direction: column; gap: 0.65rem; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(118,95,90,0.07);
  border: 1px solid rgba(118,95,90,0.15);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease-out-quart),
              transform 400ms var(--ease-out-quart),
              box-shadow 400ms var(--ease-out-quart);
}
.pillar:hover {
  border-color: rgba(221,213,200,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.pillar__icon  { color: var(--taupe); flex-shrink: 0; margin-top: 2px; }
.pillar__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.2rem;
}
.pillar__text { font-size: 0.82rem; color: rgba(240,235,230,0.55); line-height: 1.5; }

.presentation__body { margin-bottom: 2.5rem; }
.presentation__body p { color: rgba(240,235,230,0.82); margin-bottom: 1.2rem; font-size: 0.97rem; }
.presentation__body p:last-child { margin-bottom: 0; }
.presentation__body-h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: var(--fs-h4);
  color: var(--taupe);
  letter-spacing: 0.03em;
  text-transform: none;
  margin: 1.9rem 0 0.55rem;
  opacity: 1;
}
.presentation__body-h2:first-child { margin-top: 0; }

.signature-img { max-width: 280px; opacity: 0.65; aspect-ratio: 1000 / 365; height: auto; }

/* ---------------------------------------------------------------------------
   21. DOMAINES - row layout
--------------------------------------------------------------------------- */
.domaine-row {
  border-top: 1px solid rgba(240,235,230,0.07);
  position: relative;
  overflow: hidden;
  transition: background 400ms var(--ease-out-quart);
}
.domaine-row:last-of-type { border-bottom: 1px solid rgba(240,235,230,0.07); }
.domaine-row:hover { background: rgba(240,235,230,0.018); }

.domaine-row__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.domaine-row__intro .eyebrow { margin-bottom: 0.75rem; }

.domaine-row__teaser {
  color: rgba(240,235,230,0.68);
  font-size: 0.9rem;
  max-width: 48ch;
  line-height: 1.65;
}

/* Ghost keyword */
.domaine-keyword {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;

  color: transparent;
  -webkit-text-stroke: 1px rgba(221,213,200,0.18);

  position: relative;
  overflow: hidden;
}

.domaine-keyword::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--sand);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 600ms var(--ease-in-out-quart);
  white-space: nowrap;
}

.domaine-row:hover    .domaine-keyword::before { clip-path: inset(0 0% 0 0); }
.domaine-row.is-open  .domaine-keyword::before { clip-path: inset(0 0% 0 0); }

/* Trigger circle */
.domaine-row__trigger {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(240,235,230,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,235,230,0.45);
  flex-shrink: 0;
  transition:
    background 300ms var(--ease-out-quart),
    border-color 300ms var(--ease-out-quart),
    color 300ms var(--ease-out-quart),
    transform 400ms var(--ease-out-quart);
}
.domaine-row__trigger:hover {
  background: rgba(240,235,230,0.07);
  border-color: rgba(240,235,230,0.4);
  color: var(--ivory);
  transform: scale(1.08);
}
.domaine-row__trigger[aria-expanded="true"] {
  background: rgba(221,213,200,0.1);
  border-color: rgba(221,213,200,0.4);
  color: var(--sand);
}
.domaine-row__trigger[aria-expanded="true"] svg {
  transform: rotate(90deg);
  transition: transform 300ms var(--ease-out-quart);
}

/* Detail panel */
.domaine-detail {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 600ms var(--ease-in-out-quart),
    opacity 400ms var(--ease-out-quart);
}
.domaine-detail[hidden] { display: block; }

.domaine-detail.is-open {
  max-height: 900px;
  opacity: 1;
}

.domaine-detail__body {
  padding: 2rem 0 3.5rem;
  border-top: 1px solid rgba(240,235,230,0.05);
}
.domaine-detail__body p {
  color: rgba(240,235,230,0.82);
  margin-bottom: 1rem;
  font-size: 0.93rem;
  line-height: 1.75;
}
.domaine-detail__body p:last-child { margin-bottom: 0; }
.domaine-detail__body ul           { padding-left: 0; margin: 0.75rem 0 1rem; }
.domaine-detail__body ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: rgba(240,235,230,0.8);
  font-size: 0.9rem;
  line-height: 1.65;
}
.domaine-detail__body ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--taupe);
}
.domaine-detail__body strong { color: var(--sand); font-weight: 600; }

/* ---------------------------------------------------------------------------
   22. ACCORDION (FAQ only)
--------------------------------------------------------------------------- */
.accordion { width: 100%; }
.accordion--hoverable::before {
  content: attr(data-hint);
  display: block;
  margin: 0 0 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(118,95,90,0.76);
}

.accordion__item {
  border-top: 1px solid rgba(118,95,90,0.22);
  position: relative;
}
.accordion__item:last-child { border-bottom: 1px solid rgba(118,95,90,0.22); }
.accordion__item.open {
  border-left: 2px solid rgba(221,213,200,0.5);
  padding-left: 1px;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.6rem 0;
  text-align: left;
  cursor: none;
}

.accordion__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--taupe);
  opacity: 0.5;
  min-width: 2.2rem;
  flex-shrink: 0;
}

.accordion__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--ivory);
  flex: 1;
  line-height: 1.38;
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.accordion__item.open .accordion__label { color: var(--sand); }
.accordion--hoverable .accordion__item.is-preview .accordion__label,
.accordion--hoverable .accordion__item.is-locked .accordion__label {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}
.accordion--hoverable .accordion__item.is-preview .accordion__label::after,
.accordion--hoverable .accordion__item.is-locked .accordion__label::after {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(118,95,90,0.76);
}
.accordion--hoverable .accordion__item.is-preview .accordion__label::after {
  content: 'Cliquez pour verrouiller';
}
.accordion--hoverable .accordion__item.is-locked .accordion__label::after {
  content: 'Verrouillée / cliquez pour refermer';
}

.accordion__icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.accordion__icon-h,
.accordion__icon-v {
  position: absolute;
  background: var(--taupe);
  border-radius: 1px;
  transition: transform var(--dur-fast) var(--ease-out-quart),
              opacity var(--dur-fast) var(--ease-out-quart);
}
.accordion__icon-h { width: 100%; height: 1px; top: 50%;  left: 0;   transform: translateY(-50%); }
.accordion__icon-v { width: 1px;  height: 100%; left: 50%; top: 0;    transform: translateX(-50%); }
.accordion__item.open .accordion__icon-v { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion--hoverable .accordion__item.is-locked .accordion__icon-h,
.accordion--hoverable .accordion__item.is-locked .accordion__icon-v {
  background: var(--espresso);
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 500ms var(--ease-in-out-quart);
}

.accordion__content {
  margin-left: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 1.2rem;
  padding-left: clamp(1rem, 2.5vw, 2rem);
  padding-right: 2rem;
  border-left: 2px solid rgba(221,213,200,0.28);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms var(--ease-out-quart) 120ms,
              transform 350ms var(--ease-out-quart) 120ms;
}
.accordion__item.open .accordion__content { opacity: 1; transform: translateY(0); }

.accordion__content p {
  color: rgba(240,235,230,0.8);
  margin-bottom: 0.9rem;
  font-size: 0.93rem;
}
.accordion__content p:last-child { margin-bottom: 0; }

.accordion__content ul { padding-left: 0; margin: 0.75rem 0 1rem; }
.accordion__content ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  color: rgba(240,235,230,0.8);
  font-size: 0.93rem;
  line-height: 1.6;
}
.accordion__content ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--taupe); opacity: 0.6; }
.accordion__content strong { color: var(--sand); font-weight: 600; }

.faq .accordion__num { display: none; }

/* ---------------------------------------------------------------------------
   23. HONORAIRES
--------------------------------------------------------------------------- */
.honoraires__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

/* 5 cartes dans une grille de 4 : la carte aide juridictionnelle
   occupe toute la dernière ligne au lieu de rester orpheline */
.honoraires__cards .h-card:nth-child(5):last-child { grid-column: 1 / -1; }
.honoraires__cards .h-card:nth-child(5):last-child p { max-width: 70ch; }

.h-card {
  padding: 1.75rem 1.4rem;
  background: rgba(118,95,90,0.07);
  border: 1px solid rgba(118,95,90,0.15);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition:
    transform 400ms var(--ease-out-quart),
    box-shadow 400ms var(--ease-out-quart),
    border-color 400ms var(--ease-out-quart);
}

.h-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(221,213,200,0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 400ms var(--ease-out-quart);
  pointer-events: none;
}
.h-card:hover::before  { opacity: 1; }
.h-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  border-color: rgba(221,213,200,0.35);
}

.h-card__icon { color: var(--taupe); margin-bottom: 1.2rem; }
.h-card h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}
.h-card p { font-size: 0.82rem; color: rgba(240,235,230,0.68); line-height: 1.6; }

.honoraires__text { max-width: 78ch; position: relative; z-index: 1; }
.honoraires__text p { color: rgba(240,235,230,0.8); margin-bottom: 1.1rem; font-size: 0.95rem; }
.honoraires__text p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------------
   24. FAQ
--------------------------------------------------------------------------- */
.faq__cat { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.faq__cat-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-h3);
  font-weight: 500;
  color: rgba(221,213,200,0.7);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------------------
   25. CONTACT
--------------------------------------------------------------------------- */
/* Subtle desk background (light section) */
.contact__desk-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.contact__desk-img {
  aspect-ratio: 1400 / 933;
  width: 100%; height: 120%;
  object-fit: cover;
  object-position: center;
  opacity: 0.055;
  will-change: transform;
}
.contact__desk-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(240,235,230,0.96) 0%,
    rgba(240,235,230,0.92) 34%,
    rgba(240,235,230,0.9) 68%,
    rgba(240,235,230,0.97) 100%
  );
}

.contact__intro {
  color: rgba(240,235,230,0.72);
  font-style: italic;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  z-index: 1;
  max-width: 36rem;
  overflow-wrap: break-word;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__grid > * {
  min-width: 0;
}

.contact-faq__accordion {
  max-width: 860px;
}

.contact__info { display: flex; flex-direction: column; gap: 0.85rem; }

.contact__form-wrap {
  padding: clamp(1.5rem, 2.8vw, 2.25rem);
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(47,26,18,0.12);
  box-shadow: 0 24px 64px rgba(47,26,18,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.c-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 1.25rem;
  background: rgba(118,95,90,0.06);
  border: 1px solid rgba(118,95,90,0.15);
  border-radius: var(--radius-md);
  transition: border-color 400ms var(--ease-out-quart), transform 400ms var(--ease-out-quart);
}
.c-card:hover { border-color: rgba(221,213,200,0.3); transform: translateY(-2px); }

.c-card__icon  { color: var(--taupe); flex-shrink: 0; margin-top: 2px; }
.c-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.3rem;
}
.c-card__text, .c-card address {
  font-size: 0.88rem;
  color: rgba(240,235,230,0.76);
  line-height: 1.6;
}
.c-card__note {
  font-size: 0.73rem;
  color: var(--taupe);
  opacity: 0.6;
  font-style: italic;
  margin-top: 0.3rem;
}
.c-card__link {
  font-size: 0.88rem;
  color: var(--sand);
  text-decoration: underline;
  text-decoration-color: rgba(221,213,200,0.3);
  text-underline-offset: 3px;
  transition: color var(--dur-fast), text-decoration-color var(--dur-fast);
}
.c-card__link:hover { color: var(--ivory); text-decoration-color: var(--ivory); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__field   { display: flex; flex-direction: column; gap: 0.45rem; }

.form__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form__input {
  background: rgba(118,95,90,0.09);
  border: 1px solid rgba(118,95,90,0.28);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  min-height: 44px;
  color: var(--ivory);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
  width: 100%;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out-quart),
              background var(--dur-fast) var(--ease-out-quart);
}
.form__input::placeholder { color: rgba(240,235,230,0.28); }
.form__input:focus         { border-color: rgba(221,213,200,0.55); background: rgba(118,95,90,0.14); }
.form__input:focus-visible { outline: 2px solid var(--sand); outline-offset: 2px; }

.form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23765f5a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px 14px;
  padding-right: 2.6rem;
  cursor: none;
}
.form__select option { background: var(--espresso); color: var(--ivory); }

.form__textarea { resize: vertical; min-height: 130px; }

.form__field--check  { flex-direction: row; align-items: flex-start; gap: 0.65rem; }
.form__checkbox {
  width: 18px; height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--sand);
  cursor: pointer;
}
.form__label--check {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(240,235,230,0.7);
  line-height: 1.5;
}

.form__success {
  padding: 1rem;
  background: rgba(118,95,90,0.15);
  border: 1px solid rgba(221,213,200,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--sand);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ---------------------------------------------------------------------------
   26. FOOTER - dark, with background image
--------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: rgba(22,10,5,0.98);
  border-top: 1px solid rgba(118,95,90,0.18);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.1rem, 2.4vw, 1.5rem);
  overflow: hidden;
}

.footer__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer__bg-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}
.footer__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,10,5,0.82);
}

.page-home .footer {
  background: linear-gradient(180deg, rgba(20,10,6,0.96) 0%, rgba(14,7,4,0.99) 100%);
  border-top-color: rgba(221,213,200,0.08);
}

.page-home .footer__bg-photo {
  opacity: 0.12;
}

.page-home .footer__bg-overlay {
  background: rgba(14,7,4,0.88);
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  padding-bottom: clamp(1.4rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(118,95,90,0.13);
  align-items: start;
}

.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__logo  { height: 46px; width: auto; }
.footer__signature { max-width: 172px; opacity: 0.6; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 0.35rem;
}

.footer__nav {
  min-width: 0;
}

.footer__link {
  font-size: 0.82rem;
  color: rgba(240,235,230,0.64);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out-quart);
}
.footer__link:hover        { color: var(--ivory); }
.footer__link:hover::after { transform: scaleX(1); }

.footer__contact { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.35rem; }
.footer__contact p,
.footer__contact-link {
  font-size: 0.82rem;
  color: rgba(240,235,230,0.58);
  line-height: 1.6;
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.footer__contact-link:hover { color: var(--sand); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy   { font-size: 0.72rem; color: rgba(240,235,230,0.42); line-height: 1.5; }
.footer__credit { font-size: 0.72rem; color: rgba(240,235,230,0.42); }
.footer__studio { color: rgba(221,213,200,0.68); font-weight: 600; }

/* ---------------------------------------------------------------------------
   27. IMAGE BAND (atmospheric strip)
--------------------------------------------------------------------------- */
.img-band {
  position: relative;
  height: clamp(220px, 30vw, 400px);
  overflow: hidden;
}
.img-band__img {
  width: 100%; height: 130%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.img-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(47,26,18,0.85) 0%,
    rgba(47,26,18,0.5)  40%,
    rgba(47,26,18,0.5)  60%,
    rgba(47,26,18,0.85) 100%
  );
}

/* ---------------------------------------------------------------------------
   28. RESPONSIVE - TABLET (1024px)
--------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .honoraires__cards { grid-template-columns: repeat(2, 1fr); }

  .hero__content { max-width: 100%; }

  .presentation__grid     { grid-template-columns: 1fr; }
  .presentation__col-left { max-width: 420px; margin: 0 auto; }
  .contact__grid          { grid-template-columns: 1fr; }

  .footer__top   { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }

  .domaine-row__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .domaine-keyword       { grid-column: 1; grid-row: 1; font-size: clamp(2.5rem, 10vw, 5rem); }
  .domaine-row__intro    { grid-column: 1; grid-row: 2; }
  .domaine-row__trigger  { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}

/* ---------------------------------------------------------------------------
   29. RESPONSIVE - MOBILE (768px)
--------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
    --nav-h-s: 56px;
    --container-pad: clamp(1rem, 4vw, 1.25rem);
    --section-gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .presentation__body > p,
  .honoraires__text > p,
  .home-about__body > p:not(.eyebrow),
  .domaine-page .domaine-overview__panel > p:not(.eyebrow),
  .domaine-page .domaine-section > p:not(.eyebrow),
  .domaine-page .domaine-topic-plain > p:not(.eyebrow) {
    text-align: left;
    text-align-last: left;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
  }

  .nav {
    background: rgba(47, 26, 18, 0.96);
    border-bottom: 1px solid rgba(221, 213, 200, 0.12);
    /* No backdrop-filter — nearly-opaque bg makes it invisible, and it would
       create a fixed containing block trapping nav__links inside the 70px bar */
  }

  .nav__inner {
    gap: 1rem;
    position: relative;
  }

  .nav__links {
    /* Visibility/opacity instead of display:none — allows pre-rendering and CSS transition */
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    /* height auto = adapts to content, not full screen */
    height: auto;
    max-height: calc(100dvh - var(--nav-h));
    z-index: 998;
    transition: opacity 160ms ease, visibility 0s linear 160ms;
  }
  .nav__links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 160ms ease, visibility 0s;
  }
  .nav__cta        { display: none; }
  .nav__toggle {
    /* Flex item instead of absolute — nav__inner align-items:center does the job */
    display: flex;
    position: static;
    top: auto; right: auto;
    transform: none;
    margin-left: auto;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(240,235,230,0.3);
    border-radius: var(--radius-pill);
    background: rgba(47,26,18,0.55);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  }
  .nav__toggle-line {
    width: 18px;
    height: 1.5px;
    background: rgba(240,235,230,0.95);
  }
  .nav__logo-img { height: 54px; }

  .honoraires__cards       { grid-template-columns: 1fr; }
  .form__row               { grid-template-columns: 1fr; }

  .footer__top    { grid-template-columns: 1fr; }
  .footer__brand  { flex-direction: column; gap: 1rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  .accordion__content { padding-right: 0; }
  .accordion--hoverable::before { display: none; }
  .section__header { margin-bottom: clamp(2rem, 9vw, 3rem); }
  .hero__scroll-indicator { display: none; }
  .bg-word,
  .section--numbered::after { display: none; }

  .hero__bg-photo { object-position: center center; }
  .hero__bg-overlay {
    background:
      linear-gradient(180deg, rgba(21,11,8,0.88) 0%, rgba(25,13,9,0.72) 38%, rgba(30,15,11,0.78) 100%),
      linear-gradient(108deg, rgba(23,12,8,0.78) 0%, rgba(31,16,12,0.44) 48%, rgba(31,16,12,0.82) 100%);
  }
  .hero__inner {
    padding-top: clamp(6rem, 16vw, 6.75rem);
    padding-bottom: 2rem;
  }
  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .hero__eyebrow {
    margin-bottom: 1rem;
    font-size: 0.63rem;
    letter-spacing: 0.16em;
    color: rgba(240,235,230,0.82);
  }
  .hero__title {
    color: rgba(248,243,238,0.99);
    text-shadow: 0 10px 28px rgba(0,0,0,0.26);
  }
  .hero__name-main {
    font-size: clamp(2.45rem, 10.8vw, 3.6rem);
    line-height: 1;
  }
  .hero__manifesto {
    font-size: 1rem;
    max-width: 28ch;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: rgba(240,235,230,0.94);
    text-shadow: 0 8px 24px rgba(0,0,0,0.22);
  }
  .hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__ctas .btn--ghost {
    color: rgba(240,235,230,0.88);
    border-color: rgba(240,235,230,0.22);
    background: rgba(240,235,230,0.06);
  }
  .hero-massive-wrapper {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 0.45rem 5rem 0;
  }
  .hero-massive-text {
    font-size: 20vw;
    opacity: 0.03;
  }

  .domaine-row__inner { grid-template-columns: 1fr auto; }
  .domaine-keyword    { font-size: clamp(2.2rem, 13vw, 4rem); }

  .ornament-corner        { width: 44px; height: 44px; }
  .ornament-corner--tl    { top: 1rem;    left: 1rem;  }
  .ornament-corner--tr    { top: 1rem;    right: 1rem; }
  .ornament-corner--bl    { bottom: 1rem; left: 1rem;  }
  .ornament-corner--br    { bottom: 1rem; right: 1rem; }

  .section-citation { min-height: 62vh; }
  .citation-quote__text { font-size: clamp(1.45rem, 8.4vw, 2rem); }
  .img-band { height: 180px; }
  .contact__grid { gap: 2rem; }
  .contact__desk-img { opacity: 0.07; }
  .footer { min-height: auto; }
}

/* ---------------------------------------------------------------------------
   30. FOCUS ACCESSIBILITY
--------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------------------------------------------------------------------------
   31. PREFERS REDUCED MOTION
--------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .split-chars .char-inner,
  .split-words .word-inner  { transform: translateY(0) !important; }
  .hero__name-main .line-mask .line { transform: translateY(0) !important; }

  .hero-anim,
  .reveal-up,
  .reveal-fade,
  .reveal-scale,
  .reveal-mask,
  .reveal-flow > *,
  .reveal-ornament,
  .reveal-stagger > *,
  .hero__portrait-frame {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
  .domaine-detail { max-height: none !important; opacity: 1 !important; }
  .hero__marquee  { display: none !important; }
  .site-loader    { display: none !important; }
  .citation-line  { transform: scaleX(1) !important; }
  .btn::before    { display: none !important; }
}

/* ---------------------------------------------------------------------------
   32. GRAIN TEXTURE OVERLAY (global)
--------------------------------------------------------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-image: url('assets/texture-paper.jpg');
  background-size: 260px;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* ---------------------------------------------------------------------------
   33. SITE LOADER
--------------------------------------------------------------------------- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.site-loader.gone { display: none; }

.site-loader__logo {
  position: relative;
  z-index: 2;
  width: 72px;
  height: auto;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease-out-quart), transform 600ms var(--ease-out-quart);
}
.site-loader.logo-in .site-loader__logo { opacity: 1; transform: translateY(0); }

.site-loader__curtain {
  position: absolute;
  inset: 0;
  background: var(--espresso);
  transform: translateY(0%);
  transition: transform 1400ms var(--ease-in-out-quart);
}
.site-loader.lifting .site-loader__curtain { transform: translateY(-100%); }

/* ---------------------------------------------------------------------------
   34. HERO MARQUEE
--------------------------------------------------------------------------- */
.hero__marquee {
  position: relative;
  width: min(100%, 34rem);
  overflow: hidden;
  margin-top: 1.2rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.hero__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(240,235,230,0.48);
  text-transform: uppercase;
}

.hero__marquee-sep {
  color: var(--taupe);
  opacity: 0.55;
  font-size: 0.5rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) { .hero__marquee { display: none; } }

/* ---------------------------------------------------------------------------
   35. SECTION CITATION
--------------------------------------------------------------------------- */
.section-citation {
  position: relative;
  min-height: 52vh;
  background: var(--ivory);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.section-citation .citation-bg { display: none; }

.citation-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.citation-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.14;
  transform: scale(1.04);
}

.citation-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--container-pad);
  text-align: center;
  width: 100%;
}

.citation-line {
  width: 60px;
  height: 1px;
  background: var(--taupe);
  opacity: 0.3;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1000ms var(--ease-in-out-quart) 200ms;
}
.citation-line.is-visible { transform: scaleX(1); }

.citation-quote { display: block; }

.citation-quote__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--espresso);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.citation-quote__footer { display: block; }

.citation-quote__author {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------------------------------------------------------------------------
   36. NUMEROS ROMAINS - background par section
--------------------------------------------------------------------------- */
.section--numbered::after {
  content: var(--section-num, 'I');
  position: absolute;
  bottom: -0.08em;
  right: 3%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 200;
  color: currentColor;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  user-select: none;
  z-index: 0;
}

#faq.section--numbered::after,
#contact.section--numbered::after {
  display: none;
}

/* ---------------------------------------------------------------------------
   37. DOMAINES - image d'ambiance par domaine
--------------------------------------------------------------------------- */
.domaine-row__bg {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.domaine-row__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.09;
  transform: scale(1.12);
  transition:
    opacity 800ms var(--ease-out-quart),
    transform 1400ms var(--ease-out-quart);
  -webkit-mask-image: linear-gradient(to right, black 25%, transparent 88%);
  mask-image: linear-gradient(to right, black 25%, transparent 88%);
}

.domaine-row:hover .domaine-row__bg img,
.domaine-row.is-open .domaine-row__bg img {
  opacity: 0.24;
  transform: scale(1);
}

.domaine-row__inner { position: relative; z-index: 1; }

/* ---------------------------------------------------------------------------
   39. MICRO-TILT boutons au hover
--------------------------------------------------------------------------- */
.btn--primary:hover {
  transform: scale(1.02) perspective(900px) rotateX(1.5deg) rotateY(-0.8deg);
}

/* ---------------------------------------------------------------------------
   40. UNDERLINE ANIME depuis le centre (nav + footer)
--------------------------------------------------------------------------- */
.nav__link::after    { transform-origin: center; }
.footer__link::after { transform-origin: center; }

/* ---------------------------------------------------------------------------
   41. FOOTER - brand name text
--------------------------------------------------------------------------- */
.footer__brand-name {
  font-size: 0.83rem;
  color: rgba(240,235,230,0.68);
  line-height: 1.5;
  font-style: italic;
}
.footer__brand-name span {
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(240,235,230,0.42);
  display: block;
}

.footer__logo {
  transition: transform 400ms var(--ease-out-quart), opacity 400ms var(--ease-out-quart);
}
.footer__brand a:hover .footer__logo {
  transform: translateY(-2px) scale(1.02);
  opacity: 0.95;
}

/* ---------------------------------------------------------------------------
   42. CARET COLOR DORE sur inputs
--------------------------------------------------------------------------- */
.form__input { caret-color: var(--sand); }

/* ---------------------------------------------------------------------------
   43. MULTI-PAGE - offset nav fixe + lien actif
--------------------------------------------------------------------------- */
.section-first {
  padding-top: calc(var(--nav-h) + clamp(1.75rem, 4vw, 3rem));
}

.section-first .section__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

#faq.section-first,
#contact.section-first {
  padding-top: calc(var(--nav-h) + clamp(1rem, 2.8vw, 1.75rem));
}

#faq.section-first {
  padding-top: calc(var(--nav-h) + clamp(0.75rem, 2vw, 1.25rem));
}

#faq.section-first .section__header,
#contact.section-first .section__header {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

#faq.section-first .section__header {
  margin-bottom: clamp(1.1rem, 2vw, 1.6rem);
}

.nav__link[aria-current="page"] {
  color: var(--ivory);
}
.nav__link[aria-current="page"]::after {
  transform: scaleX(1) !important;
}

/* ---------------------------------------------------------------------------
   44. MULTI-PAGE — pages intérieures
--------------------------------------------------------------------------- */
.page-interior .page-overlay {
  opacity: 0;
}

.page-interior .nav {
  height: var(--nav-h-s);
  background: rgba(47,26,18,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: rgba(240,235,230,0.08);
}

.page-interior .ornament-sep {
  display: none !important;
}

.page-interior .nav__logo-img {
  height: 32px;
}

.page-interior .footer {
  min-height: auto;
}

.page-interior .section {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer__link[aria-current="page"] {
  color: var(--ivory);
}

.footer__link[aria-current="page"]::after {
  transform: scaleX(1) !important;
}

@media (max-width: 768px) {
  .page-interior .nav__logo-img {
    height: 54px;
  }
}


@media (max-width: 768px) {
  .nav__toggle {
    z-index: 1002;
    border-color: rgba(240,235,230,0.68);
    background: rgba(47,26,18,0.78);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  }

  .presentation__col-left,
  .presentation__col-right {
    width: 100%;
    min-width: 0;
  }

  .presentation__body,
  .presentation__body p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .form__select {
    -webkit-appearance: none;
    appearance: none;
    background-size: 14px 14px;
    padding-right: 2.6rem;
  }
}
.home-about {
  background: var(--sand);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 3.8vw, 2.85rem);
}

.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.home-about__media {
  min-width: 0;
}

.home-about__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(47,26,18,0.06);
  box-shadow: 0 30px 80px rgba(47,26,18,0.12);
}

.home-about__image-wrap::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(240,235,230,0.45);
  z-index: 1;
  pointer-events: none;
}

.home-about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.home-about__body {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.home-about__body h2 {
  max-width: 20ch;
  font-size: var(--fs-h2);
}

.home-about__body p {
  color: rgba(47,26,18,0.78);
  font-size: 1rem;
}

.home-about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-about__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(47,26,18,0.12);
  background: rgba(47,26,18,0.035);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(47,26,18,0.72);
}

.home-domaines {
  padding-top: clamp(2.6rem, 4vw, 3.5rem);
}

.home-domaines__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.domaine-card {
  --bg-img: none;
  --bg-pos: center 25%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  height: 100%;
  min-height: clamp(380px, 48vw, 560px);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(240,235,230,0.035);
  border: 1px solid rgba(240,235,230,0.1);
  color: var(--ivory);
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 600ms var(--ease-out-quart), border-color 600ms var(--ease-out-quart), box-shadow 600ms var(--ease-out-quart);
}

.domaine-card::before,
.domaine-card::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: opacity 700ms var(--ease-in-out-quart), transform 1400ms var(--ease-in-out-quart);
}

.domaine-card::before {
  background-image: var(--bg-img);
  background-size: cover;
  background-position: var(--bg-pos);
  opacity: 0;
  transform: scale(1.08);
}

.domaine-card::after {
  background: linear-gradient(180deg, rgba(47,26,18,0.45) 0%, rgba(47,26,18,0.88) 100%);
  opacity: 0;
}

.domaine-card:hover,
.domaine-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(221,213,200,0.22);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.domaine-card:hover::before,
.domaine-card:hover::after,
.domaine-card:focus-visible::before,
.domaine-card:focus-visible::after {
  opacity: 1;
}

.domaine-card:hover::before,
.domaine-card:focus-visible::before {
  transform: scale(1);
}

.domaine-card > * {
  position: relative;
  z-index: 1;
}

.domaine-card__num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(221,213,200,0.56);
}

.domaine-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: auto;
  height: 200px;
  min-height: unset;
  overflow: hidden;
  padding: 1rem 1.2rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240,235,230,0.08);
  background: linear-gradient(180deg, rgba(22,10,5,0.18) 0%, rgba(22,10,5,0.34) 100%);
  box-shadow: inset 0 1px 0 rgba(240,235,230,0.03);
  transition: background 550ms var(--ease-out-quart),
              border-color 550ms var(--ease-out-quart),
              box-shadow 550ms var(--ease-out-quart);
}

.domaine-card__title {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
  color: transparent;
  background-image: var(--bg-img);
  background-size: 260% auto;
  background-position: var(--bg-pos);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(240,235,230,0.42);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  transition: background-size 1200ms var(--ease-in-out-quart), transform 600ms var(--ease-out-quart), color 600ms var(--ease-out-quart), -webkit-text-stroke-color 600ms var(--ease-out-quart), filter 600ms var(--ease-out-quart);
}

.domaine-card__title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(240,235,230,0.16);
  z-index: -1;
  transform: translateY(1px);
}

.domaine-card__teaser {
  max-width: 24ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(240,235,230,0.72);
  transition: color 500ms var(--ease-out-quart);
}

.domaine-card__arrow {
  margin-top: auto;
  align-self: flex-end;
  font-size: 1.2rem;
  color: rgba(240,235,230,0.74);
  transition: transform 500ms var(--ease-out-quart), color 500ms var(--ease-out-quart);
}

.domaine-card:hover .domaine-card__body,
.domaine-card:focus-visible .domaine-card__body {
  background: rgba(22,10,5,0.38);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-color: rgba(240,235,230,0.13);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(240,235,230,0.07);
}

.domaine-card:hover .domaine-card__title,
.domaine-card:focus-visible .domaine-card__title {
  background-size: 100% auto;
  transform: scale(0.96);
  -webkit-text-stroke-color: rgba(240,235,230,0.6);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.38));
}

.domaine-card:hover .domaine-card__teaser,
.domaine-card:focus-visible .domaine-card__teaser {
  color: var(--ivory);
}

.domaine-card:hover .domaine-card__arrow,
.domaine-card:focus-visible .domaine-card__arrow {
  transform: translateX(6px);
  color: var(--ivory);
}

.home-domaines__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

.page-home {
  background: #140a06;
}

.section-gradient-wrapper {
  position: relative;
  background: linear-gradient(
    180deg,
    #2f1a12 0%,
    #29160f 34%,
    #211109 72%,
    #140a06 100%
  );
}

.section-gradient-wrapper > section {
  background: transparent !important;
}

.quote-section {
  background: var(--ivory);
  color: var(--espresso);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.quote-section__inner {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
}

.quote-section__mark {
  width: clamp(32px, 4vw, 48px);
  height: auto;
  color: var(--taupe);
  display: block;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem) auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1000ms var(--ease-out-expo), transform 1000ms var(--ease-out-expo);
}

.quote-section__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.875rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  max-width: 18ch;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1100ms var(--ease-out-expo) 200ms, transform 1100ms var(--ease-out-expo) 200ms;
}

.quote-section__text p { margin: 0; }

.quote-section__author {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 900ms var(--ease-out-expo) 500ms, transform 900ms var(--ease-out-expo) 500ms;
}

.quote-section.is-visible .quote-section__mark,
.quote-section.is-visible .quote-section__text {
  opacity: 1;
  transform: translateY(0);
}

.quote-section.is-visible .quote-section__author {
  opacity: 0.85;
  transform: translateY(0);
}

.page-home .section-gradient-wrapper .quote-section {
  color: var(--ivory);
}

.page-home .section-gradient-wrapper .quote-section__mark,
.page-home .section-gradient-wrapper .quote-section__author {
  color: rgba(221,213,200,0.68);
}

.home-approach {
  background: var(--sand);
}

.home-approach .section__header h2 {
  color: var(--espresso);
  font-size: var(--fs-h2);
}

.home-approach .eyebrow {
  color: rgba(118,95,90,0.78);
}

.page-home .section-gradient-wrapper .home-approach .section__header h2 {
  color: var(--ivory);
}

.page-home .section-gradient-wrapper .home-approach .eyebrow {
  color: rgba(221,213,200,0.72);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.approach-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(47,26,18,0.1);
  box-shadow: 0 4px 12px rgba(47,26,18,0.05), 0 18px 48px rgba(47,26,18,0.1);
  overflow: hidden;
}

.page-home .section-gradient-wrapper .approach-card {
  background: rgba(240,235,230,0.08);
  border-color: rgba(221,213,200,0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18), 0 24px 56px rgba(0,0,0,0.16);
}

.approach-card__roman {
  position: absolute;
  right: 1rem;
  bottom: -0.08em;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(6rem, 11vw, 9rem);
  line-height: 1;
  color: currentColor;
  opacity: 0.06;
  pointer-events: none;
}

.approach-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.05;
  color: var(--espresso);
}

.page-home .section-gradient-wrapper .approach-card h3 {
  color: var(--ivory);
}

.approach-card p {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  color: rgba(47,26,18,0.8);
}

.page-home .section-gradient-wrapper .approach-card p {
  color: rgba(240,235,230,0.8);
}

.home-approach__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.home-approach__links .btn--ghost {
  color: rgba(47,26,18,0.72);
  border-color: rgba(47,26,18,0.16);
}

.home-approach__links .btn--ghost:hover {
  color: var(--espresso);
  border-color: rgba(47,26,18,0.42);
  background: rgba(47,26,18,0.04);
}

.contact-card {
  background: var(--ivory);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .section-gradient-wrapper .contact-card {
  padding-top: clamp(2.2rem, 4vw, 3rem);
  background: transparent;
}

.contact-card__inner {
  background: linear-gradient(180deg, rgba(240,235,230,1) 0%, rgba(221,213,200,0.4) 100%);
  border: 1px solid rgba(118,95,90,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.25rem);
  max-width: 720px;
  width: 100%;
  text-align: center;
  box-shadow: 0 1px 2px rgba(47,26,18,0.04), 0 12px 40px rgba(47,26,18,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease-out-expo), transform 900ms var(--ease-out-expo),
              box-shadow 500ms var(--ease-out-quart);
}

.page-home .section-gradient-wrapper .contact-card__inner {
  background: linear-gradient(180deg, rgba(240,235,230,0.96) 0%, rgba(221,213,200,0.78) 100%);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18), 0 24px 70px rgba(0,0,0,0.12);
}

.contact-card.is-visible .contact-card__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms var(--ease-out-expo), transform 900ms var(--ease-out-expo),
              box-shadow 500ms var(--ease-out-quart);
}

.contact-card.is-visible .contact-card__inner:hover {
  box-shadow: 0 1px 2px rgba(47,26,18,0.04), 0 24px 60px rgba(47,26,18,0.15);
  transform: translateY(-3px);
  transition: transform 400ms var(--ease-out-quart), box-shadow 400ms var(--ease-out-quart),
              opacity 900ms var(--ease-out-expo);
}

.contact-card .eyebrow {
  color: rgba(118,95,90,0.72);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: var(--fs-h2);
  margin: 0 0 0.75rem 0;
  color: var(--espresso);
}

.contact-card__lede {
  color: var(--taupe);
  max-width: 42ch;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem) auto;
  line-height: 1.6;
}

.contact-card__helper {
  max-width: 48ch;
  margin: -1rem auto clamp(2rem, 3vw, 2.25rem);
  color: rgba(118,95,90,0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-card__helper a {
  color: var(--espresso);
}

.contact-card__detail {
  display: grid;
  gap: 1rem;
  text-align: left;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  padding: 1.25rem;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(118,95,90,0.08);
}

.contact-card__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.875rem;
  color: var(--espresso);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 300ms;
}

.contact-card__row:hover { color: var(--taupe); }

.contact-card__row svg { color: var(--taupe); flex-shrink: 0; }

.contact-card__row-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.7;
}

.contact-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card .btn--primary {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}
.contact-card .btn--primary:hover {
  background: rgba(47,26,18,0.82);
  border-color: rgba(47,26,18,0.82);
}

@media (max-width: 640px) {
  .contact-card__row {
    grid-template-columns: auto 1fr;
  }
  .contact-card__row-meta {
    grid-column: 2;
    margin-top: 0.25rem;
  }
}

.domaine-card:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .home-about__grid,
  .home-domaines__grid,
  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about__grid {
    align-items: start;
  }

  .home-about__body {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .home-about__grid,
  .home-domaines__grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .home-about__image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .home-domaines__footer {
    justify-content: flex-start;
  }

  .domaine-card {
    min-height: 320px;
  }

  .home-approach__links {
    flex-direction: column;
    align-items: stretch;
  }

  .home-approach__links .btn {
    justify-content: center;
  }

  .home-approach .section__header h2 {
    max-width: 10ch;
  }

  .domaine-card__title,
  .hub-card__title {
    background-image: none !important;
    -webkit-text-fill-color: var(--sand);
    color: var(--sand);
    -webkit-text-stroke: 0;
    filter: none;
  }

  .domaine-card__title::before,
  .hub-card__title::before {
    content: none;
  }

  .contact__form-wrap {
    padding: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-section__mark,
  .quote-section__text,
  .quote-section__author {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__bg-photo { animation: none; }
}

/* ---------------------------------------------------------------------------
   45. NAV DROPDOWN
--------------------------------------------------------------------------- */
.nav__item--dropdown { position: relative; }
.nav__dropdown-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: baseline;
  gap: 0.38rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: none;
  color: rgba(240,235,230,0.75);
  padding: 0;
  margin: 0;
  white-space: nowrap;
  cursor: none;
  transition: color 300ms var(--ease-out-quart);
  position: relative;
}
.nav__dropdown-trigger::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 1px; background: var(--sand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms var(--ease-out-quart);
}
.nav__dropdown-trigger:hover,
.nav__dropdown-trigger[aria-expanded="true"],
.nav__dropdown-trigger[data-active="true"] { color: var(--ivory); }
.nav__dropdown-trigger[aria-expanded="true"]::after,
.nav__dropdown-trigger[data-active="true"]::after { transform: scaleX(1); }
.nav__dropdown-trigger[data-active="true"] { color: var(--ivory); }
.nav__dropdown-caret {
  transition: transform 350ms var(--ease-out-quart);
  flex-shrink: 0;
  opacity: 0.55;
  position: relative;
  top: -1px;
}
.nav__dropdown-trigger[aria-expanded="true"] .nav__dropdown-caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(400px, 90vw); padding: 10px;
  background: rgba(240,235,230,0.97);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(118,95,90,0.15); border-radius: var(--radius-md);
  box-shadow: 0 28px 64px rgba(0,0,0,0.2);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 320ms var(--ease-out-quart), transform 320ms var(--ease-out-quart),
              visibility 0s linear 320ms;
  z-index: 500;
}
.nav__dropdown-trigger[aria-expanded="true"] + .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0); transition-delay: 0s;
}
.nav__dropdown-item {
  display: grid; grid-template-columns: 1fr 1.1rem;
  align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--espresso);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 260ms var(--ease-out-quart),
    border-color 260ms var(--ease-out-quart),
    transform 260ms var(--ease-out-quart);
  border: 1px solid transparent;
}
.nav__dropdown-item::before,
.nav__dropdown-item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 360ms var(--ease-out-quart), transform 700ms var(--ease-out-expo);
}
.nav__dropdown-item::before {
  background-image: var(--nav-item-preview, none);
  background-size: cover;
  background-position: var(--nav-item-preview-pos, center 50%);
  transform: scale(1.06);
  z-index: 0;
}
.nav__dropdown-item::after {
  background:
    linear-gradient(90deg, rgba(28,14,9,0.9) 0%, rgba(47,26,18,0.62) 100%),
    radial-gradient(circle at top right, rgba(221,213,200,0.16) 0%, rgba(221,213,200,0) 55%);
  z-index: 1;
}
.nav__dropdown-item > * {
  position: relative;
  z-index: 2;
}
.nav__dropdown-item:hover,
.nav__dropdown-item:focus-visible {
  background: rgba(47,26,18,0.06);
  border-color: rgba(118,95,90,0.18);
  transform: translateX(3px);
  outline: none;
  color: var(--ivory);
}
.nav__dropdown-item:hover::before,
.nav__dropdown-item:hover::after,
.nav__dropdown-item:focus-visible::before,
.nav__dropdown-item:focus-visible::after {
  opacity: 1;
}
.nav__dropdown-item:hover::before,
.nav__dropdown-item:focus-visible::before {
  transform: scale(1);
}
.nav__dropdown-item:hover .nav__dropdown-title,
.nav__dropdown-item:hover .nav__dropdown-teaser,
.nav__dropdown-item:focus-visible .nav__dropdown-title,
.nav__dropdown-item:focus-visible .nav__dropdown-teaser {
  text-shadow: 0 8px 28px rgba(0,0,0,0.42);
}
.nav__dropdown-item:hover .nav__dropdown-teaser,
.nav__dropdown-item:focus-visible .nav__dropdown-teaser {
  color: rgba(240,235,230,0.82);
  opacity: 1;
}
.nav__dropdown-body { display: flex; flex-direction: column; gap: 2px; }
.nav__dropdown-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.nav__dropdown-teaser { font-size: 0.76rem; color: var(--taupe); opacity: 0.8; line-height: 1.4; }
.nav__dropdown-arrow { opacity: 0.3; flex-shrink: 0; transition: opacity 260ms, transform 260ms; }
.nav__dropdown-item:hover .nav__dropdown-arrow { opacity: 0.85; transform: translateX(3px); }
.nav__dropdown-item[aria-current="page"] { background: rgba(47,26,18,0.08); }
.nav__dropdown-footer {
  display: block; text-align: center; padding: 9px 14px; margin-top: 4px;
  border-top: 1px solid rgba(118,95,90,0.15);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); opacity: 0.7; text-decoration: none; transition: opacity 260ms;
}
.nav__dropdown-footer:hover { opacity: 1; }

@media (max-width: 768px) {
  .reveal-flow { --flow-offset: 52px; }

  .nav__dropdown-trigger { width: 100%; justify-content: space-between; padding: 0.7rem 0; }
  .nav__dropdown {
    position: static; transform: none; width: 100%;
    background: rgba(22,10,5,0.55); backdrop-filter: none; -webkit-backdrop-filter: none;
    border: none; border-left: 1px solid rgba(221,213,200,0.14);
    border-radius: 0; box-shadow: none; margin-left: 0.8rem; padding: 4px 0 8px;
    max-height: 0; overflow: hidden; opacity: 1; visibility: visible; pointer-events: auto;
    transition: max-height 380ms var(--ease-in-out-quart);
  }
  .nav__dropdown-trigger[aria-expanded="true"] + .nav__dropdown { max-height: 440px; transform: none; }
  .nav__dropdown-item::before,
  .nav__dropdown-item::after { display: none; }
  .nav__dropdown-item { padding: 8px 10px; }
  .nav__dropdown-footer { text-align: left; padding-left: 10px; }
}

/* ---------------------------------------------------------------------------
   46. DOMAINE PAGES - /domaines/ subfolder
--------------------------------------------------------------------------- */
.domaine-page-hero {
  background: var(--ivory);
  padding: calc(var(--nav-h) + clamp(2rem, 4.2vw, 3rem)) 0 clamp(2rem, 4vw, 3rem);
  position: relative; overflow: hidden;
  min-height: 42vh;
  display: flex;
  align-items: flex-start;
}
.domaine-page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.domaine-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.38; }
.domaine-page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(240,235,230,0.97) 0%,
    rgba(240,235,230,0.90) 38%,
    rgba(240,235,230,0.55) 68%,
    rgba(240,235,230,0.18) 100%
  );
}
.domaine-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(1320px, calc(100vw - 3rem));
  margin: 0 auto;
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  font-size: 0.72rem; letter-spacing: 0.07em; color: rgba(47,26,18,0.45);
}
.breadcrumb a { color: rgba(47,26,18,0.45); transition: color 260ms; }
.breadcrumb a:hover { color: var(--espresso); }
.breadcrumb__sep { opacity: 0.3; }
.domaine-page-hero h1 {
  margin: 0.4rem 0 clamp(0.9rem, 1.7vw, 1.25rem);
  max-width: 18ch;
  font-size: var(--fs-h1);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.domaine-lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-style: italic; line-height: 1.65;
  color: rgba(47,26,18,0.72); max-width: 60ch;
  overflow-wrap: break-word;
}

/* Hero entrance animation */
.domaine-page-hero .breadcrumb,
.domaine-page-hero .eyebrow,
.domaine-page-hero h1,
.domaine-page-hero .domaine-lede {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 880ms var(--ease-out-expo) forwards;
}
.domaine-page-hero .breadcrumb    { animation-delay: 60ms; }
.domaine-page-hero .eyebrow       { animation-delay: 180ms; }
.domaine-page-hero h1             { animation-delay: 320ms; }
.domaine-page-hero .domaine-lede  { animation-delay: 500ms; }

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .domaine-page-hero .breadcrumb,
  .domaine-page-hero .eyebrow,
  .domaine-page-hero h1,
  .domaine-page-hero .domaine-lede {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.domaine-page {
  background: var(--ivory);
  color: var(--espresso);
}

.domaine-page main {
  padding-bottom: 6.25rem;
}
/* Light overrides for domaine content area */
.domaine-page .domaine-overview__panel,
.domaine-page .domaine-faq-section,
.domaine-page .domaine-cta-block {
  background: rgba(255,255,255,0.55);
  border-color: rgba(47,26,18,0.1);
  box-shadow: 0 8px 32px rgba(47,26,18,0.07);
}
.domaine-page .domaine-overview__points li {
  border-color: rgba(47,26,18,0.14);
  color: rgba(47,26,18,0.78);
  background: rgba(47,26,18,0.04);
}
.domaine-page .domaine-section {
  border-bottom-color: rgba(47,26,18,0.1);
}
.domaine-page .domaine-section ul li { color: rgba(47,26,18,0.78); }
.domaine-page .domaine-faq-section .accordion__item { border-top-color: rgba(47,26,18,0.14); }
.domaine-page .domaine-faq-section .accordion__item:last-child { border-bottom-color: rgba(47,26,18,0.14); }
.domaine-page .domaine-faq-section .accordion__item.open { border-left-color: rgba(47,26,18,0.35); }
.domaine-page .domaine-faq-section .accordion__label { color: var(--espresso); }
.domaine-page .domaine-faq-section .accordion__item.open .accordion__label { color: var(--taupe); }
.domaine-page .domaine-faq-section .accordion__content { border-left-color: rgba(118,95,90,0.28); }
.domaine-page .domaine-faq-section .accordion__content p { color: rgba(47,26,18,0.78); }
.domaine-page .domaine-cta-block .eyebrow { color: var(--taupe); }
.domaine-page .domaine-topic-plain p { color: rgba(47,26,18,0.78); }
.domaine-page .domaine-topic-plain ul li { color: rgba(47,26,18,0.78); }
.domaine-page .domaine-topic-plain { border-bottom-color: rgba(47,26,18,0.1); }
/* Topic cards (domaine-section domaine-topic-card) : p invisible sur ivory */
.domaine-page .domaine-topic-card p { color: rgba(47,26,18,0.78); }
.domaine-page .domaine-topic-card ul li { color: rgba(47,26,18,0.78); }
/* Liens dans sections domaine : sand/ivory sur ivory */
.domaine-page .domaine-section a,
.domaine-page .domaine-faq-section a { color: var(--taupe); text-decoration-color: rgba(118,95,90,0.35); }
.domaine-page .domaine-section a:hover,
.domaine-page .domaine-faq-section a:hover { color: var(--espresso); text-decoration-color: var(--espresso); }
/* Accordion FAQ sur domaine-page : ul li et strong invisibles sur ivory */
.domaine-page .domaine-faq-section .accordion__content ul li { color: rgba(47,26,18,0.78); }
.domaine-page .domaine-faq-section .accordion__content strong { color: var(--espresso); }

/* Related cards + CTA text on ivory domaine-page */
.domaine-page .related-card               { color: var(--espresso); border-color: rgba(47,26,18,0.12); }
.domaine-page .related-card:hover         { background: rgba(47,26,18,0.05); border-color: rgba(47,26,18,0.22); }
.domaine-page .related-card__num          { color: var(--taupe); opacity: 0.55; }
.domaine-page .related-card__title,
.domaine-page .related-card__name         { color: var(--espresso); }
.domaine-page .related-card__teaser       { color: rgba(47,26,18,0.62); }
.domaine-page .domaine-cta-block p        { color: rgba(47,26,18,0.7); }

/* Valorized sub-section */
.domaine-topic-subsection {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-top: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(47,26,18,0.1);
}
.domaine-topic-subsection h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.9rem;
}
.domaine-topic-subsection p { color: rgba(47,26,18,0.72); font-size: 0.93rem; }
.domaine-topic-subsection p + p { margin-top: 0.7rem; }

.domaine-body {
  max-width: min(1320px, calc(100vw - 2.5rem));
  margin: 0 auto;
  padding: clamp(1.4rem, 3vw, 2.3rem) 0 clamp(3.2rem, 5vw, 4.5rem);
}
.domaine-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: stretch;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.domaine-overview__panel,
.domaine-faq-section,
.domaine-cta-block {
  background: rgba(240,235,230,0.04);
  border: 1px solid rgba(221,213,200,0.11);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 54px rgba(10,4,2,0.16);
}
.domaine-overview__panel {
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.domaine-overview__panel h2 {
  margin: 0.75rem 0 1rem;
  font-size: var(--fs-h3);
  font-weight: 600;
}
.domaine-overview__panel p {
  max-width: 70ch;
  overflow-wrap: break-word;
}
.domaine-overview__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.domaine-overview__points li {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(221,213,200,0.12);
  border-radius: var(--radius-pill);
  color: rgba(240,235,230,0.82);
  background: rgba(240,235,230,0.04);
  line-height: 1.3;
}
.domaine-overview__visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(221,213,200,0.11);
  background: rgba(240,235,230,0.03);
}
.domaine-overview__visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
}
.domaine-overview__visual figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(28,14,9,0.78);
  color: rgba(240,235,230,0.88);
  font-size: 0.84rem;
  line-height: 1.55;
}
.domaine-topic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem;
}
.domaine-section {
  padding: clamp(1.7rem, 3vw, 2.8rem) 0;
  border-bottom: 1px solid rgba(221,213,200,0.08);
}
.domaine-section:last-child { border-bottom: none; }
.domaine-section h2 { margin-bottom: 1.2rem; font-size: var(--fs-h3); font-weight: 600; }
.domaine-section p + p { margin-top: 0.9rem; }
.domaine-section ul { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.domaine-section ul li { padding-left: 1.2rem; position: relative; color: rgba(240,235,230,0.85); }
.domaine-section ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--taupe); opacity: 0.65; }
.domaine-topic-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  grid-column: span 6;
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid rgba(221,213,200,0.11);
  border-bottom: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(240,235,230,0.04) 0%, rgba(240,235,230,0.02) 100%);
  box-shadow: 0 18px 54px rgba(10,4,2,0.16);
}
.domaine-topic-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(221,213,200,0.4) 0%, rgba(221,213,200,0) 100%);
  z-index: 0;
}
.domaine-topic-card::after {
  position: absolute;
  right: 1rem;
  bottom: 0.1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 7rem);
  line-height: 1;
  font-style: italic;
  color: rgba(221,213,200,0.05);
  pointer-events: none;
  z-index: 0;
}
.domaine-topic-card:nth-child(1)::after { content: 'I'; }
.domaine-topic-card:nth-child(2)::after { content: 'II'; }
.domaine-topic-card:nth-child(3)::after { content: 'III'; }
.domaine-topic-card:nth-child(4)::after { content: 'IV'; }
.domaine-topic-card:nth-child(5)::after { content: 'V'; }
.domaine-topic-card:nth-child(6)::after { content: 'VI'; }
.domaine-topic-card > * {
  position: relative;
  z-index: 1;
}
.domaine-topic-card h2 {
  margin: 0.65rem 0 0.8rem;
  font-size: var(--fs-h3);
  font-weight: 600;
}
.domaine-topic-card p {
  color: rgba(240,235,230,0.78);
  max-width: 56ch;
  overflow-wrap: break-word;
}
.domaine-topic-card ul {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(221,213,200,0.1);
  background: rgba(240,235,230,0.035);
}
.domaine-topic-card ul li {
  font-size: 0.95rem;
  color: rgba(240,235,230,0.86);
}
.domaine-topic-card:nth-child(3n) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 1.4rem;
  align-items: center;
}
.domaine-topic-card:nth-child(3n) .eyebrow,
.domaine-topic-card:nth-child(3n) h2,
.domaine-topic-card:nth-child(3n) p {
  grid-column: 1;
}
.domaine-topic-card:nth-child(3n) ul {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  justify-content: center;
  margin-top: 0;
}
/* Paired cards (2 per row, breaking out of 12-col grid) */
.domaine-topic-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.domaine-topic-pair .domaine-topic-card { grid-column: span 1; }

/* Plain (non-bubble) topic section */
.domaine-topic-plain {
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-bottom: 1px solid rgba(221,213,200,0.08);
}
.domaine-topic-plain h2 { margin-bottom: 1.2rem; font-size: var(--fs-h3); font-weight: 600; }
.domaine-topic-plain p { color: rgba(240,235,230,0.82); max-width: 62ch; }
.domaine-topic-plain p { overflow-wrap: break-word; }
.domaine-topic-plain p + p { margin-top: 0.9rem; }
.domaine-topic-plain ul { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.domaine-topic-plain ul li { padding-left: 1.2rem; position: relative; color: rgba(240,235,230,0.85); }
.domaine-topic-plain ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--taupe); opacity: 0.65; }

/* Plain section with illustration */
.domaine-topic-plain.has-image {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.domaine-topic-plain.has-image > * {
  min-width: 0;
}
.domaine-topic-plain__illu {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.domaine-topic-plain__illu img { width: 100%; height: 100%; object-fit: cover; }

.domaine-faq-section { padding: clamp(2rem, 4vw, 2.8rem); border-top: none; margin-top: clamp(1.8rem, 4vw, 2.8rem); }
.domaine-faq-section h2 { margin-bottom: 2rem; }
.domaine-cta-block {
  padding: clamp(2rem, 4vw, 3rem);
  margin: clamp(1.8rem, 4vw, 2.8rem) 0; text-align: center;
}
.domaine-cta-block h2 { margin-bottom: 0.9rem; font-size: var(--fs-h3); font-weight: 600; }
.domaine-cta-block p { margin-bottom: 1.8rem; color: rgba(240,235,230,0.7); max-width: 48ch; margin-left: auto; margin-right: auto; }
.domaine-related-section { padding: clamp(1.2rem, 3vw, 2rem) 0 0; border-top: none; }
.domaine-related-section h2 { margin-bottom: 1.5rem; font-size: var(--fs-h4); font-weight: 600; }
.related-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 3vw, 2rem);
  background: rgba(47,26,18,0.94);
  border-top: 1px solid rgba(240,235,230,0.1);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transform: translateY(100%);
  transition: transform 500ms var(--ease-out-quart);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.sticky-cta__label {
  color: var(--ivory);
  font-size: 0.9375rem;
  font-weight: 500;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.related-card {
  display: grid; grid-template-columns: 2rem 1fr;
  align-items: center; gap: 0.8rem; padding: 1rem 1.2rem;
  border: 1px solid rgba(221,213,200,0.12); border-radius: var(--radius-md);
  text-decoration: none; color: var(--ivory);
  transition: background 260ms, border-color 260ms, transform 260ms;
}
.related-card:hover { background: rgba(221,213,200,0.07); border-color: rgba(221,213,200,0.22); transform: translateY(-2px); }
.related-card__num { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.15rem; color: var(--sand); opacity: 0.6; }
.related-card__name { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: 1rem; }

@media (max-width: 1024px) {
  .domaine-overview,
  .domaine-topic-grid {
    grid-template-columns: 1fr;
  }

  .domaine-topic-card,
  .domaine-topic-card:nth-child(3n) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .domaine-topic-card:nth-child(3n) ul {
    grid-column: 1;
    grid-row: auto;
    margin-top: 1rem;
  }

  .domaine-topic-plain.has-image {
    grid-template-columns: 1fr minmax(180px, 0.65fr);
  }
}

@media (max-width: 768px) {
  .domaine-topic-pair { grid-template-columns: 1fr; }
  .domaine-topic-plain.has-image { grid-template-columns: 1fr; }
  .domaine-topic-plain__illu { aspect-ratio: 3 / 2; order: -1; }
}

@media (max-width: 640px) {
  .domaine-page main {
    padding-bottom: 5.35rem;
  }

  .sticky-cta__label {
    display: none;
  }

  .sticky-cta__inner {
    justify-content: center;
  }

  .sticky-cta__btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .domaine-body {
    max-width: calc(100vw - 2rem);
  }

  .domaine-page-hero {
    min-height: 48vh;
    align-items: flex-start;
  }

  .domaine-page-hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(240,235,230,0.96) 0%,
      rgba(240,235,230,0.88) 55%,
      rgba(240,235,230,0.42) 100%
    );
  }

  .domaine-page-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .domaine-lede {
    max-width: 34ch;
  }

  .domaine-overview__visual img {
    min-height: 220px;
    max-height: 320px;
  }

  .domaine-overview__points {
    flex-direction: column;
  }
}

/* ---------------------------------------------------------------------------
   47. DOMAINES HUB
--------------------------------------------------------------------------- */
.domaines-hub-page {
  padding-bottom: clamp(3rem, 5vw, 4.25rem);
}

.domaines-hub-page.section-first {
  padding-top: calc(var(--nav-h) + clamp(0.65rem, 1.5vw, 1rem)) !important;
}

.domaines-hub-page .section__header {
  margin-bottom: clamp(0.65rem, 1.2vw, 0.95rem) !important;
}

.domaines-hub-hero {
  min-height: auto !important;
  padding: 0 !important;
}

.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: clamp(1.75rem, 4vw, 2.75rem) 0; }
.hub-card {
  background: rgba(240,235,230,0.04); border: 1px solid rgba(221,213,200,0.12);
  border-radius: var(--radius-md); padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.1rem; min-width: 0;
  transition: background 380ms, border-color 380ms, transform 380ms;
}
.hub-card:hover { background: rgba(240,235,230,0.07); border-color: rgba(221,213,200,0.22); transform: translateY(-4px); }
.hub-card__num { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.75rem; color: var(--sand); opacity: 0.58; line-height: 1; }
.hub-card__title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-size: var(--fs-h3); margin: 0; color: var(--ivory); }
.hub-card__teaser { color: rgba(240,235,230,0.68); font-size: 0.93rem; line-height: 1.7; overflow-wrap: break-word; }
.hub-card__items { list-style: none; display: flex; flex-direction: column; gap: 0.38rem; }
.hub-card__items li { padding-left: 1.1rem; position: relative; font-size: 0.86rem; color: rgba(240,235,230,0.65); overflow-wrap: break-word; }
.hub-card__items li::before { content: '\2014'; position: absolute; left: 0; color: var(--taupe); opacity: 0.55; }
.hub-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand); opacity: 0.72; text-decoration: none; transition: opacity 260ms, gap 260ms;
}
.hub-card__link:hover { opacity: 1; gap: 0.6em; }
.hub-cta-block {
  background: rgba(240,235,230,0.04); border: 1px solid rgba(221,213,200,0.12);
  border-radius: var(--radius-md); padding: clamp(2rem, 4vw, 3.5rem); text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.hub-cta-block h2 { margin-bottom: 0.9rem; }
.hub-cta-block p { margin-bottom: 1.8rem; color: rgba(240,235,230,0.7); max-width: 48ch; margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------------------
   48. DOMAINES SEO — refinements
--------------------------------------------------------------------------- */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb__item:not(.breadcrumb__item--current)::after {
  content: '/';
  opacity: 0.3;
}

.breadcrumb__link {
  color: rgba(47,26,18,0.5);
  text-decoration: none;
}

.breadcrumb__item--current {
  color: rgba(47,26,18,0.78);
}

.domaine-section a,
.domaine-faq-section a {
  color: var(--sand);
  text-decoration: underline;
  text-decoration-color: rgba(221,213,200,0.32);
  text-underline-offset: 0.18em;
}

.domaine-section a:hover,
.domaine-faq-section a:hover {
  color: var(--ivory);
}

.related-card {
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
}

.related-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.related-card__title,
.related-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ivory);
}

.related-card__teaser {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(240,235,230,0.62);
}

.related-card__arrow {
  opacity: 0.36;
  transition: opacity 260ms var(--ease-out-quart), transform 260ms var(--ease-out-quart);
}

.related-card:hover .related-card__arrow {
  opacity: 0.92;
  transform: translateX(3px);
}

/* Small related cards : hover photo (FAQ + pages domaines) */
.related-card[data-fill] {
  --bg-img: none;
  --bg-pos: center 25%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 350ms var(--ease-out-quart),
              border-color 350ms var(--ease-out-quart),
              box-shadow 350ms var(--ease-out-quart),
              color 350ms var(--ease-out-quart);
}
.related-card[data-fill]::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--bg-img);
  background-size: cover; background-position: var(--bg-pos);
  opacity: 0; transform: scale(1.07);
  transition: opacity 600ms var(--ease-in-out-quart),
              transform 1200ms var(--ease-in-out-quart);
}
.related-card[data-fill]::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(47,26,18,0.6) 0%, rgba(47,26,18,0.9) 100%);
  opacity: 0;
  transition: opacity 600ms var(--ease-in-out-quart);
}
.related-card[data-fill]:hover,
.related-card[data-fill]:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(240,235,230,0.2);
  box-shadow: 0 16px 48px rgba(47,26,18,0.2);
  color: var(--ivory);
  outline: none;
}
.related-card[data-fill]:hover::before,
.related-card[data-fill]:focus-visible::before { opacity: 1; transform: scale(1); }
.related-card[data-fill]:hover::after,
.related-card[data-fill]:focus-visible::after  { opacity: 1; }
.related-card[data-fill]:hover .related-card__num,
.related-card[data-fill]:hover .related-card__title,
.related-card[data-fill]:hover .related-card__teaser,
.related-card[data-fill]:focus-visible .related-card__num,
.related-card[data-fill]:focus-visible .related-card__title,
.related-card[data-fill]:focus-visible .related-card__teaser { color: var(--ivory); }
.related-card[data-fill]:hover .related-card__arrow,
.related-card[data-fill]:focus-visible .related-card__arrow  { opacity: 0.9; }

.domaines-hub-page .section__header {
  max-width: 56rem;
  margin-bottom: 0;
}

.domaines-hub-page .section__header h1 {
  margin: 0.45rem 0 0;
  font-size: var(--fs-h1);
}

.domaines-hub-page .lede {
  max-width: 48ch;
  margin-top: 0.55rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(240,235,230,0.72);
}

.hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(0.55rem, 1.2vw, 0.95rem);
}

.hub-card {
  --bg-img: none;
  --bg-pos: center 25%;
  position: relative;
  min-height: clamp(400px, 36vw, 520px);
  padding: clamp(1.6rem, 2.8vw, 2.3rem);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(240,235,230,0.035);
  border: 1px solid rgba(240,235,230,0.09);
  transition: transform 600ms var(--ease-out-quart), border-color 600ms var(--ease-out-quart), box-shadow 600ms var(--ease-out-quart);
}

.hub-card::before,
.hub-card::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: opacity 700ms var(--ease-in-out-quart), transform 1200ms var(--ease-in-out-quart);
}

.hub-card::before {
  background-image: var(--bg-img);
  background-size: cover;
  background-position: var(--bg-pos);
  opacity: 0;
  transform: scale(1.08);
}

.hub-card::after {
  background: linear-gradient(180deg, rgba(47,26,18,0.18) 0%, rgba(47,26,18,0.82) 100%);
  opacity: 0;
}

.hub-card:hover,
.hub-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(221,213,200,0.22);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.hub-card:hover::before,
.hub-card:hover::after,
.hub-card:focus-within::before,
.hub-card:focus-within::after {
  opacity: 1;
}

.hub-card:hover::before,
.hub-card:focus-within::before {
  transform: scale(1);
}

.hub-card > * {
  position: relative;
  z-index: 1;
}

.hub-card__title {
  position: relative;
  display: inline-block;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: transparent;
  background-image: var(--bg-img);
  background-size: 250% auto;
  background-position: var(--bg-pos);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.95px rgba(240,235,230,0.42);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.3));
  transition: background-size 1200ms var(--ease-in-out-quart), transform 600ms var(--ease-out-quart), -webkit-text-stroke-color 600ms var(--ease-out-quart), filter 600ms var(--ease-out-quart);
}

.hub-card__title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(240,235,230,0.14);
  z-index: -1;
  transform: translateY(1px);
}

.hub-card:hover .hub-card__title,
.hub-card:focus-within .hub-card__title {
  background-size: 100% auto;
  transform: scale(0.97);
  -webkit-text-stroke-color: rgba(240,235,230,0.58);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.38));
}

.hub-card__items {
  margin: 0;
  padding: 0;
}

.hub-card__link {
  margin-top: auto;
}

.faq__cat-intro {
  margin: 0 0 1.2rem;
  max-width: 56ch;
  color: rgba(240,235,230,0.64);
}

.faq-domain-links {
  margin-top: 1.35rem;
}

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

@media (max-width: 768px) {
  #faq .section__header,
  #contact .section__header {
    max-width: 100%;
  }

  #faq .section__header h1 {
    max-width: 17ch;
  }

  #contact .section__header h1 {
    max-width: 10.5ch;
  }

  .hub-card__title {
    background-image: none !important;
    -webkit-text-fill-color: var(--sand);
    color: var(--sand);
  }

  .footer__nav {
    width: 100%;
  }

  .footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1rem;
    padding-top: 0;
  }

  .related-card {
    grid-template-columns: 2rem 1fr;
  }

  .related-cards {
    grid-template-columns: 1fr;
  }

  .related-card__arrow {
    display: none;
  }

  .domaine-page-hero {
    padding: calc(var(--nav-h) + 1.35rem) 0 1.7rem;
    min-height: auto;
  }

  .domaine-page-hero__inner.container,
  .domaine-body.container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .domaine-page-hero .breadcrumb,
  .domaine-page-hero .eyebrow,
  .domaine-page-hero h1,
  .domaine-page-hero .domaine-lede {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .domaine-page-hero h1 {
    max-width: 12.8ch;
    font-size: clamp(2rem, 8vw, 2.8rem);
    color: rgba(47,26,18,0.92);
  }

  .domaine-lede {
    max-width: none;
    line-height: 1.58;
  }

  .domaine-body {
    max-width: 100%;
    padding-top: 1.1rem;
  }

  .domaine-topic-plain.has-image {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .domaine-topic-plain__illu {
    aspect-ratio: 16 / 10;
  }

  .hub-grid {
    margin-top: 0.6rem;
  }
}

/* ---------------------------------------------------------------------------
   49. MOBILE REFINEMENTS — targeted fixes only
--------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav__inner {
    min-height: var(--nav-h);
  }

  .nav__toggle {
    z-index: 1001;
  }

  /* All nav states on mobile: no backdrop-filter (creates fixed containing block),
     consistent height and background across homepage AND interior pages */
  .nav.scrolled,
  .page-interior .nav,
  .page-interior .nav.scrolled {
    height: var(--nav-h);
    background: rgba(47, 26, 18, 0.96);
    border-bottom: 1px solid rgba(221, 213, 200, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .page-interior .nav__logo-img {
    height: 54px;
  }

  .nav__links {
    /* Layout overrides — position is set in section 29 */
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding:
      1rem
      clamp(1rem, 5vw, 1.5rem)
      calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(ellipse at 20% 0%, rgba(118,95,90,0.2) 0%, transparent 55%),
      linear-gradient(180deg, rgba(20,9,5,0.99) 0%, rgba(47,26,18,0.98) 100%);
    border-top: 1px solid rgba(221,213,200,0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links > li,
  .nav__item--dropdown {
    width: 100%;
    max-width: 100%;
  }

  .nav__links > li {
    align-items: stretch;
  }

  .nav__item--dropdown {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(240,235,230,0.09);
    padding-bottom: 0.2rem;
  }

  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 0.15rem;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    color: rgba(240,235,230,0.92);
    border-bottom: 1px solid rgba(240,235,230,0.09);
  }

  .nav__link::after {
    display: none;
  }

  .nav__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 0.15rem 0.85rem;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    color: rgba(240,235,230,0.92);
  }

  .nav__dropdown-trigger::after {
    display: none;
  }

  .nav__dropdown {
    /* Reset desktop opacity/visibility — mobile uses max-height instead */
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: max-height 320ms var(--ease-in-out-quart);
    /* collapse */
    margin: 0.25rem 0 0.2rem;
    padding: 0;
    background: transparent;
    max-height: 0;
  }

  .nav__dropdown-trigger[aria-expanded="true"] + .nav__dropdown {
    max-height: 680px;
    pointer-events: auto;
    padding: 0.5rem 0 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav__dropdown-item {
    min-height: 92px;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(240,235,230,0.14);
    color: var(--ivory);
    background: rgba(255,255,255,0.02);
  }

  .nav__dropdown-item::before,
  .nav__dropdown-item::after {
    display: block;
    opacity: 1;
  }

  .nav__dropdown-item::before {
    transform: none;
  }

  .nav__dropdown-item::after {
    background:
      linear-gradient(115deg, rgba(22,10,5,0.94) 0%, rgba(47,26,18,0.7) 58%, rgba(47,26,18,0.92) 100%);
  }

  .nav__dropdown-item:hover,
  .nav__dropdown-item:focus-visible {
    transform: none;
    border-color: rgba(240,235,230,0.2);
  }

  .nav__dropdown-title,
  .nav__dropdown-teaser {
    color: var(--ivory);
    text-shadow: 0 10px 28px rgba(0,0,0,0.35);
  }

  .nav__dropdown-teaser {
    opacity: 0.82;
  }

  .nav__dropdown-arrow {
    opacity: 0.78;
    color: var(--ivory);
  }

  .nav__dropdown-footer {
    margin-top: 0.35rem;
    padding: 0.85rem 0.15rem 0 0.15rem;
    border-top: 0;
    color: rgba(240,235,230,0.78);
  }

  /* Contact card — email overflow fix */
  .contact-card__row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .contact-card__row > span:not(.contact-card__row-meta) {
    overflow-wrap: anywhere;
    word-break: break-word;
    min-width: 0;
  }

  /* Domaine cards — show image + overlay on mobile (no hover needed) */
  .domaine-card::before {
    opacity: 1;
    transform: scale(1);
  }
  .domaine-card::after {
    opacity: 1;
  }
  .domaine-card__title {
    color: var(--ivory);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-stroke: 0;
    filter: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  .domaine-card__title::before {
    display: none;
  }
  .domaine-card__teaser {
    color: rgba(240,235,230,0.9);
  }

  /* Related cards with images — show photo on mobile, text in ivory */
  .related-card[data-fill]::before {
    opacity: 1;
    transform: scale(1);
  }
  .related-card[data-fill]::after {
    opacity: 1;
  }
  .related-card[data-fill] .related-card__num,
  .related-card[data-fill] .related-card__title,
  .related-card[data-fill] .related-card__name,
  .related-card[data-fill] .related-card__teaser {
    color: var(--ivory);
  }
  .related-card[data-fill] .related-card__teaser {
    opacity: 0.88;
  }
  .related-card[data-fill] .related-card__arrow {
    opacity: 0.8;
  }

  .hero__inner {
    justify-content: flex-end;
    padding-top: calc(var(--nav-h) + 1.6rem);
    padding-bottom: 3.1rem;
  }

  .hero__content {
    width: min(100%, 23.5rem);
    gap: 0.9rem;
  }

  .hero__title {
    margin-bottom: 1rem;
  }

  .hero-anim {
    transform: translate3d(0, 18px, 0);
    filter: none;
    transition-duration: 650ms;
  }

  .hero__name-main .line-mask .line {
    transition-duration: 720ms;
  }

  .hero__name-main {
    font-size: clamp(2.35rem, 10.2vw, 3.35rem);
    line-height: 1.06;
    max-width: 9ch;
    text-wrap: balance;
  }

  .hero__name-sub {
    margin-top: 0.6rem;
    letter-spacing: 0.22em;
  }

  .hero__manifesto {
    width: min(100%, 23rem);
    max-width: none;
    font-size: clamp(1rem, 4.3vw, 1.12rem);
    line-height: 1.55;
    text-wrap: balance;
    margin-bottom: 1.2rem;
  }

  .hero__manifesto-word {
    white-space: nowrap;
  }

  .hero__ctas {
    gap: 0.7rem;
  }

  .hero__ctas .btn {
    min-height: 48px;
  }

  .hero-massive-wrapper {
    display: none;
  }

  .home-about__body {
    gap: 1rem;
  }

  .home-about__body h2 {
    max-width: none;
    text-wrap: balance;
  }

  .home-about__body p {
    max-width: 33ch;
  }

  .home-approach {
    padding-top: clamp(2.2rem, 7vw, 2.8rem);
    padding-bottom: clamp(2.2rem, 7vw, 2.9rem);
  }

  .home-approach .section__header {
    margin-bottom: clamp(1.35rem, 5vw, 1.85rem);
  }

  .home-approach .section__header h2 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 2.9rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .approach-grid {
    gap: 0.95rem;
  }

  .approach-card {
    min-height: 250px;
    padding: 1.35rem 1.2rem;
  }

  .approach-card h3 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .home-approach__links {
    margin-top: 1.5rem;
  }

  .domaines-hub-page.section-first {
    padding-top: calc(var(--nav-h) + 0.35rem) !important;
  }

  .domaines-hub-page .section__header {
    margin-bottom: 0.45rem !important;
  }

  .domaines-hub-page .section__header h1 {
    max-width: 16ch;
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.02;
    text-wrap: balance;
    margin-top: 0.25rem;
  }

  .domaines-hub-page .lede {
    max-width: none;
    margin-top: 0.2rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(47, 26, 18, 0.74);
  }

  .hub-grid {
    gap: 0.9rem;
    margin-top: 0.25rem;
  }

  .hub-card {
    min-height: 300px;
    padding: 1.3rem 1.15rem;
    border-color: rgba(240,235,230,0.14);
    box-shadow: 0 18px 46px rgba(0,0,0,0.18);
  }

  .hub-card::before,
  .hub-card::after {
    opacity: 1;
  }

  .hub-card::before {
    transform: none;
  }

  .hub-card::after {
    background: linear-gradient(180deg, rgba(47,26,18,0.22) 0%, rgba(47,26,18,0.84) 100%);
  }

  .hub-card__num,
  .hub-card__teaser,
  .hub-card__items li,
  .hub-card__link {
    color: var(--ivory);
  }

  .hub-card__teaser,
  .hub-card__items li {
    opacity: 0.88;
  }

  .hub-card__link {
    opacity: 0.94;
  }

  #faq.section-first {
    padding-top: calc(var(--nav-h) + 0.65rem);
  }

  #faq.section-first .section__header {
    margin-bottom: clamp(0.9rem, 4vw, 1.2rem);
  }

  #faq .section__header h1 {
    max-width: none;
    font-size: clamp(2.1rem, 8.8vw, 2.85rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  .faq__cat {
    margin-bottom: clamp(2rem, 7vw, 2.7rem);
  }

  .accordion__button {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .domaine-page-hero {
    padding: calc(var(--nav-h) + 0.95rem) 0 1.2rem;
  }

  .domaine-page-hero h1 {
    max-width: none;
    font-size: clamp(1.8rem, 7.6vw, 2.45rem);
    line-height: 1.03;
    text-wrap: balance;
  }

  .domaine-page-hero .domaine-lede {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.72;
  }

  .domaine-body {
    padding-top: 0.8rem;
  }

  .domaine-topic-card,
  .domaine-topic-plain,
  .domaine-overview__panel,
  .domaine-faq-section,
  .domaine-related-section,
  .domaine-cta-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .related-card {
    min-height: 152px;
    padding: 1rem 1rem 1.05rem;
    align-items: end;
  }

  .related-card[data-fill] {
    border-color: rgba(240,235,230,0.18);
    box-shadow: 0 16px 40px rgba(47,26,18,0.16);
  }

  .related-card[data-fill]::before,
  .related-card[data-fill]::after {
    opacity: 1;
  }

  .related-card[data-fill]::before {
    transform: none;
  }

  .related-card__num,
  .related-card__title,
  .related-card__name,
  .related-card__teaser {
    color: var(--ivory);
  }

  .related-card__teaser {
    opacity: 0.86;
  }

  .domaine-card {
    min-height: 285px;
  }

  .domaine-card::before,
  .domaine-card::after {
    opacity: 1;
  }

  .domaine-card::before {
    transform: none;
  }

  .domaine-card__body {
    height: auto;
    padding: 1rem 1rem 1.05rem;
    background: rgba(18,8,4,0.58);
    border-color: rgba(240,235,230,0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .domaine-card__teaser,
  .domaine-card__num,
  .domaine-card__arrow {
    color: var(--ivory);
  }

  .domaine-card__teaser {
    max-width: none;
    opacity: 0.9;
  }
}

@media (max-width: 430px) {
  .hero__name-main {
    font-size: clamp(2.3rem, 10.8vw, 3.15rem);
  }

  .hero__manifesto {
    width: min(100%, 20rem);
  }

  .home-about__body h2,
  .home-approach .section__header h2,
  #faq .section__header h1,
  .domaines-hub-page .section__header h1,
  .domaine-page-hero h1 {
    max-width: none;
  }
}


/* ---------------------------------------------------------------------------
   50. CLASSIC CURSOR OVERRIDE
--------------------------------------------------------------------------- */
html,
body,
body * {
  cursor: auto !important;
}

a,
button,
summary,
label[for],
.btn,
.nav__link,
.nav__toggle,
.nav__dropdown-trigger,
.accordion__trigger,
.form__select {
  cursor: pointer !important;
}

.cursor-dot,
.cursor-ring {
  display: none !important;
}

/* ---------------------------------------------------------------------------
   51. MOBILE AUDIT FIXES - JULY 2026
--------------------------------------------------------------------------- */
@media (max-width: 768px) {
  #presentation.section-first,
  #contact.section-first {
    padding-top: calc(var(--nav-h) + 0.75rem);
  }

  #presentation .section__header,
  #contact .section__header {
    max-width: 100%;
    margin-bottom: clamp(1.15rem, 4vw, 1.65rem);
  }

  #presentation .section__header h1,
  #contact .section__header h1 {
    font-size: clamp(2.2rem, 9.8vw, 3rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  #presentation .section__header h1 {
    max-width: 12ch;
  }

  #contact .section__header h1 {
    max-width: 12.5ch;
  }

  #contact .contact__intro {
    max-width: 24ch;
    margin-bottom: clamp(1.25rem, 5vw, 1.65rem);
    font-size: 0.98rem;
    line-height: 1.6;
    text-wrap: pretty;
  }

  .domaines-hub-page .section__header {
    margin-bottom: 0.2rem !important;
  }

  .domaines-hub-page .lede {
    margin-top: 0.1rem;
    line-height: 1.5;
  }

  .hub-card {
    gap: 0.8rem;
    min-height: auto;
    padding: 1.25rem 1.1rem 1.15rem;
  }

  .hub-card::after {
    background: linear-gradient(180deg, rgba(24,12,7,0.18) 0%, rgba(24,12,7,0.74) 42%, rgba(24,12,7,0.94) 100%);
  }

  .hub-card__title {
    font-size: clamp(1.8rem, 7.8vw, 2.25rem);
    line-height: 0.96;
    text-shadow: 0 1px 10px rgba(0,0,0,0.22);
  }

  .hub-card__teaser {
    font-size: 0.91rem;
    line-height: 1.55;
    max-width: 28ch;
  }

  .hub-card__items {
    gap: 0.45rem;
  }

  .hub-card__items li {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hub-card__items li:nth-child(n + 3) {
    display: none;
  }

  .hub-card__link {
    margin-top: 0.15rem;
  }

  .domaine-page-hero h1 {
    max-width: 13.8ch;
  }

  .domaine-page .domaine-overview__panel p,
  .domaine-page .domaine-topic-card p,
  .domaine-page .domaine-topic-plain p,
  .domaine-page .domaine-faq-section .accordion__content p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .domaine-page .accordion__label {
    line-height: 1.42;
  }
}

@media (max-width: 430px) {
  #presentation .section__header h1,
  #contact .section__header h1,
  .domaine-page-hero h1 {
    font-size: clamp(2rem, 10.4vw, 2.7rem);
  }

  #presentation .section__header h1 {
    max-width: 11.5ch;
  }

  #contact .section__header h1 {
    max-width: 11.8ch;
  }

  .hub-card__teaser {
    max-width: none;
  }
}
/* ---------------------------------------------------------------------------
   52. REMOVE ROMAN NUMERALS
--------------------------------------------------------------------------- */
.section--numbered::after,
.domaine-topic-card::after {
  content: none !important;
  display: none !important;
}

.approach-card__roman,
.domaine-card__num,
.hub-card__num,
.related-card__num {
  display: none !important;
}

.related-card {
  grid-template-columns: 1fr auto !important;
}

@media (max-width: 768px) {
  .related-card {
    grid-template-columns: 1fr !important;
  }
}
/* ---------------------------------------------------------------------------
   53. FOOTER MENUS + HOMEPAGE BALANCE
--------------------------------------------------------------------------- */
.page-home {
  background: var(--ivory);
}

.page-home .section-gradient-wrapper {
  background: transparent;
}

.page-home .section-gradient-wrapper > #apercu-domaines {
  background: var(--espresso) !important;
}

.page-home .section-gradient-wrapper > #citation {
  background: var(--ivory) !important;
  color: var(--espresso);
}

.page-home .section-gradient-wrapper > #citation .quote-section__mark,
.page-home .section-gradient-wrapper > #citation .quote-section__author {
  color: var(--taupe);
}

.page-home .section-gradient-wrapper > #approche {
  background: var(--sand) !important;
}

.page-home .section-gradient-wrapper > #approche .section__header h2 {
  color: var(--espresso);
}

.page-home .section-gradient-wrapper > #approche .eyebrow {
  color: rgba(118,95,90,0.78);
}

.page-home .section-gradient-wrapper > #approche .approach-card {
  background: rgba(255,255,255,0.58);
  border-color: rgba(47,26,18,0.1);
  box-shadow: 0 4px 12px rgba(47,26,18,0.05), 0 18px 48px rgba(47,26,18,0.1);
}

.page-home .section-gradient-wrapper > #approche .approach-card h3 {
  color: var(--espresso);
}

.page-home .section-gradient-wrapper > #approche .approach-card p {
  color: rgba(47,26,18,0.8);
}

.page-home .section-gradient-wrapper > #prise-rendez-vous {
  background: linear-gradient(180deg, var(--ivory) 0%, #ebe4da 100%) !important;
  padding-top: clamp(3rem, 6vw, 4.25rem);
}

.page-home .section-gradient-wrapper > #prise-rendez-vous .contact-card__inner {
  background: linear-gradient(180deg, rgba(240,235,230,1) 0%, rgba(221,213,200,0.55) 100%);
  box-shadow: 0 1px 2px rgba(47,26,18,0.04), 0 12px 40px rgba(47,26,18,0.08);
}

.home-domaines .domaine-card__title::before {
  content: none;
}

.footer__menus {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 1rem clamp(1.25rem, 2.8vw, 2.2rem);
  padding-top: 0.2rem;
}

.footer__menu {
  min-width: 0;
}

.footer__menu-title {
  margin: 0 0 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(221,213,200,0.42);
}

.footer__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer__menu-list .footer__link {
  display: inline-flex;
  width: fit-content;
}

.footer__menu--legal {
  justify-self: end;
}

@media (max-width: 1024px) {
  .footer__menus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__menu--legal {
    justify-self: start;
    grid-column: 1 / -1;
  }
}

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

  .footer__menu {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(118,95,90,0.12);
  }

  .footer__menu:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .home-domaines .domaine-card__title::before {
    content: none;
  }
}
.accordion__item.open {
  border-left: 0;
  padding-left: 0;
}

.accordion__item.open .accordion__trigger {
  padding-bottom: 0.95rem;
}

.accordion__content {
  max-width: 66ch;
  margin: 0 2.6rem 1.35rem 0.85rem;
  padding: clamp(1rem, 2.3vw, 1.45rem) clamp(1rem, 2.6vw, 1.6rem);
  border-left: 0;
  border: 1px solid rgba(221,213,200,0.14);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(240,235,230,0.028) 0%, rgba(240,235,230,0.055) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.accordion__content p {
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.72;
}

.accordion__content ul {
  margin: 0.85rem 0 0;
}

.accordion__content ul li {
  line-height: 1.68;
}

.accordion__content ul li:last-child {
  margin-bottom: 0;
}

.section-light .accordion__item.open,
.domaine-page .domaine-faq-section .accordion__item.open {
  border-left: 0;
}

.section-light .accordion__content,
.domaine-page .domaine-faq-section .accordion__content {
  background: linear-gradient(180deg, rgba(118,95,90,0.042) 0%, rgba(118,95,90,0.072) 100%);
  border-color: rgba(118,95,90,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38);
}

.section-light .accordion__content p,
.section-light .accordion__content ul li,
.domaine-page .domaine-faq-section .accordion__content p,
.domaine-page .domaine-faq-section .accordion__content ul li {
  color: rgba(47,26,18,0.82);
}

@media (max-width: 768px) {
  .accordion__trigger {
    align-items: flex-start;
    padding: 1.25rem 0;
  }

  .accordion__item.open .accordion__trigger {
    padding-bottom: 0.7rem;
  }

  .accordion__content {
    max-width: 100%;
    margin: 0 0 1rem;
    padding: 0.95rem 0.95rem 1.05rem;
  }
}

/* ---------------------------------------------------------------------------
   54. INTERIOR PAGE TYPOGRAPHY POLISH
--------------------------------------------------------------------------- */
.domaine-page .related-card__title,
.domaine-page .related-card__name {
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.005em;
}

#contact .section__header {
  max-width: 62rem;
}

#contact .section__header h1 {
  max-width: 19ch;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

@media (max-width: 768px) {
  #contact .section__header h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10.6vw, 3.1rem);
    line-height: 1;
  }
}
