/* ============================================================
   MAISON MONTAINE — Global Styles
   Palette : #f4f1ea · #dbd3c2 · #401f28 · #a69279 · #4f383a · #8F5828
   ============================================================ */

/* Récits clientes — masqués temporairement (retirer la classe pour réafficher) */
.is-temporarily-hidden {
  display: none !important;
}

/* ── Brand fonts ── */
@font-face {
  font-family: 'JMH Typewriter Mono';
  src: url('Identite-visuelle/Typographies/JMH%20Typewriter%20mono.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JMH Typewriter Mono';
  src: url('Identite-visuelle/Typographies/JMH%20Typewriter%20mono%20Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suite Home';
  src: url('Identite-visuelle/Typographies/Suite%20Home.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apple Garamond';
  src: url('Identite-visuelle/Typographies/AppleGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apple Garamond';
  src: url('Identite-visuelle/Typographies/AppleGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Apple Garamond';
  src: url('Identite-visuelle/Typographies/AppleGaramond.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apple Garamond';
  src: url('Identite-visuelle/Typographies/AppleGaramond-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Apple Garamond';
  src: url('Identite-visuelle/Typographies/AppleGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apple Garamond';
  src: url('Identite-visuelle/Typographies/AppleGaramond-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --creme:      #f4f1ea;
  --beige:      #dbd3c2;
  --bordeaux:   #401f28;
  --caramel:    #a69279;
  --brun:       #4f383a;
  --brun-chaud: #8F5828;

  --font-serif:   'Apple Garamond', Georgia, serif;
  --font-elegant: 'Apple Garamond', Georgia, serif;
  --font-body:    'Apple Garamond', Georgia, serif;
  --font-mono:    'JMH Typewriter Mono', 'Courier New', monospace;
  --font-script:  'Suite Home', cursive;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition:    0.55s var(--ease-out-expo);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ── Accessibilité — skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--bordeaux);
  color: var(--creme);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

body {
  font-family: var(--font-body);
  background-color: var(--creme);
  color: var(--brun);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography scale ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--bordeaux);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 38px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-bordeaux {
  background: var(--bordeaux);
  color: var(--creme);
  border-color: var(--bordeaux);
}
.btn-bordeaux:hover {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}

.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.btn-outline:hover {
  background: var(--bordeaux);
  color: var(--creme);
}

.btn-creme {
  background: var(--creme);
  color: var(--bordeaux);
  border-color: var(--creme);
}
.btn-creme:hover {
  background: var(--bordeaux);
  color: var(--creme);
  border-color: var(--bordeaux);
}

/* ── CTA sans flèche — majuscules + centré ── */
[class$="__cta"],
.cta-wrap {
  text-align: center;
}

.cta-wrap {
  margin-top: clamp(28px, 4vw, 36px);
}

.voix-btn,
.pro-btn,
.rec-btn,
.rv-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(18px, 1.1vw, 20px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 32px;
  text-decoration: none;
  color: var(--creme);
  background: var(--bordeaux);
  border: 1.5px solid var(--bordeaux);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.voix-btn:hover,
.pro-btn:hover,
.rec-btn:hover,
.rv-btn:hover {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}

/* Boutons sur fonds sombres / bordeaux — survol inversé crème */
.pro-hero .pro-btn:hover,
.voix-hero .voix-btn:hover,
.rec-hero .rec-btn:hover,
.pro-pourquoi__content .pro-btn--light:hover {
  background: transparent;
  color: var(--creme);
  border-color: var(--creme);
}

.voix-btn--light,
.pro-btn--light,
.rec-btn--light,
.rv-btn--light {
  background: var(--creme);
  color: var(--bordeaux);
  border-color: var(--creme);
}

.rec-btn--beige,
.rv-btn--beige {
  background: var(--beige);
  color: var(--bordeaux);
  border-color: var(--beige);
}

.rec-btn--beige:hover,
.rv-btn--beige:hover {
  background: var(--bordeaux);
  color: var(--creme);
  border-color: var(--bordeaux);
}

.btn.cta-plain {
  justify-content: center;
  text-transform: uppercase;
}

.recit-visible__cta,
.page-cta {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--creme);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  border-color: rgba(64,31,40,0.1);
  box-shadow: 0 2px 20px rgba(16,25,36,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  padding: 28px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  padding: 4px 6px;
  background-image: linear-gradient(var(--beige), var(--beige));
  background-size: 0% 52%;
  background-position: 0 88%;
  background-repeat: no-repeat;
  transition: background-size 0.3s var(--ease-out-expo);
}

.nav__logo img {
  display: block;
  height: 38px;
  width: auto;
}

.nav__logo:hover {
  background-size: 100% 52%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 52px;
  list-style: none;
}

.nav__links > li {
  list-style: none;
  position: relative;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brun);
  background-image: linear-gradient(var(--beige), var(--beige));
  background-size: 0% 52%;
  background-position: 0 88%;
  background-repeat: no-repeat;
  transition: color 0.2s, background-size 0.3s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--bordeaux);
  background-size: 100% 52%;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
  display: none;
}

.nav__dropdown:hover::before,
.nav__dropdown:focus-within::before,
.nav__dropdown.is-open::before {
  display: block;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Chevron — visible uniquement sur mobile */
.nav__dropdown-toggle::after {
  content: '';
  display: none;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease-out-expo);
  flex-shrink: 0;
}
.nav__dropdown.is-open .nav__dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 248px;
  padding: 8px;
  background: var(--creme);
  border: 1px solid rgba(64, 31, 40, 0.14);
  box-shadow: 0 18px 40px rgba(16, 25, 36, 0.12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo), visibility 0.25s;
  z-index: 210;
}

.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu,
.nav__dropdown.is-open .nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 13px 18px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bordeaux);
  border-radius: 2px;
  background-image: linear-gradient(var(--beige), var(--beige));
  background-size: 0% 100%;
  background-position: left center;
  background-repeat: no-repeat;
  transition: color 0.2s, background-size 0.35s var(--ease-out-expo);
}

.nav__submenu a:hover,
.nav__submenu a:focus-visible {
  color: var(--bordeaux);
  background-size: 100% 100%;
}

.nav__submenu li + li {
  margin-top: 4px;
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bordeaux);
  color: var(--creme);
  padding: 11px 26px;
  margin-left: 40px;
  flex-shrink: 0;
  border: 1px solid var(--bordeaux);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav__cta:hover {
  background: transparent;
  color: var(--bordeaux);
  border-color: rgba(64, 31, 40, 0.4);
}

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bordeaux);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Footer ── */
.footer {
  background: var(--bordeaux);
  color: var(--creme);
}

.footer__top {
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  align-items: start;
}

/* Brand column */
.footer__brand {}

.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer__logo img {
  display: block;
  height: clamp(38px, 4.5vw, 52px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__descriptor {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.4);
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer__baseline {
  font-family: var(--font-elegant);
  font-size: clamp(18px, 1.3vw, 20px);
  font-style: italic;
  line-height: 1.95;
  color: rgba(244, 241, 234, 0.72);
  letter-spacing: 0.01em;
}

/* Nav + contact columns */
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.4);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__links a {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  transition: opacity 0.2s;
}
.footer__links a:hover { opacity: 0.6; }

.footer__contact-line {
  margin: 0;
}

.footer__contact-line a {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.06em;
  color: rgba(244, 241, 234, 0.85);
  line-height: 2.3;
  display: inline-block;
  transition: color 0.2s;
}
.footer__contact-line a:hover { color: var(--creme); }

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  transition: opacity 0.2s;
}
.footer__social:hover { opacity: 0.75; }

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  padding: clamp(14px, 2vw, 22px) 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  gap: 16px;
}

.footer__legal {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.35);
  transition: color 0.2s;
}
.footer__legal:hover { color: rgba(244, 241, 234, 0.7); }

.footer__credit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 234, 0.25);
}
.footer__credit a {
  color: rgba(244, 241, 234, 0.35);
  transition: color 0.2s;
}
.footer__credit a:hover { color: rgba(244, 241, 234, 0.7); }

/* ── Section label ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brun);
  margin-bottom: 16px;
}

/* ── Autres accompagnements (cross-sell) ── */
.autres-accps {
  padding: clamp(72px, 9vw, 104px) clamp(24px, 5vw, 80px);
  background: var(--beige);
  border-top: 1px solid rgba(166, 146, 121, 0.2);
}

.autres-accps__inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.autres-accps__title {
  font-family: var(--font-script);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--bordeaux);
  line-height: 1.15;
  margin-bottom: 12px;
}

.autres-accps__sub {
  font-family: var(--font-elegant);
  font-size: clamp(18px, 1.4vw, 20px);
  font-style: italic;
  color: var(--brun);
  margin-bottom: clamp(40px, 5.5vw, 64px);
}

.autres-accps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: left;
  border: 1px solid rgba(64, 31, 40, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.autre-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 40px);
  text-decoration: none;
  color: inherit;
  background: var(--creme);
  border-right: 1px solid rgba(64, 31, 40, 0.1);
  position: relative;
  transition: background 0.3s var(--ease-out-expo);
  overflow: hidden;
}
.autre-card:last-child { border-right: none; }

.autre-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--bordeaux);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out-expo);
}
.autre-card:hover { background: white; }
.autre-card:hover::before { transform: scaleY(1); }

.autre-card__num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: rgba(64, 31, 40, 0.08);
  line-height: 1;
  margin-bottom: -4px;
}

.autre-card__name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--bordeaux);
  line-height: 1.1;
}

.autre-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brun);
}

.autre-card__text {
  font-family: var(--font-elegant);
  font-size: clamp(18px, 1.3vw, 19px);
  color: var(--brun);
  line-height: 1.78;
  flex-grow: 1;
}

.autre-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  transition: letter-spacing 0.3s;
}
.autre-card:hover .autre-card__cta { letter-spacing: 0.26em; }

.autres-accps__cta {
  margin-top: clamp(40px, 5vw, 56px);
}

@media (max-width: 760px) {
  .autres-accps__grid {
    grid-template-columns: 1fr;
  }
  .autre-card {
    border-right: none;
    border-bottom: 1px solid rgba(64, 31, 40, 0.1);
  }
  .autre-card:last-child { border-bottom: none; }
}

/* ── Divider ornement ── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
  width: fit-content;
}
.divider::before,
.divider::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--caramel);
}
.divider__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--caramel);
}

/* ── Photo frame ── */
.photo-frame {
  position: relative;
  display: block;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(166,146,121,0.6);
  pointer-events: none;
  z-index: 1;
}

/* ── Pattern bands ── */
.pattern-bordeaux {
  background-image: url('Identite-visuelle/fond_pos/fond-04.png');
  background-size: 360px;
}
.pattern-dark {
  background-image: url('Identite-visuelle/fond_pos/fond-02.png');
  background-size: 360px;
}
.pattern-beige {
  background-image: url('Identite-visuelle/fond_pos/fond-03.png');
  background-size: 360px;
}

/* ── Signature ── */
.signature {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--bordeaux);
  line-height: 1.1;
}

/* ── Cards ── */
.card {
  background: var(--beige);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo);
}
.card:hover { transform: translateY(-6px); }

/* Mouse-glow highlight */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(64,31,40,0.05) 0%,
    transparent 80%
  );
  pointer-events: none;
}

.card__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: rgba(64,31,40,0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--bordeaux);
  margin-bottom: 14px;
}

.card__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--brun);
}

/* ── Form elements ── */
.form-group { margin-bottom: 28px; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brun);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(166,146,121,0.5);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--brun);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--bordeaux); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }

  /* ── Menu ouvert ── */
  .nav__links--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;          /* empêche le centrage hérité du desktop */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--creme);
    padding: 0;
    gap: 0;
    border-bottom: 1px solid rgba(64,31,40,0.1);
    box-shadow: 0 8px 32px rgba(16,25,36,0.07);
    z-index: 199;
  }

  /* Items de premier niveau */
  .nav__links--open > li {
    border-bottom: 1px solid rgba(64,31,40,0.07);
    width: 100%;
  }
  .nav__links--open > li:last-child { border-bottom: none; }

  .nav__links--open > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 32px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brun);
    background-image: none !important;
    background-size: 0 !important;
    text-decoration: none;
    box-sizing: border-box;
  }
  .nav__links--open > li > a:hover { color: var(--bordeaux); }

  /* Chevron visible sur mobile */
  .nav__dropdown-toggle::after { display: inline-block; }

  /* Sous-menu */
  .nav__dropdown { width: 100%; }

  .nav__submenu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid rgba(64,31,40,0.07) !important;
    min-width: 0 !important;
    width: 100%;
    padding: 6px 0 10px !important;
    margin: 0 !important;
    display: none !important;
    background: var(--beige) !important;
    border-radius: 0 !important;
    transition: none !important;
  }

  .nav__dropdown.is-open .nav__submenu {
    display: block !important;
  }

  .nav__submenu li {
    border-bottom: 1px solid rgba(64,31,40,0.05);
  }
  .nav__submenu li:last-child { border-bottom: none; }

  .nav__submenu a {
    display: block !important;
    padding: 15px 32px !important;
    font-family: var(--font-serif) !important;
    font-size: 19px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--bordeaux) !important;
    background-image: none !important;
    background-size: 0 !important;
    transition: opacity 0.15s !important;
  }
  .nav__submenu a:hover { opacity: 0.65 !important; }
  .nav__submenu li + li { margin-top: 0; }

  .nav__burger { display: flex; margin-left: 16px; }
  .container   { padding: 0 24px; }
  .section-pad { padding: 64px 0; }
  .footer__inner { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  body { padding-bottom: 72px; }
}

/* ── Sticky CTA mobile ── */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 960px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--bordeaux);
    border-top: 1px solid rgba(244,241,234,0.15);
    box-shadow: 0 -4px 24px rgba(16,25,36,0.18);
  }
  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    font-family: var(--font-mono);
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--creme);
    text-decoration: none;
    gap: 10px;
    transition: background 0.25s;
  }
  .mobile-sticky-cta a:hover { background: var(--brun); }
  .mobile-sticky-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .btn { padding: 13px 24px; font-size: 18px; }
}
