@font-face {
  font-family: "Mozaic Geo";
  src: url("../fonts/MozaicGEO-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mozaic Geo";
  src: url("../fonts/MozaicGEO-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mozaic Geo";
  src: url("../fonts/MozaicGEO-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mozaic Geo";
  src: url("../fonts/MozaicGEO-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mozaic Geo";
  src: url("../fonts/MozaicGEO-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ─── */
:root {
  --pigment-blue: #333399;
  --creative-blue: #6666ff;
  --violet-900: #202060;
  --cream: #fefee3;
  --white: #ffffff;
  --ink: #0c0c0c;
  --muted: #646477;
  --line: rgba(32, 32, 96, 0.14);
  --orange: #ff6600;
  --max: clamp(1080px, 88vw, 1600px);
  --header-h: 96px;
  --header-compact: 64px;
  font-family: "Mozaic Geo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); line-height: 1.5; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.35vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3 { font-size: 1.05rem; font-weight: 600; margin: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 10px 14px; color: var(--violet-900); background: var(--cream);
  transform: translateY(-150%); text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* ─── HEADER ─── */
.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0;
  height: var(--header-h);
  color: var(--white);
  transition: height 240ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 280ms ease;
}
.site-header.is-scrolled {
  --header-h: 64px;
  color: var(--violet-900);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(32, 32, 96, 0.07);
  backdrop-filter: blur(16px);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner {
  width: min(var(--max), 100% - clamp(36px, 4vw, 64px));
  margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.brand {
  position: relative;
  width: clamp(160px, 16vw, 200px);
  height: clamp(90px, 9vw, 110px);
  flex: 0 0 auto;
  margin-left: -24px;
  transition: width 240ms ease, height 240ms ease;
}
.site-header.is-scrolled .brand { width: clamp(120px, 12vw, 155px); height: var(--header-h); }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity 180ms ease; }
.brand-logo-colored { opacity: 0; }
.site-header.is-scrolled .brand-logo-white { opacity: 0; }
.site-header.is-scrolled .brand-logo-colored { opacity: 1; }

.site-nav {
  display: flex; align-items: center;
  gap: clamp(20px, 3vw, 38px);
  font-size: 1rem; font-weight: 700;
}
.site-nav a { text-decoration: none; color: inherit; transition: color 160ms ease; }
.site-nav a:hover { color: var(--cream); }
.site-header.is-scrolled .site-nav a:hover { color: var(--creative-blue); }

.menu-toggle {
  display: none; min-width: 48px; min-height: 48px;
  align-items: center; justify-content: center;
  border: none; color: inherit; background: transparent; cursor: pointer; padding: 0;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ─── BUTTONS ─── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 28px;
  border: 2px solid transparent;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button-primary { color: var(--violet-900); background: var(--cream); border-color: var(--cream); }
.button-primary:hover { background: var(--white); border-color: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.5); background: transparent; }
.button-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.button-violet { color: var(--white); background: var(--pigment-blue); border-color: var(--pigment-blue); }
.button-violet:hover { background: var(--violet-900); border-color: var(--violet-900); }
.button-cream { color: var(--violet-900); background: var(--cream); border-color: var(--cream); }
.button-cream:hover { background: var(--pigment-blue); border-color: var(--pigment-blue); color: var(--white); }

/* ─── SECTIONS ─── */
.section { padding: clamp(80px, 11vw, 150px) 0; }
section[id] { scroll-margin-top: var(--header-compact); }
.section-inner { width: min(var(--max), 100% - clamp(36px, 4vw, 64px)); margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 100px); align-items: center; }
.section-heading { max-width: 820px; margin-bottom: 54px; }
.section-heading > p:not(.eyebrow) { margin-top: 20px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.15rem); }
.section-copy p:not(.eyebrow) { margin-top: 20px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.15rem); }

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── HERO ─── */
.hero { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); isolation: isolate; }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  z-index: 1;
  background: linear-gradient(100deg, rgba(20, 20, 70, 0.94) 0%, rgba(51, 51, 153, 0.74) 50%, rgba(51, 51, 153, 0.08) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(var(--max), 100% - clamp(36px, 4vw, 64px));
  margin: 0 auto;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
}
.hero-content h1 { margin-left: -0.04em; }
.hero-eyebrow {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.title-accent { color: var(--cream); white-space: nowrap; }
.hero-kicker {
  max-width: 600px; margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.8vw, 1.28rem); font-weight: 400; line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.nowrap { white-space: nowrap; }

/* ─── EXPERTISE ─── */
.expertise { background: var(--white); }
.values-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--line);
}
.values-grid article {
  display: flex; flex-direction: column; gap: 10px;
  padding: 28px; background: #f8f8ff; min-height: 170px;
}
.value-header { display: flex; align-items: center; gap: 10px; }
.value-icon { flex: 0 0 22px; color: var(--orange); }
.value-label { color: var(--orange); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.values-grid h3 { color: var(--violet-900); }
.values-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* ─── CONCIERGERIE ─── */
.conciergerie { background: var(--cream); overflow: hidden; }
.conciergerie .eyebrow { color: var(--orange); }
.conciergerie-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(40px, 7vw, 80px); align-items: center; position: relative;
}
.conciergerie-copy h2 { color: var(--violet-900); }
.conciergerie-intro { margin-top: 20px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.15rem); }
.concierge-list { list-style: none; margin: 28px 0 32px; padding: 0; display: grid; gap: 16px; }
.concierge-list li {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 1rem; color: var(--violet-900);
}
.concierge-list svg { flex: 0 0 18px; color: var(--pigment-blue); }
.conciergerie-deco-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 36vw, 460px);
}
.conciergerie-deco {
  position: absolute;
  right: -50%;
  bottom: -36%;
  width: 180%;
  max-width: initial;
  height: auto;
  transform: scaleY(-1);
  z-index: 0;
  pointer-events: none;
}
.conciergerie-photo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 20vw, 300px);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 64px rgba(32, 32, 96, 0.2);
}

/* ─── TARIFS ─── */
.tarifs { background: var(--violet-900); color: var(--white); position: relative; overflow: hidden; }
.tarifs .eyebrow { color: var(--cream); }
.tarifs .section-heading > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.7); }
.tarifs-col:last-child { position: relative; }
.tarifs-watermark {
  position: absolute; bottom: -8%; right: -25%;
  width: 115%;
  pointer-events: none; user-select: none;
  opacity: 0.07;
}
.tarifs-watermark img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.tarifs-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 6vw, 78px); align-items: start; }

.tarifs-block-title {
  margin: 0 0 16px; color: var(--cream);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

.zone-table { border: 1px solid rgba(255, 255, 255, 0.14); }
.zone-table [role="row"] { display: grid; grid-template-columns: minmax(0, 1fr) minmax(140px, 0.36fr); }
.zone-table [role="row"] + [role="row"] { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.zone-table [role="columnheader"] {
  padding: 14px 20px;
  background: var(--white); color: var(--pigment-blue);
  font-weight: 900; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.zone-table [role="cell"] { padding: 18px 20px; color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; }
.zone-table strong[role="cell"] { color: var(--white); font-weight: 900; background: rgba(255, 255, 255, 0.06); }

.zone-note { margin: 14px 0 0; color: rgba(255, 255, 255, 0.45); font-size: 0.85rem; line-height: 1.5; }

.discount-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.discount-list li {
  padding: 12px 20px 8px;
  background: var(--white); color: var(--pigment-blue);
  border-left: 3px solid var(--creative-blue);
  font-size: 0.9rem; font-weight: 600;
}
.discount-list strong { font-weight: 900; }

.pack-list { list-style: none; margin: 0; padding: 0; border: 1px solid rgba(255, 255, 255, 0.14); }
.pack-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}
.pack-list li:last-child { border-bottom: none; }
.pack-list li span { font-weight: 500; }
.pack-list li strong { color: var(--cream); font-weight: 900; white-space: nowrap; }
.tarifs-pdf-cta { margin-top: 28px; }

/* ─── FAQ ─── */
.faq { background: #f7f8ff; }
.faq-inner {
  display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 100px); align-items: start;
}
.faq-visual { position: sticky; top: calc(var(--header-h) + 40px); }
.faq-porthole-wrap {
  position: relative;
  display: inline-block;
  padding: 74px;
}
/* outer ring */
.faq-porthole-wrap::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid rgba(32, 32, 96, 0.09);
  pointer-events: none;
}
/* inner ring */
.faq-porthole-wrap::before {
  content: ''; position: absolute; inset: 38px;
  border-radius: 50%; border: 1.5px solid rgba(32, 32, 96, 0.15);
  pointer-events: none;
}
.faq-porthole {
  position: relative;
  aspect-ratio: 1; overflow: hidden; border-radius: 50%;
  box-shadow:
    0 24px 64px rgba(32, 32, 96, 0.16),
    inset 0 3px 10px rgba(255, 255, 255, 0.22),
    inset 0 -4px 12px rgba(0, 0, 30, 0.18);
}
.faq-porthole::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.08) 28%,
    transparent 55%,
    rgba(0, 0, 30, 0.06) 100%
  );
  pointer-events: none;
}
.faq-porthole img { width: 100%; height: 100%; object-fit: cover; }
.faq-content .section-heading { margin-bottom: 0; }
.faq-list { margin-top: 32px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  min-height: 62px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 4px 0;
  color: var(--violet-900); font-size: 1.02rem; font-weight: 700; cursor: pointer; list-style: none;
}
summary::-webkit-details-marker { display: none; }
.faq-chevron { flex: 0 0 22px; color: var(--creative-blue); transition: transform 240ms ease; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding-bottom: 20px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* ─── CONTACT ─── */
.contact { color: var(--white); background: var(--pigment-blue); }
.contact .eyebrow { color: var(--cream); }
.contact-layout {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(40px, 7vw, 96px); align-items: start;
}
.contact-copy h2 { color: var(--white); }
.contact-copy p:not(.eyebrow) { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; margin-top: 16px; }
address { display: grid; gap: 16px; margin-top: 36px; font-style: normal; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 0.96rem;
  text-decoration: none; transition: color 160ms ease;
}
a.contact-item:hover { color: var(--cream); }
.contact-item svg { flex: 0 0 18px; color: var(--cream); }

.contact-form {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; padding: clamp(22px, 4vw, 36px);
  color: var(--ink); background: var(--white);
  box-shadow: 0 30px 80px rgba(17, 17, 61, 0.28);
}
.form-status { grid-column: 1 / -1; min-height: 20px; margin: 0; color: var(--pigment-blue); font-weight: 700; font-size: 0.88rem; }
.contact-form label { display: grid; gap: 7px; color: var(--violet-900); font-size: 0.85rem; font-weight: 700; }
.contact-form label span abbr { text-decoration: none; color: var(--orange); margin-left: 2px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; min-height: 50px; border: 1px solid rgba(32, 32, 96, 0.18);
  padding: 12px 14px; color: var(--ink); background: #fbfbff;
  transition: border-color 160ms ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--creative-blue);
}
.contact-form textarea { resize: none; }
.full { grid-column: 1 / -1; }
.contact-form .button-cream { border: none; min-height: 54px; font-size: 0.82rem; }
.contact-form .button-cream:hover { background: var(--violet-900); color: var(--white); }
.website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.rgpd-field { grid-column: 1 / -1; display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 10px; font-weight: 400 !important; cursor: pointer; }
.rgpd-field input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; min-height: 0; padding: 0; border: none; margin-top: 2px; accent-color: var(--violet-900); cursor: pointer; }
.rgpd-field span { font-size: 0.8rem; color: var(--violet-900); line-height: 1.5; }
.rgpd-field span a { color: var(--violet-900); text-decoration: underline; }
.cf-turnstile { grid-column: 1 / -1; margin-top: 4px; }

/* Custom select */
.select-wrapper { position: relative; }
.select-wrapper select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.select-chevron {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--creative-blue);
}

/* ─── FOOTER ─── */
.site-footer { color: var(--white); background: var(--violet-900); }
.footer-top { padding: clamp(40px, 6vw, 70px) 0 clamp(32px, 4vw, 56px); }
.footer-inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 80px); }
.footer-brand a { display: inline-block; }
.footer-brand img { width: clamp(140px, 13vw, 170px); height: auto; margin-left: -24px; margin-bottom: -24px; margin-top: -24px }
.footer-tagline { margin: 10px 0 18px; color: rgba(255, 255, 255, 0.65); font-size: 1rem; line-height: 1.5; }
.footer-socials { display: flex; gap: 14px; }
.footer-social {
  display: inline-flex; align-items: center;
  color: var(--creative-blue); text-decoration: none;
  transition: color 160ms ease;
}
.footer-social:hover { color: var(--cream); }
.footer-col-title { margin: 0 0 20px; color: rgba(255, 255, 255, 0.38); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-nav a { color: rgba(255, 255, 255, 0.7); font-weight: 500; text-decoration: none; font-size: 0.95rem; transition: color 160ms ease; }
.footer-nav a:hover { color: var(--cream); }
.footer-contact { display: grid; gap: 14px; align-content: start; }
.footer-contact > .footer-col-title { margin-bottom: 6px; }
.footer-contact a, .footer-contact span {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.7); font-size: 0.92rem;
  text-decoration: none; transition: color 160ms ease;
}
.footer-contact a:hover { color: var(--cream); }
.footer-contact svg { flex: 0 0 16px; color: rgba(255, 255, 255, 0.4); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.35); font-size: 0.8rem; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom nav a { color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; text-decoration: none; transition: color 160ms ease; }
.footer-bottom nav a:hover { color: rgba(255, 255, 255, 0.75); }
.cookie-manage { background: none; border: none; color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; cursor: pointer; padding: 0; text-decoration: underline; transition: color 160ms ease; }
.cookie-manage:hover { color: rgba(255, 255, 255, 0.75); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 40;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: none; color: var(--white); background: var(--orange);
  cursor: pointer; border-radius: 50%;
  opacity: 0; transform: translateX(72px);
  transition: opacity 280ms ease, transform 280ms ease, background 160ms ease;
  pointer-events: none;
}
.back-to-top.is-visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.back-to-top:hover { background: #cc5200; }

/* ─── COOKIE ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px clamp(18px, 5vw, 48px);
  color: var(--white); background: var(--violet-900);
  box-shadow: 0 -4px 24px rgba(32, 32, 96, 0.3);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 0.88rem; color: rgba(255, 255, 255, 0.82); }
.cookie-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.cookie-actions .button { min-height: 40px; padding: 10px 22px; }
.cookie-decline { background: none; border: none; color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; cursor: pointer; text-decoration: underline; padding: 0; transition: color 160ms ease; }
.cookie-decline:hover { color: var(--white); }

/* ─── LEGAL PAGE ─── */
.legal-page { padding: calc(var(--header-h) + 28px) 0 80px; min-height: 70vh; }
.legal-inner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 500; color: var(--violet-900); margin-bottom: 40px; }
.legal-content { color: var(--muted); line-height: 1.75; }
.legal-content h2 { font-size: 1.3rem; color: var(--violet-900); margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.05rem; color: var(--ink); margin: 24px 0 8px; }
.legal-content p { margin: 0 0 16px; }
.legal-content a { color: var(--pigment-blue); }

/* ─── REVEALS ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .split, .contact-layout { grid-template-columns: 1fr; }
  .conciergerie-inner { grid-template-columns: 1fr; }
  .conciergerie-deco-wrap { display: none; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 80px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 18px 18px; color: var(--violet-900); background: var(--white);
    box-shadow: 0 16px 40px rgba(32, 32, 96, 0.16);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; padding: 0 8px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: none; }
  .hero-overlay { background: linear-gradient(180deg, rgba(20, 20, 70, 0.94) 0%, rgba(51, 51, 153, 0.72) 60%, rgba(32, 32, 96, 0.15) 100%); }
  .hero-actions .button { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .back-to-top { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .discount-list { flex-direction: column; }
  .zone-table [role="row"] { grid-template-columns: 1fr; }
  .zone-table strong[role="cell"] { border-top: 1px solid rgba(255, 255, 255, 0.06); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .back-to-top { transition: none; }
  .faq-chevron { transition: none; }
}
