  :root {
    --bourgogne: #7A1F2B;
    --noir-caveau: #111111;
    --creme-etiquette: #F4EFE6;
    --encre-sepia: #2A211B;
    --gris-ardoise: #A5A5A5;
    --gris-ardoise-soft: rgba(165, 165, 165, 0.32);
    --creme-soft: rgba(244, 239, 230, 0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    background: var(--noir-caveau);
    color: var(--creme-etiquette);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Grain léger, signature ADN caveau */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ========== Typo ========== */
  .overline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gris-ardoise);
  }

  h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

  /* ========== Filet signature à deux points ========== */
  .filet {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
  }
  .filet::before,
  .filet::after {
    content: '';
    height: 1px;
    background: var(--gris-ardoise);
    flex: 0 0 60px;
  }
  .filet-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--creme-etiquette);
    flex-shrink: 0;
  }
  .filet-text {
    color: var(--creme-etiquette);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* ========== Nav ========== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
  }
  nav > a {
    justify-self: start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  nav.scrolled > a {
    opacity: 1;
    pointer-events: auto;
  }
  nav.scrolled {
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 48px;
    border-bottom-color: var(--gris-ardoise-soft);
  }

  .nav-logo {
    display: block;
    height: 54px;
    width: auto;
    transition: height 0.4s ease;
  }
  nav.scrolled .nav-logo { height: 42px; }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    justify-self: center;
    line-height: 1;
  }
  .nav-links-mobile { display: none; }
  .nav-links a {
    color: var(--creme-etiquette);
    text-decoration: none;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    padding: 4px 0;
    line-height: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1px;
    background: var(--bourgogne);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--creme-etiquette);
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid var(--gris-ardoise);
    font-weight: 300;
    line-height: 1;
    transition: all 0.4s ease;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1px);
  }
  nav.scrolled .nav-cta {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta:hover {
    background: var(--bourgogne);
    border-color: var(--bourgogne);
    color: var(--creme-etiquette);
  }

  /* ========== Bouton de langue ========== */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
  }
  .nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--creme-etiquette);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
    padding: 4px 2px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    transform: translateY(2px);
  }
  .nav-lang:hover { opacity: 1; }
  .nav-lang svg {
    display: block;
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1;
  }

  /* ========== Burger mobile ========== */
  .nav-burger {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 22px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 60;
  }
  .nav-burger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--creme-etiquette);
    transition: transform 0.4s ease, opacity 0.3s ease, top 0.4s ease;
  }
  .nav-burger span:nth-child(1) { top: 4px; }
  .nav-burger span:nth-child(2) { top: 50%; }
  .nav-burger span:nth-child(3) { top: calc(100% - 4px); }
  .nav-burger.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

  /* ========== Hero ========== */
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    padding: clamp(90px, 13vh, 130px) 48px clamp(56px, 8vh, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
  }

  .hero-overline {
    margin-bottom: clamp(24px, 4vh, 44px);
    animation: fadeInUp 1.4s cubic-bezier(0.2, 0.65, 0.3, 1) 0.2s both;
  }
  .hero-overline::before,
  .hero-overline::after { display: none; }

  .hero-logo {
    display: block;
    width: clamp(220px, 35vw, 510px);
    height: auto;
    margin-top: clamp(24px, 4vh, 48px);
    margin-bottom: clamp(28px, 4.5vh, 56px);
    animation: fadeInUp 1.6s cubic-bezier(0.2, 0.65, 0.3, 1) 0.4s both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.2;
    color: var(--creme-etiquette);
    margin-bottom: clamp(20px, 3.5vh, 36px);
    max-width: 780px;
    animation: fadeInUp 1.6s cubic-bezier(0.2, 0.65, 0.3, 1) 0.7s both;
  }

  .hero-subtitle {
    max-width: 480px;
    font-size: 13px;
    line-height: 1.85;
    color: var(--gris-ardoise);
    font-weight: 300;
    margin-bottom: 0;
    animation: fadeInUp 1.6s cubic-bezier(0.2, 0.65, 0.3, 1) 0.9s both;
  }
  .br-mobile { display: none; }
  @media (max-width: 768px) {
    .br-mobile { display: inline; }
  }

  .hero-scroll {
    position: absolute;
    bottom: clamp(20px, 3.5vh, 36px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
    animation: fadeInUp 1.6s cubic-bezier(0.2, 0.65, 0.3, 1) 1.4s both;
  }
  .hero-scroll-line {
    display: block;
    width: 1px;
    height: clamp(36px, 6vh, 60px);
    background: linear-gradient(to top, var(--gris-ardoise), transparent);
    animation: scrollLine 2.2s ease-in-out infinite;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: bottom; }
    50% { transform: scaleY(0.3); transform-origin: top; }
  }

  /* ========== Section générique ========== */
  section { padding: clamp(80px, 12vh, 140px) 48px; position: relative; }
  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }
  .section-label-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--bourgogne);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .section-label-text {
    font-size: 11px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gris-ardoise);
  }

  /* ========== Intro maison ========== */
  .maison {
    padding: clamp(100px, 14vh, 180px) 48px;
    background: var(--noir-caveau);
    position: relative;
  }
  .maison-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: start;
  }
  .maison-left { position: sticky; top: 100px; }
  .maison h2 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.1;
    color: var(--creme-etiquette);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .maison h2 em {
    color: var(--bourgogne);
    font-style: italic;
  }
  .maison-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.55;
    color: var(--creme-etiquette);
    margin-bottom: 28px;
    font-weight: 300;
  }
  .maison-body p:last-of-type { margin-bottom: 0; }
  .maison-body p.lede {
    font-size: 24px;
    font-style: italic;
    color: var(--creme-etiquette);
    padding-left: 24px;
    border-left: 1px solid var(--bourgogne);
  }
  .maison-quote {
    margin-top: 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gris-ardoise);
  }


  /* ========== FRISE DES MILLÉSIMES — ÉRUDITE (fond crème) ========== */
  .frise {
    background: var(--creme-etiquette);
    color: var(--encre-sepia);
    padding: clamp(80px, 12vh, 140px) 48px clamp(70px, 9vh, 110px);
    position: relative;
  }
  .frise .section-label-text { color: var(--encre-sepia); opacity: 0.7; }
  .frise-header {
    text-align: center;
    margin-bottom: 96px;
  }
  .frise h2 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    color: var(--encre-sepia);
    max-width: 700px;
    margin: 0 auto 24px;
  }
  .frise h2 em { color: var(--bourgogne); font-style: italic; }
  .frise-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--encre-sepia);
    opacity: 0.72;
    font-size: 14px;
    line-height: 1.85;
  }
  .frise-timeline {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
  }
  .frise-line {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(42, 33, 27, 0.28) 6%,
      rgba(42, 33, 27, 0.28) 94%,
      transparent 100%);
    transform: translateY(-50%);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.6s cubic-bezier(0.2, 0.65, 0.3, 1) 0.15s;
  }
  .frise-timeline.reveal { opacity: 1; transform: none; transition: none; }
  .frise-timeline.reveal.visible .frise-line { clip-path: inset(0); }
  .frise-years {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    position: relative;
  }
  .frise-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 0;
    position: relative;
    min-width: 0;
    flex: 1;
    transition: transform 0.5s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
  .frise-year.bottom { flex-direction: column-reverse; }

  /* Point sur la ligne */
  .frise-year::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(42, 33, 27, 0.5);
    transform: translate(-50%, -50%);
    transition: background 0.4s ease, width 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
  }
  .frise-year:hover::before {
    background: var(--bourgogne);
    width: 11px; height: 11px;
    box-shadow: 0 0 0 5px rgba(122, 31, 43, 0.18);
  }
  .frise-year:hover { transform: translateY(-4px); }
  .frise-year.bottom:hover { transform: translateY(4px); }

  /* Année + légende courte toujours visibles */
  .frise-year-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2vw, 30px);
    color: var(--encre-sepia);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.4s ease;
    animation: frisePulse 5.5s ease-in-out infinite;
  }
  .frise-year:nth-child(1) .frise-year-num { animation-delay: 0s; }
  .frise-year:nth-child(2) .frise-year-num { animation-delay: 0.55s; }
  .frise-year:nth-child(3) .frise-year-num { animation-delay: 1.1s; }
  .frise-year:nth-child(4) .frise-year-num { animation-delay: 1.65s; }
  .frise-year:nth-child(5) .frise-year-num { animation-delay: 2.2s; }
  .frise-year:nth-child(6) .frise-year-num { animation-delay: 2.75s; }
  .frise-year:nth-child(7) .frise-year-num { animation-delay: 3.3s; }
  .frise-year:nth-child(8) .frise-year-num { animation-delay: 3.85s; }
  .frise-year:nth-child(9) .frise-year-num { animation-delay: 4.4s; }
  .frise-year:nth-child(10) .frise-year-num { animation-delay: 4.95s; }
  .frise-year.bottom .frise-year-num {
    margin-bottom: 0;
    margin-top: 12px;
  }
  .frise-year:hover .frise-year-num { color: var(--bourgogne); animation: none; }

  .frise-year-caption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 15.5px;
    color: rgba(42, 33, 27, 0.6);
    line-height: 1.35;
    max-width: 140px;
    margin-bottom: 80px;
    transition: color 0.4s ease;
  }
  .frise-year.bottom .frise-year-caption {
    margin-bottom: 0;
    margin-top: 80px;
  }
  .frise-year:hover .frise-year-caption { color: var(--encre-sepia); }

  .frise-foot {
    text-align: center;
    margin-top: 80px;
    color: var(--encre-sepia);
    opacity: 0.72;
    font-size: 14px;
    line-height: 1.85;
  }
  .frise-foot a {
    color: var(--bourgogne);
    text-decoration: none;
    border-bottom: 1px solid var(--bourgogne);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
  }
  .frise-foot a:hover { opacity: 0.7; }

  /* ========== PROVENANCE ========== */
  .provenance {
    background: var(--noir-caveau);
    padding: clamp(80px, 12vh, 140px) 48px clamp(100px, 14vh, 180px);
    border-top: 1px solid var(--gris-ardoise-soft);
  }
  .provenance-header {
    text-align: center;
    margin-bottom: 100px;
  }
  .provenance h2 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    color: var(--creme-etiquette);
    max-width: 720px;
    margin: 0 auto 24px;
  }
  .provenance h2 em { color: var(--bourgogne); font-style: italic; }

  .provenance-intro {
    max-width: 620px;
    margin: 0 auto;
    color: var(--gris-ardoise);
    font-size: 14px;
    line-height: 1.85;
  }

  .deux-sources {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 80px;
  }
  .source-sep {
    background: var(--gris-ardoise-soft);
  }
  .source-sep.reveal {
    opacity: 1;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
  }
  .source-sep.reveal.visible {
    transform: scaleY(1);
  }
  .source-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--bourgogne);
    font-size: 18px;
    margin-bottom: 20px;
  }
  .source-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(28px, 2.8vw, 36px);
    line-height: 1.2;
    color: var(--creme-etiquette);
    margin-bottom: 28px;
  }
  .source-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.6;
    color: var(--creme-etiquette);
    font-weight: 300;
    opacity: 0.88;
    text-wrap: balance;
  }
  .deux-sources > .reveal {
    display: flex;
    flex-direction: column;
  }
  .deux-sources > .reveal .source-body {
    flex: 1;
  }

  /* ========== Sélection / Climats ========== */
  .selection {
    padding: clamp(50px, 7vh, 80px) 48px clamp(70px, 10vh, 120px);
    background: var(--creme-etiquette);
    color: var(--encre-sepia);
  }
  .selection-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .selection .section-label-text { color: var(--encre-sepia); opacity: 0.7; }
  .selection h2 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    color: var(--encre-sepia);
    max-width: 700px;
    margin: 0 auto 24px;
  }
  .selection h2 em { color: var(--bourgogne); font-style: italic; }
  .selection-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--encre-sepia);
    opacity: 0.75;
    font-size: 14px;
    line-height: 1.85;
    text-align: center;
  }


  /* ========== Carte des climats (fond crème) ========== */
  .carte-wrapper {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 820px;
    margin: 60px auto 0;
    aspect-ratio: 3 / 4;
  }
  /* Texture parchemin : bornée au rectangle de la carte uniquement */
  .carte-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0.32  0 0 0 0 0.22  0 0 0 0 0.14  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
    opacity: 0.26;
    mix-blend-mode: multiply;
    z-index: 0;
  }
  .carte-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .cadre-externe,
  .cadre-interne {
    fill: none;
    stroke: var(--encre-sepia);
    opacity: 0.22;
  }
  .cadre-externe { stroke-width: 0.5; }
  .cadre-interne { stroke-width: 0.3; }

  .rose-vents line { stroke: var(--encre-sepia); stroke-width: 0.5; opacity: 0.55; }
  .rose-vents circle { fill: none; stroke: var(--encre-sepia); stroke-width: 0.5; opacity: 0.4; }
  .rose-vents .fleche-nord { fill: var(--encre-sepia); opacity: 0.7; }
  .rose-vents text {
    fill: var(--encre-sepia);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 0.7;
  }

  .parcelle {
    fill: var(--encre-sepia);
    opacity: 0.05;
  }

  .cote-trace {
    fill: none;
    stroke: var(--encre-sepia);
    stroke-width: 1.5;
    stroke-linecap: round;
    opacity: 0.42;
  }

  .village-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 3px;
    fill: var(--encre-sepia);
    text-transform: uppercase;
    opacity: 0.6;
  }
  .village-point { fill: var(--encre-sepia); opacity: 0.6; }

  /* Villes (Dijon, Nuits-Saint-Georges, Beaune) : cercle plein, fond de carte discret */
  .ville-point {
    fill: var(--encre-sepia);
    opacity: 0.55;
  }
  .ville-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 8px;
    letter-spacing: 2.5px;
    fill: var(--encre-sepia);
    text-transform: uppercase;
    opacity: 0.5;
  }

  .village-point-mineur { fill: var(--encre-sepia); opacity: 0.45; }
  .village-label-mineur[text-anchor="start"] { transform: translateX(5px); }
  .village-label-mineur[text-anchor="end"] { transform: translateX(-5px); }
  .village-label-mineur {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 10px;
    fill: var(--encre-sepia);
    opacity: 0.55;
  }

  .zone-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 8.5px;
    letter-spacing: 4px;
    fill: var(--encre-sepia);
    text-transform: uppercase;
    opacity: 0.45;
  }

  .colline-corton {
    fill: var(--encre-sepia);
    fill-opacity: 0.04;
    stroke: var(--encre-sepia);
    stroke-width: 0.4;
    stroke-dasharray: 1 1.5;
    opacity: 0.5;
  }

  .boutique-marker {
    cursor: pointer;
    pointer-events: bounding-box;
  }
  .boutique-marker .boutique-cercle {
    fill: none;
    stroke: var(--bourgogne);
    stroke-width: 0.7;
    opacity: 0.9;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease;
  }
  .boutique-marker .boutique-croix {
    stroke: var(--bourgogne);
    stroke-width: 0.9;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease;
  }
  .boutique-marker:hover .boutique-cercle {
    transform: scale(1.3);
    stroke-width: 1;
    opacity: 1;
  }
  .boutique-marker:hover .boutique-croix {
    transform: scale(1.3);
    stroke-width: 1.2;
    opacity: 1;
  }
  @media (prefers-reduced-motion: reduce) {
    .boutique-marker .boutique-cercle,
    .boutique-marker .boutique-croix { transition: none; }
  }
  .boutique-marker text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 10px;
    fill: var(--bourgogne);
    opacity: 0.95;
  }

  .region-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 5px;
    fill: var(--encre-sepia);
    text-transform: uppercase;
    opacity: 0.85;
  }
  .region-filet {
    stroke: var(--encre-sepia);
    stroke-width: 0.5;
    opacity: 0.7;
  }

  .echelle line { stroke: var(--encre-sepia); stroke-width: 0.5; opacity: 0.55; }
  .echelle text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 8px;
    letter-spacing: 2px;
    fill: var(--encre-sepia);
    opacity: 0.65;
  }

  .climat {
    cursor: pointer;
    pointer-events: bounding-box;
  }
  .climat-point-exterieur {
    fill: none;
    stroke: var(--encre-sepia);
    stroke-width: 0.9;
    opacity: 0.55;
    transition: all 0.4s ease;
    transform-box: fill-box;
    transform-origin: center;
  }
  .climat-point-interieur {
    fill: var(--encre-sepia);
    opacity: 0.78;
    transition: all 0.4s ease;
    transform-box: fill-box;
    transform-origin: center;
  }
  .climat-point-exterieur {
    animation: climatPointExtPulse 5.5s ease-in-out infinite;
    animation-delay: var(--climat-pulse-delay, 0s);
  }
  .climat-point-interieur {
    animation: climatPointIntPulse 5.5s ease-in-out infinite;
    animation-delay: var(--climat-pulse-delay, 0s);
  }
  .climat-nom {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    fill: var(--encre-sepia);
    opacity: 0.88;
    transition: all 0.4s ease;
  }
  .climat:hover .climat-point-exterieur,
  .climat:hover .climat-point-interieur,
  .climat:focus-visible .climat-point-exterieur,
  .climat:focus-visible .climat-point-interieur { animation: none; }
  .climat-appellation {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 8px;
    letter-spacing: 1.5px;
    fill: var(--encre-sepia);
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.5s ease;
  }
  .climat-trait-rappel {
    stroke: var(--encre-sepia);
    stroke-width: 0.5;
    opacity: 0.22;
    transition: all 0.4s ease;
  }
  .climat:hover .climat-point-exterieur {
    stroke: var(--bourgogne);
    stroke-width: 1.4;
    opacity: 1;
    transform: scale(1.385);
  }
  .climat:hover .climat-point-interieur {
    fill: var(--bourgogne);
    opacity: 1;
    transform: scale(1.2);
  }
  .climat:hover .climat-nom {
    fill: var(--bourgogne);
    opacity: 1;
    font-size: 20px;
  }
  .climat:hover .climat-appellation { opacity: 0.85; }
  .climat:hover .climat-trait-rappel {
    stroke: var(--bourgogne);
    opacity: 0.55;
  }
  .climat-souligne {
    stroke: var(--bourgogne);
    stroke-width: 1;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    transition: stroke-dashoffset 0.6s ease;
  }
  .climat:hover .climat-souligne { stroke-dashoffset: 0; }

  /* Climat cliquable : état focus (clavier) = même mise en valeur que hover */
  .climat { cursor: pointer; }
  .climat:focus { outline: none; }
  .climat:focus-visible .climat-point-exterieur { stroke: var(--bourgogne); stroke-width: 1.4; opacity: 1; transform: scale(1.385); }
  .climat:focus-visible .climat-point-interieur { fill: var(--bourgogne); opacity: 1; transform: scale(1.2); }
  .climat:focus-visible .climat-nom { fill: var(--bourgogne); opacity: 1; font-size: 20px; }
  .climat:focus-visible .climat-appellation { opacity: 0.85; }
  .climat:focus-visible .climat-souligne { stroke-dashoffset: 0; }

  /* Tracé de la Côte : animation lente déclenchée quand la carte entre dans le viewport */
  .cote-trace {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 5s cubic-bezier(0.4, 0.15, 0.25, 1) 0.5s;
  }
  .carte-wrapper.visible .cote-trace { stroke-dashoffset: 0; }

  @media (max-width: 768px) {
    .carte-wrapper {
      margin-top: 20px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      max-width: none;
    }
    .ville-dijon { transform: translate(4px, -2px); }
    .ville-nuits { transform: translate(-4px, -2px); }
    .ville-beaune { transform: translate(4px, 2px); }
    .boutique-label { transform: translate(4px, 2px); }
    .climat-nom { font-size: 20px; }
    .climat-appellation { font-size: 11.5px; }
    .climat:hover .climat-nom,
    .climat:focus-visible .climat-nom { font-size: 22px; }
    .village-label, .region-label { font-size: 11.5px; letter-spacing: 2px; }
    .village-label-mineur { font-size: 13.5px; }
    .ville-label { font-size: 11.5px; }
    /* Pulse un peu plus marqué sur mobile (pas de hover pour signaler l'interactivité) */
    .climat-point-exterieur {
      animation: climatPointExtPulseMobile 4.2s ease-in-out infinite;
    }
    .climat-point-interieur {
      animation: climatPointIntPulseMobile 4.2s ease-in-out infinite;
    }
  }
  @keyframes climatPointExtPulse {
    0%, 100% { stroke: var(--encre-sepia); stroke-width: 0.9; opacity: 0.55; transform: scale(1.031); }
    50% { stroke: var(--bourgogne); stroke-width: 1.3; opacity: 1; transform: scale(1.077); }
  }
  @keyframes climatPointIntPulse {
    0%, 100% { fill: var(--encre-sepia); opacity: 0.85; transform: scale(1.02); }
    50% { fill: var(--bourgogne); opacity: 0.95; transform: scale(1.08); }
  }
  @keyframes climatPointExtPulseMobile {
    0%, 100% { stroke: var(--encre-sepia); stroke-width: 1.05; opacity: 0.7; transform: scale(1.369); }
    50%      { stroke: var(--bourgogne);   stroke-width: 1.4;  opacity: 1;   transform: scale(1.6); }
  }
  @keyframes climatPointIntPulseMobile {
    0%, 100% { fill: var(--encre-sepia); opacity: 0.85; transform: scale(1.36); }
    50%      { fill: var(--bourgogne);   opacity: 1;    transform: scale(1.64); }
  }

  /* ========== Modal fiche climat ========== */
  .climat-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .climat-modal.open { display: flex; }
  .climat-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
    animation: modalOverlayFade 0.4s ease;
  }
  @keyframes modalOverlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .climat-modal-card {
    position: relative;
    max-width: 620px;
    width: 100%;
    max-height: calc(100% - 80px);
    overflow-y: auto;
    background: var(--creme-etiquette);
    color: var(--encre-sepia);
    padding: 64px 56px 48px;
    z-index: 1;
    animation: modalCardEnter 0.55s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
  @keyframes modalCardEnter {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .climat-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--encre-sepia);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
    padding: 8px;
  }
  .climat-modal-close:hover { opacity: 1; color: var(--bourgogne); }
  .climat-modal-overline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 10.5px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--bourgogne);
    margin-bottom: 16px;
  }
  .climat-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    color: var(--encre-sepia);
    margin-bottom: 36px;
  }
  .climat-modal-section { margin-bottom: 26px; }
  .climat-modal-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--encre-sepia);
    opacity: 0.55;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .climat-modal-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--encre-sepia);
    opacity: 1;
    font-weight: 300;
  }
  .climat-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 16px 32px;
    background: var(--bourgogne);
    color: var(--creme-etiquette);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.4s ease;
  }
  .climat-modal-cta:hover { background: var(--encre-sepia); }
  .climat-modal-cta-arrow { transition: transform 0.4s ease; }
  .climat-modal-cta:hover .climat-modal-cta-arrow { transform: translateX(4px); }
  body.climat-modal-open { overflow: hidden; touch-action: none; }
  body.climat-modal-open .climat-modal-card { touch-action: pan-y; }

  @media (max-width: 600px) {
    .climat-modal { padding: 24px 18px; }
    .climat-modal-card { padding: 36px 22px 28px; max-height: calc(100% - 48px); }
    .climat-modal-title { font-size: clamp(28px, 7vw, 36px); margin-bottom: 24px; }
    .climat-modal-section { margin-bottom: 18px; }
    .climat-modal-section p { font-size: 15px; }
    .climat-modal-cta { padding: 13px 22px; font-size: 9.5px; letter-spacing: 0.28em; }
  }

  /* ========== Publics ========== */
  /* ========== Liste téléchargeable ========== */
  .liste {
    background: var(--noir-caveau);
    padding: clamp(80px, 12vh, 140px) 48px clamp(90px, 13vh, 160px);
  }
  .liste-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    border: 1px solid var(--gris-ardoise-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .liste-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(122, 31, 43, 0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .liste-card .overline { color: var(--bourgogne); margin-bottom: 24px; }
  .liste-card h3 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(32px, 3.2vw, 42px);
    color: var(--creme-etiquette);
    margin-bottom: 20px;
  }
  .liste-card p {
    color: var(--gris-ardoise);
    font-size: 14px;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }
  .liste-downloads {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border: 1px solid var(--gris-ardoise);
    color: var(--creme-etiquette);
    text-decoration: none;
    font-size: 10.5px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 300;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bourgogne);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
  }
  .download-btn:hover::before { transform: translateY(0); }
  .download-btn:hover { border-color: var(--bourgogne); }
  .download-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* ========== Rendez-vous ========== */
  .rdv {
    background: var(--creme-etiquette);
    color: var(--encre-sepia);
    padding: clamp(80px, 12vh, 140px) 48px clamp(100px, 14vh, 180px);
    position: relative;
    overflow: hidden;
  }
  .rdv-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .rdv .section-label-text { color: var(--encre-sepia); opacity: 0.7; }
  .rdv h2 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.05;
    color: var(--encre-sepia);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .rdv h2 em { color: var(--bourgogne); font-style: italic; }
  .rdv-dedicace {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.65;
    color: var(--bourgogne);
    max-width: 440px;
    margin: 0 0 48px;
  }
  .rdv-dedicace span {
    opacity: 0.5;
    margin: 0 6px;
    font-style: normal;
  }
  .rdv-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--encre-sepia);
    margin-bottom: 20px;
    font-weight: 300;
  }
  .rdv-infos {
    padding-left: 48px;
    padding-top: 80px;
    position: relative;
  }
  .rdv-infos::before {
    content: '';
    position: absolute;
    left: 0;
    top: 80px;
    bottom: 0;
    width: 1px;
    background: rgba(42, 33, 27, 0.3);
  }
  .rdv-info { margin-bottom: 36px; }
  .rdv-info:last-child { margin-bottom: 0; }
  .rdv-info-label {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--encre-sepia);
    opacity: 0.7;
    margin-bottom: 10px;
  }
  .rdv-info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--encre-sepia);
    font-weight: 400;
  }
  .rdv-info-value a {
    color: var(--encre-sepia);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .rdv-info-value a:hover {
    color: var(--bourgogne);
    border-bottom-color: var(--bourgogne);
  }
  .rdv-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px 40px;
    background: var(--bourgogne);
    color: var(--creme-etiquette);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.4s ease, letter-spacing 0.4s ease;
  }
  .rdv-cta:hover {
    background: var(--encre-sepia);
    letter-spacing: 0.45em;
  }
  .rdv-cta-arrow { transition: transform 0.4s ease; }
  .rdv-cta:hover .rdv-cta-arrow { transform: translateX(6px); }

  /* ========== Estimation ========== */
  .estimation {
    background: var(--noir-caveau);
    padding: clamp(80px, 12vh, 140px) 48px clamp(90px, 13vh, 160px);
    text-align: center;
  }
  .estimation-container { max-width: 720px; margin: 0 auto; }
  .estimation h3 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.2;
    color: var(--creme-etiquette);
    margin: 40px 0 28px;
  }
  .estimation p {
    color: var(--gris-ardoise);
    font-size: 14px;
    line-height: 1.9;
    max-width: 540px;
    margin: 0 auto 40px;
  }
  .estimation-link {
    color: var(--creme-etiquette);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--bourgogne);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
  }
  .estimation-link:hover {
    color: var(--bourgogne);
    letter-spacing: 0.45em;
  }

  /* ========== Footer ========== */
  footer {
    background: var(--noir-caveau);
    padding: 100px 48px 40px;
    color: var(--gris-ardoise);
    font-size: 12px;
  }
  .footer-grid {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
  }
  .footer-grid > .footer-col:nth-child(2) { grid-column: 3; }
  .footer-grid > .footer-col:nth-child(3) { grid-column: 4; }
  .footer-grid > .footer-col:nth-child(4) { grid-column: 5; }
  .footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.95;
  }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gris-ardoise);
    font-size: 16px;
    max-width: 260px;
  }
  .footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--creme-etiquette);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--gris-ardoise);
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.3s ease;
  }
  .footer-col a:hover { color: var(--creme-etiquette); }
  .footer-social {
    display: inline-flex;
    align-items: center;
    color: var(--gris-ardoise);
    margin-top: 18px;
    transition: color 0.3s ease;
  }
  .footer-social:hover { color: var(--creme-etiquette); }
  .footer-social svg { display: block; }
  .footer-bottom {
    max-width: 1800px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--gris-ardoise-soft);
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gris-ardoise);
  }
  .footer-bottom a {
    color: var(--gris-ardoise);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-bottom a:hover { color: var(--creme-etiquette); }

  /* ========== Responsive ========== */
  @media (max-width: 900px) {
    nav { padding: 16px 20px; grid-template-columns: 1fr auto; }
    nav.scrolled { padding: 10px 20px; }
    .nav-links-mobile { display: block; }
    .nav-links-mobile .nav-links-cta {
      display: inline-block;
      margin-top: 8px;
      padding: 12px 22px;
      border: 1px solid var(--bourgogne);
      background: var(--bourgogne);
      color: var(--creme-etiquette);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      text-decoration: none;
      line-height: 1;
    }
    .nav-links-mobile .nav-links-cta::after { display: none; }
    .nav-logo { height: 40px; }
    nav.scrolled .nav-logo { height: 32px; }
    .nav-burger { display: block; }
    .nav-cta { display: none; }
    .nav-links {
      position: fixed;
      top: 0; right: 0; left: auto;
      width: 80%;
      max-width: 340px;
      height: 100vh;
      height: 100dvh;
      background: #111;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 110px 36px 40px;
      gap: 28px;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 55;
      border-left: 1px solid var(--gris-ardoise-soft);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 13px; letter-spacing: 0.35em; }
    .nav-links li:has(.nav-links-cta) {
      margin-top: 20px;
      padding-top: 28px;
      border-top: 1px solid var(--gris-ardoise-soft);
      width: 100%;
    }
    .nav-cta { padding: 8px 14px; font-size: 9px; letter-spacing: 0.2em; }
    .nav-actions { gap: 12px; }
    .nav-lang { font-size: 10.5px; letter-spacing: 0.25em; gap: 6px; }
    .nav-lang svg { width: 17px; height: 17px; }
    body.nav-open { overflow: hidden; }
    section, .hero, .maison, .frise, .provenance, .selection, .liste, .rdv, .estimation { padding-left: 28px; padding-right: 28px; }
    .maison, .frise, .provenance, .selection, .liste, .rdv, .estimation { padding-top: 64px; }
    .hero { padding-top: 96px; }
    .filet::before, .filet::after { flex: 0 0 28px; }
    .section-label[style*="center"] { flex-direction: column; gap: 10px; }
    .hero-overline, .estimation .filet { padding: 0 12px; }
    .maison-body p { font-size: 17px; line-height: 1.6; margin-bottom: 20px; }
    .maison-body p.lede { font-size: 18px; padding-left: 18px; }
    .rdv-body p { font-size: 17px; line-height: 1.6; margin-bottom: 18px; }
    .rdv-dedicace { font-size: 15px; margin-bottom: 36px; }
    .rdv-dedicace .rdv-br-desktop { display: none; }
    .rdv-info-value { font-size: 17px; }
    .rdv-info { margin-bottom: 28px; }
    .maison-grid, .rdv-grid, .deux-sources { grid-template-columns: 1fr; gap: 48px; }
    .deux-sources .source-sep { height: 1px; width: 100%; }
    .maison-left { position: static; }
    .rdv-cta { display: flex; width: 100%; justify-content: center; white-space: nowrap; padding: 18px 28px; gap: 12px; letter-spacing: 0.3em; }
    .rdv-infos { border-left: none; border-top: 1px solid rgba(42, 33, 27, 0.2); padding-left: 0; padding-top: 40px; }
    .rdv-infos::before { display: none; }
    footer { padding: 60px 20px 28px; }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 36px 24px;
      margin-bottom: 48px;
    }
    .footer-grid > div:first-child {
      grid-column: 1 / -1;
      margin-bottom: 4px;
    }
    .footer-grid > .footer-col:nth-child(2),
    .footer-grid > .footer-col:nth-child(3),
    .footer-grid > .footer-col:nth-child(4) { grid-column: auto; }
    .footer-logo { width: 150px; margin-bottom: 14px; }
    .footer-tagline { font-size: 15px; }
    .footer-col h4 { margin-bottom: 14px; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a, .footer-col li { font-size: 12px; }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-top: 22px;
      font-size: 9px;
      letter-spacing: 0.15em;
    }
    .liste-card { padding: 50px 20px; }
    .liste-downloads { flex-direction: column; align-items: center; }

    /* Frise en mobile : on transpose la frise horizontale en version verticale */
    .frise-header { margin-bottom: 48px; }
    .frise-timeline { padding: 12px 0; }
    .frise-line {
      top: 0; bottom: 0;
      left: 50%; right: auto;
      width: 1px; height: auto;
      background: linear-gradient(to bottom,
        transparent 0%,
        rgba(42, 33, 27, 0.28) 5%,
        rgba(42, 33, 27, 0.28) 95%,
        transparent 100%);
      transform: translateX(-50%);
      clip-path: inset(0 0 100% 0);
      transition: clip-path 2.8s cubic-bezier(0.2, 0.65, 0.3, 1) 0.15s;
    }
    .frise-years { flex-direction: column; align-items: stretch; gap: 0; }
    .frise-year,
    .frise-year.bottom {
      flex: 0 0 auto;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      width: 50%;
      margin-left: 50%;
      padding: 18px 0 18px 22px;
      min-height: 78px;
    }
    .frise-year.bottom {
      margin-left: 0;
      padding: 18px 22px 18px 0;
      text-align: right;
      align-items: flex-end;
    }
    .frise-year::before {
      top: 50%;
      left: 0;
      transform: translate(-50%, -50%);
    }
    .frise-year.bottom::before {
      left: auto;
      right: 0;
      transform: translate(50%, -50%);
    }
    .frise-year:hover { transform: translateX(-3px); }
    .frise-year.bottom:hover { transform: translateX(3px); }
    .frise-year-num,
    .frise-year.bottom .frise-year-num {
      font-size: 24px;
      margin: 0 0 6px 0;
    }
    .frise-year-caption,
    .frise-year.bottom .frise-year-caption {
      font-size: 15px;
      max-width: none;
      margin: 0;
    }
  }
  @keyframes frisePulse {
    0%, 100% { color: var(--encre-sepia); }
    50% { color: var(--bourgogne); }
  }

  @media (min-width: 600px) and (max-width: 900px) {
    section, .hero, .maison, .frise, .provenance, .selection, .liste, .rdv, .estimation {
      padding-left: 56px;
      padding-right: 56px;
    }
    footer { padding-left: 56px; padding-right: 56px; }
    .filet::before, .filet::after { flex: 0 0 80px; }
    .footer-grid {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 36px 28px;
    }
    .footer-grid > div:first-child {
      grid-column: 1 / -1;
    }
  }

  /* Mobile + landscape phone : harmoniser TOUS les paragraphes en visuel — Cormorant un peu plus grand que Montserrat pour compenser sa x-height plus petite */
  @media (max-width: 900px), (orientation: landscape) and (max-height: 500px) {
    /* Sans-serif Montserrat — taille de référence 14px */
    .frise-intro,
    .selection-intro,
    .provenance-intro,
    .liste-card p,
    .estimation p { font-size: 14px; line-height: 1.85; }
    /* Serif Cormorant — +15% pour parité visuelle avec Montserrat 14px */
    .maison-body p,
    .rdv-body p,
    .source-body { font-size: 16px; line-height: 1.7; }
    .maison-body p { margin-bottom: 16px; }
    .rdv-body p { margin-bottom: 16px; }
    .maison-body p.lede { font-size: 17px; line-height: 1.55; }
  }

  /* ========== Mosaïque photo strip — accordéon horizontal ========== */
  .lieu-mosaic {
    display: flex;
    gap: 6px;
    width: 100%;
    height: clamp(460px, 68vh, 660px);
    margin-top: clamp(56px, 8vh, 96px);
  }
  .rdv .lieu-mosaic {
    margin-left: -48px;
    margin-right: -48px;
    width: auto;
  }

  .lieu-panel {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    cursor: zoom-in;
    background: #000;
    transition: flex-grow 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: flex-grow;
    outline: none;
    margin: 0;
  }
  .lieu-mosaic:hover .lieu-panel,
  .lieu-mosaic:focus-within .lieu-panel { flex: 0.85; }
  .lieu-mosaic .lieu-panel:hover,
  .lieu-mosaic .lieu-panel:focus-visible { flex: 1.6; }

  .lieu-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.7s ease;
    filter: grayscale(0.1) sepia(0.05) brightness(0.78) contrast(1.02);
    will-change: transform, filter;
  }
  .lieu-mosaic .lieu-panel:hover img,
  .lieu-mosaic .lieu-panel:focus-visible img {
    transform: scale(1.0);
    filter: brightness(1) contrast(1.04);
  }
  /* Landscapes 01 & 05 : zoom IN au survol (au lieu du dézoom des portraits) — direction homogène avec les autres */
  .lieu-mosaic > .lieu-panel:nth-child(1):hover img,
  .lieu-mosaic > .lieu-panel:nth-child(1):focus-visible img,
  .lieu-mosaic > .lieu-panel:nth-child(5):hover img,
  .lieu-mosaic > .lieu-panel:nth-child(5):focus-visible img {
    transform: scale(1.18);
  }

  /* Numéro discret en haut */
  .lieu-panel-num {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    color: var(--creme-etiquette);
    opacity: 0.75;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    transition: opacity 0.5s ease, color 0.5s ease, letter-spacing 0.5s ease;
  }
  .lieu-mosaic .lieu-panel:hover .lieu-panel-num,
  .lieu-mosaic .lieu-panel:focus-visible .lieu-panel-num {
    opacity: 1;
    color: var(--bourgogne);
    text-shadow: none;
    letter-spacing: 0.04em;
  }

  /* Lightbox "Le Lieu" */
  .lieu-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.96);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 80px) clamp(80px, 12vh, 120px);
  }
  .lieu-lightbox.open { opacity: 1; pointer-events: auto; }
  .lieu-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.35s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  }
  .lieu-lightbox-close {
    position: absolute;
    top: 22px; right: 26px;
    background: none;
    border: none;
    color: var(--creme-etiquette);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 6px 10px;
    font-family: 'Cormorant Garamond', serif;
  }
  .lieu-lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
  .lieu-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid var(--gris-ardoise-soft);
    color: var(--creme-etiquette);
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1;
    border-radius: 50%;
  }
  .lieu-lightbox-nav:hover {
    opacity: 1;
    border-color: var(--creme-etiquette);
    background: rgba(244, 239, 230, 0.05);
  }
  .lieu-lightbox-nav.prev { left: clamp(12px, 3vw, 36px); }
  .lieu-lightbox-nav.next { right: clamp(12px, 3vw, 36px); }
  .lieu-lightbox-counter {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gris-ardoise);
    opacity: 0.65;
  }
  body.lieu-modal-open { overflow: hidden; touch-action: none; }

  @media (hover: none), (max-width: 768px) {
    .rdv .lieu-mosaic { margin-left: -28px; margin-right: -28px; }
    .lieu-mosaic {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: auto auto;
      height: auto;
      gap: 6px;
      padding: 0 clamp(16px, 4vw, 32px);
    }
    /* Rangée 1 — les deux paysages : 01 (façade) à gauche, 05 (étagères) à droite */
    .lieu-mosaic > .lieu-panel:nth-child(1) { grid-column: 1 / span 3; grid-row: 1; aspect-ratio: 3 / 2; }
    .lieu-mosaic > .lieu-panel:nth-child(5) { grid-column: 4 / span 3; grid-row: 1; aspect-ratio: 3 / 2; }
    /* Rangée 2 — les trois portraits 02 (patine), 03 (seuil), 04 (suspensions) */
    .lieu-mosaic > .lieu-panel:nth-child(2) { grid-column: 1 / span 2; grid-row: 2; aspect-ratio: 2 / 3; }
    .lieu-mosaic > .lieu-panel:nth-child(3) { grid-column: 3 / span 2; grid-row: 2; aspect-ratio: 2 / 3; }
    .lieu-mosaic > .lieu-panel:nth-child(4) { grid-column: 5 / span 2; grid-row: 2; aspect-ratio: 2 / 3; }
    .lieu-panel { width: auto; height: auto; flex: unset; }
    .lieu-mosaic:hover .lieu-panel,
    .lieu-mosaic:focus-within .lieu-panel,
    .lieu-mosaic .lieu-panel:hover,
    .lieu-mosaic .lieu-panel:focus-visible { flex: unset; }
    .lieu-panel img,
    .lieu-mosaic > .lieu-panel:nth-child(1) img,
    .lieu-mosaic > .lieu-panel:nth-child(5) img {
      transform: scale(1);
      filter: grayscale(0.1) sepia(0.05) brightness(0.92) contrast(1.02);
    }
    .lieu-panel-num { opacity: 0.85; font-size: 13px; top: 12px; left: 14px; }
    .lieu-lightbox-nav { width: 38px; height: 38px; font-size: 18px; }
  }

  /* ========== Reveal on scroll ========== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s cubic-bezier(0.2, 0.65, 0.3, 1), transform 1s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .carte-wrapper.reveal {
    transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
  }

  /* ========== Accessibilité : motion ========== */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .hero-scroll-line { animation: none; }
    .hero-overline, .hero-logo, .hero-title, .hero-subtitle, .hero-scroll {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }
