/* ============================================================
   Conciergerie Lavoisine - design system v2
   Creme, or/bronze du logo, olive aquarelle, encre chaude
   Typo : Fraunces (display) + Instrument Sans (texte)
   ============================================================ */

:root {
  --paper:      #F5F0E5;
  --paper-2:    #EFE8D9;
  --paper-3:    #E7DECB;
  --ink:        #2A2521;
  --ink-2:      #221D19;
  --ink-soft:   #5C534A;
  --ink-faint:  #8A8073;
  --gold:       #9A7846;
  --gold-deep:  #815721;
  --gold-soft:  #C4A876;
  --gold-pale:  #E9DCC3;
  --olive:      #6E7B52;
  --olive-deep: #55603F;
  --line:       #DBD0BC;
  --white:      #FBF8F1;
  --paper-texture: url("images/paper-fibers.png");
  --paper-size: 300px 300px;
  --paper-blend: multiply;

  --shadow-sm: 0 1px 2px rgba(42,37,33,.05), 0 10px 30px -14px rgba(42,37,33,.22);
  --shadow-md: 0 2px 6px rgba(42,37,33,.06), 0 30px 70px -30px rgba(42,37,33,.4);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;

  --wrap: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --radius: 8px;
  --ease: cubic-bezier(.22,.61,.21,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-soft); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 3px; }

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
  font-optical-sizing: auto;
}
h2 em, h1 em { font-style: italic; }

.wrap { width: min(100% - 2*var(--pad-x), var(--wrap)); margin-inline: auto; }
.top-sentinel { position: absolute; inset: 0 auto auto 0; width: 1px; height: 1px; pointer-events: none; }

/* ---------- petits éléments ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75em;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 1.2rem;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.eyebrow.center::after { content: ""; width: 36px; height: 1px; background: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  padding: 1em 1.9em; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
}
.btn-gold  { background: var(--gold); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-gold:hover  { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost { border-color: var(--gold); color: var(--gold-deep); }
.btn-ghost:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-light { border-color: rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* Soleil du logo */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.logo-sun { color: #815721; }
.logo-sun use,
.logo-sun path {
  fill: currentColor;
  stroke: none;
  shape-rendering: geometricPrecision;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad-x);
  transition: background .45s var(--ease), box-shadow .45s, padding .45s;
}
.site-header.scrolled {
  background: rgba(245,240,229,.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .6rem;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img { height: 48px; width: auto; transition: height .45s var(--ease), filter .45s; }
.site-header.scrolled .brand img { height: 40px; }
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.3)); }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b {
  font-family: var(--sans); font-weight: 600;
  letter-spacing: .34em; font-size: .84rem;
  text-transform: uppercase; color: var(--ink); padding-left: .04em;
  transition: color .45s;
}
.brand-name span {
  font-family: var(--serif); font-style: italic;
  font-size: .82rem; color: var(--gold-deep); margin-top: .2rem; transition: color .45s;
}
.site-header:not(.scrolled) .brand-name b { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.site-header:not(.scrolled) .brand-name span { color: #f2e4cb; }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.nav a.navlink {
  font-size: .87rem; font-weight: 500;
  color: var(--ink); position: relative; padding: .25rem 0;
  transition: color .3s;
}
.site-header:not(.scrolled) .nav a.navlink { color: rgba(255,255,255,.94); text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1.5px; width: 0;
  background: currentColor; opacity: .8; transition: width .35s var(--ease);
}
.nav a.navlink:hover::after { width: 100%; }

.header-cta {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 600; font-size: .86rem; white-space: nowrap;
  border: 1px solid var(--gold); color: var(--gold-deep);
  padding: .6em 1.2em; border-radius: 100px; transition: all .3s;
}
.header-cta:hover { background: var(--gold); color: #fff; }
.site-header:not(.scrolled) .header-cta { border-color: rgba(255,255,255,.6); color: #fff; }
.site-header:not(.scrolled) .header-cta:hover { background: rgba(255,255,255,.16); }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .5rem; margin-right: -.5rem; z-index: 95;
}
.burger span { display: block; width: 27px; height: 2px; background: var(--ink); margin: 6px 0; border-radius: 2px; transition: .35s var(--ease); }
.site-header:not(.scrolled) .burger span { background: #fff; }

/* ============================================================
   MENU MOBILE
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--paper);
  display: flex; flex-direction: column;
  padding: calc(1.2rem + env(safe-area-inset-top)) 1.6rem 2.2rem;
  clip-path: circle(0% at calc(100% - 2.4rem) 2.2rem);
  transition: clip-path .6s var(--ease) .35s, visibility 0s linear .95s;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 2.4rem) 2.2rem);
  visibility: visible;
  transition: clip-path .6s var(--ease), visibility 0s linear 0s;
  pointer-events: auto;
}
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.2rem; opacity: 0; transform: translateY(-8px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.mobile-menu.open .mm-head { opacity: 1; transform: none; transition-delay: .08s; }
.mobile-menu:not(.open) .mm-head { transition-delay: .28s; }
.mm-head img { height: 44px; }
.mm-close { background: none; border: 0; font-size: 2.2rem; line-height: 1; color: var(--ink); cursor: pointer; padding: .3rem .5rem; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: clamp(1.7rem, 7vw, 2.2rem);
  padding: .8rem 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.mobile-menu nav a::after { content: "→"; font-size: 1.1rem; color: var(--gold); }
.mobile-menu.open nav a { opacity: 1; transform: none; }
.mobile-menu.open nav a:nth-child(1) { transition-delay: .12s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: .18s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: .24s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: .30s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: .36s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: .42s; }
.mobile-menu:not(.open) nav a:nth-child(1) { transition-delay: .30s; }
.mobile-menu:not(.open) nav a:nth-child(2) { transition-delay: .24s; }
.mobile-menu:not(.open) nav a:nth-child(3) { transition-delay: .18s; }
.mobile-menu:not(.open) nav a:nth-child(4) { transition-delay: .12s; }
.mobile-menu:not(.open) nav a:nth-child(5) { transition-delay: .06s; }
.mobile-menu:not(.open) nav a:nth-child(6) { transition-delay: 0s; }
.mm-foot { margin-top: auto; display: grid; gap: .8rem; opacity: 0; transform: translateY(12px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.mobile-menu.open .mm-foot { opacity: 1; transform: none; transition-delay: .48s; }
.mobile-menu:not(.open) .mm-foot { transition-delay: .04s; }
.mm-foot .btn { width: 100%; }
.mm-foot p { margin: 0; text-align: center; font-size: .85rem; color: var(--ink-faint); }

/* ============================================================
   HERO - La Ciotat
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center; color: #fff; overflow: hidden;
  padding: clamp(4.9rem, 9svh, 6.6rem) var(--pad-x) clamp(2rem, 4.8svh, 3.4rem);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 48%;
  animation: kenburns 22s var(--ease) both;
  transform-origin: 55% 55%;
}
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(72% 60% at 50% 74%, rgba(18,13,9,.82) 0%, rgba(18,13,9,.52) 42%, rgba(18,13,9,.12) 76%, transparent 100%),
    linear-gradient(180deg, rgba(18,13,9,.46) 0%, rgba(18,13,9,.08) 34%, rgba(18,13,9,.84) 100%),
    radial-gradient(70% 48% at 50% 96%, rgba(154,120,70,.36), transparent 72%);
}

.hero-inner {
  width: min(100%, var(--wrap));
  max-height: calc(100svh - 6.5rem);
  margin-inline: auto;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end;
}

/* le soleil du logo qui se lève derrière le titre */
.hero-sun {
  width: clamp(250px, 36vw, 470px);
  margin: 0 auto clamp(1.15rem, 2.5vh, 1.9rem);
  color: #D7B06A;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.24));
}

.hero .kicker {
  font-weight: 600; font-size: clamp(.66rem, 1.6vw, .78rem);
  letter-spacing: .38em; text-transform: uppercase; color: #F2E2C0;
  margin: 0 0 1.2rem; text-indent: .38em;
}
.hero h1 {
  font-size: clamp(2.85rem, 6.6vw, 5.85rem);
  line-height: 1.02; color: #FDFAF3;
  text-shadow: 0 3px 44px rgba(0,0,0,.56);
  max-width: 800px;
}
.hero h1 em { color: #F2DFB4; }
.hero-sub {
  margin: clamp(1rem, 2svh, 1.35rem) auto clamp(1.3rem, 3svh, 2rem); max-width: 580px;
  font-size: clamp(1rem, 2.1vw, 1.18rem); line-height: 1.65;
  color: rgba(255,255,255,.94);
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* séquence d'entrée du hero */
.hero [data-hero] { opacity: 0; transform: translateY(26px); }
.hero.loaded [data-hero] { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.hero.loaded [data-hero="1"] { transition-delay: .15s; }
.hero.loaded [data-hero="2"] { transition-delay: .3s; }
.hero.loaded [data-hero="3"] { transition-delay: .5s; }
.hero.loaded [data-hero="4"] { transition-delay: .7s; }
.hero-sun { opacity: 0; transform: translateY(32%) scale(.88); transform-origin: 50% 100%; }
.hero.loaded .hero-sun { opacity: 1; transform: none; transition: opacity 1.4s var(--ease) .1s, transform 1.6s var(--ease) .05s; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section-pad { padding-block: clamp(4rem, 9vw, 7.5rem); }
.intro,
.contact {
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: var(--paper-size);
  background-blend-mode: var(--paper-blend);
}
.section-head { max-width: 700px; margin-bottom: clamp(2.2rem, 5vw, 3.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.secondary-head { margin-top: clamp(3.5rem,7vw,5.5rem); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); text-wrap: balance; }
.section-head h2 em { color: var(--gold-deep); }
.section-head p { margin: 1.2rem 0 0; color: var(--ink-soft); font-size: clamp(1rem, 2.2vw, 1.1rem); }

/* ---------- Intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.4rem, 6vw, 5.5rem); align-items: center; }
.intro-copy h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.intro-copy h2 em { color: var(--gold-deep); }
.intro-copy p { color: var(--ink-soft); margin: 1.2rem 0; }
.intro-copy .signature {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.55rem); color: var(--gold-deep); margin-top: 1.6rem;
}
.gold-word { color: var(--olive-deep); }
.intro-figure { position: relative; }
.intro-figure .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.intro-figure .frame img { width: 100%; height: 112%; object-fit: cover; }
.intro-figure .tag {
  position: absolute; left: clamp(-20px, -2vw, -14px); bottom: 30px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.3rem; box-shadow: var(--shadow-sm); max-width: 230px;
}
.intro-figure .tag b { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; display: block; line-height: 1.3; }
.intro-figure .tag span { font-size: .8rem; color: var(--ink-faint); }

/* ---------- Stats ---------- */
.stats { background: var(--ink-2); color: var(--white); overflow: hidden; }
.stats .wrap { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); text-align: center; }
.stat { padding: .6rem; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px;
  background: linear-gradient(transparent, rgba(196,168,118,.45), transparent);
}
.stat .num { font-family: var(--serif); font-size: clamp(2.9rem, 6vw, 4.4rem); color: var(--gold-soft); line-height: 1; }
.stat .num small { font-size: .48em; }
.stat .lbl { margin-top: .8rem; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.72); }

/* ---------- Packs ---------- */
.services {
  background: var(--paper-2);
}
.packs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: stretch; }
.pack {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: clamp(1.7rem, 3.4vw, 2.6rem);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.pack:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.pack.feature { background: var(--ink-2); color: var(--white); border-color: transparent; position: relative; overflow: hidden; }
.pack.feature::before {
  content: ""; position: absolute; top: -70px; right: -70px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(196,168,118,.18), transparent 65%);
}
.pack-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: .4rem; }
.pack h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); }
.pack .ribbon {
  font-size: .66rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid var(--gold-soft); border-radius: 100px; padding: .35em 1em; white-space: nowrap;
}
.pack.feature .ribbon { color: var(--gold-soft); border-color: rgba(196,168,118,.5); }
.pack-price { font-family: var(--serif); color: var(--ink-soft); margin: .4rem 0 1.5rem; }
.pack-price b { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 500; color: var(--gold-deep); }
.pack.feature .pack-price { color: rgba(255,255,255,.75); }
.pack.feature .pack-price b { color: var(--gold-soft); }
.pack-price .ttc { font-size: .82rem; font-family: var(--sans); letter-spacing: .02em; }
.pack ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.pack li { position: relative; padding-left: 1.7rem; font-size: .95rem; color: var(--ink-soft); line-height: 1.55; }
.pack.feature li { color: rgba(255,255,255,.84); }
.pack li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 9px; height: 9px;
  border-radius: 50%; border: 1.5px solid var(--gold);
}
.pack .note { font-size: .78rem; color: var(--ink-faint); margin: 1.2rem 0 0; font-style: italic; }
.pack.feature .note { color: rgba(255,255,255,.5); }

/* forfaits résidences secondaires */
.forfaits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.forfait {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 2rem 1.6rem; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.forfait:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.forfait .f-eyebrow { font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.forfait h4 { font-size: 1.45rem; margin: .3rem 0 .1rem; }
.forfait .price { font-family: var(--serif); font-size: 2.5rem; color: var(--gold-deep); }
.forfait .price small { font-size: .85rem; color: var(--ink-faint); font-family: var(--sans); }
.forfait p { font-size: .9rem; color: var(--ink-soft); margin: .5rem 0 0; }

/* ---------- Home staging ---------- */
.staging {
  background-color: #DDE2D0;
  background-image:
    var(--paper-texture),
    linear-gradient(135deg, rgba(255,255,255,.42), rgba(110,123,82,.16));
  background-size: var(--paper-size), 100% 100%;
  background-blend-mode: multiply, normal;
  color: var(--ink);
  overflow: hidden;
}
.staging::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 48% at 18% 18%, rgba(129,87,33,.11), transparent 68%);
  pointer-events: none;
}
.staging > * { position: relative; z-index: 1; }
.staging .eyebrow { color: var(--gold-deep); }
.staging .eyebrow::before { background: currentColor; }
.staging .section-head h2 em { color: var(--gold-deep); }
.staging .section-head p { color: var(--ink-soft); }
.staging-mark {
  display: flex;
  justify-content: center;
  margin: calc(-1 * clamp(1.1rem, 2.5vw, 2rem)) 0 clamp(2rem, 4.5vw, 3.3rem);
  position: relative;
  z-index: 1;
}
.staging-mark svg {
  width: clamp(220px, 28vw, 340px);
  height: auto;
  color: #815721;
  opacity: .52;
}
.staging-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2.4rem, 5vw, 4.5rem); align-items: start; }
.staging-figure { position: sticky; top: 90px; }
.staging-figure .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px -34px rgba(42,37,33,.42);
  aspect-ratio: 4/4.6;
  border: 1px solid rgba(129,87,33,.18);
}
.staging-figure .frame img { width: 100%; height: 112%; object-fit: cover; }
.staging-figure .caption {
  margin-top: .9rem; font-family: var(--serif); font-style: italic;
  color: var(--ink-faint); font-size: .95rem; text-align: right;
}
.staging-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.6rem; }
.staging-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.staging-item .no {
  font-family: var(--serif); font-size: 1rem; color: var(--gold-deep);
  background: rgba(251,248,241,.38);
  border: 1px solid rgba(129,87,33,.32); border-radius: 50%; width: 40px; height: 40px;
  display: grid; place-items: center;
}
.staging-item h4 { font-size: 1.12rem; margin-bottom: .3rem; }
.staging-item p { font-size: .88rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.staging-cta { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.staging-cta .hint { font-size: .85rem; color: var(--ink-faint); font-style: italic; }

/* ---------- Voyageur ---------- */
.voyageur { position: relative; color: #fff; overflow: hidden; }
.voyageur .bg { position: absolute; inset: 0; z-index: -2; }
.voyageur .bg img { width: 100%; height: 115%; object-fit: cover; object-position: center 30%; }
.voyageur::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(88deg, rgba(26,18,10,.84) 8%, rgba(26,18,10,.4) 58%, rgba(26,18,10,.05));
}
.voyageur .box { max-width: 580px; padding-block: clamp(4.5rem, 10vw, 8rem); }
.voyageur .eyebrow { color: #F2E2C0; }
.voyageur .eyebrow::before { background: var(--gold-soft); }
.voyageur h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.voyageur h2 em { color: #F2DFB4; }
.voyageur p { color: rgba(255,255,255,.9); margin: 1.2rem 0 2.2rem; }

/* ---------- Galerie ---------- */
.tourisme {
  background: var(--paper-2);
}
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 21vw, 230px); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery figure:hover img { transform: scale(1.055); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.1rem .95rem;
  font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: #fff;
  background: linear-gradient(transparent, rgba(20,14,8,.74));
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- À propos : la mère & la fille ---------- */
.apropos {
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: var(--paper-size);
  background-blend-mode: var(--paper-blend);
  overflow: hidden;
}
.apropos .olive-deco {
  position: absolute; width: clamp(150px, 17vw, 250px);
  right: clamp(-46px, -1vw, 8px); top: clamp(18px, 4vw, 64px);
  opacity: .17; pointer-events: none; transform: rotate(10deg);
  filter: drop-shadow(0 18px 30px rgba(85,96,63,.10));
  fill: var(--olive-deep);
}
.apropos .olive-deco.left {
  right: auto; left: clamp(-40px, -2vw, 0px); top: auto; bottom: -30px;
  transform: rotate(190deg); opacity: .12; width: clamp(120px, 13vw, 190px);
}
.apropos-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(2.4rem, 6vw, 5rem); align-items: center; }
.family-photos {
  position: relative;
  min-height: clamp(500px, 56vw, 650px);
}
.family-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: absolute;
  background: var(--white);
}
.family-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s var(--ease); }
.family-photo:hover img { transform: scale(1.025); }
.family-photo.boss {
  left: 0; top: 0; width: min(74%, 380px); aspect-ratio: 4/5.15;
}
.family-photo.boss img { object-position: center center; }
.family-photo.daughter {
  right: 0; bottom: 4%; width: min(58%, 300px); aspect-ratio: 4/4.8;
  border: 8px solid var(--paper);
}
.family-photo.daughter img { filter: grayscale(.96) contrast(1.04); object-position: center center; }
.apropos-copy h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.apropos-copy h2 em { color: var(--gold-deep); }
.apropos-copy p { color: var(--ink-soft); margin: 1.15rem 0; }
.values { display: flex; gap: clamp(1.4rem, 4vw, 2.6rem); justify-content: flex-start; margin: 1.8rem 0; flex-wrap: wrap; }
.value { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 3vw, 1.45rem); }
.value span { color: var(--gold-deep); margin-right: .4em; }
.provencal { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 4vw, 1.9rem); color: var(--olive-deep); margin-top: 1.4rem; }

/* ---------- Témoignages ---------- */
.temoignages {
  background: var(--paper-3);
}
.reviews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.9rem 1.6rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review .stars { color: var(--gold); letter-spacing: .2em; font-size: .88rem; }
.review p { font-size: .95rem; line-height: 1.62; margin: 0; flex: 1; }
.review .who { display: flex; align-items: center; gap: .75rem; }
.review .who .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--paper-2);
  display: grid; place-items: center; font-family: var(--serif); color: var(--gold-deep);
  border: 1px solid var(--line); font-size: 1.05rem;
}
.review .who b { font-family: var(--serif); font-weight: 500; }

/* ---------- Secteurs ---------- */
.secteurs { background: var(--ink-2); color: var(--white); }
.secteurs .section-head h2 { color: #fff; }
.secteurs .section-head h2 em { color: var(--gold-soft); }
.secteurs .section-head p { color: rgba(255,255,255,.7); }
.towns { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; max-width: 980px; margin-inline: auto; }
.town {
  font-size: .88rem; color: rgba(255,255,255,.85);
  border: 1px solid rgba(196,168,118,.32);
  padding: .5em 1.15em; border-radius: 100px;
  transition: all .3s var(--ease);
}
.town.home { background: var(--gold); color: #fff; border-color: var(--gold); font-weight: 600; }
.town:hover { border-color: var(--gold-soft); color: #fff; transform: translateY(-2px); background: rgba(196,168,118,.12); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.4rem, 6vw, 5rem); align-items: center; }
.contact h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.contact h2 em { color: var(--gold-deep); }
.contact .lede { font-size: clamp(1rem, 2.4vw, 1.15rem); color: var(--ink-soft); margin-top: 1.1rem; }
.contact-lines { display: grid; gap: 1.25rem; margin-top: 2.1rem; }
.cline { display: flex; align-items: center; gap: 1.05rem; }
.cline > span:last-child { min-width: 0; }
.cline .ico {
  width: 47px; height: 47px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--gold-soft); color: var(--gold-deep);
  display: grid; place-items: center; transition: all .3s;
}
a.cline:hover .ico { background: var(--gold); color: #fff; border-color: var(--gold); }
.cline .ico svg { width: 20px; height: 20px; }
.cline b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.05rem, 2.6vw, 1.25rem); word-break: break-word; }
.cline small { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(2rem, 4.5vw, 3rem); box-shadow: var(--shadow-md); text-align: center;
  position: relative; overflow: hidden;
}
.contact-card img.lg { height: 84px; width: auto; margin: 0 auto 1rem; }
.contact-card h3 { font-size: clamp(1.6rem, 3.4vw, 1.9rem); margin-bottom: .6rem; }
.contact-card p { color: var(--ink-soft); font-size: .96rem; margin: 0 0 1.7rem; }
.contact-card .btn { width: 100%; margin-bottom: .7rem; }
.socials { display: flex; gap: .8rem; justify-content: center; margin-top: 1.3rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-soft); transition: all .3s var(--ease);
}
.socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); color: rgba(255,255,255,.68); padding: 3.2rem 0 2rem; text-align: center; }
.footer .brand-f { display: inline-flex; flex-direction: column; align-items: center; gap: .9rem; margin-bottom: 1.6rem; }
.footer .brand-f img { height: 68px; filter: brightness(0) invert(1); opacity: .95; }
.footer .brand-f b { font-family: var(--sans); letter-spacing: .36em; font-size: .84rem; color: #fff; text-indent: .36em; }
.footer .brand-f span { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--gold-soft); margin-top: -0.4rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem 1.6rem; justify-content: center; margin-bottom: 1.7rem; }
.footer-nav a { font-size: .85rem; transition: color .25s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-legal { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; justify-content: center; margin-bottom: 1.2rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.45); transition: color .25s; }
.footer-legal a:hover { color: var(--gold-soft); }
.footer .fine { font-size: .78rem; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.09); padding-top: 1.6rem; }

/* ---------- Made by Undefined ---------- */
.made-by-undefined {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,.68);
  transition: color 0.3s var(--ease);
}
.made-by-undefined:hover {
  color: #fff;
}
.mbu-made {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.mbu-icon {
  height: 1.5em;
  width: 1.5em;
  flex-shrink: 0;
  vertical-align: middle;
  transition: transform 0.3s var(--ease);
}
.made-by-undefined:hover .mbu-icon {
  transform: rotate(-6deg) scale(1.1);
}
.mbu-name {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mbu-line {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}
.made-by-undefined:hover .mbu-line {
  transform: scaleX(1);
}

/* ============================================================
   Animations d'apparition
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(8px);
  transition: opacity .95s var(--ease), transform .95s var(--ease), filter .95s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { --reveal-delay: .1s; }
.reveal.d2 { --reveal-delay: .2s; }
.reveal.d3 { --reveal-delay: .3s; }

@keyframes sunPulse {
  0%, 100% { filter: drop-shadow(0 8px 22px rgba(0,0,0,.24)); opacity: .94; }
  50% { filter: drop-shadow(0 12px 34px rgba(215,176,106,.30)); opacity: 1; }
}

@keyframes subtleFloat {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-6px,0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero.loaded .hero-sun { animation: sunPulse 6.8s ease-in-out 1.4s infinite; }
  .btn:active,
  .header-cta:active,
  .socials a:active { transform: translateY(1px) scale(.98); }
  .btn:hover { box-shadow: 0 14px 34px -22px rgba(42,37,33,.52); }
  .frame img,
  .gallery img,
  .family-photo img,
  .contact-card,
  .staging-item,
  .cline,
  .town { will-change: transform; }
  .intro-figure:hover .frame img,
  .staging-figure:hover .frame img,
  .family-photo:hover img { transform: scale(1.035); }
  .intro-figure .tag { transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
  .intro-figure:hover .tag { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .staging-mark svg { animation: subtleFloat 7s ease-in-out infinite; }
  .staging-item { transition: transform .35s var(--ease), color .35s var(--ease); }
  .staging-item:hover { transform: translateX(7px); }
  .staging-item .no { transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease); }
  .staging-item:hover .no { background: #815721; color: var(--white); transform: scale(1.06); }
  .gallery figure { transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
  .gallery figure:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .contact-card { transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
  .contact-card:hover { transform: translateY(-5px); box-shadow: 0 36px 90px -42px rgba(42,37,33,.48); }
  .cline { transition: transform .35s var(--ease); }
  .cline:hover { transform: translateX(5px); }
}

/* parallaxe douce sur les cadres photo */
.frame img, .voyageur .bg img { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero [data-hero], .hero-sun { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; animation: none !important; }
  .hero-bg img { animation: none; }
  .frame img, .voyageur .bg img { transform: none !important; }
}

@media (max-height: 760px) {
  .hero {
    padding-top: 4.9rem;
    padding-bottom: 2rem;
  }
  .hero-sun {
    width: clamp(225px, 31vw, 390px);
    margin-bottom: .9rem;
  }
  .hero .kicker { margin-bottom: .7rem; }
  .hero h1 { font-size: clamp(2.45rem, 5.9vw, 4.55rem); }
  .hero-sub {
    margin: .75rem auto 1rem;
    max-width: 540px;
    font-size: .98rem;
    line-height: 1.5;
  }
  .hero-actions .btn { padding: .82em 1.5em; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .staging-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }

  .intro-grid, .staging-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-figure { max-width: 480px; margin-inline: auto; width: 100%; }
  .intro-figure .tag { left: 12px; bottom: 16px; }
  .staging-figure { position: static; max-width: 560px; margin-inline: auto; width: 100%; }
  .staging-figure .frame { aspect-ratio: 16/10.5; }
  .packs { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: clamp(4.9rem, 10svh, 6rem);
    padding-bottom: clamp(1.7rem, 4svh, 2.6rem);
  }
  .hero-bg img { object-position: 58% 50%; }
  .hero-bg::after {
    background:
      radial-gradient(82% 64% at 50% 76%, rgba(18,13,9,.84) 0%, rgba(18,13,9,.54) 48%, rgba(18,13,9,.12) 78%, transparent 100%),
      linear-gradient(180deg, rgba(18,13,9,.66) 0%, rgba(18,13,9,.2) 45%, rgba(18,13,9,.88) 100%);
  }
  .hero-sun { width: min(68vw, 360px); margin-bottom: 1.05rem; }
  .hero h1 { max-width: 650px; }
  .hero-sub { max-width: 560px; }
  .apropos-grid { grid-template-columns: 1fr; }
  .family-photos { min-height: clamp(460px, 78vw, 620px); max-width: 620px; margin-inline: auto; width: 100%; }
  .family-photo.boss { width: min(68%, 360px); }
  .family-photo.daughter { width: min(50%, 280px); }
  .apropos-copy { max-width: 700px; margin-inline: auto; text-align: center; }
  .apropos-copy .eyebrow { justify-content: center; }
  .values { justify-content: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 26vw, 210px); }
  .forfaits { grid-template-columns: repeat(3, minmax(0,1fr)); gap: .9rem; }
  .forfait { padding: 1.5rem 1rem; }
}

@media (max-width: 640px) {
  :root { --pad-x: 1.1rem; }
  body { font-size: 16px; }
  .site-header { padding-block: .7rem; }
  .brand img { height: 42px; }
  .brand-name b { font-size: .74rem; letter-spacing: .26em; }
  .brand-name span { font-size: .75rem; }
  .mobile-menu { padding-inline: 1.25rem; }
  .mobile-menu nav a { font-size: clamp(1.55rem, 9vw, 2rem); }
  .mm-foot p { overflow-wrap: anywhere; }
  .section-pad { padding-block: 3.4rem; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2,
  .intro-copy h2,
  .apropos-copy h2,
  .contact h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
    line-height: 1.08;
  }
  .eyebrow { letter-spacing: .22em; line-height: 1.35; }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(4.8rem + env(safe-area-inset-top)) 1.1rem calc(2rem + env(safe-area-inset-bottom));
    justify-content: center;
  }
  .hero-inner {
    max-height: none;
    justify-content: center;
    transform: translateY(2.5vh);
  }
  .hero-sun { width: min(72vw, 292px); margin-inline: auto; margin-bottom: .95rem; }
  .hero .kicker { font-size: .56rem; letter-spacing: .19em; text-indent: 0; line-height: 1.35; margin-bottom: .7rem; }
  .hero h1 { font-size: clamp(2.15rem, 11.3vw, 3.15rem); line-height: 1.03; }
  .hero-sub {
    margin: .9rem auto 1.15rem;
    max-width: 29rem;
    font-size: .9rem;
    line-height: 1.46;
  }
  .hero-actions { width: min(100%, 330px); flex-direction: column; gap: .65rem; margin-inline: auto; }
  .hero-actions .btn { width: 100%; min-height: 44px; padding: .82em 1.1em; }

  .intro-grid,
  .staging-grid,
  .contact-grid { gap: 2rem; }
  .intro-figure .frame { aspect-ratio: 4/4.7; }
  .intro-figure .tag {
    max-width: min(245px, calc(100% - 24px));
    padding: .9rem 1rem;
  }

  .pack,
  .forfait,
  .review,
  .contact-card { border-radius: var(--radius); }
  .pack-top { align-items: flex-start; }
  .pack .ribbon {
    white-space: normal;
    line-height: 1.35;
    max-width: 100%;
  }
  .pack li { font-size: .92rem; }
  .pack-price .ttc { display: block; margin-top: .2rem; }

  .staging-figure .frame { aspect-ratio: 4/3.15; }
  .staging-mark {
    margin-top: -.7rem;
    margin-bottom: 1.8rem;
  }
  .staging-mark svg { width: min(68vw, 260px); }
  .staging-item { grid-template-columns: 36px 1fr; gap: .85rem; }
  .staging-item .no { width: 36px; height: 36px; }

  .voyageur .box { padding-block: 3.8rem; }
  .voyageur::after {
    background: linear-gradient(180deg, rgba(26,18,10,.72), rgba(26,18,10,.54) 48%, rgba(26,18,10,.82));
  }

  .stats-grid { grid-template-columns: 1fr; gap: 2.1rem; }
  .stat + .stat::before {
    left: 25%; right: 25%; top: -1.05rem; width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,168,118,.45), transparent);
  }

  .forfaits { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: .7rem; }
  .gallery figure:nth-child(5) { display: none; }
  .family-photos { min-height: clamp(420px, 132vw, 520px); max-width: 390px; }
  .family-photo.boss { width: 72%; }
  .family-photo.daughter { width: 58%; bottom: 0; border-width: 6px; }
  .apropos-copy { text-align: left; }
  .apropos-copy .eyebrow { justify-content: flex-start; }
  .values { justify-content: flex-start; }
  .apropos .olive-deco { width: 120px; right: -36px; top: 18px; opacity: .28; }
  .apropos .olive-deco.left { display: none; }

  .contact-card { padding: 1.8rem 1.4rem; }
  .cline { align-items: flex-start; gap: .85rem; }
  .cline b { font-size: 1rem; overflow-wrap: anywhere; }
  .cline .ico { width: 42px; height: 42px; }
  .towns { gap: .55rem; }
  .town { font-size: .8rem; padding: .45em 1em; }
}

@media (max-width: 400px) {
  :root { --pad-x: 1rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 190px; }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
  .hero-sun { width: min(72vw, 260px); }
  .hero h1 { font-size: clamp(2.05rem, 12.5vw, 2.95rem); }
  .hero-sub { font-size: .86rem; }
  .family-photos { min-height: clamp(390px, 128vw, 470px); }
}

@media (max-height: 680px) and (max-width: 640px) {
  .hero { padding-top: calc(4.35rem + env(safe-area-inset-top)); padding-bottom: calc(1.2rem + env(safe-area-inset-bottom)); }
  .hero-inner { transform: translateY(1vh); }
  .hero-sun { width: min(64vw, 230px); margin-bottom: .7rem; }
  .hero h1 { font-size: clamp(1.95rem, 10.5vw, 2.65rem); }
  .hero-sub {
    margin: .6rem auto .8rem;
    font-size: .82rem;
    line-height: 1.35;
  }
  .hero-actions .btn { padding: .72em 1em; }
}
