:root {
  --surface: #f7f5f2;
  --surface-low: #efecea;
  --surface-container: #e7e4e1;
  --surface-high: #dedad7;
  --on-surface: #1c1b1a;
  --variant: #4a3228;
  --outline: #d5c5c0;
  --primary: #7d2027;
  --primary-container: #9e262e;
  --secondary: #77574b;
  --rust: #542916;
  --onyx: #2e0c0f;
  --petal: #faf5f2;
  --sky: #c1d0d7;
  --shadow: 0 18px 60px rgba(84, 41, 22, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--on-surface);
  background: var(--surface);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px 64px;
  background: rgba(253, 249, 246, .82);
  border-bottom: 1px solid rgba(217, 193, 188, .45);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(84, 41, 22, .04);
}

.brand img { width: 86px; }
.nav-panel { display: flex; align-items: center; gap: 26px; }
.nav-panel a {
  font-size: 14px;
  font-weight: 700;
  color: var(--variant);
  transition: color .2s ease;
}
.nav-panel a:hover, .nav-panel a.is-active { color: var(--primary); }
.nav-panel .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}
.nav-panel .nav-cta:hover { color: #fff; background: var(--rust); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--outline); border-radius: 999px; background: rgba(255,255,255,.55); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--onyx); }

/* ── Member-area nav ── */
.nav-member .nav-panel { gap: 6px; }
.nav-member .nav-panel a { font-size: 13px; padding: 7px 12px; border-radius: 10px; }
.nav-member .nav-panel a:hover  { background: var(--surface-container); color: var(--rust); }
.nav-member .nav-panel a.is-active { background: var(--primary); color: #fff; }
.nav-zone-sep {
  width: 1px; height: 20px; background: var(--outline); margin: 0 8px; flex-shrink: 0;
}
.nav-member-info {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-member-greeting {
  font-size: 13px; font-weight: 700; color: var(--rust); white-space: nowrap;
}
.nav-member-logout {
  font-size: 12px; font-weight: 700; padding: 7px 14px;
  border-radius: 999px; border: 1px solid var(--outline);
  color: var(--variant); transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.nav-member-logout:hover { background: #ffdad6; color: #93000a; border-color: #ffdad6; }
@media (max-width: 980px) {
  .nav-member-info { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-zone-sep { width: 100%; height: 1px; margin: 4px 0; }
}

.page { display: none; width: 100%; padding: 0; }
.page.active { display: block; animation: fade .28s ease both; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 128px 64px 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: url("assets/img/bouge-home-hero.jpg") center/cover;
  filter: blur(2px) saturate(.85) brightness(1.02);
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,245,242,.88) 0%, rgba(247,245,242,.76) 48%, rgba(247,245,242,.42) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}
.hero-mark { display: none; }

.label {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--rust);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(44px, 6vw, 78px); line-height: 1.04; font-weight: 600; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; font-weight: 500; }
h3 { font-size: 24px; line-height: 1.2; font-weight: 500; }
p { margin: 0; color: var(--variant); }

.lead {
  max-width: 560px;
  margin: 24px 0 12px;
  color: var(--variant);
  font-size: 18px;
  line-height: 1.6;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
}
.intro { max-width: 560px; font-size: 16px; color: var(--variant); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.dark { color: #fff; background: var(--primary); box-shadow: 0 14px 42px rgba(84,41,22,.12); }
.button.dark:hover { background: var(--rust); }
.button.line { color: var(--primary); background: rgba(253,249,246,.48); }
.button.line:hover { background: rgba(125,32,39,.08); }
.button.glass {
  color: var(--rust);
  background: rgba(255, 252, 250, .82);
  border-color: rgba(255,255,255,.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  font-weight: 700;
}
.button.glass:hover { background: rgba(255, 252, 250, .98); color: var(--onyx); transform: translateY(-2px); }
.founding-cta .button { min-height: 54px; padding: 0 36px; font-size: 16px; font-weight: 700; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(1280px, calc(100% - 40px));
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}
.metrics article, .priority, .rooms article, .pricing article, .notes article, .concept-grid article, .contact form, .contact aside, .auth, .dash-card, .kpis article {
  background: rgba(255, 252, 250, .72);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.metrics article { padding: 28px; }
.metrics strong { display: block; color: var(--rust); font-family: "Outfit", sans-serif; font-size: 40px; line-height: 1; }
.metrics span { color: var(--variant); }

.editorial, .rooms, .priority, .page-head, .concept-grid, .pricing, .notes, .contact, .founding, .faq, .auth-page .auth, .dashboard {
  width: min(1280px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.editorial {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial p:last-child { max-width: 560px; font-size: 18px; line-height: 1.65; }

.rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-bottom: 120px;
}
.rooms article {
  min-height: 520px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  color: var(--petal);
  isolation: isolate;
}
.rooms article::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -2;
  background: center/cover;
  transition: transform .7s ease;
  filter: blur(1.5px);
}
.rooms article:first-child::before {
  background-image: url("assets/img/bouge-the-gym.jpg");
}
.rooms article:nth-child(2)::before {
  background-image: url("assets/img/bouge-witchy-room.jpg");
}
.rooms article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(46,12,15,.82), rgba(46,12,15,.1));
}
.rooms article:hover::before { transform: scale(1.04); }
.rooms span { color: #c1d0d7; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.rooms h3 { margin: 8px 0 14px; color: var(--petal); font-size: 40px; }
.rooms p { color: rgba(252,248,245,.82); max-width: 520px; }

.priority {
  margin-bottom: 120px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, var(--rust), var(--primary));
}
.priority h2, .priority p, .priority .label { color: var(--petal); }
.priority p { opacity: .86; }

.founding-cta {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}
.founding-cta-copy p { max-width: 440px; font-size: 17px; line-height: 1.65; margin-top: 16px; }
.founding-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.founding-perks li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 252, 250, .72);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  color: var(--on-surface);
  font-size: 15px;
  line-height: 1.4;
}
.founding-perks li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.lead-form, .contact form, .auth form { display: grid; gap: 14px; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(217,193,188,.9);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(253,249,246,.78);
  color: var(--on-surface);
  outline: none;
}
textarea { min-height: 140px; padding: 16px 18px; border-radius: 18px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(125,32,39,.08); }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
.lead-form label { color: rgba(252,248,245,.82); font-size: 14px; }
.lead-form label input { width: auto; min-height: 0; margin-right: 8px; }
.form-note { min-height: 22px; color: var(--petal); }

.page-head { padding: 150px 0 56px; }
.page-head p:last-child { max-width: 720px; margin-top: 20px; font-size: 18px; line-height: 1.65; }
.concept-grid, .pricing, .notes { display: grid; gap: 24px; }
.concept-grid { grid-template-columns: 1.1fr .9fr; padding-bottom: 120px; }
.concept-grid article, .pricing article, .notes article { padding: 32px; }
.concept-grid .large { grid-row: span 2; background: linear-gradient(135deg, rgba(255,252,250,.82), rgba(193, 208, 215,.42)); }
.concept-grid p, .pricing p, .notes p { margin-top: 14px; }
.pricing { grid-template-columns: repeat(3, 1fr); }
.pricing .featured { background: linear-gradient(135deg, var(--primary), var(--rust)); }
.pricing .featured h2, .pricing .featured p, .pricing .featured strong, .pricing .featured .tag { color: #fff; }
.tag { display: inline-flex; margin-bottom: 18px; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.pricing strong { display: block; margin-top: 24px; color: var(--rust); font-family: "Outfit", sans-serif; font-size: 24px; }
.notes { grid-template-columns: repeat(3, 1fr); padding: 24px 0 120px; }

.contact { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding-bottom: 120px; }
.contact form, .contact aside { padding: 32px; }
.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact aside img { width: 74px; margin-bottom: 36px; }
.contact aside p { padding: 12px 0; border-top: 1px solid var(--outline); color: var(--variant); }

.founding {
  min-height: 78vh;
  margin-top: 110px;
  padding: 64px;
  display: grid;
  align-content: center;
  gap: 22px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(84,41,22,.92), rgba(125,32,39,.84)), url("assets/img/bouge-home-hero.jpg") center/cover;
}
.founding img { width: 170px; filter: brightness(0) invert(1); opacity: .92; }
.founding h1, .founding p, .founding .label { color: #fff; }
.founding p { max-width: 760px; opacity: .86; font-size: 18px; }
.founding .button { width: fit-content; background: #fff; color: var(--rust); border-color: #fff; }
.faq { display: grid; gap: 14px; padding: 24px 0 120px; }
details { padding: 22px 26px; border-radius: 18px; background: rgba(255,252,250,.72); box-shadow: var(--shadow); }
summary { cursor: pointer; color: var(--rust); font-family: "Outfit", sans-serif; font-weight: 600; }

.auth-page.active { display: grid; place-items: center; min-height: 100vh; padding: 110px 20px 60px; }
.auth { width: min(460px, 100%); padding: 36px; }
.auth img { width: 140px; margin-bottom: 30px; }
.auth h1 { margin-bottom: 24px; font-size: 40px; }
.auth a { display: inline-block; margin-top: 18px; color: var(--primary); font-weight: 700; }

.dashboard-page { background: var(--surface-low); min-height: 100vh; padding-top: 88px; }
.dashboard { display: grid; grid-template-columns: 250px 1fr; gap: 28px; padding: 24px 0 80px; }
.dashboard aside {
  padding: 24px;
  border-radius: 24px;
  background: var(--onyx);
  color: var(--petal);
  height: fit-content;
  position: sticky;
  top: 96px;
}
.dashboard aside img { width: 54px; margin-bottom: 28px; filter: brightness(0) invert(1); }
.dashboard aside a { display: block; padding: 12px 0; color: rgba(252,248,245,.74); border-bottom: 1px solid rgba(252,248,245,.1); }
.dash { min-width: 0; }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.dash-head h1 { font-size: clamp(40px, 5vw, 64px); }
.dash-head span { color: var(--primary); font-weight: 700; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kpis article { padding: 24px; }
.kpis small { color: var(--variant); }
.kpis strong { display: block; color: var(--rust); font-family: "Outfit", sans-serif; font-size: 32px; }
.dash-card { margin-top: 24px; padding: 30px; }
table { width: 100%; border-collapse: collapse; margin-top: 18px; }
th, td { padding: 14px 0; border-bottom: 1px solid var(--outline); text-align: left; }
th { color: var(--primary); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

/* ── Legacy .footer (home.php — à remplacer par .site-footer) ── */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 48px 64px;
  background: var(--surface-container);
  border-top: 1px solid var(--outline);
}
.footer img { width: 130px; }
.footer nav { display: flex; gap: 20px; color: var(--variant); }

/* ── Site footer complet ────────────────────────────────── */
.site-footer {
  background: var(--surface-container);
  border-top: 1px solid var(--outline);
  font-size: 14px;
  color: var(--variant);
}
.footer-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo { width: 110px; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 13px; line-height: 1.6; color: var(--variant); margin: 0 0 18px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--outline);
  display: flex; align-items: center; justify-content: center;
  color: var(--variant); transition: color .15s, border-color .15s;
}
.footer-socials a:hover { color: var(--rust); border-color: var(--rust); }
.footer-col h4 {
  font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-surface); margin: 0 0 16px;
}
.footer-col nav, .footer-col address {
  display: flex; flex-direction: column; gap: 10px;
  font-style: normal;
}
.footer-col nav a, .footer-col address a,
.footer-col address p { color: var(--variant); font-size: 14px; line-height: 1.5; }
.footer-col nav a:hover, .footer-col address a:hover { color: var(--rust); }

/* Barre légale */
.footer-legal {
  border-top: 1px solid var(--outline);
  padding: 20px 0;
}
.footer-legal-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; line-height: 1.6; margin: 0; }
.footer-copy small { font-size: 11px; opacity: .7; }
.footer-legal-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px; color: var(--variant);
  white-space: nowrap; transition: color .15s;
}
.footer-legal-links a:hover { color: var(--rust); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-legal-links { gap: 12px; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { padding: 14px 20px; }
  .nav-toggle { display: block; }
  .nav-panel {
    display: none;
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(253,249,246,.96);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open .nav-panel { display: flex; }
  .hero { padding: 110px 20px 70px; min-height: 760px; }
  .hero::before { background: url("assets/img/bouge-home-hero.jpg") center/cover; }
  .hero::after { background: linear-gradient(180deg, rgba(247,245,242,.72) 0%, rgba(247,245,242,.82) 45%, rgba(247,245,242,.76) 100%); }
  .metrics, .editorial, .rooms, .priority, .founding-cta, .concept-grid, .pricing, .notes, .contact, .dashboard { grid-template-columns: 1fr; }
  .editorial { gap: 28px; padding: 88px 0; }
  .rooms, .notes, .concept-grid, .contact { padding-bottom: 88px; }
  .priority { grid-template-columns: 1fr; margin-bottom: 88px; }
  .dashboard aside { position: static; }
}

@media (max-width: 640px) {
  .brand img { width: 76px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero { min-height: 700px; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .metrics { margin-top: -28px; }
  .metrics article, .priority, .rooms article, .concept-grid article, .pricing article, .notes article, .contact form, .contact aside, .auth, .dash-card { padding: 24px; }
  .rooms article { min-height: 420px; }
  .rooms h3 { font-size: 32px; }
  .two, .kpis { grid-template-columns: 1fr; }
  .page-head { padding: 118px 20px 42px; width: 100%; }
  .founding { width: calc(100% - 40px); padding: 32px; margin-top: 96px; }
  .footer { padding: 36px 20px; flex-direction: column; }
}

/* ── Pages légales ── */
.legal-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 120px;
}
.legal-content .updated-at {
  font-size: 13px;
  color: var(--variant);
  margin-bottom: 48px;
}
.legal-content h2 {
  font-size: 24px;
  color: var(--rust);
  margin: 48px 0 14px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--onyx);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--variant);
  margin: 0 0 14px;
}
.legal-content ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--variant);
}
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content a { color: var(--primary); font-weight: 600; }
.legal-content a:hover { color: var(--rust); }
.legal-content strong { color: var(--onyx); }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--outline);
}
.legal-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--outline);
  font-size: 13px;
  font-weight: 600;
  color: var(--variant);
  transition: color .15s, border-color .15s;
}
.legal-nav a:hover, .legal-nav a.is-active { color: var(--primary); border-color: var(--primary); }

/* ═══════════════════════════════════════════════════════════════
   WOW ENHANCEMENTS v2 — animations, micro-interactions, polish
   Identité & couleurs préservées à 100%
   ═══════════════════════════════════════════════════════════════ */

/* ── Nav scrolled — shadow renforcé ── */
.nav.scrolled {
  box-shadow: 0 8px 40px rgba(84,41,22,.1);
  border-bottom-color: rgba(217,193,188,.7);
}
.nav { transition: box-shadow .3s ease, border-color .3s ease; }

/* ── Barre de progression scroll ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; z-index: 200;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--rust), var(--primary-container));
  transition: width .1s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Reveal amélioré — cubic-bezier naturel ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.reveal-left  { transform: translateX(-28px); }
.reveal.reveal-right { transform: translateX(28px); }
.reveal.in-view { opacity: 1; transform: translate(0); }

/* Stagger delays */
.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }
.stagger-5 { transition-delay: .42s; }

/* ── Hero h1 — gradient text terracotta ── */
.hero-copy h1 {
  background: linear-gradient(135deg, var(--rust) 0%, var(--primary) 55%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Boutons — glow & scale ── */
.button {
  transition: transform .2s cubic-bezier(.22,1,.36,1), background .2s ease,
              color .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.97); }

.button.dark {
  box-shadow: 0 6px 24px rgba(84,41,22,.2);
}
.button.dark:hover {
  background: var(--rust);
  box-shadow: 0 12px 44px rgba(84,41,22,.4);
  transform: translateY(-3px);
}

.button.line:hover {
  background: rgba(125,32,39,.1);
  box-shadow: 0 4px 16px rgba(125,32,39,.1);
}

/* ── Logo nav — hover scale ── */
.brand img {
  transition: transform .25s cubic-bezier(.22,1,.36,1), opacity .2s;
}
.brand:hover img { transform: scale(1.06); opacity: .88; }

/* ── Nav active — dot indicator ── */
.nav-panel a {
  position: relative;
  transition: color .2s ease;
}
.nav-panel a.is-active {
  color: var(--primary);
}
.nav-panel a.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

/* ── Metrics — lift au hover ── */
.metrics article {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.metrics article:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(84,41,22,.16);
}
.metrics strong {
  transition: color .2s;
}
.metrics article:hover strong { color: var(--primary); }

/* ── Glass cards — lift au hover ── */
.metrics article, .priority, .rooms article, .pricing article, .notes article,
.concept-grid article, .contact form, .contact aside, .dash-card, .kpis article {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.concept-grid article:hover, .notes article:hover, .kpis article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(84,41,22,.15);
}

/* ── How steps — scale + glow sur le cercle ── */
.how-step-num {
  transition: background .25s ease, border-color .25s ease, color .25s ease,
              transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
}
.how-step:hover .how-step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(125,32,39,.3);
}

/* ── Rooms — shadow amélioré au hover ── */
.rooms article {
  transition: box-shadow .4s ease;
}
.rooms article:hover {
  box-shadow: 0 40px 100px rgba(84,41,22,.3);
}

/* ── Priority section — gradient animé ── */
.priority {
  background: linear-gradient(135deg, var(--rust) 0%, var(--primary) 50%, var(--secondary) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── Founding perks new — slide au hover ── */
.founding-perks-new li {
  transition: background .2s ease, transform .25s cubic-bezier(.22,1,.36,1), border-color .2s;
}
.founding-perks-new li:hover {
  background: rgba(255,252,250,.14);
  transform: translateX(6px);
  border-color: rgba(255,255,255,.2);
}

/* ── Footer socials — fill au hover ── */
.footer-socials a {
  transition: color .2s ease, border-color .2s ease,
              background .2s ease, transform .25s cubic-bezier(.22,1,.36,1);
}
.footer-socials a:hover {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
  transform: translateY(-3px);
}

/* ── FAQ details — transition douce ── */
details {
  transition: box-shadow .25s ease;
}
details[open] {
  box-shadow: 0 20px 60px rgba(84,41,22,.12);
}
summary {
  transition: color .2s;
}
summary:hover { color: var(--primary); }

/* ── Input focus — ring plus doux ── */
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(125,32,39,.1), 0 2px 12px rgba(125,32,39,.08);
  transition: border-color .2s, box-shadow .2s;
}

/* ── Legal nav active — filled ── */
.legal-nav a {
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.legal-nav a:hover {
  background: rgba(125,32,39,.06);
  transform: translateY(-1px);
}
.legal-nav a.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}