/* ═══════════════════════════════════════════════════════════════
   Le Bonheur en Soi — design system
   Violet royal #48397E · Or champagne #C9A24B · Ivoire #FBF8F3
   ═══════════════════════════════════════════════════════════════ */

:root {
  --violet:      #48397E;
  --violet-600:  #3f3171;
  --violet-700:  #382C63;
  --violet-800:  #322656;
  --violet-900:  #2E2552;
  --violet-50:   #F2EFFa;
  --violet-100:  #ECE7F6;

  --gold:        #C9A24B;
  --gold-bright: #D7B563;
  --gold-deep:   #A57F2C;
  --gold-soft:   #E4D4A6;
  --gold-50:     #FBF5E8;

  --ivory:       #FBF8F3;
  --cream:       #F4EEE3;
  --cream-2:     #EFE7D8;
  --surface:     #FFFFFF;

  --ink:         #2A2342;
  --ink-soft:    #4A4368;
  --muted:       #6B6480;
  --line:        #E9E1D2;
  --line-soft:   #F0EADE;

  --radius:      20px;
  --radius-sm:   12px;
  --radius-lg:   28px;
  --shadow-sm:   0 2px 10px rgba(46, 37, 82, .06);
  --shadow:      0 14px 40px -18px rgba(46, 37, 82, .28);
  --shadow-lg:   0 30px 70px -28px rgba(46, 37, 82, .40);
  --gold-grad:   linear-gradient(135deg, #D9B868, #C9A24B 55%, #B58a36);
  --violet-grad: linear-gradient(150deg, #2E2552 0%, #48397E 55%, #59478f 100%);

  --maxw: 1180px;
  --ease: cubic-bezier(.22, .68, .3, 1);
}

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

body {
  margin: 0;
  font-family: 'Raleway', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .4em;
  letter-spacing: .2px;
}
p { margin: 0 0 1em; }
a { color: var(--violet); text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--violet); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ── Eyebrows & section heads ─────────────────────────────────── */
.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 .9rem;
}
.eyebrow-gold { color: var(--gold-bright); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.3rem); margin: 0 0 .35em; }
.section-title.light { color: #fff; }
.section-lead { color: var(--muted); font-size: 1.08rem; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  --bg: var(--violet); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: 'Raleway', sans-serif; font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .85em 1.6em; border-radius: 999px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-align: center; line-height: 1;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-lg { padding: 1.05em 2em; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold-grad); color: #2A2342; box-shadow: 0 12px 26px -12px rgba(165, 127, 44, .7); }
.btn-gold:hover { box-shadow: 0 18px 34px -12px rgba(165, 127, 44, .85); transform: translateY(-2px); color: #241d3a; }
.btn-violet { background: var(--violet); color: #fff; box-shadow: var(--shadow-sm); }
.btn-violet:hover { background: var(--violet-700); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; }

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}

/* ════════════════ HEADER / NAV ════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 14px 0;
}
.site-header .nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { border-radius: 50%; box-shadow: 0 6px 16px -6px rgba(46,37,82,.5); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: #fff; transition: color .35s var(--ease); }
.brand-sub { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .35s var(--ease); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: rgba(255,255,255,.9); font-weight: 500; font-size: .95rem; padding: .5em .85em; border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-cta { margin-left: 10px; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; border-radius: 10px; }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle .i-close { display: none; }

/* État "scrollé" : barre ivoire */
.site-header.scrolled { background: rgba(251,248,243,.92); backdrop-filter: saturate(140%) blur(10px); box-shadow: 0 6px 24px -16px rgba(46,37,82,.5); padding: 9px 0; }
.site-header.scrolled .brand-name { color: var(--ink); }
.site-header.scrolled .brand-sub { color: var(--muted); }
.site-header.scrolled .nav-link { color: var(--ink-soft); }
.site-header.scrolled .nav-link:hover { color: var(--violet); background: var(--violet-50); }
.site-header.scrolled .nav-toggle { color: var(--violet); }

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--violet-grad); color: #fff; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.glow-1 { width: 520px; height: 520px; top: -140px; right: -80px; background: radial-gradient(circle, rgba(215,181,99,.55), transparent 65%); }
.glow-2 { width: 460px; height: 460px; bottom: -160px; left: -120px; background: radial-gradient(circle, rgba(120,96,180,.7), transparent 65%); }
.hero-bg .grain { position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(228,212,166,.5), transparent),
    radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 55% 15%, rgba(228,212,166,.4), transparent);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.hero-title { font-size: clamp(2.8rem, 6.4vw, 4.9rem); color: #fff; font-weight: 600; margin: .1em 0 .35em; }
.hero-title em { font-style: italic; color: var(--gold-bright); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: rgba(255,255,255,.86); max-width: 33em; margin-bottom: 2em; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-emblem { position: relative; display: grid; place-items: center; }
.emblem-img {
  width: min(420px, 80%); height: auto; position: relative; z-index: 1;
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 56%, transparent 70%);
          mask-image: radial-gradient(circle at 50% 48%, #000 56%, transparent 70%);
  animation: floaty 7s ease-in-out infinite;
}
.emblem-halo {
  position: absolute; width: 115%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(215,181,99,.4), rgba(215,181,99,.08) 45%, transparent 62%);
  filter: blur(6px); animation: pulse 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse  { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.05); opacity: 1; } }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.3); border-radius: 50%; animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; border-color: #fff; }
.hero-scroll .icon { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ════════════════ STATS ════════════════ */
.stats { background: var(--violet-900); color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 4px; padding: 8px; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--gold-bright); line-height: 1; }
.stat-label { font-size: .82rem; letter-spacing: .05em; color: rgba(255,255,255,.78); text-transform: uppercase; }

/* ════════════════ SERVICES ════════════════ */
.services { background: var(--ivory); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { padding: 36px 30px; position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold-soft); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: var(--gold-50); color: var(--gold-deep); margin-bottom: 18px; border: 1px solid var(--gold-soft); }
.service-icon .icon { width: 28px; height: 28px; }
.service-title { font-size: 1.7rem; margin-bottom: .15em; }
.service-meta { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .9em; }
.service-summary { color: var(--ink-soft); margin-bottom: 1em; }
.service-more { margin: 0 0 1em; }
.service-more summary { cursor: pointer; color: var(--violet); font-weight: 600; font-size: .92rem; list-style: none; display: inline-flex; align-items: center; gap: 6px; }
.service-more summary::-webkit-details-marker { display: none; }
.service-more summary::after { content: "+"; font-size: 1.1em; line-height: 1; }
.service-more[open] summary::after { content: "–"; }
.service-more p { margin: .8em 0 0; color: var(--muted); font-size: .96rem; }
.service-book { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .95rem; color: var(--violet); }
.service-book .icon { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.service-book:hover { color: var(--gold-deep); }
.service-book:hover .icon { transform: translateX(4px); }

/* ════════════════ ABOUT ════════════════ */
.about { background: linear-gradient(180deg, var(--ivory), var(--cream)); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about-media { position: relative; display: grid; place-items: center; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--violet-grad); box-shadow: var(--shadow); }
.about-photo { width: 100%; height: 100%; object-fit: cover; }
.about-emblem { width: 72%; position: relative; z-index: 1; filter: drop-shadow(0 18px 30px rgba(0,0,0,.3)); animation: floaty 8s ease-in-out infinite; }
.about-emblem-halo { position: absolute; width: 86%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(215,181,99,.4), transparent 60%); filter: blur(10px); }
.about-text p { color: var(--ink-soft); }
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.creds li { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em; font-size: .88rem; font-weight: 500; color: var(--violet-700); }
.creds .icon { width: 1em; height: 1em; color: var(--gold-deep); }
.signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; color: var(--violet); margin: .2em 0 1.2em; }

/* ════════════════ APPROACH ════════════════ */
.approach { background: var(--ivory); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { position: relative; padding: 38px 30px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold-soft); line-height: 1; display: block; margin-bottom: .15em; }
.step-title { font-size: 1.5rem; margin-bottom: .35em; color: var(--violet-700); }
.step-text { color: var(--muted); margin: 0; font-size: .98rem; }

/* ════════════════ TESTIMONIALS ════════════════ */
.testimonials { background: linear-gradient(180deg, var(--cream), var(--ivory)); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.testi { padding: 34px 32px; position: relative; }
.testi:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-quote { position: absolute; top: 22px; right: 26px; color: var(--gold-soft); }
.testi-quote .icon { width: 34px; height: 34px; }
.stars { display: inline-flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.stars .icon { width: 18px; height: 18px; }
.star-off { color: var(--line); }
.testi blockquote { margin: 0 0 18px; font-size: 1.12rem; line-height: 1.6; color: var(--ink); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.testi figcaption { display: flex; flex-direction: column; }
.testi-name { font-weight: 700; color: var(--violet-700); }
.testi-loc { font-size: .85rem; color: var(--muted); }

/* ════════════════ FAQ ════════════════ */
.faq { background: var(--ivory); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq-item[open] { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 600; font-size: 1.06rem; color: var(--violet-700); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--gold-deep); display: inline-flex; transition: transform .3s var(--ease); }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: var(--muted); }

/* ════════════════ BOOKING ════════════════ */
.booking { background: var(--violet-grad); color: #fff; position: relative; overflow: hidden; }
.booking::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; top: -160px; right: -120px; background: radial-gradient(circle, rgba(215,181,99,.3), transparent 65%); filter: blur(60px); }
.booking-grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.booking-intro .section-title { text-align: left; }
.booking-text { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.booking-points { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.booking-points li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); }
.booking-points .icon { color: var(--gold-bright); width: 1.2em; height: 1.2em; flex: none; }
.booking-contact { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.bc-item { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: .6em 1.1em; }
.bc-item:hover { background: rgba(255,255,255,.16); color: #fff; }
.bc-item .icon { color: var(--gold-bright); }

.booking-card { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-lg); color: var(--ink); }
.form-note { background: var(--gold-50); border: 1px solid var(--gold-soft); border-radius: 12px; padding: 12px 16px; font-size: .9rem; color: var(--gold-deep); margin: 0 0 22px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45em; color: var(--ink-soft); }
.req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink); background: var(--ivory);
  border: 1.5px solid var(--line); border-radius: 12px; padding: .8em 1em; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 4px rgba(72,57,126,.12); }
.field input:user-invalid { border-color: #c0563f; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.6em; cursor: pointer; }
.select-chev { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); width: 20px; height: 20px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 22px; }
.field-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--violet); flex: none; cursor: pointer; }
.field-check label { font-size: .86rem; color: var(--muted); font-weight: 400; line-height: 1.5; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.btn-spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(42,35,66,.3); border-top-color: #2A2342; border-radius: 50%; animation: spin .7s linear infinite; }
.is-loading .btn-label { opacity: .6; }
.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-feedback { margin: 14px 0 0; font-size: .92rem; font-weight: 600; min-height: 1em; }
.form-feedback.ok { color: #2f7d54; }
.form-feedback.err { color: #c0563f; }
.booking-card.success-state { text-align: center; }

/* ════════════════ CTA BAND ════════════════ */
.cta-band { background: var(--cream-2); padding: clamp(56px, 8vw, 96px) 0; text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.cta-band p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 1.8em; }

/* ════════════════ CONTACT ════════════════ */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 56px); align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.ci { display: flex; gap: 16px; align-items: flex-start; }
.ci-ic { display: inline-grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--violet-50); color: var(--violet); border: 1px solid var(--violet-100); }
.ci strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--ink); }
.ci p { margin: .15em 0 0; color: var(--muted); }
.ci a { color: var(--violet); }
.ci a:hover { color: var(--gold-deep); }
.hours { display: flex; flex-direction: column; gap: 4px; margin-top: .3em; }
.hours li { display: flex; justify-content: space-between; gap: 18px; color: var(--ink-soft); border-bottom: 1px dashed var(--line); padding: 3px 0; max-width: 320px; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.social { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--violet); transition: all .2s var(--ease); }
.social:hover { background: var(--violet); color: #fff; transform: translateY(-2px); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 340px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ════════════════ FOOTER ════════════════ */
.site-footer { background: var(--violet-900); color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding: clamp(48px, 7vw, 76px) 24px clamp(36px, 5vw, 52px); }
.footer-logo { border-radius: 50%; margin-bottom: 14px; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; margin: 0 0 .4em; }
.footer-blurb { max-width: 34ch; font-size: .95rem; }
.footer-col h4 { color: var(--gold-bright); font-family: 'Raleway', sans-serif; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin: 0 0 1.1em; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.78); margin: 0 0 .7em; font-size: .95rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 22px; padding-bottom: 22px; font-size: .85rem; }
.footer-credit { display: inline-flex; align-items: center; gap: 5px; }
.footer-credit .i-heart { width: 1em; height: 1em; color: #d98a9a; }
.footer-credit a { color: var(--gold-bright); }

/* ════════════════ FAB (mobile) ════════════════ */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none; align-items: center; gap: 8px;
  background: var(--gold-grad); color: #2A2342; font-weight: 700; padding: .9em 1.3em; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(165,127,44,.8);
}
.fab .icon { width: 1.2em; height: 1.2em; }

/* ════════════════ TOAST ════════════════ */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 130%); z-index: 200;
  background: var(--violet-900); color: #fff; padding: 14px 22px; border-radius: 999px;
  box-shadow: var(--shadow-lg); font-weight: 600; font-size: .95rem; opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease); max-width: 90vw; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.ok { background: #2f7d54; }
.toast.err { background: #b8462f; }

/* ════════════════ REVEAL ════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1.2fr .8fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 76px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); flex-direction: column; align-items: stretch; justify-content: flex-start;
    background: linear-gradient(180deg, #241c4e 0%, #1a1338 100%); padding: 92px 24px 40px; gap: 4px; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: -28px 0 80px -12px rgba(0,0,0,.7);
    border-left: 3px solid var(--gold); z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: #fff; font-size: 1.06rem; font-weight: 500; padding: .95em 1em; border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0; }
  .nav-link:hover, .nav-link:active { background: rgba(255,255,255,.12); color: #fff; }
  .nav-cta { margin: 22px 0 0; }
  .nav-toggle { display: inline-flex; z-index: 110; position: relative; }
  body.nav-open .nav-toggle { color: #fff !important; }
  body.nav-open .nav-toggle .i-menu { display: none; }
  body.nav-open .nav-toggle .i-close { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(8,5,20,.68); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); z-index: 99; }

  .hero { min-height: auto; padding: 130px 0 70px; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-text { order: 2; }
  .hero-emblem { order: 1; }
  .emblem-img { width: min(240px, 60%); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .about-grid, .contact-grid, .booking-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 16/12; max-width: 480px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .booking-intro .section-title { text-align: center; }
  .booking-intro { text-align: center; }
  .booking-points { display: inline-flex; text-align: left; }
  .booking-contact, .socials { justify-content: center; }
  .fab { display: none; }
  body.fab-visible .fab { display: none; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .container { padding: 0 18px; }
}

/* ════════════════ ACCESSIBILITÉ ════════════════ */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ════════════════ VISUAL REFRESH - premium holistic editorial ════════════════ */
:root {
  --violet:      #45345F;
  --violet-600:  #3D2D55;
  --violet-700:  #332648;
  --violet-800:  #2A203C;
  --violet-900:  #21192F;
  --violet-50:   #F0ECF5;
  --violet-100:  #E5DDEA;

  --gold:        #B8954D;
  --gold-bright: #D4B76F;
  --gold-deep:   #8A6B31;
  --gold-soft:   #E3D0A3;
  --gold-50:     #F8F0DD;

  --sage:        #7D927C;
  --sage-50:     #EEF3ED;
  --rose:        #B98686;
  --rose-50:     #F7ECEA;
  --clay:        #B77B5F;

  --ivory:       #F9F4EA;
  --cream:       #EFE5D3;
  --cream-2:     #E7D9BF;
  --surface:     #FFFDF8;

  --ink:         #251F2D;
  --ink-soft:    #51495E;
  --muted:       #726B76;
  --line:        #DCCFB8;
  --line-soft:   #E9DECC;

  --radius:      8px;
  --radius-sm:   8px;
  --radius-lg:   8px;
  --shadow-sm:   0 8px 24px rgba(37, 31, 45, .07);
  --shadow:      0 22px 56px -32px rgba(37, 31, 45, .34);
  --shadow-lg:   0 36px 90px -42px rgba(37, 31, 45, .42);
  --gold-grad:   linear-gradient(135deg, #E1C77B 0%, #B8954D 54%, #8A6B31 100%);
  --violet-grad: linear-gradient(145deg, #21192F 0%, #45345F 48%, #6C4C66 100%);
}

body {
  background:
    linear-gradient(90deg, rgba(125,146,124,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(184,149,77,.06) 1px, transparent 1px),
    var(--ivory);
  background-size: 72px 72px;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  letter-spacing: 0;
}

.section { padding: clamp(72px, 10vw, 136px) 0; }
.section-head { text-align: left; margin-left: 0; max-width: 760px; }
.section-title { font-size: clamp(2.25rem, 4.8vw, 4rem); }
.eyebrow { color: var(--sage); letter-spacing: .18em; }
.eyebrow::before {
  content: ""; display: inline-block; width: 34px; height: 1px; margin: 0 12px .28em 0;
  background: currentColor;
}
.card { background: rgba(255,253,248,.88); backdrop-filter: blur(8px); }

.btn {
  border-radius: 8px;
  min-height: 46px;
  box-shadow: none;
}
.btn-gold { color: #251F2D; border-color: rgba(138,107,49,.25); }
.btn-gold:hover, .btn-violet:hover, .btn-ghost-light:hover { transform: translateY(-1px); }
.btn-ghost-light {
  background: rgba(255,253,248,.12);
  border-color: rgba(255,253,248,.32);
}

.site-header { padding: 18px 0; }
.site-header .nav {
  max-width: calc(var(--maxw) - 48px);
  min-height: 64px;
  border: 1px solid rgba(255,253,248,.18);
  border-radius: 8px;
  padding: 9px 12px 9px 14px;
  background: rgba(33,25,47,.28);
  backdrop-filter: blur(14px) saturate(140%);
}
.site-header.scrolled { background: transparent; box-shadow: none; }
.site-header.scrolled .nav {
  background: rgba(255,253,248,.92);
  border-color: rgba(220,207,184,.85);
  box-shadow: 0 18px 40px -30px rgba(37,31,45,.42);
}
.brand-logo { border-radius: 8px; box-shadow: none; background: #fff; }
.brand-name { font-family: 'Lora', Georgia, serif; font-size: 1.22rem; }
.brand-sub { max-width: 30ch; letter-spacing: .11em; }
.nav-links { gap: 2px; }
.nav-link { border-radius: 8px; padding: .72em .9em; }
.nav-cta { border-radius: 8px; padding: .76em 1.12em; }

.hero {
  min-height: 88svh;
  background:
    linear-gradient(115deg, rgba(33,25,47,.96) 0%, rgba(69,52,95,.92) 42%, rgba(125,146,124,.86) 100%),
    var(--violet-900);
  padding: 122px 0 68px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(249,244,234,.92));
  pointer-events: none;
}
.hero-bg .glow { display: none; }
.hero-bg .grain {
  opacity: .34;
  background:
    linear-gradient(135deg, rgba(255,253,248,.08) 0 1px, transparent 1px 34px),
    linear-gradient(45deg, rgba(255,253,248,.06) 0 1px, transparent 1px 42px);
  background-size: 80px 80px, 104px 104px;
}
.hero-inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: clamp(44px, 7vw, 92px);
}
.hero-text { max-width: 760px; }
.hero-title {
  font-size: clamp(3rem, 6.7vw, 6rem);
  line-height: .98;
  max-width: 10.5ch;
  margin: .12em 0 .28em;
}
.hero-title em {
  color: #F2DFA4;
  text-decoration: underline;
  text-decoration-color: rgba(242,223,164,.28);
  text-decoration-thickness: .08em;
  text-underline-offset: .08em;
}
.hero-sub {
  max-width: 46em;
  color: rgba(255,253,248,.84);
  font-size: clamp(1.02rem, 1.35vw, 1.17rem);
  border-left: 1px solid rgba(242,223,164,.46);
  padding-left: 20px;
}
.hero-cta { margin-top: 30px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  margin-top: 34px;
  border: 1px solid rgba(255,253,248,.22);
  background: rgba(255,253,248,.13);
}
.hero-proof span {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(33,25,47,.26);
  color: rgba(255,253,248,.78);
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.35;
}
.hero-proof strong {
  color: #F2DFA4;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.hero-emblem { align-self: stretch; }
.emblem-stage {
  position: relative;
  width: min(430px, 100%);
  min-height: 510px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,253,248,.22);
  background:
    linear-gradient(180deg, rgba(255,253,248,.16), rgba(255,253,248,.05)),
    linear-gradient(135deg, rgba(242,223,164,.18) 0 1px, transparent 1px 28px);
  box-shadow: 0 36px 90px -42px rgba(0,0,0,.65);
}
.emblem-stage::before, .emblem-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(242,223,164,.32);
  pointer-events: none;
}
.emblem-stage::before { inset: 18px; }
.emblem-stage::after { inset: 38px 34px; border-color: rgba(255,253,248,.18); }
.emblem-halo {
  width: 78%;
  background: none;
  border: 1px solid rgba(242,223,164,.32);
  filter: none;
  animation: none;
}
.emblem-img {
  width: min(350px, 74%);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.28));
  animation: floaty 9s ease-in-out infinite;
}
.emblem-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  margin: 0;
  color: rgba(255,253,248,.82);
  font-size: .82rem;
  text-align: center;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-scroll { border-radius: 8px; }

.stats {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: -36px auto 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}
.stats-grid {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px -42px rgba(37,31,45,.45);
  text-align: left;
  gap: 0;
}
.stat { padding: 26px 28px; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat-value { color: var(--violet); font-size: clamp(2rem, 3.2vw, 2.8rem); }
.stat-label { color: var(--muted); }

.services {
  background:
    linear-gradient(180deg, rgba(249,244,234,.3), rgba(238,243,237,.72)),
    var(--ivory);
}
.services-grid {
  grid-template-columns: 1.15fr .92fr .92fr;
  gap: 18px;
}
.service-card {
  min-height: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-color: rgba(220,207,184,.82);
}
.service-visual {
  position: relative;
  height: 156px;
  margin: -32px -32px 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(220,207,184,.72);
  background: var(--cream);
}
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,253,248,.02), rgba(255,253,248,.72)),
    linear-gradient(90deg, rgba(69,52,95,.22), transparent 46%);
  pointer-events: none;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.92);
  transform: scale(1.02);
  transition: transform .55s var(--ease), filter .35s var(--ease);
}
.service-card:hover .service-visual img {
  filter: saturate(.94) contrast(.98);
  transform: scale(1.055);
}
.service-card:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(69,52,95,.95), rgba(71,88,70,.88)),
    var(--violet);
  color: #fff;
}
.service-card:nth-child(1) .service-title,
.service-card:nth-child(1) .service-summary,
.service-card:nth-child(1) .service-more p,
.service-card:nth-child(1) .service-book { color: #fff; }
.service-card:nth-child(1) .service-more summary { color: #F2DFA4; }
.service-card:nth-child(1) .service-book:hover,
.service-card:nth-child(1) .service-more summary:hover { color: #fff; }
.service-card:nth-child(1) .service-meta,
.service-card:nth-child(1) .service-count { color: #F2DFA4; }
.service-card:nth-child(1) .service-icon { background: rgba(255,253,248,.12); color: #F2DFA4; border-color: rgba(242,223,164,.28); }
.service-card:nth-child(1) .service-visual {
  height: 156px;
  border-bottom-color: rgba(242,223,164,.22);
  background: rgba(33,25,47,.34);
}
.service-card:nth-child(1) .service-visual::after {
  background:
    linear-gradient(180deg, rgba(33,25,47,.05), rgba(33,25,47,.66)),
    linear-gradient(90deg, rgba(33,25,47,.42), rgba(69,52,95,.08));
}
.service-card::before { height: 100%; width: 4px; inset: 0 auto 0 0; transform: scaleY(0); transform-origin: top; }
.service-card:hover::before { transform: scaleY(1); }
.service-count {
  align-self: flex-end;
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(69,52,95,.22);
}
.service-icon { border-radius: 8px; background: var(--sage-50); color: var(--sage); border-color: rgba(125,146,124,.24); }
.service-title { font-size: clamp(1.45rem, 2vw, 2rem); }
.service-summary { margin-bottom: 1.2em; }
.service-book { margin-top: auto; }

.about {
  background:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 42%, var(--ivory) 42%, var(--ivory) 100%);
}
.about-grid { grid-template-columns: .82fr 1.18fr; }
.about-media {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(125,146,124,.92), rgba(69,52,95,.95)),
    var(--sage);
}
.about-emblem-halo {
  width: 78%;
  border-radius: 8px;
  border: 1px solid rgba(242,223,164,.35);
  background:
    linear-gradient(135deg, rgba(255,253,248,.12) 0 1px, transparent 1px 28px),
    rgba(255,253,248,.04);
  filter: none;
}
.stat-value,
.signature,
.step-num,
.testi blockquote,
.ci strong,
.footer-name { font-family: 'Lora', Georgia, serif; }
.creds li { border-radius: 8px; background: rgba(255,253,248,.72); }
.signature { color: var(--rose); }

.approach { background: var(--surface); }
.steps {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--ivory);
}
.step {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  min-height: 260px;
}
.step:last-child { border-right: 0; }
.step-num { color: var(--rose); }
.step-title { color: var(--ink); }

.testimonials {
  background:
    linear-gradient(180deg, rgba(125,146,124,.16), rgba(249,244,234,0)),
    var(--ivory);
}
.testi-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.testi {
  border-left: 4px solid var(--rose);
  box-shadow: none;
}
.testi:nth-child(even) { transform: translateY(28px); border-left-color: var(--sage); }
.testi:hover { transform: translateY(-2px); }
.testi:nth-child(even):hover { transform: translateY(24px); }

.faq { background: var(--surface); }
.faq .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.faq .eyebrow::before { display: none; }
.faq-list { max-width: 940px; }
.faq-item { border-radius: 8px; }

.booking {
  background:
    linear-gradient(115deg, rgba(33,25,47,.97), rgba(69,52,95,.95) 52%, rgba(183,123,95,.84)),
    var(--violet-900);
}
.booking::before {
  width: auto;
  height: auto;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255,253,248,.08) 0 1px, transparent 1px 36px),
    linear-gradient(45deg, rgba(242,223,164,.08) 0 1px, transparent 1px 52px);
  background-size: 96px 96px, 128px 128px;
  filter: none;
}
.booking-grid { grid-template-columns: .9fr 1.1fr; }
.booking-card {
  border-radius: 8px;
  border: 1px solid rgba(255,253,248,.75);
  box-shadow: 0 32px 84px -44px rgba(0,0,0,.58);
}
.field input, .field select, .field textarea { border-radius: 8px; background: #FCF8F0; }
.form-note { border-radius: 8px; background: var(--rose-50); color: #8A4C4C; border-color: rgba(185,134,134,.28); }

.cta-band {
  background: var(--sage-50);
  text-align: left;
}
.cta-inner {
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.cta-band p { max-width: 58ch; }

.contact { background: var(--ivory); }
.contact-grid { grid-template-columns: .78fr 1.22fr; }
.ci-ic { border-radius: 8px; background: var(--rose-50); color: var(--rose); border-color: rgba(185,134,134,.28); }
.social { border-radius: 8px; }
.contact-map { border-radius: 8px; }

.site-footer { background: #21192F; }
.footer-logo { border-radius: 8px; }
.fab, .toast { border-radius: 8px; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { max-width: 12ch; }
  .hero-text { order: 1; }
  .hero-emblem { order: 2; }
  .emblem-stage { min-height: 360px; margin: 0 auto; }
  .emblem-img { width: min(260px, 58%); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(1) { grid-row: auto; grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 860px) {
  .site-header .nav { min-height: 58px; }
  .nav-links {
    border-radius: 0;
    background: linear-gradient(180deg, #21192F 0%, #332648 100%);
  }
  .hero { min-height: auto; padding: 104px 0 66px; }
  .hero-inner { gap: 34px; }
  .hero-text { order: 1; }
  .hero-emblem { order: 2; }
  .hero-title { max-width: 100%; }
  .hero-sub { border-left: 0; padding-left: 0; }
  .hero-proof { grid-template-columns: 1fr; text-align: left; }
  .emblem-stage { min-height: 270px; }
  .emblem-img { width: min(210px, 58%); }
  .emblem-caption { display: none; }
  .stats { width: min(100% - 32px, 720px); margin-top: -24px; }
  .about { background: var(--cream); }
  .steps { display: block; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .testi:nth-child(even), .testi:nth-child(even):hover { transform: none; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .hero-cta .btn { width: 100%; }
  .hero { padding-bottom: 54px; }
  .hero-inner { position: relative; }
  .hero-text { position: relative; z-index: 1; }
  .hero-emblem {
    position: absolute;
    top: -22px;
    right: -116px;
    width: 260px;
    opacity: .08;
    z-index: 0;
    pointer-events: none;
  }
  .hero-emblem.reveal,
  .hero-emblem.reveal.in { opacity: .08; }
  .emblem-stage {
    width: 230px;
    min-height: 230px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .emblem-stage::before,
  .emblem-stage::after,
  .emblem-halo,
  .emblem-caption { display: none; }
  .emblem-img {
    width: 220px;
    max-width: none;
    -webkit-mask-image: none;
            mask-image: none;
    animation: none;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .hero-proof span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    font-size: .67rem;
  }
  .hero-proof strong { width: 64px; font-size: 1.15rem; }
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .stat:last-child { border-bottom: 0; }
}
