:root {
  --black: #08090d;
  --black-soft: #11131a;
  --ink: #fbf8ef;
  --muted: rgba(251, 248, 239, .72);
  --paper: #f7f2e7;
  --paper-2: #ebe1d0;
  --paper-ink: #17130f;
  --muted-dark: rgba(23, 19, 15, .66);
  --line: rgba(251, 248, 239, .18);
  --line-dark: rgba(23, 19, 15, .13);
  --red: #e7364d;
  --gold: #cda85b;
  --blue: #7aa7b8;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  font-family: Geist, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(251, 248, 239, .08);
  background: rgba(8, 9, 13, .72);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand img { width: 52px; height: 52px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.45)); }
.brand span { white-space: nowrap; }
nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 42px); }
nav a, .nav-action {
  color: rgba(251, 248, 239, .76);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

nav a:hover, .nav-action:hover { color: #fff; }
.nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 17px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 5vw, 72px) 64px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 45%;
  filter: saturate(.92) contrast(1.03);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,9,13,.98) 0%, rgba(8,9,13,.82) 35%, rgba(8,9,13,.42) 68%, rgba(8,9,13,.70) 100%),
    linear-gradient(180deg, rgba(8,9,13,.55) 0%, transparent 32%, rgba(8,9,13,.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 940px;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .2em;
  line-height: 1.7;
  text-transform: uppercase;
}

.eyebrow.dark { color: #8f2532; }
h1, h2, h3 {
  letter-spacing: -.055em;
  line-height: .96;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.15rem, 7.2vw, 8.8rem);
  font-weight: 700;
  max-width: 1060px;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.55rem, 5.2vw, 6.3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 750;
}

.lead {
  max-width: 700px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 850;
  letter-spacing: -.015em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--ink); color: #0b0c11; }
.button.primary:hover { background: #fff; }
.button.secondary { border: 1px solid var(--line); background: rgba(251,248,239,.08); color: var(--ink); }
.button.secondary:hover { border-color: rgba(251,248,239,.46); background: rgba(251,248,239,.12); }
.dark-button { color: var(--paper-ink); border-color: rgba(23,19,15,.22); background: rgba(23,19,15,.04); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(251,248,239,.82);
  background: rgba(8,9,13,.38);
  font-size: .9rem;
}

.section-pad {
  padding: clamp(82px, 11vw, 142px) clamp(22px, 5vw, 72px);
}

.intro,
.split,
.video-section,
.contact,
.calendar-section,
.client-teaser,
.client-benefits,
.client-form-section {
  background: var(--paper);
  color: var(--paper-ink);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.intro > * {
  width: min(var(--max), 100%);
}

.intro p:not(.eyebrow),
.split-copy p,
.video-copy p,
.contact-copy p,
.booking-panel p {
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
}

.services,
.method,
.booking {
  background:
    radial-gradient(circle at 10% 8%, rgba(122,167,184,.16), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(231,54,77,.16), transparent 26rem),
    var(--black);
}

.section-head {
  width: min(var(--max), 100%);
  margin-inline: auto;
  margin-bottom: 46px;
}

.section-head h2 { max-width: 980px; }
.section-note { max-width: 760px; margin-top: 18px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.section-head.compact { margin-bottom: 38px; }

.service-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.service-grid article,
.timeline article {
  background: rgba(17, 19, 26, .82);
  padding: clamp(24px, 3vw, 36px);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-grid span,
.timeline strong {
  margin-bottom: auto;
  width: fit-content;
  border: 1px solid rgba(183, 44, 31, .34);
  border-radius: 999px;
  padding: 7px 11px 6px;
  color: rgba(251,248,239,.82);
  background: rgba(183, 44, 31, .10);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-grid p,
.timeline p {
  margin-top: 16px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.portrait {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 34%;
}

.split-copy { max-width: 780px; }
.split-copy p { margin-top: 26px; }

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(23,19,15,.78);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.timeline {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline article { min-height: 300px; }

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.video-copy p { margin-top: 24px; }
.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #8f2532;
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.video-frame {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #05060a;
  box-shadow: 0 28px 70px rgba(23,19,15,.22);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.booking h2 { max-width: 760px; }
.booking-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(251,248,239,.08);
}

.booking-panel p { color: rgba(251,248,239,.74); }

.calendar-section .section-head {
  color: var(--paper-ink);
}

.calendar-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.calendar-choice-grid {
  align-items: stretch;
}

.calendar-card {
  min-width: 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.44);
  box-shadow: 0 26px 64px rgba(23,19,15,.12);
}

.calendar-card-head {
  padding: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid var(--line-dark);
}

.calendar-card-head span {
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid rgba(143, 37, 50, .26);
  border-radius: 999px;
  padding: 7px 11px 6px;
  color: #7d2230;
  background: rgba(143, 37, 50, .06);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.calendar-card-head p {
  margin-top: 12px;
  color: var(--muted-dark);
}

.calendar-choice-body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 18% 0%, rgba(231,54,77,.10), transparent 24rem),
    radial-gradient(circle at 100% 22%, rgba(205,168,91,.10), transparent 22rem),
    #08090d;
  color: var(--ink);
}

.calendar-choice-body p {
  color: rgba(251,248,239,.74);
  font-size: 1.02rem;
}

.calendar-choice-body .button {
  width: 100%;
  justify-content: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.contact-copy p {
  max-width: 680px;
  margin-top: 24px;
}

.contact-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255,255,255,.36);
  padding: 26px;
}

.contact-card > a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1.08rem;
  font-weight: 800;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(23,19,15,.72);
  font-weight: 750;
  font-size: .9rem;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #05060a;
}

footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

footer img { width: 42px; height: 42px; }
footer p { text-align: center; font-size: .9rem; }
footer a {
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.booking-privacy-note {
  width: min(1380px, 100%);
  margin: 18px auto 0;
  color: rgba(23,19,15,.68);
  font-size: .95rem;
  line-height: 1.55;
}

.booking-privacy-note a,
.form-privacy-note a,
.legal-content a {
  color: #8f2532;
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.form-privacy-note {
  margin-top: -4px;
  color: rgba(23,19,15,.62);
  font-size: .92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.legal-content {
  max-width: 980px;
  margin-inline: auto;
  padding-top: 150px;
  color: var(--ink);
}

.legal-content h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.legal-content section {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.legal-content p {
  margin-top: 12px;
  color: rgba(251,248,239,.76);
}

.quote-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(231,54,77,.18), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(205,168,91,.16), transparent 28rem),
    var(--black);
}

.booking-page {
  background:
    radial-gradient(circle at 16% 10%, rgba(231,54,77,.18), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(205,168,91,.16), transparent 28rem),
    var(--black);
}

.booking-hero {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(34px, 7vw, 96px);
  padding-top: 150px;
  background:
    linear-gradient(90deg, rgba(8,9,13,.98), rgba(8,9,13,.72)),
    url("assets/dj-live.webp") center / cover;
}

.booking-page-rdv { --booking-calendar-height: 1320px; }
.booking-page-reservation { --booking-calendar-height: 1480px; }

.booking-page-reservation .booking-hero {
  background:
    linear-gradient(90deg, rgba(8,9,13,.98), rgba(8,9,13,.72)),
    url("assets/ambiance-card.webp") center / cover;
}

.booking-hero-copy { max-width: 980px; min-width: 0; }
.booking-hero h1 { font-size: clamp(3rem, 6.4vw, 7.4rem); }

.booking-side-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(8,9,13,.64);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.booking-side-card > span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.booking-side-card .button { margin-top: 26px; }
.booking-side-card .mini-checklist li { color: rgba(251,248,239,.82); }
.legal-note {
  margin-top: 22px;
  color: rgba(23,19,15,.58);
  font-size: .88rem;
}
.light-note { color: rgba(251,248,239,.56); }

.booking-calendar-section {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 54px) clamp(64px, 8vw, 96px);
  background: var(--paper);
  color: var(--paper-ink);
}

.booking-calendar-intro {
  width: min(var(--max), 100%);
  margin: 0 auto 28px;
}

.booking-calendar-intro h2 { max-width: 760px; }
.booking-calendar-intro p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.booking-calendar-shell {
  width: min(1380px, 100%);
  min-height: var(--booking-calendar-height, 1280px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 0%, rgba(231,54,77,.10), transparent 24rem),
    radial-gradient(circle at 100% 22%, rgba(205,168,91,.10), transparent 22rem),
    #08090d;
  box-shadow: 0 26px 70px rgba(23,19,15,.16);
}

.booking-calendar-shell .cal-inline-widget,
.booking-calendar-shell iframe {
  width: 100% !important;
  min-height: var(--booking-calendar-height, 1280px) !important;
  height: var(--booking-calendar-height, 1280px) !important;
  border: 0 !important;
}

.booking-fallback {
  width: min(1380px, 100%);
  margin: 16px auto 0;
  color: rgba(23,19,15,.62);
  font-size: .95rem;
}

.booking-fallback a {
  color: #8f2532;
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.quote-hero {
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(34px, 7vw, 96px);
  padding-top: 150px;
  background:
    linear-gradient(90deg, rgba(8,9,13,.96), rgba(8,9,13,.72)),
    url("assets/dj-live.webp") center / cover;
}

.quote-hero-copy {
  max-width: 980px;
  min-width: 0;
}

.quote-hero h1 {
  font-size: clamp(3rem, 6.4vw, 7.4rem);
}

.quote-side-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(8,9,13,.62);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.quote-side-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.quote-side-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.quote-side-card p {
  margin-top: 20px;
  color: var(--muted);
}

.text-link.light { color: var(--gold); }

.quote-form-section {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, .95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  background: var(--paper);
  color: var(--paper-ink);
}

.quote-form-intro {
  position: sticky;
  top: 108px;
}

.quote-form-intro p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.quote-form {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.bot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.quote-form fieldset {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255,255,255,.38);
  box-shadow: 0 18px 50px rgba(23,19,15,.08);
}

.quote-form legend {
  padding: 0 8px;
  color: #8f2532;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: rgba(23,19,15,.78);
  font-weight: 800;
}

.quote-form fieldset > label:first-of-type,
.quote-form .form-grid:first-of-type label {
  margin-top: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(23,19,15,.16);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--paper-ink);
  background: rgba(255,255,255,.74);
  font: inherit;
  font-weight: 650;
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.quote-form textarea {
  resize: vertical;
  min-height: 120px;
}

.quote-form .field-help {
  margin-top: -2px;
  color: rgba(23,19,15,.56);
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.35;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(143,37,50,.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(143,37,50,.10);
}

.consent-line {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 700 !important;
}

.consent-line input {
  width: 18px;
  min-width: 18px;
  margin-top: 4px;
  accent-color: #8f2532;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quote-form.is-sending button[type="submit"] {
  opacity: .62;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  color: rgba(23,19,15,.72);
  font-weight: 750;
}



.client-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(231,54,77,.18), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(205,168,91,.16), transparent 28rem),
    var(--black);
}

.client-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(34px, 7vw, 96px);
  padding-top: 150px;
  background:
    linear-gradient(90deg, rgba(8,9,13,.98), rgba(8,9,13,.76)),
    url("assets/ambiance-card.webp") center / cover;
}

.client-hero-copy { max-width: 980px; min-width: 0; }
.client-hero h1 { font-size: clamp(3rem, 6.6vw, 7.6rem); }

.client-progress-card,
.client-teaser-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(8,9,13,.62);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.client-progress-card span,
.client-teaser-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.client-progress-card ol,
.client-teaser-card ul,
.mini-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-progress-card li,
.client-teaser-card li {
  color: rgba(251,248,239,.82);
  font-weight: 720;
}

.client-progress-card strong { color: var(--red); margin-right: 6px; }

.client-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.client-teaser-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
}

.client-teaser-card {
  border-color: var(--line-dark);
  background: rgba(23,19,15,.88);
}

.client-teaser-card .button { margin-top: 26px; }

.benefit-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.benefit-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255,255,255,.44);
}

.benefit-grid span {
  margin-bottom: auto;
  color: #8f2532;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .2em;
}

.benefit-grid p {
  margin-top: 16px;
  color: var(--muted-dark);
}

.client-form-section {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, .95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.client-form-intro {
  position: sticky;
  top: 108px;
}

.client-form-intro p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.mini-checklist { margin-top: 28px; }
.mini-checklist li {
  position: relative;
  padding-left: 24px;
  color: rgba(23,19,15,.78);
  font-weight: 750;
}
.mini-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.client-program-form textarea { min-height: 132px; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto 1fr; }
  nav { display: none; }
  .nav-action { justify-self: end; }
  .intro,
  .split,
  .video-section,
  .booking,
  .contact,
  .booking-hero,
  .quote-hero,
  .quote-form-section,
  .client-hero,
  .client-teaser,
  .client-form-section {
    grid-template-columns: 1fr;
  }
  .quote-form-intro,
  .client-form-intro { position: static; }
  .calendar-grid { grid-template-columns: 1fr; max-width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .contact-card { width: min(520px, 100%); }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
    display: flex;
    justify-content: space-between;
    padding-inline: 16px;
  }
  .brand img { width: 44px; height: 44px; }
  .brand span { display: none; }
  .nav-action { display: none; }
  .hero {
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    padding: 106px 22px 42px;
    max-width: 100vw;
  }
  .hero-content { width: calc(100vw - 44px); max-width: calc(100vw - 44px); }
  .hero-content > * { max-width: 100%; }
  .hero-media img { object-position: 68% 42%; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8,9,13,.96), rgba(8,9,13,.74) 56%, rgba(8,9,13,.62)),
      linear-gradient(180deg, rgba(8,9,13,.58), transparent 35%, rgba(8,9,13,.92));
  }
  .eyebrow { max-width: 310px; font-size: .66rem; letter-spacing: .16em; }
  h1 { width: 100%; font-size: clamp(2.05rem, 9.8vw, 2.65rem); line-height: 1.02; text-wrap: auto; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .lead { max-width: 100%; font-size: 1.02rem; }
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero .actions,
  .hero .hero-facts {
    width: 330px;
    max-width: calc(100vw - 44px);
  }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-facts { display: grid; max-width: 100%; }
  .hero-facts span { min-width: 0; }
  .section-pad { padding-inline: 22px; }
  .service-grid article,
  .timeline article { min-height: 245px; }
  .timeline { grid-template-columns: 1fr; }
  .video-section { gap: 28px; }
  .video-frame { margin-inline: -22px; border-radius: 0; }
  .booking-hero,
  .quote-hero,
  .client-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
    max-width: 100vw;
  }
  .client-hero-copy,
  .client-progress-card,
  .client-form-intro {
    width: min(320px, calc(100vw - 44px));
    max-width: min(320px, calc(100vw - 44px));
    min-width: 0;
  }
  .client-hero h1,
  .client-form-intro h2 {
    font-size: clamp(1.95rem, 8.2vw, 2.45rem);
    line-height: 1.02;
    text-wrap: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .client-progress-card { border-radius: 8px; }
  .benefit-grid article { min-height: 240px; }
  .booking-hero-copy,
  .booking-side-card {
    width: min(320px, calc(100vw - 44px));
    max-width: min(320px, calc(100vw - 44px));
    min-width: 0;
  }
  .booking-hero h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.45rem);
    line-height: 1.02;
    text-wrap: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .booking-calendar-section { padding: 42px 12px 56px; }
  .booking-calendar-intro {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }
  .booking-calendar-intro h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7.4vw, 2.15rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }
  .booking-calendar-intro p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }
  .booking-page-rdv { --booking-calendar-height: 2200px; }
  .booking-page-reservation { --booking-calendar-height: 2600px; }
  .booking-calendar-shell,
  .booking-calendar-shell .cal-inline-widget,
  .booking-calendar-shell iframe {
    min-height: var(--booking-calendar-height) !important;
    height: var(--booking-calendar-height) !important;
  }
  .booking-calendar-shell { border-radius: 8px; overflow: hidden; }
  .booking-fallback,
  .booking-privacy-note { width: calc(100vw - 24px); }
  .quote-hero-copy {
    width: min(320px, calc(100vw - 44px));
    max-width: min(320px, calc(100vw - 44px));
    min-width: 0;
  }
  .quote-form {
    width: min(100%, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    min-width: 0;
  }
  .quote-side-card,
  .quote-form-intro {
    width: min(320px, calc(100vw - 44px));
    max-width: min(320px, calc(100vw - 44px));
    min-width: 0;
  }
  .quote-hero-copy > *,
  .quote-side-card > * {
    max-width: 100%;
  }
  .quote-hero h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.45rem);
    line-height: 1.02;
    text-wrap: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .quote-form-intro h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.4rem);
    line-height: 1.02;
    text-wrap: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .quote-hero .lead,
  .quote-side-card p { overflow-wrap: anywhere; }
  .quote-side-card { border-radius: 8px; }
  .form-grid.two { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; }
  .calendar-grid { gap: 22px; }
  .calendar-card {
    margin-inline: 0;
    border-radius: 8px;
  }
  .calendar-choice-body { min-height: 220px; }
  .booking-panel, .contact-card { padding: 20px; }
  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* Custom native booking calendar v1 */
.custom-booking-section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 54px) clamp(70px, 8vw, 110px);
  background: var(--paper);
  color: var(--paper-ink);
}

.custom-booking-intro,
.custom-booking-card,
.custom-booking-form-wrap,
.custom-success {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.custom-booking-intro { margin-bottom: 28px; }
.custom-booking-intro h2 { max-width: 820px; }
.custom-booking-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.custom-booking-card {
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(23,19,15,.13);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(205,168,91,.16), transparent 23rem),
    linear-gradient(135deg, #111218, #08090d 62%);
  color: #fbf8ef;
  box-shadow: 0 28px 80px rgba(23,19,15,.18);
}

.custom-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.custom-cal-head strong {
  color: #fbf8ef;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 4.4vw, 2.2rem);
  text-transform: capitalize;
}

.cal-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(251,248,239,.18);
  border-radius: 999px;
  color: #fbf8ef;
  background: rgba(255,255,255,.06);
  font-size: 1.8rem;
  line-height: 1;
}

.custom-cal-status {
  margin-bottom: 18px;
  color: rgba(251,248,239,.72);
}

.custom-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.custom-cal-weekday {
  padding: 8px 0;
  color: rgba(251,248,239,.56);
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.custom-cal-empty { min-height: 74px; }
.custom-cal-day {
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(251,248,239,.10);
  border-radius: 12px;
  color: rgba(251,248,239,.72);
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}
.custom-cal-day span { font-size: clamp(1.05rem, 3.4vw, 1.35rem); font-weight: 900; }
.custom-cal-day small { color: inherit; font-size: .66rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; opacity: .72; }
.custom-cal-day.is-available {
  color: #111218;
  border-color: rgba(205,168,91,.92);
  background: linear-gradient(135deg, #f1d79a, #b98938);
  box-shadow: 0 10px 30px rgba(205,168,91,.18);
}
.custom-cal-day.is-selected {
  outline: 3px solid rgba(255,255,255,.72);
  transform: translateY(-2px);
}
.custom-cal-day.is-unavailable { opacity: .44; }
.custom-cal-day:disabled { cursor: not-allowed; opacity: .24; }

.custom-slots {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(251,248,239,.12);
}
.custom-cal-help { color: rgba(251,248,239,.72); }
.custom-cal-help.strong { margin-bottom: 12px; color: #fbf8ef; font-weight: 850; }
.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slot-pill {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(205,168,91,.45);
  border-radius: 999px;
  color: #f8e7b6;
  background: rgba(205,168,91,.08);
  font-weight: 900;
}
.slot-pill.is-selected,
.slot-pill:hover {
  color: #111218;
  background: #e8c978;
}

.custom-booking-form-wrap,
.custom-success {
  margin-top: 28px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(23,19,15,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.46);
  box-shadow: 0 18px 50px rgba(23,19,15,.08);
}
.custom-booking-form-wrap h3,
.custom-success h3 { font-size: clamp(1.8rem, 4vw, 3rem); }
.custom-booking-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.custom-booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(23,19,15,.78);
  font-weight: 850;
}
.custom-booking-form input,
.custom-booking-form textarea {
  width: 100%;
  border: 1px solid rgba(23,19,15,.16);
  border-radius: 10px;
  padding: 14px 14px;
  color: var(--paper-ink);
  background: rgba(255,255,255,.8);
  font: inherit;
  font-weight: 650;
}
.checkbox-line {
  grid-template-columns: 22px minmax(0,1fr);
  align-items: start;
}
.checkbox-line input { width: 18px; height: 18px; margin-top: 3px; }
.payment-note {
  margin-top: -4px;
  color: rgba(23,19,15,.58);
  font-size: .92rem;
}
.custom-success { background: rgba(205,168,91,.12); }

.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(205,168,91,.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, #08090d 0%, #0d0f16 48%, #08090d 100%);
}
.reviews::before,
.reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 0;
}
.reviews::before { top: 0; background: linear-gradient(180deg, rgba(8,9,13,1), rgba(8,9,13,0)); }
.reviews::after { bottom: 0; background: linear-gradient(0deg, rgba(8,9,13,1), rgba(8,9,13,0)); }
.reviews > * { position: relative; z-index: 1; }
.review-head { text-align: center; }
.review-head .section-note { margin-inline: auto; }
.review-grid {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 16px;
}
.review-card {
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(251,248,239,.12);
  border-radius: 24px;
  padding: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(145deg, rgba(251,248,239,.12), rgba(251,248,239,.045)),
    rgba(17, 19, 26, .88);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.review-card::before {
  content: "“";
  position: absolute;
  top: -26px;
  right: 24px;
  color: rgba(205,168,91,.18);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 1;
}
.featured-review {
  background:
    linear-gradient(145deg, rgba(205,168,91,.22), rgba(251,248,239,.06) 54%, rgba(17,19,26,.9)),
    rgba(17, 19, 26, .92);
}
.review-score {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(205,168,91,.24);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(205,168,91,.10);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.review-score span {
  color: rgba(251,248,239,.72);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.review-card p {
  margin: 0;
  color: rgba(251,248,239,.72);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}
.review-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.22rem, 2vw, 1.58rem);
  line-height: 1.18;
}
.review-card small {
  margin-top: auto;
  color: rgba(251,248,239,.52);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.review-action-card {
  width: min(var(--max), 100%);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(251,248,239,.12);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(251,248,239,.07);
  backdrop-filter: blur(16px) saturate(130%);
}
.review-action-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 850;
}
.review-action-card p { max-width: 620px; color: var(--muted); margin: 0; }
.review-action-card .button { white-space: nowrap; }
.button.is-disabled { opacity: .72; cursor: not-allowed; pointer-events: none; }
.meeting-choice {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(23,19,15,.16);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255,255,255,.55);
}
.meeting-choice legend {
  padding: 0 8px;
  color: rgba(23,19,15,.78);
  font-weight: 850;
}
.meeting-choice label {
  grid-template-columns: 22px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.55);
}
.custom-booking-form .meeting-choice input { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .review-action-card { align-items: flex-start; flex-direction: column; }
}
.mobile-quick-actions { display: none; }
@media (max-width: 640px) {
  body { padding-bottom: 74px; }
  .mobile-quick-actions {
    position: fixed;
    left: 12px;
    right: auto;
    bottom: 12px;
    z-index: 55;
    display: grid;
    width: min(360px, calc(100vw - 24px));
    max-width: min(360px, calc(100vw - 24px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(251,248,239,.16);
    border-radius: 999px;
    background: rgba(8,9,13,.82);
    backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 16px 48px rgba(0,0,0,.36);
  }
  .mobile-quick-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #08090d;
    background: var(--ink);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .02em;
  }
  .mobile-quick-actions a:nth-child(2) { background: rgba(251,248,239,.12); color: var(--ink); border: 1px solid rgba(251,248,239,.16); }
  .mobile-quick-actions a:nth-child(3) { background: #25d366; color: #06160b; }
}


@media (max-width: 700px) {
  .custom-booking-section { padding-inline: 14px; }
  .custom-booking-intro h2 { font-size: clamp(1.95rem, 8.2vw, 2.35rem); line-height: 1.02; }
  .custom-booking-card { padding: 12px; border-radius: 14px; }
  .custom-cal-grid { gap: 4px; }
  .custom-cal-empty { min-height: 52px; }
  .custom-cal-day { min-height: 54px; border-radius: 9px; }
  .custom-cal-day span { font-size: 1rem; }
  .custom-cal-day small { display: none; }
  .cal-nav { width: 42px; height: 42px; }
  .slot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slot-pill { border-radius: 12px; }
}

.custom-booking-intro { min-width: 0; overflow: hidden; }
.custom-booking-intro h2, .custom-booking-intro p { max-width: 100%; overflow-wrap: break-word; }
.custom-booking-card { min-width: 0; overflow: hidden; }

@media (max-width: 700px) {
  .custom-booking-intro, .custom-booking-card, .custom-booking-form-wrap, .custom-success { width: calc(100vw - 28px); max-width: calc(100vw - 28px); }
  .custom-booking-intro p:not(.eyebrow) { font-size: .98rem; line-height: 1.45; }
  .custom-cal-weekday { font-size: .66rem; letter-spacing: .03em; }
  .custom-cal-day { min-width: 0; padding: 0; }
}

@media (max-width: 700px) {
  .custom-cal-grid { grid-template-columns: repeat(7, minmax(0, calc((100% - 24px) / 7))); width: 100%; }
  .custom-cal-grid > * { min-width: 0; }
  .custom-cal-weekday { text-align: center; font-size: .6rem; }
  .custom-cal-day span { font-size: .94rem; }
}
