* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette extraite du vrai logo (bleu nuit + doré champagne) */
  --background: #14151b;
  --foreground: #f3ede0;
  --card: #1c1e27;
  --card-alt: #242631;
  --muted-foreground: #a8a495;
  --border: rgba(255, 255, 255, 0.1);
  --gold: #d9b872;
  --gold-foreground: #14151b;
  --gold-strong: #c9a24e;
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Allura", cursive;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--gold-foreground); }

.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ---------------------------- Layout helpers ---------------------------- */

.wrap { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px) { .wrap { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section-alt { background: color-mix(in oklab, var(--card-alt) 40%, transparent); border-top: 1px solid var(--border); }

.eyebrow {
  margin-bottom: .75rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

h2 { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.02em; }
@media (min-width: 640px) { h2 { font-size: 2.25rem; } }

.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.mt-lg { margin-top: 3rem; }
.mt-md { margin-top: 2rem; }
.center { margin-left: auto; margin-right: auto; text-align: center; }

.body-text { margin-top: 1.25rem; line-height: 1.7; color: var(--muted-foreground); }
.body-text.small { margin-top: .75rem; font-size: .9rem; }

.grid-2 { display: grid; gap: 3rem; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.about-grid { display: grid; gap: 2.5rem; align-items: center; }
.about-photo {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.5);
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 20rem 1fr 18rem; }
  .about-photo { max-width: none; }
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.badge-icon {
  position: relative;
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in oklab, var(--gold) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--gold) 50%, transparent);
  color: var(--gold);
}
/* Anneau décalé — reprend le motif du cercle du logo */
.badge-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid color-mix(in oklab, var(--gold) 25%, transparent);
  border-radius: 999px;
}
.badge-icon.lg { width: 3.5rem; height: 3.5rem; margin: 0 auto 1.5rem; }
.badge-icon.lg::after { inset: -8px; }

.badge-list { display: flex; flex-direction: column; gap: 1rem; list-style: none; }
.badge-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  font-weight: 600;
}

.card h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 700; }

/* ------------------------------- Citation ------------------------------- */

.quote-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
}
.quote-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--gold) 18%, transparent);
  pointer-events: none;
}
.quote-ring-1 { width: 34rem; height: 34rem; transform: translate(-50%, -50%); }
.quote-ring-2 { width: 26rem; height: 26rem; transform: translate(-53%, -47%); border-color: color-mix(in oklab, var(--gold) 12%, transparent); }

.pull-quote {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.35;
  color: var(--gold);
}
.pull-quote-sign {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--muted-foreground);
}

/* ------------------------------- Buttons ------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--gold-foreground);
  box-shadow: 0 10px 40px -10px var(--gold);
}
.btn-primary:hover { transform: scale(1.03); }
.btn-outline {
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 40%, transparent);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 40%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s ease, border-color .2s ease;
}
.phone-pill:hover { border-color: var(--gold); color: var(--gold); }

/* --------------------------------- Hero --------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-photo {
  position: absolute; inset: -2%;
  width: 104%; height: 104%;
  object-fit: cover;
  animation: hero-zoom 28s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    color-mix(in oklab, var(--background) 70%, transparent) 0%,
    color-mix(in oklab, var(--background) 50%, transparent) 45%,
    var(--background) 100%);
}

.hero-header { position: relative; z-index: 10; display: flex; justify-content: flex-end; padding: 1.5rem; min-width: 0; }
.phone-pill { white-space: nowrap; }
@media (min-width: 640px) { .hero-header { padding: 1.5rem 2.5rem; } }

.hero-content {
  position: relative; z-index: 10;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
}
.hero-content > * { min-width: 0; max-width: 100%; }

.hero-logo-wrap {
  position: relative;
  width: 9rem;
  margin-bottom: 2rem;
  border-radius: 999px;
  overflow: hidden;
  outline: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  outline-offset: -1px;
  animation: hero-logo-glow 4.5s ease-in-out infinite;
}
@media (min-width: 640px) { .hero-logo-wrap { width: 12rem; } }

.hero-logo { display: block; width: 100%; height: 100%; border-radius: 999px; }

.hero-logo-shine {
  position: absolute;
  top: -60%;
  left: -60%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    to right,
    transparent 0%,
    color-mix(in oklab, var(--gold) 65%, transparent) 50%,
    transparent 100%
  );
  transform: rotate(20deg);
  animation: hero-logo-sweep 4.5s ease-in-out infinite;
}

@keyframes hero-logo-glow {
  0%, 100% { box-shadow: 0 0 60px -10px color-mix(in oklab, var(--gold) 70%, transparent); }
  50% { box-shadow: 0 0 100px -5px var(--gold); }
}

@keyframes hero-logo-sweep {
  0% { left: -60%; opacity: 0; }
  15% { opacity: 1; }
  45% { opacity: 1; }
  60% { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap, .hero-logo-shine, .hero-photo { animation: none; }
}

.hero-badge {
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid color-mix(in oklab, var(--gold) 40%, transparent);
  background: color-mix(in oklab, var(--gold) 10%, transparent);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  max-width: 56rem;
  width: 100%;
  font-size: 2.1rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}
@media (min-width: 400px) { .hero-title { font-size: 2.5rem; } }
@media (min-width: 640px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5rem; } }
.hero-title .accent {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1;
  display: inline-block;
  margin-top: .15em;
  color: var(--gold);
  text-shadow: 0 0 40px color-mix(in oklab, var(--gold) 45%, transparent);
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }

.hero-cta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
.hero-cta.center { justify-content: center; }

/* ---------------------------- Fade-up entrance --------------------------- */

.fade-up { opacity: 0; animation: fade-up .9s cubic-bezier(.22,1,.36,1) both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------- Ambiance ---------------------------------- */

.vibe {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
}
.vibe-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vibe-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    var(--background) 0%,
    color-mix(in oklab, var(--background) 55%, transparent) 30%,
    color-mix(in oklab, var(--background) 55%, transparent) 70%,
    var(--background) 100%);
}
.vibe-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 5rem 1.5rem;
}

/* -------------------------------- Testimonials -------------------------------- */

.testi-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 640px) { .testi-head { flex-direction: row; align-items: center; } }

.rating-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid color-mix(in oklab, var(--gold) 40%, transparent);
  background: color-mix(in oklab, var(--gold) 10%, transparent);
  border-radius: 1rem;
  padding: .75rem 1.25rem;
}
.rating-badge .star { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.rating-num { font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; line-height: 1; }
.rating-sub { font-size: .75rem; color: var(--muted-foreground); }

.testi { display: flex; flex-direction: column; justify-content: space-between; }
.stars { color: var(--gold); letter-spacing: .1em; }
.testi blockquote { margin-top: 1rem; font-size: .9rem; line-height: 1.7; color: var(--muted-foreground); }
.testi figcaption { margin-top: 1.5rem; font-family: var(--font-script); font-size: 1.75rem; color: var(--gold); }

/* ----------------------------------- Zone ---------------------------------- */

.zone-section { position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.zone-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.zone-veil { position: absolute; inset: 0; background: color-mix(in oklab, var(--background) 88%, transparent); }
.zone { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }

/* ---------------------------------- Contact --------------------------------- */

.contact-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  border: 1px solid color-mix(in oklab, var(--gold) 40%, transparent);
  background: linear-gradient(to bottom right,
    color-mix(in oklab, var(--gold) 15%, transparent), var(--card), var(--card));
  border-radius: 1.5rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 640px) { .contact-card { padding: 3.5rem; } }

/* ---------------------------------- Footer ---------------------------------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem 5.5rem;
  text-align: center;
  font-size: .75rem;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .footer { padding-bottom: 3rem; } }
.footer a { text-decoration: underline; }
.footer a:hover { color: var(--gold); }

.legal-links { margin-top: .75rem; font-size: .75rem; }
.legal-links a { text-decoration: underline; }
.legal-links a:hover { color: var(--gold); }

.credit { margin-top: .5rem; font-size: .7rem; opacity: .6; }

/* Navigation, readability and responsive layout */
:root { --muted-foreground: #c2bdaf; }
body { line-height: 1.6; }
section[id], main[id] { scroll-margin-top: 1.5rem; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
.skip-link { position: fixed; left: 1rem; top: -10rem; z-index: 100; background: var(--gold); color: var(--background); padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.hero { min-height: min(900px, 100svh); }
.hero-header { justify-content: space-between; align-items: center; gap: 1rem; max-width: 80rem; width: 100%; margin-inline: auto; }
.site-nav { display: flex; flex-wrap: wrap; gap: .25rem 1rem; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: .875rem; font-weight: 700; }
.site-nav a:hover { color: var(--gold); }
.phone-pill { min-height: 44px; }
.hero-content { padding: 2rem 1.5rem 3rem; }
.hero-logo-wrap { flex-shrink: 0; width: 8rem; margin-bottom: 1.5rem; }
.hero-logo { aspect-ratio: 1; object-fit: cover; }
.hero-badge { font-size: .75rem; letter-spacing: .08em; }
.hero-sub { color: #e2ddcf; }
.hero-cta { flex-wrap: wrap; }
.hero-note { margin-top: 1.2rem; font-size: .875rem; color: #e2ddcf; }
.discover-link { display: inline-flex; align-items: center; gap: .6rem; min-height: 44px; margin-top: .6rem; color: var(--gold); font-size: .875rem; text-decoration: underline; text-underline-offset: .3em; }
.hero-title { font-size: clamp(2.1rem, 5.5vw, 4.5rem); }
.body-text.small, .testi blockquote { font-size: 1rem; }
.eyebrow, .rating-sub, .footer, .legal-links { font-size: .875rem; }
.credit { font-size: .75rem; opacity: 1; }
.card { display: flex; flex-direction: column; }
.service-link { display: inline-flex; align-items: center; justify-content: space-between; gap: .5rem; min-height: 48px; margin-top: auto; padding-top: 1.5rem; color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: .25em; }
.card .body-text { margin-bottom: 1rem; }
.contact-card { width: calc(100% - 3rem); }
.about-grid > * { min-width: 0; }
.about-photo { height: auto; }
.video-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; margin-top: 1.5rem; padding: .65rem 1.2rem; border: 1px solid var(--gold); border-radius: 999px; background: #14151be6; color: var(--foreground); font: inherit; font-size: .875rem; cursor: pointer; }
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); gap: 2.5rem; }
  .about-photo { grid-row: span 2; }
  .badge-list { grid-column: 2; }
}
@media (max-width: 639px) {
  .hero-header { flex-direction: column-reverse; gap: .5rem; padding: .75rem 1rem; }
  .site-nav { justify-content: center; gap: 1rem; }
  .hero-content { padding: 1.25rem 1.25rem 2.5rem; }
  .hero-logo-wrap { width: 6.5rem; margin-bottom: 1.25rem; }
  .hero-badge { max-width: 100%; padding: .5rem .75rem; letter-spacing: .025em; }
  .hero-badge .icon { display: none; }
  .hero-cta { width: 100%; max-width: 24rem; margin-top: 1.5rem; }
  .hero-cta .btn { width: 100%; padding: .9rem 1rem; }
  h2 { font-size: clamp(1.5rem, 6.5vw, 1.875rem); line-height: 1.3; }
  .section { padding: 4rem 0; }
  .rating-badge { align-self: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
}
