/* ============================================================
   Adhésif & Pose — Feuille de style autonome (thème clair/orange)
   ============================================================ */

:root {
  --paper: #faf8f4;
  --ink: #171717;
  --accent: #ef6c3f;
  --accent-2: #ff9d58;
  --cyan: #27b8c7;
  --line: #e6ded4;
  --muted: #6f6a64;
  --shadow: 0 20px 70px rgba(0, 0, 0, .14);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

.font-display { font-family: 'Fraunces', serif; }

::selection { background: var(--accent); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: #d8cfc3; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
address { font-style: normal; }

.container {
  width: min(1160px, calc(100% - 34px));
  margin-inline: auto;
}

/* -------------------------------------------- Accessibilité */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; font-weight: 800; font-size: 14px;
  padding: 12px 18px; border-radius: 10px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------- Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 800; letter-spacing: .01em;
  padding: 15px 24px; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 14px 34px rgba(239, 108, 63, .28);
  transition: transform .25s cubic-bezier(.2, .75, .2, 1), box-shadow .25s ease, opacity .25s ease;
  font-size: 15px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(239, 108, 63, .36); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: #fff; font-weight: 800;
  padding: 12px 20px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
  font-size: 14px;
}
.btn-dark:hover { transform: translateY(-2px); opacity: .92; }

.card-soft {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .045);
}

.icon-sm { width: 16px; height: 16px; flex: none; }

/* Section headings */
.section { padding-block: 80px; }
@media (min-width: 768px) { .section { padding-block: 112px; } }
.h2-display {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 16px; text-wrap: balance;
}
.lead { color: var(--muted); max-width: 680px; font-size: clamp(16px, 1.4vw, 18px); }

/* -------------------------------------------- Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  max-width: 1160px; margin-inline: auto; padding-inline: 20px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; background: none; border: 0; cursor: pointer; }
.nav-logo-icon {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 16px rgba(239, 108, 63, .35);
  transition: transform .35s cubic-bezier(.2, .75, .2, 1), box-shadow .35s ease;
}
.nav-logo-icon img { width: 22px; height: 22px; object-fit: contain; }
.nav-logo:hover .nav-logo-icon { transform: rotate(-8deg) scale(1.06); box-shadow: 0 8px 20px rgba(239, 108, 63, .45); }
.nav-logo-text {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px;
  letter-spacing: -0.01em; color: #fff; transition: color .4s ease;
}
.navbar.scrolled .nav-logo-text { color: var(--ink); }

.nav-links { display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  background: none; cursor: pointer; font-size: 14px; font-weight: 700;
  color: var(--accent); border: 1px solid var(--accent); border-radius: 999px; padding: 6px 16px;
  transition: background .25s, color .25s;
}
.nav-link:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  position: relative; z-index: 60; display: flex; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; padding: 0; background: none; border: 0; color: #fff; cursor: pointer;
}
.navbar.scrolled .nav-toggle { color: var(--ink); }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle-bar {
  display: block; width: 100%; height: 2.5px; border-radius: 2px; background: currentColor;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .2s ease, width .35s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 45; background: rgba(17, 17, 17, .38);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility 0s linear .35s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; transition: opacity .35s ease; }
@media (min-width: 768px) { .nav-backdrop { display: none; } }

.nav-mobile {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 50; overflow: hidden;
  background: rgba(250, 248, 244, .98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); border-radius: 0 0 24px 24px;
  box-shadow: 0 24px 48px rgba(23, 23, 23, .16);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .3s;
}
.nav-mobile.open {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1);
}
.nav-mobile-inner { padding: 18px 20px 26px; display: flex; flex-direction: column; }
.nav-mobile-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: 0; border-bottom: 1px solid var(--line);
  text-align: left; font-weight: 700; font-size: 17px; color: var(--ink);
  padding: 15px 4px; cursor: pointer; transition: color .2s ease;
  opacity: 0; transform: translateY(8px);
}
.nav-mobile-link svg { color: var(--line); flex: none; transition: transform .2s ease, color .2s ease; }
.nav-mobile-link:hover { color: var(--accent); }
.nav-mobile-link:hover svg { color: var(--accent); transform: translateX(3px); }
.nav-mobile-cta {
  margin-top: 18px; opacity: 0; transform: translateY(8px);
}
.nav-mobile.open .nav-mobile-link,
.nav-mobile.open .nav-mobile-cta {
  opacity: 1; transform: none;
  transition: opacity .35s ease calc(var(--i) * 45ms), transform .35s cubic-bezier(.2, .8, .2, 1) calc(var(--i) * 45ms);
}
@media (prefers-reduced-motion: reduce) {
  .nav-mobile-link, .nav-mobile-cta { transform: none !important; }
}

/* -------------------------------------------- Hero */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden;
}
.hero picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.55) 55%, rgba(0,0,0,.25)); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 55%, rgba(0,0,0,.3)); }
.hero-content { position: relative; z-index: 10; width: min(1160px, calc(100% - 34px)); margin-inline: auto; padding-block: 112px; color: #fff; }
.hero-pill {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px); font-size: 13px; font-weight: 800;
}
.hero-title {
  font-family: 'Fraunces', serif; font-weight: 700; margin: 20px 0 16px;
  line-height: 1.02; letter-spacing: -0.03em; font-size: clamp(44px, 7vw, 82px); max-width: 900px;
  text-wrap: balance;
}
.hero-sub { font-size: clamp(17px, 2vw, 23px); color: rgba(255,255,255,.9); max-width: 680px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-trust { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; max-width: 760px; }
@media (min-width: 640px) { .hero-trust { grid-template-columns: repeat(3, 1fr); } }
.hero-trust-card { padding: 16px; border-radius: 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.hero-trust-card b { display: block; font-size: 17px; }
.hero-trust-card span { color: rgba(255,255,255,.85); font-size: 14px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------------------- Why / Services grids */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Finitions (section Pourquoi) */
.finishes-intro { font-weight: 800; font-size: clamp(18px, 2vw, 20px); margin: 36px 0 16px; }
.finishes-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .finishes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .finishes-grid { grid-template-columns: repeat(3, 1fr); } }
.finish { padding: 16px; display: flex; align-items: flex-start; gap: 12px; }
.finish-icon { flex: none; width: 28px; height: 28px; border-radius: 999px; background: #fff1ea; color: var(--accent); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.finish span:last-child { color: var(--ink); font-weight: 600; }
.finishes-final { font-weight: 800; font-size: clamp(20px, 2.4vw, 24px); margin-top: 16px; color: var(--ink); }

.service-card { padding: 28px; transition: transform .3s ease; }
.service-card:hover { transform: translateY(-4px); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .3s; }
.service-card:hover .service-icon { background: var(--accent); }
.service-card h3 { font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.service-card p { color: var(--muted); }

/* Badges de surfaces (Prestations) */
.surfaces-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.surface-tag {
  padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  color: var(--ink); font-size: 14px; font-weight: 600; box-shadow: 0 4px 14px rgba(0,0,0,.04);
  transition: border-color .2s, color .2s;
}
.surface-tag:hover { border-color: var(--accent); color: var(--accent); }

/* -------------------------------------------- Comment ça marche */
.steps-section { background: #fff6f1; }
.steps-grid {
  list-style: none; display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 36px;
  counter-reset: step;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 28px; position: relative; }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-family: 'Fraunces', serif; font-weight: 700; font-size: 17px;
  margin-bottom: 18px;
}
.step h3 { font-weight: 800; font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* -------------------------------------------- Réalisations (Avant/Après) */
.realisations { background: #111; color: #fff; }
.realisations .lead { color: #c8c8c8; }
.compare {
  position: relative; aspect-ratio: 16 / 10; width: 100%; overflow: hidden;
  border-radius: 24px; background: #222; cursor: ew-resize; user-select: none; margin-top: 32px;
}
@media (min-width: 768px) { .compare { aspect-ratio: 16 / 9; } }
.compare picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .before-wrap { position: absolute; inset: 0; overflow: hidden; }
.compare .tag { position: absolute; top: 16px; font-size: 12px; font-weight: 800; background: rgba(0,0,0,.65); color: #fff; padding: 6px 12px; border-radius: 999px; z-index: 3; }
.compare .tag-before { left: 16px; }
.compare .tag-after { right: 16px; }
.compare .handle { position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; z-index: 4; }
.compare .handle-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  height: 56px; width: 56px; border-radius: 999px; background: #fff; color: #111;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.compare-caption { display: flex; flex-direction: column; gap: 16px; margin-top: 14px; color: #ddd; }
@media (min-width: 640px) { .compare-caption { flex-direction: row; justify-content: space-between; } }
.compare-caption b { color: #fff; }
.compare-social { margin-top: 20px; font-size: 15px; color: #b8b4ae; }
.compare-social-emphasis { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; color: #ddd; }
.compare-social a {
  color: var(--accent-2); font-weight: 800; text-decoration: underline;
  text-underline-offset: 3px; transition: color .2s ease;
}
.compare-social a:hover { color: var(--accent); }

/* -------------------------------------------- Reviews marquee */
@keyframes reviews-scroll { to { transform: translateX(calc(-50% - 8px)); } }
.reviews-shell { overflow: hidden; margin-top: 32px; }
.reviews-track { display: flex; gap: 16px; width: max-content; padding-inline: 16px; animation: reviews-scroll 34s linear infinite; }
.reviews-shell:hover .reviews-track, .reviews-shell:focus-within .reviews-track { animation-play-state: paused; }
.review-card { padding: 24px; flex: none; width: min(440px, 84vw); }
.review-stars { display: flex; gap: 2px; color: #f4b400; margin-bottom: 12px; }
.review-card p { font-size: 17px; line-height: 1.6; }
.review-card b { display: block; margin-top: 16px; color: #555; }

/* -------------------------------------------- Booking */
.booking-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 0.9fr 1.1fr; } }
.booking-col { padding: 24px; }
.step-label { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-bottom: 12px; font-weight: 700; }

/* Calendar */
.cal { max-width: 340px; margin-inline: auto; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-title { font-weight: 700; text-transform: capitalize; font-variant-numeric: tabular-nums; }
.cal-nav { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { text-align: center; font-size: 12px; color: var(--muted); padding: 6px 0; font-weight: 700; }
.cal-day { aspect-ratio: 1; border: 0; background: none; border-radius: 8px; cursor: pointer; font-size: 14px; color: var(--ink); font-variant-numeric: tabular-nums; }
.cal-day:hover:not(:disabled) { background: #fff1ea; }
.cal-day:disabled { color: #cbc4ba; cursor: not-allowed; }
.cal-day.selected { background: var(--accent); color: #fff; font-weight: 700; }
.cal-day.empty { visibility: hidden; }

.slots-title { font-weight: 800; font-size: 18px; margin: 20px 0 12px; }
.slots-hint { font-size: 14px; color: #8b857c; }
.slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 640px) { .slots-grid { grid-template-columns: repeat(3, 1fr); } }
.slot { padding: 10px; font-size: 14px; font-weight: 700; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; transition: border-color .2s; font-variant-numeric: tabular-nums; }
.slot:hover { border-color: var(--accent); }
.slot.active { background: var(--cyan); color: #fff; border-color: var(--cyan); }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.field { font-size: 13px; font-weight: 800; color: var(--ink); display: block; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #d5cdc4;
  border-radius: 12px; font-size: 15px; background: #fff; font-family: inherit;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(239,108,63,.22); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #e05c46; }
.field textarea { min-height: 120px; resize: vertical; }
.dropzone {
  margin-top: 6px; display: flex; align-items: center; gap: 12px; padding: 16px;
  border: 2px dashed #d5cdc4; border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s;
}
.dropzone:hover { border-color: var(--accent); background: #fff6f1; }
.dropzone span { font-size: 14px; color: var(--muted); }
.dropzone svg { color: var(--accent); }
.file-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.file-chip { display: inline-flex; align-items: center; gap: 6px; background: #f5f1ec; border: 1px solid var(--line); border-radius: 999px; padding: 4px 6px 4px 12px; font-size: 12px; }
.file-chip .name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-chip button { background: none; border: 0; cursor: pointer; color: inherit; display: flex; }
.file-chip button:hover { color: #ef4444; }
.selection-note { grid-column: 1 / -1; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.selection-note.active { color: var(--accent); font-weight: 700; }
.form-error { grid-column: 1 / -1; font-size: 14px; color: #c53030; background: #fdeceb; border: 1px solid #f3c6c1; border-radius: 10px; padding: 10px 14px; }
.btn-primary.full { grid-column: 1 / -1; width: 100%; }
.form-privacy-note {
  grid-column: 1 / -1; text-align: center; font-size: 13px; color: var(--muted); line-height: 1.6;
}
.form-privacy-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------- FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 4px 22px; box-shadow: 0 6px 20px rgba(0, 0, 0, .03);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 28px 18px 0; position: relative;
  font-weight: 700; font-size: 16.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg); transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item p { color: var(--muted); padding-bottom: 20px; line-height: 1.7; max-width: 68ch; }

/* -------------------------------------------- Contact + Footer */
.contact-bar {
  background: #222; color: #fff; border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 768px) { .contact-bar { flex-direction: row; align-items: center; justify-content: space-between; padding: 32px; } }
.contact-bar b { font-size: 24px; font-family: 'Fraunces', serif; }
.contact-bar p { color: rgba(255,255,255,.8); margin-top: 4px; }
.contact-links { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-link { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.25); padding: 10px 16px; border-radius: 999px; transition: background .2s; }
.contact-link:hover { background: rgba(255,255,255,.1); }
.footer { padding-block: 32px; border-top: 1px solid var(--line); }
.footer .container { color: #8b857c; font-size: 14px; }

/* -------------------------------------------- Floating buttons */
.floating {
  position: fixed; right: 16px; bottom: 16px; z-index: 40; display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  opacity: 1; transform: none; transition: opacity .25s ease, transform .25s ease;
}
.floating-hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
.float-quote { display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: #fff; font-weight: 800; padding: 12px 16px; border-radius: 999px; border: 0; cursor: pointer; box-shadow: 0 12px 30px rgba(239,108,63,.3); transition: transform .2s; }
.float-quote:hover { transform: translateY(-2px); }

/* Success message */
.booking-success { padding: 48px; text-align: center; max-width: 576px; margin-inline: auto; }
.booking-success h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 30px; margin-top: 20px; }
.booking-success p { color: var(--muted); margin-top: 12px; }
.hidden { display: none !important; }
