/* ─────────────────────────────────────────────────────────────
   Magic Wand booking — public styles
   Palette drawn from magicwandcolorado.com:
   ink navy, sky italic accent, wand orange, fresh-clean whites
   ───────────────────────────────────────────────────────────── */
:root {
  --ink:    #16324f;
  --ink-2:  #40566b;
  --sky:    #1aa7de;
  --sky-dk: #0e86b6;
  --orange: #f0913b;
  --orange-dk: #d97a26;
  --paper:  #fbfdfe;
  --tint:   #eef7fc;
  --line:   #dcebf4;
  --good:   #009040;
  --bad:    #c94f3d;
  --shadow: 0 10px 30px rgba(22, 50, 79, .10);
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* floating bubbles, very quiet */
.bubbles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bubbles::before, .bubbles::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 2px solid rgba(79, 179, 221, .18);
  animation: drift 26s linear infinite;
}
.bubbles::before { width: 90px; height: 90px; left: 6%;  bottom: -120px; }
.bubbles::after  { width: 46px; height: 46px; right: 10%; bottom: -80px; animation-duration: 19s; animation-delay: 6s; }
@keyframes drift { to { transform: translateY(-115vh); } }
@media (prefers-reduced-motion: reduce) { .bubbles::before, .bubbles::after { animation: none; display: none; } }

/* top bar */
.topbar {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(16px, 5vw, 48px);
}
.brand { display: flex; align-items: center; }
.brandlogo { height: 74px; width: auto; display: block; }
@media (max-width: 560px) { .brandlogo { height: 56px; } }
.wandmark { width: 30px; height: 30px; border-radius: 50%;
  background: conic-gradient(from 210deg, var(--orange), #ffc27d 40%, var(--sky) 75%, var(--orange));
  box-shadow: inset 0 0 0 6px var(--paper); }
.brandname { font-weight: 700; letter-spacing: .01em; }
.brandname em { font-style: normal; color: var(--sky-dk); font-weight: 600; }
.phonepill {
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 9px 18px; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 14px; background: #fff;
  transition: border-color .15s, transform .15s;
}
.phonepill:hover { border-color: var(--sky); transform: translateY(-1px); }

/* layout */
.wrap { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 8px 18px 80px; }

.hero { text-align: center; padding: 20px 0 6px; }
.eyebrow { letter-spacing: .22em; text-transform: uppercase; font-size: 11.5px;
  font-weight: 700; color: var(--sky-dk); margin: 0 0 8px; }
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 550; font-size: clamp(40px, 7vw, 64px);
  line-height: 1.02; margin: 0 0 14px; letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--sky); }
.sub { color: var(--ink-2); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* step tracker — rising bubbles */
.steps { display: flex; justify-content: center; gap: clamp(14px, 5vw, 40px); margin: 30px 0 24px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 7px; opacity: .45; transition: opacity .2s; }
.step .dot { width: 14px; height: 14px; border-radius: 50%;
  border: 2.5px solid var(--sky); background: #fff; transition: all .2s; }
.step .lbl { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.step.is-current { opacity: 1; }
.step.is-current .dot { background: var(--sky); box-shadow: 0 0 0 5px rgba(79,179,221,.18); transform: scale(1.15); }
.step.is-done { opacity: .85; }
.step.is-done .dot { background: var(--good); border-color: var(--good); }

/* panels */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(22px, 4vw, 38px);
  animation: rise .35s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.is-hidden { display: none !important; }
.paneltitle { font-family: "Fraunces", Georgia, serif; font-weight: 560;
  font-size: clamp(24px, 4vw, 32px); margin: 0 0 8px; }
.paneltitle.center { text-align: center; }
.panelhint { color: var(--ink-2); margin: 0 0 22px; line-height: 1.6; font-size: 15px; }
.backlink { background: none; border: 0; color: var(--sky-dk); font-weight: 600;
  font-size: 14px; padding: 0; margin: 0 0 12px; cursor: pointer; font-family: inherit; }
.backlink:hover { text-decoration: underline; }

/* service cards */
.services { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.svc {
  display: grid; grid-template-columns: 58px 1fr; grid-template-rows: auto auto;
  align-items: center; column-gap: 14px; text-align: left;
  border: 1.5px solid var(--line); border-radius: 14px; background: #fff;
  padding: 16px; cursor: pointer; font-family: inherit;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.svc:hover, .svc:focus-visible { border-color: var(--orange); transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(240,145,59,.16); outline: none; }
.svc-areas {
  grid-row: 1 / span 2; font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: 34px; color: var(--sky-dk); width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint); border-radius: 14px;
}
.svc-name { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.svc-meta { color: var(--ink-2); font-size: 13px; }
.svc-price { grid-column: 1 / -1; margin-top: 10px; font-family: "Fraunces", Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--orange-dk); }

/* day strip */
.daystrip { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 14px; scrollbar-width: thin; }
.day {
  min-width: 66px; border: 1.5px solid var(--line); border-radius: 14px; background: #fff;
  padding: 10px 6px; display: flex; flex-direction: column; align-items: center; gap: 1px;
  cursor: pointer; font-family: inherit; transition: border-color .15s, background .15s;
}
.day:hover { border-color: var(--sky); }
.day.is-sel { border-color: var(--sky-dk); background: var(--tint); }
.day.is-full { opacity: .35; cursor: not-allowed; }
.d-dow { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.d-num { font-family: "Fraunces", Georgia, serif; font-size: 24px; font-weight: 600; }
.d-mon { font-size: 11px; color: var(--ink-2); }

/* slots */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.slot {
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  padding: 13px 6px; font-weight: 700; font-size: 15px; color: var(--ink);
  cursor: pointer; font-family: inherit; transition: all .15s;
}
.slot:hover, .slot:focus-visible { border-color: var(--orange); background: #fff7ef;
  transform: translateY(-1px); outline: none; }
.noslots { color: var(--ink-2); background: var(--tint); border-radius: 12px; padding: 16px; }
.noslots a { color: var(--sky-dk); font-weight: 700; }
.loading { color: var(--ink-2); font-size: 14px; }

/* form */
form label { display: block; font-weight: 600; font-size: 13.5px; margin: 0 0 14px; color: var(--ink); }
form .opt { font-weight: 500; color: var(--ink-2); }
form input, form textarea {
  display: block; width: 100%; margin-top: 6px;
  border: 1.5px solid var(--line); border-radius: 11px; padding: 12px 14px;
  font: inherit; color: var(--ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(79,179,221,.14); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .grid2 { grid-template-columns: 1fr; gap: 0; } }

.cta {
  display: inline-block; width: 100%; text-align: center; text-decoration: none;
  background: var(--orange); color: #fff; border: 0; border-radius: 999px;
  padding: 16px 28px; font: inherit; font-weight: 700; font-size: 16.5px;
  cursor: pointer; box-shadow: 0 10px 24px rgba(240,145,59,.35);
  transition: background .15s, transform .15s;
}
.cta:hover { background: var(--orange-dk); transform: translateY(-1px); }
.cta:disabled { opacity: .6; cursor: wait; transform: none; }
.cta.ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line);
  box-shadow: none; width: auto; padding: 13px 22px; font-size: 15px; }
.cta.ghost:hover { border-color: var(--sky); background: var(--tint); }
.formerr { background: #fdf0ee; color: var(--bad); border-radius: 11px; padding: 12px 14px; font-weight: 600; font-size: 14px; }
.finemote { color: var(--ink-2); font-size: 13px; margin-top: 14px; line-height: 1.5; }
.finemote.center { text-align: center; }
.finemote a { color: var(--sky-dk); font-weight: 700; }

/* confirmation */
.confetti { width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--good); color: #fff; font-size: 38px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(46,158,91,.35); animation: pop .45s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.skyword { color: var(--sky); }
.summary { max-width: 480px; margin: 18px auto; border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; }
.sumrow { display: flex; justify-content: space-between; gap: 16px; padding: 13px 18px; font-size: 14.5px; }
.sumrow + .sumrow { border-top: 1px solid var(--line); }
.sumrow span { color: var(--ink-2); }
.sumrow strong { text-align: right; }
.confirmactions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 18px 0 6px; }

/* footer */
.foot { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; max-width: 860px; margin: 0 auto; padding: 26px 18px 40px;
  color: var(--ink-2); font-size: 13px; }
.foottags { color: var(--sky-dk); font-weight: 600; }

:focus-visible { outline: 3px solid rgba(79,179,221,.5); outline-offset: 2px; }

/* ── v2: motion on buttons ── */
.cta { position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .55s ease; pointer-events: none; }
.cta:hover::after { left: 135%; }
.cta:active { transform: translateY(0) scale(.98); }
.slot, .svc, .day { transition: transform .16s cubic-bezier(.34,1.4,.64,1), border-color .15s,
  box-shadow .16s, background .15s; }
.slot:active, .svc:active, .day:active { transform: scale(.96); }
@media (prefers-reduced-motion: reduce) { .cta::after { display: none; } }

/* ── v2: client chat page ── */
.chatwrap { max-width: 640px; }
.chathead { font-family: "Fraunces", Georgia, serif; font-weight: 560;
  font-size: clamp(30px, 6vw, 42px); margin: 6px 0 6px; }
.chatbox { display: flex; flex-direction: column; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px; max-height: 55vh; overflow-y: auto; }
.bubble { max-width: 80%; padding: 12px 16px; border-radius: 16px; font-size: 15px; line-height: 1.55; }
.bubble.mine   { align-self: flex-end; background: var(--tint); border: 1px solid #cfe8f5;
  border-bottom-right-radius: 5px; }
.bubble.theirs { align-self: flex-start; background: #fff4e6; border: 1px solid #f4dcc0;
  border-bottom-left-radius: 5px; }
.btime { display: block; font-size: 11px; color: var(--ink-2); margin-top: 6px; }
.chatempty { color: var(--ink-2); text-align: center; padding: 16px; }
.chatform { display: flex; gap: 10px; align-items: end; margin-top: 14px; }
.chatform textarea { flex: 1; border: 1.5px solid var(--line); border-radius: 14px;
  padding: 13px 15px; font: inherit; resize: vertical; background: #fff; }
.chatform textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(26,167,222,.14); }
.cta.chatsend { width: auto; padding: 13px 26px; }

/* ── v2: public invoice ── */
.invbody { background: #e9f1f7; padding: 26px 12px 60px; }
.invsheet { position: relative; max-width: 800px; margin: 0 auto; background: #fff;
  border-radius: 6px; box-shadow: 0 14px 44px rgba(22,50,79,.14); padding: clamp(26px, 5vw, 54px); }
.paidstamp { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%) rotate(-24deg);
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(70px, 16vw, 130px);
  color: rgba(22,50,79,.10); letter-spacing: .06em; pointer-events: none; }
.invhead { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px;
  margin-bottom: 34px; flex-wrap: wrap; }
.invlogo { height: 58px; width: auto; }
.invtitle { text-align: right; }
.invtitle h1 { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: 40px;
  color: #7d93a8; margin: 0; letter-spacing: .02em; }
.invnum { color: var(--ink-2); margin: 2px 0 0; font-weight: 600; }
.invparties { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 14.5px; margin-bottom: 30px; }
.invparties p { margin: 2px 0; }
.invmeta { text-align: right; }
.invmeta p { margin: 0 0 10px; }
.invitems { width: 100%; border-collapse: collapse; font-size: 14px; }
.invitems th { background: #f1f5f9; padding: 11px 12px; font-size: 12px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink-2); border-bottom: 2px solid var(--ink); }
.invitems td { padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: top;
  text-align: center; }
.invitems .left { text-align: left; } .invitems .right { text-align: right; }
.dimline { color: var(--ink-2); font-size: 13px; }
.invtotals { max-width: 300px; margin-left: auto; margin-top: 8px; font-size: 15px; }
.trow { display: flex; justify-content: space-between; padding: 10px 12px; }
.trow.grand { background: #f1f5f9; font-weight: 800; border-top: 2px solid var(--ink); }
.invnotes { margin-top: 34px; color: var(--ink-2); font-size: 14px; }
.invnotes p { margin: 3px 0; }
.invfoot { display: flex; justify-content: space-between; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-top: 40px; color: var(--ink-2); font-size: 13px; }
@media print {
  .invbody { background: #fff; padding: 0; }
  .invsheet { box-shadow: none; border-radius: 0; max-width: none; }
  .noprint { display: none !important; }
}

/* ── v3: next-available banner ── */
.nextbanner { display: inline-flex; align-items: center; gap: 10px; margin: 18px auto 0;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 14.5px; color: var(--ink);
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(100deg, var(--sky), var(--orange), var(--sky)) border-box;
  border: 3.5px solid transparent; background-size: auto, 220% 100%;
  box-shadow: 0 10px 26px rgba(26,167,222,.18);
  animation: bannerin .5s .2s cubic-bezier(.34,1.4,.64,1) both, bordershift 5s linear infinite; }
.nb-spark { color: var(--orange); font-size: 17px; animation: sparkle 1.8s ease-in-out infinite; }
@keyframes bannerin { from { opacity: 0; transform: translateY(14px) scale(.95); }
  to { opacity: 1; transform: none; } }
@keyframes bordershift { to { background-position: 0 0, 220% 0; } }
@keyframes sparkle { 0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.35) rotate(20deg); opacity: .75; } }
@media (prefers-reduced-motion: reduce) { .nextbanner, .nb-spark { animation: none; } }

/* ── v3: booking questions ── */
.qblock { margin: 0 0 16px; }
.qlabel { display: block; font-weight: 600; font-size: 13.5px; color: var(--ink); }
.req { color: var(--orange-dk); font-style: normal; }
.qpills { display: flex; gap: 10px; margin-top: 8px; }
.qpill { min-width: 88px; padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font: inherit; font-weight: 700; font-size: 14.5px; color: var(--ink-2);
  cursor: pointer; transition: all .16s cubic-bezier(.34,1.4,.64,1); }
.qpill:hover { border-color: var(--sky); transform: translateY(-1px); }
.qpill.is-on { border-color: var(--sky-dk); background: var(--tint); color: var(--sky-dk);
  transform: scale(1.05); box-shadow: 0 6px 16px rgba(26,167,222,.2); }
.qtext { display: block; width: 100%; margin-top: 7px; border: 1.5px solid var(--line);
  border-radius: 11px; padding: 12px 14px; font: inherit; }
.qtext:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(26,167,222,.14); }

/* ── v3: pre-confirm notice ── */
.prenotice { background: linear-gradient(120deg, #fff7ef, #fffdf9); border: 1.5px solid #f3d9ba;
  border-left: 5px solid var(--orange); border-radius: 12px; padding: 15px 18px;
  font-size: 14px; line-height: 1.6; color: #7a4a14; margin: 4px 0 16px;
  animation: rise .4s ease both; }

/* ── v4: van card ── */
.vancard { margin: 26px auto 0; max-width: 560px; }
.vancard img { display: block; width: 100%; border-radius: 18px;
  box-shadow: 0 16px 40px rgba(22,50,79,.18); border: 4px solid #fff;
  transition: transform .3s cubic-bezier(.34,1.4,.64,1); }
.vancard:hover img { transform: rotate(-1deg) scale(1.015); }
.vancard figcaption { text-align: center; color: var(--ink-2); font-size: 13.5px;
  font-weight: 600; margin-top: 10px; }

/* ── v4: service groups + colorful cards ── */
.svcgroup { grid-column: 1 / -1; font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: 19px; margin: 10px 0 0; padding-bottom: 6px;
  border-bottom: 2px solid var(--tint); color: var(--ink); }
.svcgroup::before { content: "◆ "; color: var(--orange); font-size: 12px; vertical-align: 2px; }
.svc:nth-of-type(3n+1) .svc-areas { background: var(--tint); color: var(--sky-dk); }
.svc:nth-of-type(3n+2) .svc-areas { background: #fff2e3; color: var(--orange-dk); }
.svc:nth-of-type(3n)   .svc-areas { background: #e9f7ef; color: #0b7a37; }

/* ── v4: instant-confirm note ── */
.instantnote { display: block; color: var(--sky-dk); font-weight: 700; font-size: 14px;
  line-height: 1.55; margin: 12px 0 4px; }
.instantnote.center { text-align: center; }
.bolt { display: inline-block; margin-right: 6px; animation: boltpulse 1.6s ease-in-out infinite; }
@keyframes boltpulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
@media (prefers-reduced-motion: reduce) { .bolt { animation: none; } }

/* ── v4: extra color ── */
.steps .step.is-done .dot { background: #009040; border-color: #009040; }
.day.is-sel { background: linear-gradient(150deg, var(--tint), #fff6ec); border-color: var(--orange); }
.paneltitle { background: linear-gradient(100deg, var(--ink), var(--sky-dk));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── v4: the little cleaner ── */
.toonstage { max-width: 860px; margin: 34px auto -12px; padding: 0 18px; position: relative; z-index: 1; }
.toonsvg { width: 100%; height: auto; display: block; }
.toon-guy { animation: guywalk 16s ease-in-out infinite; }
.toon-guy .leg { transform-box: fill-box; transform-origin: 50% 8%; }
.toon-guy .legL { animation: step 16s linear infinite; }
.toon-guy .legR { animation: step 16s linear infinite reverse; }
.toon-arm { transform-box: fill-box; transform-origin: 6% 24%;
  animation: scrub 16s ease-in-out infinite; }
.toon-hose { stroke-dashoffset: 420; animation: hose 16s ease-in-out infinite; }
.toon-carpet .dirt circle { animation: dirtfade 16s ease-in-out infinite; }
.toon-carpet .sparkles { opacity: 0; animation: sparkfade 16s ease-in-out infinite; }
@keyframes guywalk {
  0%, 6%   { transform: translateX(96px); }
  26%      { transform: translateX(430px); }
  66%      { transform: translateX(640px); }
  82%, 94% { transform: translateX(96px); }
  100%     { transform: translateX(96px); }
}
@keyframes step {
  0%, 6% { transform: rotate(0deg); }
  8% { transform: rotate(18deg); } 11% { transform: rotate(-18deg); }
  14% { transform: rotate(18deg); } 17% { transform: rotate(-18deg); }
  20% { transform: rotate(18deg); } 23% { transform: rotate(-18deg); }
  26%, 66% { transform: rotate(0deg); }
  68% { transform: rotate(18deg); } 71% { transform: rotate(-18deg); }
  74% { transform: rotate(18deg); } 77% { transform: rotate(-18deg); }
  80% { transform: rotate(18deg); }
  82%, 100% { transform: rotate(0deg); }
}
@keyframes scrub {
  0%, 26% { transform: rotate(0deg); }
  30% { transform: rotate(14deg); } 34% { transform: rotate(-6deg); }
  38% { transform: rotate(14deg); } 42% { transform: rotate(-6deg); }
  46% { transform: rotate(14deg); } 50% { transform: rotate(-6deg); }
  54% { transform: rotate(14deg); } 58% { transform: rotate(-6deg); }
  62% { transform: rotate(10deg); }
  66%, 100% { transform: rotate(0deg); }
}
@keyframes hose {
  0%, 8% { stroke-dashoffset: 420; opacity: 0; }
  14% { opacity: 1; }
  26% { stroke-dashoffset: 0; opacity: 1; }
  66% { stroke-dashoffset: 0; opacity: 1; }
  78%, 100% { stroke-dashoffset: 420; opacity: 0; }
}
@keyframes dirtfade {
  0%, 30% { opacity: 1; }
  64% { opacity: 0; }
  94% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes sparkfade {
  0%, 34% { opacity: 0; }
  50%, 62% { opacity: 1; }
  74%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .toon-guy, .toon-arm, .toon-hose, .toon-carpet .dirt circle, .toon-carpet .sparkles,
  .toon-guy .legL, .toon-guy .legR { animation: none; }
  .toonstage { display: none; }
}

/* ── v4: letter-size invoice printing ── */
.invprint { position: absolute; top: 16px; right: 16px; width: auto; padding: 10px 18px; font-size: 14px; }
@page { size: letter; margin: 0.5in; }
@media print {
  .invsheet { width: 7.5in; min-height: 10in; padding: 0.35in 0.45in; }
}

/* ── v4.1: fun facts strip ── */
.funfacts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 22px; }
@media (max-width: 640px) { .funfacts { grid-template-columns: 1fr; } }
.funfact { display: flex; gap: 12px; align-items: flex-start; border-radius: 14px;
  padding: 14px 16px; font-size: 14px; line-height: 1.55;
  animation: rise .4s ease both; }
.funfact strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.funfact.ff-sky { background: linear-gradient(130deg, #e8f6fd, #f4fbff);
  border: 1.5px solid #bfe4f5; color: #14536f; animation-delay: .05s; }
.funfact.ff-sky strong { color: var(--sky-dk); }
.funfact.ff-orange { background: linear-gradient(130deg, #fff3e4, #fffaf3);
  border: 1.5px solid #f3d9ba; color: #7a4a14; animation-delay: .15s; }
.funfact.ff-orange strong { color: var(--orange-dk); }
.ff-emoji { font-size: 26px; line-height: 1; animation: emojibob 2.6s ease-in-out infinite; }
.funfact.ff-orange .ff-emoji { animation-delay: 1.3s; }
@keyframes emojibob { 0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-6deg); } }
@media (prefers-reduced-motion: reduce) { .ff-emoji { animation: none; } }
.vancard { margin-top: 30px; }

/* ── v4.2: bigger instant note ── */
.instantnote { font-size: 16.5px; }
.instantnote .bolt { font-size: 1.35em; }

/* ── v4.2: conditional question follow-up ── */
.qfollow { margin-top: 10px; animation: rise .3s ease both; }

/* ── v4.2: card chips ── */
.cardchips { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 10px; }
.cardchips.center { justify-content: center; }
.cardchip { position: relative; border-radius: 7px; padding: 7px 13px 7px 26px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em; color: #fff;
  box-shadow: 0 3px 9px rgba(22,50,79,.18); }
.cardchip::before { content: ""; position: absolute; left: 8px; top: 50%;
  transform: translateY(-50%); width: 13px; height: 9.5px; border-radius: 2px;
  background: rgba(255,255,255,.85);
  box-shadow: inset 0 2.5px 0 rgba(0,0,0,.25); }
.cc-visa { background: #1a1f71; }
.cc-mc   { background: #3a3a3a; font-style: italic; }
.cc-disc { background: #e55c20; }
.cc-amex { background: #016fd0; }

/* ── v4.2: the collie (10-second visit) ── */
.dogstage { position: fixed; left: 0; bottom: 6px; z-index: 40; width: 160px;
  pointer-events: none; transform: translateX(-200px); }
.dogsvg { width: 100%; height: auto; display: block; }
.dogstage.go { animation: dogtrip 10s linear forwards; }
@keyframes dogtrip {
  0%   { transform: translateX(-200px); }
  17%  { transform: translateX(9vw); }    /* trots in, parks off to the side */
  86%  { transform: translateX(9vw); }    /* long happy visit */
  100% { transform: translateX(112vw); }  /* dashes off */
}
.dogstage.go .dleg { transform-box: fill-box; transform-origin: 50% 6%; }
.dogstage.go .d1, .dogstage.go .d3 { animation: dogstep 10s linear infinite; }
.dogstage.go .d2, .dogstage.go .d4 { animation: dogstep 10s linear infinite reverse; }
@keyframes dogstep {
  0% { transform: rotate(0deg); }
  2% { transform: rotate(22deg); } 4% { transform: rotate(-22deg); }
  6% { transform: rotate(22deg); } 8% { transform: rotate(-22deg); }
  10% { transform: rotate(22deg); } 13% { transform: rotate(-22deg); }
  17%, 86% { transform: rotate(0deg); }
  88% { transform: rotate(30deg); } 90% { transform: rotate(-30deg); }
  92% { transform: rotate(30deg); } 94% { transform: rotate(-30deg); }
  96% { transform: rotate(30deg); } 98% { transform: rotate(-30deg); }
  100% { transform: rotate(0deg); }
}
.dogstage .dog-tail { transform-box: fill-box; transform-origin: 90% 85%; }
.dogstage.go .dog-tail { animation: dogwag 10s ease-in-out infinite; }
@keyframes dogwag {
  0%, 19% { transform: rotate(0deg); }
  22% { transform: rotate(28deg); } 25% { transform: rotate(-12deg); }
  28% { transform: rotate(28deg); } 31% { transform: rotate(-12deg); }
  34% { transform: rotate(28deg); } 37% { transform: rotate(-12deg); }
  40% { transform: rotate(28deg); } 43% { transform: rotate(-12deg); }
  46% { transform: rotate(28deg); } 49% { transform: rotate(-12deg); }
  52% { transform: rotate(28deg); } 55% { transform: rotate(-12deg); }
  58% { transform: rotate(28deg); } 61% { transform: rotate(-12deg); }
  64% { transform: rotate(28deg); } 67% { transform: rotate(-12deg); }
  70% { transform: rotate(28deg); } 73% { transform: rotate(-12deg); }
  76% { transform: rotate(24deg); } 80% { transform: rotate(-8deg); }
  84%, 100% { transform: rotate(0deg); }
}
.dogstage .dog-jaw { transform-box: fill-box; transform-origin: 6% 25%; }
.dogstage.go .dog-jaw { animation: dogbark 10s ease-in-out infinite; }
@keyframes dogbark {
  0%, 26% { transform: rotate(0deg); }
  29% { transform: rotate(15deg); } 32% { transform: rotate(0deg); }
  36% { transform: rotate(15deg); } 39% { transform: rotate(0deg); }
  52%, 58% { transform: rotate(0deg); }
  61% { transform: rotate(15deg); } 64% { transform: rotate(0deg); }
  68% { transform: rotate(15deg); } 71% { transform: rotate(0deg); }
  86%, 100% { transform: rotate(0deg); }
}
.dogstage .dog-tongue { opacity: 0; }
.dogstage.go .dog-tongue { animation: dogtongue 10s ease-in-out infinite; }
@keyframes dogtongue {
  0%, 40% { opacity: 0; }
  44%, 56% { opacity: 1; }
  60%, 100% { opacity: 0; }
}
.dogstage .dog-woof { opacity: 0; }
.dogstage.go .dog-woof { animation: dogwoof 10s ease-in-out infinite; }
@keyframes dogwoof {
  0%, 28% { opacity: 0; transform: translateY(3px); }
  31%, 40% { opacity: 1; transform: translateY(0); }
  46%, 58% { opacity: 0; }
  61%, 72% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) { .dogstage { display: none; } }

/* ── v4.3: parking card ── */
.funfact.ff-green { background: linear-gradient(130deg, #e7f6ec, #f6fcf8);
  border: 1.5px solid #bfe2cb; color: #14522c; animation-delay: .25s; }
.funfact.ff-green strong { color: #009040; }
.funfact.ff-wide { grid-column: 1 / -1; }
.funfact.ff-green .ff-emoji { animation-delay: 2s; }

/* ── v4.4: cancel zone ── */
.cancelzone { margin-top: 22px; padding-top: 16px; border-top: 1px dashed var(--line); }
.cta.ghost.danger { color: var(--bad); border-color: #efc9c2; }
.cta.ghost.danger:hover { background: #fdf0ee; border-color: var(--bad); }

/* ── v4.5: spam note ── */
.spamnote { max-width: 480px; margin: 14px auto; background: linear-gradient(120deg, #eef8fd, #fff6ec);
  border: 1.5px solid #cfe6f2; border-radius: 12px; padding: 13px 17px;
  font-size: 13.5px; line-height: 1.6; color: #14536f; text-align: center; }

/* ═══ v5: customer beauty pass ═══ */
body { background: linear-gradient(180deg, #f2f9fd 0, var(--paper) 340px); }
.bubbles::before { border-color: rgba(240,145,59,.13); }

.cta { background: linear-gradient(120deg, #f39c4c, var(--orange) 55%, #e8862e); }
.cta:hover { background: linear-gradient(120deg, var(--orange-dk), #c96f1e); }

.paneltitle { position: relative; padding-bottom: 12px; }
.paneltitle::after { content: ""; position: absolute; left: 0; bottom: 0; width: 64px; height: 4px;
  border-radius: 4px; background: linear-gradient(90deg, var(--orange), var(--sky)); }
.paneltitle.center::after { left: 50%; transform: translateX(-50%); }

/* progress line through the step bubbles */
.steps { position: relative; }
.steps::before { content: ""; position: absolute; top: 7px; left: 12%; right: 12%; height: 2.5px;
  background: var(--line); z-index: -1; border-radius: 2px; }
.step.is-done .dot::after { content: "✓"; color: #fff; font-size: 8.5px; font-weight: 900;
  display: block; text-align: center; line-height: 10px; }

/* service cards: entrance + popular ribbon */
.svc { animation: rise 1.1s cubic-bezier(.22,.9,.36,1) both; position: relative; overflow: visible; }
.svc.is-popular::after { content: "★ Most popular"; position: absolute; top: -11px; right: 12px;
  background: linear-gradient(100deg, var(--orange), #f5a55c); color: #fff; font-size: 10.5px;
  font-weight: 800; letter-spacing: .04em; border-radius: 999px; padding: 4px 12px;
  box-shadow: 0 5px 14px rgba(240,145,59,.4); }

.realnote { color: var(--sky-dk); font-size: 13.5px; font-weight: 600; margin: -8px 0 14px; }

/* confetti burst */
.confettiwrap { position: relative; width: 74px; margin: 0 auto 16px; }
.cpiece { position: absolute; top: 32px; left: 32px; width: 9px; height: 9px; border-radius: 2px;
  opacity: 0; animation: burst .9s .25s cubic-bezier(.16,.84,.44,1) both; }
.p1 { background: var(--sky);    --tx: -58px; --ty: -44px; transform: rotate(15deg); }
.p2 { background: var(--orange); --tx:  60px; --ty: -50px; animation-delay: .3s; }
.p3 { background: #009040;       --tx: -70px; --ty:  10px; animation-delay: .35s; border-radius: 50%; }
.p4 { background: #f5c14c;       --tx:  72px; --ty:   4px; animation-delay: .28s; }
.p5 { background: var(--sky-dk); --tx: -34px; --ty: -70px; animation-delay: .4s; border-radius: 50%; }
.p6 { background: #e2707f;       --tx:  38px; --ty: -74px; animation-delay: .33s; }
@keyframes burst {
  0% { opacity: 0; transform: translate(0,0) scale(.4) rotate(0); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1) rotate(200deg); }
}
@media (prefers-reduced-motion: reduce) { .cpiece { animation: none; display: none; } }

.footheart { width: 100%; text-align: center; color: var(--ink-2); font-size: 12.5px; margin-top: 4px; }

/* public invoice: brand accent bar */
.invsheet::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px;
  background: linear-gradient(90deg, var(--sky), var(--orange)); }
@media print { .invsheet::before { display: none; } }

/* ═══ v6: booking-wait theater ═══ */
.waitveil { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center;
  justify-content: center; background: rgba(18,40,63,.55); backdrop-filter: blur(4px);
  animation: veilin .25s ease both; }
@keyframes veilin { from { opacity: 0; } to { opacity: 1; } }
.waitcard { background: #fff; border-radius: 24px; padding: 38px 46px; text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.35); animation: rise .3s ease both; min-width: 300px; }
.waitring { position: relative; width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--sky), var(--orange), #009040, var(--sky));
  animation: ringspin 1.3s linear infinite; display: flex; align-items: center; justify-content: center; }
.waitring::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #fff; }
@keyframes ringspin { to { transform: rotate(360deg); } }
.waitico { position: relative; font-size: 34px; animation: counterspin 1.3s linear infinite; }
@keyframes counterspin { to { transform: rotate(-360deg); } }
.waittext { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 21px;
  color: var(--ink); margin: 0 0 16px; min-height: 28px; }
.waittext.tick { animation: textin .3s ease both; }
@keyframes textin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.waitdots { display: flex; gap: 10px; justify-content: center; }
.wdot { width: 11px; height: 11px; border-radius: 50%; background: var(--line);
  transition: background .3s, transform .3s; }
.wdot.is-on { background: linear-gradient(120deg, var(--sky), var(--orange)); transform: scale(1.18); }

/* the finale: ring freezes solid green, check pops */
.waitveil.is-done .waitring { animation: none;
  background: conic-gradient(#009040, #00b050, #009040); }
.waitveil.is-done .waitico { animation: checkpop .45s cubic-bezier(.34,1.56,.64,1) both;
  color: #009040; font-weight: 900; }
@keyframes checkpop { from { transform: scale(.3) rotate(-20deg); } to { transform: scale(1.15) rotate(0); } }
.waitveil.is-done .wdot { background: #009040; }
.waitveil.is-done .waittext { color: #009040; }
@media (prefers-reduced-motion: reduce) {
  .waitring, .waitico { animation: none; }
  .waitveil, .waitcard, .waittext.tick { animation: none; }
}

/* ═══ v6.2: welcome back ═══ */
.welcomeback { position: relative; display: flex; align-items: center; gap: 12px;
  background: linear-gradient(120deg, #eef8fd, #fff4e6, #e9f7ef);
  background-size: 220% 220%; animation: wbpop .55s cubic-bezier(.34,1.4,.64,1) both,
  wbshimmer 5s ease-in-out infinite; border: 2px solid transparent;
  border-radius: 16px; padding: 14px 18px; margin: 0 0 18px;
  box-shadow: 0 8px 26px rgba(26,167,222,.16), inset 0 0 0 1.5px #bfe4f5; }
.welcomeback strong { display: block; font-family: "Fraunces", Georgia, serif;
  font-size: 17.5px; color: var(--sky-dk); margin-bottom: 2px; }
.welcomeback span { font-size: 13.5px; color: #14536f; }
.wb-wave { font-size: 26px; animation: wbwave 1.8s ease-in-out 2; transform-origin: 70% 75%; }
.wb-spark { position: absolute; font-size: 13px; animation: wbtwinkle 2.4s ease-in-out infinite; }
.wb-spark.s1 { top: -8px; left: 14px; }
.wb-spark.s2 { bottom: -8px; right: 16px; animation-delay: 1.2s; }
@keyframes wbpop { from { opacity: 0; transform: translateY(-10px) scale(.96); }
  to { opacity: 1; transform: none; } }
@keyframes wbshimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes wbwave { 0%,100% { transform: rotate(0); } 15% { transform: rotate(16deg); }
  30% { transform: rotate(-8deg); } 45% { transform: rotate(14deg); } 60% { transform: rotate(-4deg); } }
@keyframes wbtwinkle { 0%,100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }
@media (prefers-reduced-motion: reduce) { .welcomeback, .wb-wave, .wb-spark { animation: none; } }
