/* Destro Estate — shared styles (rebuilt from destroestate.com) */
:root {
  --brand-black: oklch(8% 0 0);
  --brand-white: oklch(98% 0 0);
  --brand-accent: oklch(55% .22 250);
  --brand-warning: oklch(88% .18 90);
  --border: oklch(88% 0 0);
  --ring: oklch(8% 0 0);
}
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  color: var(--brand-black);
  font-family: Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, p { margin: 0; font-size: inherit; font-weight: inherit; }
button { font: inherit; color: inherit; }
a { color: inherit; }
svg { display: block; }
.bebas { font-family: "Bebas Neue", sans-serif; }

/* Quiz step transitions */
@keyframes slideInRight { 0% { opacity: 0; transform: translate(20px); } 100% { opacity: 1; transform: none; } }
@keyframes slideInLeft  { 0% { opacity: 0; transform: translate(-20px); } 100% { opacity: 1; transform: none; } }
.step-enter { animation: .28s forwards slideInRight; }
.step-enter-back { animation: .28s forwards slideInLeft; }

/* Booking header pulse */
@keyframes lcPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

/* Confirmed page entrance */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes popIn { 0% { transform: scale(0) rotate(-15deg); } 60% { transform: scale(1.08) rotate(2deg); } 100% { transform: scale(1) rotate(0); } }
.fade-up { opacity: 0; animation: fadeUp .4s ease forwards; }
.pop-in { animation: popIn .55s cubic-bezier(.34,1.56,.64,1) .05s both; }
