:root {
  --bg: #faf6f1;
  --surface: #fffdf9;
  --surface-2: #f3e8e5;
  --ink: #2c2523;
  --muted: #746965;
  --rose: #d9b7b1;
  --rose-deep: #9f6f68;
  --champagne: #c8a978;
  --line: rgba(44, 37, 35, 0.12);
  --shadow: 0 18px 50px rgba(72, 51, 45, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1100px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 4%, rgba(217,183,177,.19), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(78px + var(--safe-bottom));
}
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: .75rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  border-radius: 999px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 10px 18px;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44,37,35,.06);
}
.brand { display: inline-grid; gap: 0; line-height: 1; }
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: .12em;
}
.brand-sub {
  margin-top: 5px;
  font-size: .56rem;
  letter-spacing: .30em;
  color: var(--muted);
}
.header-book {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  background: rgba(255,255,255,.6);
}

.hero, .section, .footer { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.hero { padding: 30px 0 54px; }
.hero-copy { max-width: 36rem; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.03;
}
h1 { margin: 0; font-size: clamp(2.65rem, 13vw, 4.2rem); }
h2 { margin: 0; font-size: clamp(2rem, 9vw, 3.15rem); }
h3 { margin: 0; line-height: 1.2; }
.hero-text {
  max-width: 33rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}
.hero-visual {
  position: relative;
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #efe4de;
}
.hero-visual img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.hero-visual figcaption {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,253,249,.84);
  backdrop-filter: blur(9px);
  color: var(--muted);
  font-size: .68rem;
}
.hero-actions { display: grid; gap: 10px; margin-top: 18px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-secondary { background: transparent; border-color: var(--line); }
.btn-full { width: 100%; }

.section { padding: 66px 0; scroll-margin-top: 74px; }
.section-heading { margin-bottom: 24px; }
.section-heading > p:last-child { margin: 14px 0 0; color: var(--muted); max-width: 43rem; }
.section-heading.compact { margin-bottom: 18px; }

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 8px;
  margin-bottom: 18px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-weight: 750;
  font-size: .86rem;
  cursor: pointer;
  scroll-snap-align: start;
}
.chip.is-active { background: var(--ink); border-color: var(--ink); color: white; }

.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(84vw, 340px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 14px;
  margin-inline: -2px;
}
.gallery::-webkit-scrollbar { display: none; }
.creation-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(56,40,36,.07);
}
.creation-card[hidden] { display: none; }
.creation-image-wrap { position: relative; }
.creation-image-wrap img { width: 100%; aspect-ratio: 19/23; object-fit: cover; }
.favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,253,249,.88);
  backdrop-filter: blur(10px);
  font-size: 1.5rem;
  cursor: pointer;
}
.favorite[aria-pressed="true"] { background: var(--ink); color: white; }
.creation-body {
  display: grid;
  gap: 14px;
  padding: 15px;
}
.creation-category {
  margin: 0 0 3px;
  color: var(--rose-deep);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.creation-body h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 500; }
.want-style {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.favorites-note {
  margin-top: 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
}
.favorites-note[hidden] { display: none; }

.style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.style-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
  padding: 16px;
  border: 1px solid rgba(44,37,35,.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(255,255,255,.92), rgba(240,220,216,.82));
  box-shadow: 0 10px 28px rgba(58,43,38,.06);
  cursor: pointer;
}
.style-card span { font-family: Georgia, "Times New Roman", serif; font-size: 1.26rem; }
.style-card small { color: var(--muted); }
.style-card-wide { grid-column: 1 / -1; min-height: 108px; }

.service-list { display: grid; gap: 10px; }
.service-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,253,249,.75);
}
.service-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 500; }
.service-card p { margin: 5px 0 0; color: var(--muted); font-size: .9rem; }
.service-card strong { color: var(--rose-deep); font-size: .86rem; }
.price-note { margin: 14px 0 0; color: var(--muted); font-size: .8rem; }

.quote-break {
  width: 100%;
  padding: 58px 22px;
  text-align: center;
  background: var(--ink);
  color: white;
}
.quote-break p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 10vw, 3.7rem); line-height: 1.05; }
.quote-break span { display: block; margin-top: 16px; color: #d9c6bf; font-size: .66rem; letter-spacing: .2em; }

.about { display: grid; gap: 26px; }
.about-visual { overflow: hidden; border-radius: var(--radius-xl); background: var(--surface-2); }
.about-visual img { width: 100%; aspect-ratio: 1.08/1; object-fit: cover; }
.about-copy { margin-bottom: 0; }

.booking { padding-bottom: 88px; }
.booking-card {
  padding: 24px 18px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  border: 1px solid rgba(159,111,104,.12);
}
.booking-card > p:not(.eyebrow) { color: var(--muted); }
.booking-form { display: grid; gap: 13px; margin-top: 24px; }
.booking-form label { display: grid; gap: 7px; }
.booking-form label > span { font-weight: 800; font-size: .84rem; }
.booking-form label small { color: var(--muted); font-weight: 500; }
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(44,37,35,.12);
  border-radius: 14px;
  background: rgba(255,253,249,.95);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.booking-form input { min-height: 48px; }
.booking-form textarea { resize: vertical; min-height: 92px; }
.booking-form input:focus,
.booking-form textarea:focus { border-color: var(--rose-deep); box-shadow: 0 0 0 3px rgba(159,111,104,.12); }
.form-note { margin: -2px 0 0; text-align: center; color: var(--muted); font-size: .74rem; }
.form-success { margin-top: 24px; text-align: center; padding: 26px 12px; }
.form-success span { font-size: 2rem; color: var(--rose-deep); }
.form-success h3 { margin-top: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; }
.form-success p { color: var(--muted); }

.footer { padding: 42px 0 30px; text-align: center; color: var(--muted); }
.footer-brand { display: inline-grid; color: var(--ink); line-height: 1; }
.footer-brand span { font-family: Georgia, "Times New Roman", serif; letter-spacing: .12em; }
.footer-brand small { margin-top: 6px; font-size: .53rem; letter-spacing: .28em; }
.footer p { font-size: .76rem; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; margin-top: 18px; font-size: .82rem; }

.mobile-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + var(--safe-bottom));
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(44,37,35,.1);
  border-radius: 20px;
  background: rgba(255,253,249,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 44px rgba(48,34,31,.16);
}
.mobile-dock a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 15px;
  font-weight: 800;
  font-size: .88rem;
}
.mobile-dock .dock-primary { background: var(--ink); color: white; }

@media (min-width: 620px) {
  body { padding-bottom: 0; }
  .site-header { padding-inline: 28px; }
  .hero { padding-top: 50px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 42px; }
  .hero-copy { grid-column: 1; }
  .hero-visual { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
  .hero-actions { grid-column: 1; grid-template-columns: 1fr 1fr; }
  .gallery { grid-auto-columns: min(43vw, 360px); }
  .service-card { grid-template-columns: 1fr auto; align-items: center; }
  .about { grid-template-columns: .95fr 1.05fr; align-items: center; }
  .mobile-dock { display: none; }
}

@media (min-width: 920px) {
  .section { padding-block: 90px; }
  .gallery { grid-auto-flow: initial; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .creation-card:nth-child(4), .creation-card:nth-child(5) { display: block; }
  .style-grid { grid-template-columns: repeat(4, 1fr); }
  .style-card-wide { grid-column: span 2; }
  .booking-card { padding: 42px; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form label:nth-of-type(5), .booking-form .btn, .booking-form .form-note { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* V0.10.3 — Galerie interactive avancée */
.creation-image-wrap[data-open-gallery] { cursor: zoom-in; outline: none; }
.creation-image-wrap[data-open-gallery]:focus-visible { box-shadow: inset 0 0 0 3px var(--rose-deep); }
.gallery-open-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,253,249,.84);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  pointer-events: none;
}

.favorites-note {
  border: 0;
  cursor: pointer;
  text-align: left;
}
.favorites-note-action { margin-left: 4px; color: var(--rose-deep); }
.favorites-panel {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.favorites-panel[hidden] { display: none; }
.favorites-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.favorites-panel-head .eyebrow { margin-bottom: 5px; }
.favorites-panel-head h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 500; }
.favorites-close {
  width: 42px; height: 42px; flex: 0 0 42px;
  border: 1px solid var(--line); border-radius: 50%; background: var(--bg);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.favorites-list { display: grid; gap: 9px; }
.favorite-mini-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 7px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(250,246,241,.75);
  cursor: pointer;
}
.favorite-mini-card img { width: 58px; height: 68px; object-fit: cover; border-radius: 10px; }
.favorite-mini-card span:nth-child(2) { display: grid; gap: 2px; }
.favorite-mini-card small { color: var(--rose-deep); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.favorite-mini-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 500; }
.favorite-mini-open { padding-right: 6px; color: var(--muted); font-size: 1.5rem; }
.favorites-empty { margin: 4px 0; color: var(--muted); font-size: .88rem; }

body.modal-open { overflow: hidden; }
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-items: end;
}
.gallery-modal[hidden] { display: none; }
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24,20,19,.62);
  backdrop-filter: blur(8px);
}
.gallery-viewer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -18px 60px rgba(0,0,0,.22);
  padding-bottom: calc(18px + var(--safe-bottom));
  animation: viewer-in .22s ease-out;
}
.viewer-topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(14px);
}
.viewer-counter { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.viewer-close, .viewer-favorite {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  font-size: 1.5rem;
  cursor: pointer;
}
.viewer-media {
  position: relative;
  margin: 0 12px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-2);
  touch-action: pan-y;
}
.viewer-media img { width: 100%; max-height: 62dvh; aspect-ratio: 19/23; object-fit: cover; user-select: none; }
.viewer-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 44px; height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,253,249,.86);
  backdrop-filter: blur(10px);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.viewer-prev { left: 9px; }
.viewer-next { right: 9px; }
.viewer-swipe-hint {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(44,37,35,.74);
  color: #fff;
  font-size: .65rem;
  white-space: nowrap;
  pointer-events: none;
}
.viewer-content { padding: 18px 18px 4px; }
.viewer-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.viewer-heading h2 { font-size: clamp(2rem, 10vw, 3rem); }
.viewer-copy { margin: 13px 0 14px; color: var(--muted); font-size: .9rem; }
.viewer-dots { display: flex; justify-content: center; gap: 8px; margin: 2px 0 16px; }
.viewer-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(44,37,35,.2); cursor: pointer;
}
.viewer-dots button.is-active { width: 25px; border-radius: 999px; background: var(--ink); }
.viewer-favorite[aria-pressed="true"] { background: var(--ink); color: #fff; }

@keyframes viewer-in { from { transform: translateY(18px); opacity: .7; } to { transform: none; opacity: 1; } }

@media (min-width: 720px) {
  .gallery-modal { align-items: center; justify-items: center; padding: 24px; }
  .gallery-viewer {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    grid-template-rows: auto 1fr;
    width: min(940px, 100%);
    max-height: min(820px, calc(100dvh - 48px));
    border-radius: 28px;
    overflow: hidden;
    padding-bottom: 0;
  }
  .viewer-topbar { grid-column: 1 / -1; }
  .viewer-media { margin: 0 0 18px 18px; }
  .viewer-media img { height: min(680px, calc(100dvh - 140px)); max-height: none; }
  .viewer-content { padding: 32px 28px; align-self: center; }
}

.viewer-media img { transition: transform .22s ease; }
.viewer-media.is-detail-view img { transform: scale(1.16); }

/* V0.10.5 — Base rendez-vous avancé mobile */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.booking-card { overflow: hidden; }
.booking-intro > p:last-child { margin-bottom: 0; color: var(--muted); }

.booking-progress {
  margin: 24px -2px 0;
  padding: 14px 14px 13px;
  border: 1px solid rgba(44,37,35,.08);
  border-radius: 18px;
  background: rgba(255,253,249,.62);
}
.booking-progress-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.booking-progress-top span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.booking-progress-top strong { font-size: .82rem; }
.booking-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(44,37,35,.09);
}
.booking-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--rose-deep);
  transition: width .28s ease;
}

.booking-form { display: block; margin-top: 20px; }
.booking-step[hidden] { display: none; }
.booking-step { animation: booking-step-in .22s ease-out; }
.booking-step-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 20px;
}
.step-kicker {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.booking-step-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}
.booking-step-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.choice-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.choice-fieldset legend {
  margin-bottom: 9px;
  padding: 0;
  font-weight: 800;
  font-size: .84rem;
}
.choice-fieldset legend small { color: var(--muted); font-weight: 500; }
.booking-choice-grid { display: grid; gap: 9px; }
.booking-choice {
  position: relative;
  min-height: 72px;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 12px !important;
  padding: 13px 14px;
  border: 1px solid rgba(44,37,35,.11);
  border-radius: 16px;
  background: rgba(255,253,249,.88);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.booking-choice input,
.time-choice-row input,
.privacy-check input {
  position: absolute !important;
  width: 1px !important;
  min-height: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none;
}
.booking-choice span { display: grid; gap: 2px; }
.booking-choice strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; font-weight: 500; }
.booking-choice small { color: var(--muted); font-size: .78rem; }
.booking-choice b { color: var(--muted); font-size: 1.4rem; font-weight: 400; }
.booking-choice:has(input:checked) {
  border-color: var(--rose-deep);
  background: #fffaf6;
  box-shadow: 0 0 0 3px rgba(159,111,104,.08);
}
.booking-choice:has(input:checked) b { color: var(--rose-deep); }
.booking-choice:has(input:focus-visible),
.time-choice-row label:has(input:focus-visible),
.privacy-check:has(input:focus-visible) { outline: 3px solid rgba(159,111,104,.2); outline-offset: 2px; }

.booking-field { display: grid !important; gap: 7px !important; margin-top: 13px; }
.booking-field > span { font-weight: 800; font-size: .84rem; }
.booking-field small { color: var(--muted); font-weight: 500; }
.booking-form .booking-field input,
.booking-form .booking-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(44,37,35,.12);
  border-radius: 14px;
  background: rgba(255,253,249,.96);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.booking-form .booking-field textarea { min-height: 92px; resize: vertical; }
.booking-form .booking-field input:focus,
.booking-form .booking-field textarea:focus { border-color: var(--rose-deep); box-shadow: 0 0 0 3px rgba(159,111,104,.12); }

.selected-inspiration {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) 38px;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid rgba(159,111,104,.18);
  border-radius: 16px;
  background: rgba(255,253,249,.86);
}
.selected-inspiration[hidden] { display: none; }
.selected-inspiration img { width: 58px; height: 68px; object-fit: cover; border-radius: 10px; }
.selected-inspiration div { display: grid; gap: 2px; }
.selected-inspiration small { color: var(--rose-deep); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.selected-inspiration strong { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.selected-inspiration button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-2);
  font-size: 1.25rem;
  cursor: pointer;
}

.booking-favorite-picker {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.booking-favorite-picker[hidden] { display: none; }
.booking-favorite-picker > p { margin: 0 0 9px; font-size: .78rem; font-weight: 800; }
.booking-favorite-options {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}
.booking-favorite-options::-webkit-scrollbar { display: none; }
.booking-favorite-option {
  flex: 0 0 112px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,253,249,.9);
  text-align: left;
  cursor: pointer;
}
.booking-favorite-option img { width: 100%; aspect-ratio: 1.08/1; object-fit: cover; border-radius: 9px; }
.booking-favorite-option span { display: block; margin-top: 6px; font-size: .72rem; font-weight: 800; }
.booking-gallery-link {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--rose-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.booking-date-grid { display: grid; gap: 2px; }
.compact-choice-fieldset { margin-top: 18px; }
.time-choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 7px;
}
.time-choice-row label {
  position: relative;
  min-width: 0;
  min-height: 46px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,.85);
  text-align: center;
  cursor: pointer;
}
.time-choice-row span { font-size: .74rem; font-weight: 800; }
.time-choice-row label:has(input:checked) { background: var(--ink); border-color: var(--ink); color: #fff; }

.booking-summary {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,253,249,.72);
  border: 1px solid var(--line);
}
.booking-summary:empty { display: none; }
.booking-summary h4 { margin: 0 0 2px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rose-deep); }
.booking-summary-row { display: grid; grid-template-columns: 94px minmax(0,1fr); gap: 9px; font-size: .78rem; }
.booking-summary-row span { color: var(--muted); }
.booking-summary-row strong { font-weight: 800; overflow-wrap: anywhere; }

.privacy-check {
  position: relative;
  display: grid !important;
  grid-template-columns: 23px minmax(0,1fr);
  gap: 10px !important;
  align-items: start;
  margin-top: 15px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,253,249,.58);
  cursor: pointer;
}
.privacy-check::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 1.5px solid var(--rose-deep);
  border-radius: 6px;
  background: #fff;
}
.privacy-check:has(input:checked)::before {
  content: "✓";
  display: grid;
  place-items: center;
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}
.privacy-check span { color: var(--muted); font-size: .72rem; line-height: 1.45; }

.booking-step-actions {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 8px;
  margin-top: 22px;
}
.booking-step-actions.single { grid-template-columns: 1fr; }
.booking-step-actions .btn { min-width: 0; min-height: 50px; padding-inline: 12px; font-size: .84rem; }
.form-note { margin: 11px 0 0; }

.form-success { margin-top: 24px; padding: 18px 0 4px; }
.form-success > span { display: inline-block; }
.form-success .eyebrow { margin-top: 8px; }
.success-recap {
  display: grid;
  gap: 7px;
  margin: 20px 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,253,249,.7);
  text-align: left;
}
.success-recap .booking-summary-row { grid-template-columns: 92px minmax(0,1fr); }
.success-actions { display: grid; gap: 8px; }

.booking-step :invalid:not(:focus):not(:placeholder-shown) { border-color: rgba(159,111,104,.35); }
.booking-step.shake { animation: booking-shake .24s ease; }

@keyframes booking-step-in {
  from { opacity: .25; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes booking-shake {
  0%,100% { transform: translateX(0); }
  33% { transform: translateX(-4px); }
  66% { transform: translateX(4px); }
}

@media (min-width: 620px) {
  .booking-choice-grid { grid-template-columns: 1fr 1fr; }
  .booking-choice-wide { grid-column: 1 / -1; }
  .booking-date-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .success-actions { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 920px) {
  .booking-form { display: block; }
  .booking-card { max-width: 820px; margin-inline: auto; }
  .booking-step { max-width: 650px; margin-inline: auto; }
  .booking-progress { max-width: 650px; margin-inline: auto; }
}

/* V0.10.5 — confirmation et envoi réel */
.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.booking-error{margin:12px 0 0;padding:11px 13px;border-radius:13px;background:#f7e9e7;color:#7c4743;font-size:.76rem;line-height:1.45}.booking-error[hidden]{display:none}.booking-form button:disabled{opacity:.58;cursor:wait}.request-reference{display:grid;gap:4px;margin:18px 0 5px;padding:14px 16px;border:1px solid rgba(159,111,104,.2);border-radius:16px;background:#fffaf6;text-align:left}.request-reference small{color:var(--rose-deep);font-size:.65rem;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.request-reference strong{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:1rem;letter-spacing:.04em}.success-wide{grid-column:1/-1}


/* V0.10.6 — anti-spam facultatif */
.turnstile-box{margin-top:14px;padding:13px;border:1px solid var(--line);border-radius:15px;background:rgba(255,253,249,.66)}
.turnstile-box[hidden]{display:none}
.turnstile-label{margin:0 0 8px;font-size:.72rem;font-weight:900;color:var(--ink)}
.turnstile-help{margin:7px 0 0;color:var(--muted);font-size:.66rem;line-height:1.45}
#turnstile-widget{min-height:1px;overflow:hidden}
