:root {
  --orange: #FF8A00;
  --orange-dark: #E56E00;
  --blue: #1E6FE0;
  --blue-dark: #14459B;
  --green: #5BB344;
  --green-light: #7ECB5F;
  --yellow: #FFD23F;
  --ink: #232C39;
  --cream: #FFF8EC;
  --sky-top: #9FDCFF;
  --sky-bottom: #E8F8FF;
  --white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, .display { font-family: 'Baloo 2', cursive; }

/* ============ header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand {
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.25rem;
  text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.brand .truck-emoji { display: inline-block; animation: idle-bob 1.6s ease-in-out infinite; }
.brand span.mm { color: var(--orange); }
nav.main-nav { display: flex; gap: 20px; align-items: center; }
nav.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 800; font-size: .92rem;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call, .header-book {
  color: var(--white); text-decoration: none;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: .95rem;
  padding: 8px 16px; border-radius: 999px; border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap;
}
.header-call { background: var(--blue); }
.header-book { background: var(--orange); }
.header-call:hover, .header-book:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.header-call:active, .header-book:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.nav-toggle {
  display: none; background: var(--white); border: 3px solid var(--ink); border-radius: 12px;
  font-size: 1.2rem; padding: 4px 10px; cursor: pointer; box-shadow: 2px 2px 0 var(--ink);
  font-family: inherit;
}
@media (max-width: 920px) {
  nav.main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 3px solid var(--ink);
    flex-direction: column; padding: 16px 20px; gap: 14px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .header-call { display: none; }
}

/* ============ buttons ============ */
.btn {
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.15rem;
  text-decoration: none; padding: 13px 28px; border-radius: 999px;
  border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; background: var(--white); color: var(--ink);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(3px,3px); box-shadow: 0 0 0 var(--ink); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--ink); }

/* ============ hero (home) ============ */
.hero {
  position: relative;
  background: linear-gradient(var(--sky-top), var(--sky-bottom) 70%);
  overflow: hidden;
  padding: 56px 20px 0;
  text-align: center;
}
.hero-inner { position: relative; z-index: 5; max-width: 820px; margin: 0 auto; }
.badge-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.badge {
  background: var(--white); border: 3px solid var(--ink); border-radius: 999px;
  padding: 6px 14px; font-weight: 800; font-size: .85rem;
  box-shadow: 2px 2px 0 var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  animation: pop-in .5s cubic-bezier(.2,1.6,.4,1) backwards;
}
.badge:nth-child(2) { animation-delay: .12s; }
.badge:nth-child(3) { animation-delay: .24s; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.02; font-weight: 800; letter-spacing: -.5px;
  animation: pop-in .6s cubic-bezier(.2,1.6,.4,1) .1s backwards;
}
.hero h1 .junk {
  color: var(--orange);
  display: inline-block;
  animation: wiggle 3.5s ease-in-out 1.2s infinite;
}
.hero h1 .gone { color: var(--blue); display: inline-block; }
.hero p.sub {
  margin: 16px auto 26px; max-width: 560px;
  font-size: clamp(1rem, 2.4vw, 1.25rem); font-weight: 600;
  animation: pop-in .6s cubic-bezier(.2,1.6,.4,1) .25s backwards;
}
.cta-row {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  animation: pop-in .6s cubic-bezier(.2,1.6,.4,1) .4s backwards;
}
.hero .fine { font-size: .85rem; font-weight: 700; margin-top: 14px; opacity: .75; }

/* sun */
.sun { position: absolute; top: 40px; right: 7%; width: 90px; height: 90px; z-index: 1; }
.sun .core { position: absolute; inset: 0; border-radius: 50%; background: var(--yellow); border: 3px solid var(--ink); }
.sun .rays { position: absolute; inset: -26px; animation: spin 24s linear infinite; }
.sun .rays::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-conic-gradient(var(--yellow) 0 8deg, transparent 8deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 46%, #000 47%);
  mask: radial-gradient(circle, transparent 46%, #000 47%);
  opacity: .8;
}
/* clouds */
.cloud {
  position: absolute; background: var(--white);
  border: 3px solid var(--ink); border-radius: 999px;
  z-index: 1; opacity: .95;
}
.cloud::before, .cloud::after {
  content: ""; position: absolute; background: var(--white);
  border: 3px solid var(--ink); border-radius: 50%;
}
.cloud::before { width: 55%; height: 160%; left: 12%; bottom: 40%; }
.cloud::after  { width: 40%; height: 120%; right: 14%; bottom: 45%; }
.cloud .patch { position: absolute; background: var(--white); left: 8%; right: 8%; top: 0; height: 60%; border-radius: 999px; }
.cloud-1 { width: 130px; height: 34px; top: 70px;  animation: drift 38s linear infinite; }
.cloud-2 { width: 90px;  height: 26px; top: 150px; animation: drift 55s linear -20s infinite; }
.cloud-3 { width: 110px; height: 30px; top: 40px;  animation: drift 47s linear -35s infinite; }
@keyframes drift { from { left: -180px; } to { left: 110%; } }

/* hills + road + truck scene */
.scene { position: relative; margin-top: 30px; height: 300px; z-index: 2; }
.hill { position: absolute; border-radius: 50% 50% 0 0; border: 3px solid var(--ink); border-bottom: none; }
.hill-1 { background: var(--green-light); width: 60%; height: 150px; bottom: 58px; left: -10%; }
.hill-2 { background: var(--green); width: 55%; height: 120px; bottom: 58px; right: -8%; }
.road { position: absolute; bottom: 0; left: 0; right: 0; height: 64px; background: #3D4756; border-top: 3px solid var(--ink); }
.road .dashes {
  position: absolute; top: 50%; left: 0; right: 0; height: 6px; margin-top: -3px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 40px, transparent 40px 80px);
  animation: road-move 1.1s linear infinite;
}
@keyframes road-move { from { background-position-x: 0; } to { background-position-x: -80px; } }

.truck-wrap {
  position: absolute; bottom: 16px; left: 50%;
  width: min(480px, 82vw);
  transform: translateX(-50%);
  animation: drive-in 1.6s cubic-bezier(.22,1,.36,1) both;
  cursor: pointer;
}
@keyframes drive-in { from { transform: translateX(-160%); } to { transform: translateX(-50%); } }
.truck-bob { animation: idle-bob 1s ease-in-out infinite; transform-origin: center bottom; }
.truck-wrap:hover .truck-bob { animation-duration: .5s; }
.truck-wrap.honking .truck-bob { animation: honk-bounce .5s cubic-bezier(.2,1.6,.4,1); }
@keyframes honk-bounce {
  0% { transform: translateY(0) scale(1,1); }
  30% { transform: translateY(-16px) scale(.96,1.06); }
  60% { transform: translateY(0) scale(1.05,.92); }
  100% { transform: translateY(0) scale(1,1); }
}
.wheel { animation: spin 1.4s linear infinite; transform-box: fill-box; transform-origin: center; }
.junk-item { animation: junk-wobble 2.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center bottom; }
.junk-item.j2 { animation-delay: .4s; }
.junk-item.j3 { animation-delay: .9s; }
@keyframes junk-wobble { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(5deg); } }
.puff {
  position: absolute; bottom: 90px; left: 2%;
  width: 16px; height: 16px; border-radius: 50%;
  background: #C9CFD8; border: 2px solid var(--ink); opacity: 0;
  animation: puff-up 2.4s ease-out infinite;
}
.puff.p2 { animation-delay: .8s; width: 12px; height: 12px; }
.puff.p3 { animation-delay: 1.6s; width: 14px; height: 14px; }
@keyframes puff-up {
  0% { opacity: 0; transform: translate(0,0) scale(.6); }
  15% { opacity: .9; }
  100% { opacity: 0; transform: translate(-34px,-60px) scale(1.7); }
}
.honk-bubble {
  position: absolute; top: -34px; right: 6%;
  background: var(--white); border: 3px solid var(--ink); border-radius: 14px;
  padding: 4px 12px; font-family: 'Baloo 2', cursive; font-weight: 800;
  opacity: 0; pointer-events: none; transform: scale(.5);
  transition: opacity .15s, transform .2s cubic-bezier(.2,1.6,.4,1);
}
.truck-wrap.honking .honk-bubble { opacity: 1; transform: scale(1); }

@keyframes idle-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes wiggle {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-4deg); }
  94% { transform: rotate(4deg); }
  98% { transform: rotate(-2deg); }
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(24px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============ page hero (interior pages) ============ */
.page-hero {
  background: linear-gradient(var(--sky-top), var(--sky-bottom));
  border-bottom: 3px solid var(--ink);
  padding: 54px 20px 46px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 800; animation: pop-in .5s cubic-bezier(.2,1.6,.4,1) backwards; }
.page-hero p { max-width: 620px; margin: 12px auto 0; font-weight: 600; font-size: 1.1rem; animation: pop-in .5s cubic-bezier(.2,1.6,.4,1) .15s backwards; }
.page-hero .mini-truck {
  position: absolute; bottom: 6px; font-size: 2rem; left: -60px;
  animation: cross 14s linear infinite;
}
@keyframes cross { from { left: -60px; } to { left: 105%; } }

/* ============ marquee ============ */
.marquee {
  background: var(--ink); color: var(--cream);
  border-bottom: 3px solid var(--ink);
  overflow: hidden; padding: 12px 0; white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 26s linear infinite;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.05rem;
}
.marquee-track span { margin: 0 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ sections ============ */
section { padding: 72px 20px; }
.container { max-width: 1040px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.section-title { text-align: center; font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 800; margin-bottom: 8px; }
.section-sub { text-align: center; font-weight: 600; opacity: .8; max-width: 560px; margin: 0 auto 40px; }
.squiggle { display: block; margin: 6px auto 0; width: 140px; }

/* services */
.services-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.service-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 18px;
  padding: 20px 12px; text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none; color: var(--ink); display: block;
}
.service-card:hover { transform: translate(-2px,-4px) rotate(-1.5deg); box-shadow: 7px 8px 0 var(--ink); }
.service-card .icon { font-size: 2.2rem; display: block; margin-bottom: 8px; transition: transform .2s; }
.service-card:hover .icon { transform: scale(1.25) rotate(6deg); }
.service-card .name { font-weight: 800; font-size: .95rem; }
.more-note { text-align: center; margin-top: 26px; font-weight: 700; }
.more-note a { color: var(--orange); }

/* big service feature cards (services page) */
.feature-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.feature-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 20px;
  padding: 28px 24px; box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s;
}
.feature-card:hover { transform: translateY(-4px) rotate(.6deg); }
.feature-card .icon { font-size: 2.4rem; }
.feature-card h3 { margin: 10px 0 8px; font-size: 1.35rem; }
.feature-card p { font-weight: 600; font-size: .97rem; }
.feature-card ul { margin: 10px 0 0 18px; font-weight: 600; font-size: .95rem; }
.feature-card li { margin: 4px 0; }

/* why us */
.why { background: var(--blue); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.why .section-title, .why .section-sub { color: var(--white); }
.why-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.why-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 18px;
  padding: 24px 20px; box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s;
}
.why-card:hover { transform: translateY(-5px) rotate(1deg); }
.why-card .icon { font-size: 2rem; }
.why-card h3 { margin: 8px 0 6px; font-size: 1.2rem; }
.why-card p { font-weight: 600; font-size: .95rem; }
.yelp-stars { color: #FF5D47; letter-spacing: 2px; }

/* steps */
.steps-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step {
  background: var(--white); border: 3px solid var(--ink); border-radius: 18px;
  padding: 28px 22px 24px; position: relative; box-shadow: 4px 4px 0 var(--ink);
}
.step .num {
  position: absolute; top: -20px; left: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.2rem;
}
.step h3 { margin-bottom: 6px; font-size: 1.25rem; }
.step p { font-weight: 600; font-size: .97rem; }

/* info cards */
.info-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.info-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 18px;
  padding: 26px 24px; box-shadow: 4px 4px 0 var(--ink);
}
.info-card h3 { font-size: 1.3rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.info-card p { font-weight: 600; }
.hours-table { width: 100%; font-weight: 700; border-collapse: collapse; }
.hours-table td { padding: 4px 0; }
.hours-table td:last-child { text-align: right; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  background: var(--cream); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 5px 14px; font-weight: 800; font-size: .9rem;
}
.chip.hq { background: var(--yellow); }

/* areas page */
.area-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.area-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 16px;
  padding: 18px 14px; text-align: center; font-weight: 800; font-size: 1.05rem;
  box-shadow: 4px 4px 0 var(--ink); transition: transform .15s;
  font-family: 'Baloo 2', cursive;
}
.area-card:hover { transform: translateY(-4px) rotate(-1deg); }
.area-card .pin { display: block; font-size: 1.6rem; margin-bottom: 4px; }
.area-card.hq-card { background: var(--yellow); }

/* blog */
.blog-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.blog-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: 20px;
  overflow: hidden; box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s; text-decoration: none; color: var(--ink); display: block;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card .cover { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 3rem; border-bottom: 3px solid var(--ink); }
.blog-card .body { padding: 20px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.blog-card p { font-weight: 600; font-size: .93rem; opacity: .85; }
.blog-card .date { font-size: .8rem; font-weight: 800; opacity: .6; display: block; margin-bottom: 6px; }

/* ============ booking page ============ */
.book-layout { display: grid; gap: 26px; grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 860px) { .book-layout { grid-template-columns: 1fr; } }
.book-panel {
  background: var(--white); border: 3px solid var(--ink); border-radius: 20px;
  padding: 26px 24px; box-shadow: 5px 5px 0 var(--ink);
}
.book-panel h3 { font-size: 1.3rem; margin-bottom: 14px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-head .month-label { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.15rem; }
.cal-nav {
  background: var(--cream); border: 2.5px solid var(--ink); border-radius: 10px;
  font-size: 1rem; font-weight: 800; padding: 4px 12px; cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink); font-family: inherit;
}
.cal-nav:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.cal-nav:disabled { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-weight: 800; font-size: .75rem; opacity: .6; padding: 4px 0; }
.cal-day {
  aspect-ratio: 1; border: 2.5px solid var(--ink); border-radius: 12px;
  background: var(--cream); font-family: 'Baloo 2', cursive; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: transform .1s;
}
.cal-day:hover:not(:disabled) { transform: scale(1.08); background: var(--yellow); }
.cal-day:disabled { opacity: .25; cursor: default; border-color: #999; }
.cal-day.selected { background: var(--orange); color: var(--white); box-shadow: 2px 2px 0 var(--ink); }
.cal-day.empty { visibility: hidden; }
.slot-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.slot {
  border: 2.5px solid var(--ink); border-radius: 999px; background: var(--cream);
  padding: 7px 14px; font-weight: 800; font-size: .88rem; cursor: pointer;
  font-family: inherit; transition: transform .1s;
}
.slot:hover { transform: scale(1.06); background: var(--yellow); }
.slot.selected { background: var(--blue); color: var(--white); box-shadow: 2px 2px 0 var(--ink); }
.slot-hint { font-weight: 700; font-size: .85rem; opacity: .65; margin-top: 12px; }

.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-weight: 800; font-size: .9rem; margin-bottom: 5px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 2.5px solid var(--ink); border-radius: 12px;
  padding: 10px 12px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 1rem;
  background: var(--cream);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; background: var(--white); box-shadow: 3px 3px 0 var(--yellow);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.book-summary {
  background: var(--cream); border: 2.5px dashed var(--ink); border-radius: 14px;
  padding: 14px 16px; font-weight: 700; margin: 14px 0; font-size: .95rem;
}
.book-note { font-weight: 700; font-size: .85rem; opacity: .7; margin-top: 12px; }
.book-success {
  background: var(--green-light); border: 3px solid var(--ink); border-radius: 16px;
  padding: 20px; font-weight: 700; text-align: center; margin-top: 16px;
}

/* ============ CTA banner ============ */
.cta-banner {
  background: var(--orange);
  border-top: 3px solid var(--ink);
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 10px; }
.cta-banner p { font-weight: 700; font-size: 1.15rem; margin-bottom: 26px; }
.cta-banner .btn-white { font-size: 1.3rem; }
.cta-banner .social-row { margin-top: 26px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-pill {
  background: var(--white); color: var(--ink); text-decoration: none;
  border: 3px solid var(--ink); border-radius: 999px; padding: 9px 20px;
  font-weight: 800; box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  display: inline-flex; align-items: center; gap: 7px;
}
.social-pill:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }

/* ============ footer ============ */
footer {
  background: var(--ink); color: var(--cream);
  padding: 40px 20px 110px; text-align: center;
}
footer .f-brand { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.3rem; }
footer .f-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin: 16px 0 6px; }
footer .f-nav a { color: var(--cream); font-weight: 800; font-size: .9rem; text-decoration: none; }
footer .f-nav a:hover { color: var(--yellow); }
footer p { font-weight: 600; font-size: .9rem; margin-top: 8px; opacity: .85; }
footer a { color: var(--yellow); font-weight: 800; text-decoration: none; }
@media (min-width: 761px) { footer { padding-bottom: 40px; } }

/* sticky mobile bar */
.mobile-call { position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 200; display: none; gap: 10px; }
.mobile-call a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--white); text-decoration: none;
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.05rem;
  padding: 13px 8px; border-radius: 999px; border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.mobile-call a.call { background: var(--blue); }
.mobile-call a.book { background: var(--orange); }
@media (max-width: 760px) { .mobile-call { display: flex; } }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,1.2,.4,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; animation-iteration-count: 1 !important; transition-duration: .01s !important; }
  .reveal { opacity: 1; transform: none; }
}
