/* =========================================================
   MOBILE MECHANIC QUEBEC — main stylesheet
   Brand colours (taken from the logo) — change here only
   ========================================================= */
:root {
  --navy:      #0E1A2B;   /* logo dark navy */
  --navy-2:    #17283F;
  --red:       #D6161E;   /* logo red */
  --red-dark:  #A50F15;
  --steel:     #C9D0DA;   /* logo skyline grey */
  --mist:      #EEF1F5;
  --ink:       #1B2432;
  --muted:     #5A6475;
  --white:     #FFFFFF;

  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Barlow', 'Segoe UI', Arial, sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 18px 40px -18px rgba(14, 26, 43, .45);
  --header-h:  84px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.4rem); font-style: italic; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 200; background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.35rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .02em;
  text-decoration: none; border: 2px solid transparent; border-radius: var(--radius);
  white-space: nowrap; cursor: pointer; transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.3rem; }
.btn-sm { padding: .55rem .95rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 22px -10px rgba(214, 22, 30, .8); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--navy); color: #fff; }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* Shine sweep on red buttons */
.btn-red::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 0%, 70% { left: -60%; } 100% { left: 130%; } }

/* Pulse ring on main call buttons */
.btn-pulse { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214, 22, 30, .6); }
  70%  { box-shadow: 0 0 0 16px rgba(214, 22, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 22, 30, 0); }
}
.btn-white.btn-pulse { animation-name: pulse-white; }
@keyframes pulse-white {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.text-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; color: var(--red); text-decoration: none;
}
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mist);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 64px; height: 64px; }
.brand-text { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 1.35rem; line-height: 1; color: var(--navy); text-transform: uppercase; }
.brand-text span { display: block; font-style: normal; font-weight: 600; font-size: .85rem; letter-spacing: .12em; color: var(--red); margin-top: .25rem; }

.main-nav ul { display: flex; gap: .25rem; }
.main-nav a:not(.btn) {
  display: block; padding: .5rem .8rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--navy); text-decoration: none; position: relative;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: 0; color: var(--navy); padding: .4rem; cursor: pointer; }
.nav-toggle .icon { width: 32px; height: 32px; }

@media (min-width: 1025px) {
  .main-nav { display: flex; align-items: center; gap: 1rem; }
}
@media (min-width: 1025px) and (max-width: 1260px) {
  .brand-text { display: none; }
  .main-nav a:not(.btn) { padding-inline: .6rem; }
}
@media (max-width: 1024px) {
  :root { --header-h: 72px; }
  .brand img { width: 54px; height: 54px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 3px solid var(--red);
    padding: .5rem 1.25rem 1.25rem;
    display: none; box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; animation: drop .25s ease; }
  .main-nav ul { flex-direction: column; }
  .main-nav a:not(.btn) { padding: .8rem 0; border-bottom: 1px solid var(--mist); }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav a[aria-current="page"] { color: var(--red); }
  .nav-call { width: 100%; margin-top: 1rem; }
}
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Running line (ticker) ---------- */
.ticker { background: var(--red); color: #fff; overflow: hidden; position: relative; }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-list { display: flex; }
.ticker-list li {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1.6rem; white-space: nowrap;
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.15rem;
}
.ticker-icon { width: 1.1em; height: 1.1em; opacity: .85; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; background: var(--navy); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; animation: slow-zoom 18s ease-out forwards; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy) 22%, rgba(14,26,43,.86) 52%, rgba(14,26,43,.62) 100%);
}
@keyframes slow-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-grid {
  display: grid; gap: 2.5rem;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero-lead { text-align: justify; hyphens: auto; color: #DDE3EC; font-size: 1.12rem; max-width: 62ch; }
.hero-points { display: grid; gap: .55rem; margin: 1.5rem 0 2rem; }
.hero-points li { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.hero-points .icon { color: #fff; background: var(--red); border-radius: 50%; padding: 3px; width: 1.4em; height: 1.4em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Signature: red speed stripes from the logo */
.speed { display: grid; gap: 6px; margin-bottom: 1.3rem; width: 150px; }
.speed span {
  display: block; height: 6px; background: var(--red);
  transform: skewX(-30deg) translateX(-140%);
  animation: speed-in .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.speed span:nth-child(1) { width: 100%; }
.speed span:nth-child(2) { width: 72%; animation-delay: .12s; }
.speed span:nth-child(3) { width: 44%; animation-delay: .24s; }
@keyframes speed-in { to { transform: skewX(-30deg) translateX(0); } }

.hero-copy > h1, .hero-copy > .hero-lead, .hero-copy > .hero-points, .hero-copy > .hero-ctas {
  opacity: 0; animation: rise .8s ease forwards;
}
.hero-copy > h1 { animation-delay: .25s; }
.hero-copy > .hero-lead { animation-delay: .4s; }
.hero-copy > .hero-points { animation-delay: .55s; }
.hero-copy > .hero-ctas { animation-delay: .7s; }
.hero-form { opacity: 0; animation: rise .9s ease .5s forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (min-width: 1025px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; }
}
@media (max-width: 1024px) {
  .hero-copy { text-align: center; }
  .hero h1 { margin-inline: auto; }
  .speed { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-points { justify-items: center; }
  .hero-ctas { justify-content: center; }
}
@media (max-width: 560px) {
  .hero-ctas .btn { width: 100%; }
  .hero-points { justify-items: start; text-align: left; max-width: 22rem; margin-inline: auto; }
}

/* ---------- Booking form ---------- */
.booking-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.6);
  overflow: hidden;
  border-top: 6px solid var(--red);
}
.booking-head { padding: 1.5rem 1.6rem .4rem; }
.booking-head h2 { font-size: 1.9rem; margin-bottom: .2rem; }
.booking-head p { color: var(--muted); margin: 0; font-size: .98rem; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1rem; padding: 1.1rem 1.6rem 1.6rem; }
.field { display: grid; gap: .3rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid #D5DBE4; border-radius: 8px; background: #F9FAFC;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(214,22,30,.12);
}
.booking-form .btn-block { grid-column: 1 / -1; margin-top: .3rem; }
.form-note { grid-column: 1 / -1; margin: 0; text-align: center; font-size: .92rem; color: var(--muted); }
.form-note a { font-weight: 700; }
.hp { position: absolute; left: -9999px; }
.form-msg { display: flex; gap: .5rem; align-items: center; margin: 1rem 1.6rem 0; padding: .8rem 1rem; border-radius: 8px; font-weight: 600; font-size: .95rem; }
.form-msg-ok { background: #E7F6EC; color: #17663A; }
.form-msg-err { background: #FDECEC; color: var(--red-dark); }

/* Highlight when a "Book now" button sends the visitor to the form */
.booking-card.flash { animation: flash 1.4s ease; }
@keyframes flash {
  0%, 100% { box-shadow: 0 30px 60px -25px rgba(0,0,0,.6); }
  30% { box-shadow: 0 0 0 6px var(--red), 0 30px 60px -25px rgba(0,0,0,.6); }
}
.field select.prefilled { border-color: var(--red); background: #FFF4F4; }

@media (max-width: 560px) {
  .booking-form { grid-template-columns: 1fr; padding-inline: 1.2rem; }
  .booking-head { padding-inline: 1.2rem; text-align: center; }
}

/* ---------- Section headings ---------- */
.section-head { max-width: 46rem; margin-bottom: 2.8rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section-head-row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; flex-wrap: wrap; }
.section-head h2::after {
  content: ""; display: block; width: 64px; height: 5px; margin-top: .6rem;
  background: var(--red); transform: skewX(-30deg);
}

/* ---------- About ---------- */
.about-grid { display: grid; gap: 3rem; align-items: center; }
.about-media { position: relative; margin: 0; }
.about-media img { border-radius: var(--radius-lg); position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.about-media::before {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 3px solid var(--red); border-radius: var(--radius-lg);
}
.about-media figcaption {
  position: absolute; z-index: 2; left: -.5rem; bottom: 1.5rem;
  display: flex; align-items: center; gap: .5rem;
  background: var(--navy); color: #fff; padding: .75rem 1.1rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
}
.about-copy p { color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.8rem 0; }
.about-facts li { border-left: 4px solid var(--red); padding-left: .9rem; }
.about-facts h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.about-facts p { font-size: .95rem; margin: 0; }
@media (min-width: 900px) { .about-grid { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; } }
@media (max-width: 560px) { .about-facts { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { background: var(--mist); }
.service-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  display: flex; flex-direction: column;
  border-bottom: 4px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-bottom-color: var(--red); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy); color: #fff; margin-bottom: 1.1rem;
  transition: background .25s ease, transform .25s ease;
}
.service-icon .icon { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--red); transform: rotate(-8deg); }
.service-card h3 { font-size: 1.45rem; }
.service-card h3 a { color: var(--navy); text-decoration: none; }
.service-card h3 a:hover { color: var(--red); }
.service-card p { color: var(--muted); font-size: .98rem; flex-grow: 1; }
.service-actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }

/* ---------- Emergency band ---------- */
.emergency {
  background:
    repeating-linear-gradient(-60deg, rgba(255,255,255,.05) 0 18px, transparent 18px 36px),
    var(--red);
  color: #fff; padding: 3.2rem 0;
}
.emergency-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.emergency h2 { color: #fff; font-style: italic; text-transform: uppercase; margin-bottom: .3rem; }
.emergency p { margin: 0; opacity: .92; }
.emergency-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 700px) {
  .emergency-inner { text-align: center; justify-content: center; }
  .emergency-ctas { width: 100%; }
  .emergency-ctas .btn { width: 100%; }
}

/* ---------- Areas ---------- */
.areas { background: var(--navy); color: #fff; }
.areas h2, .areas h3 { color: #fff; }
.areas .section-head p { color: var(--steel); }
.area-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.area-card {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.2rem;
  transition: border-color .25s ease, transform .25s ease;
}
.area-card:hover { border-color: var(--red); transform: translateY(-3px); }
.area-card > .icon { color: var(--red); width: 26px; height: 26px; margin-top: .15rem; }
.area-card h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.area-card p { color: var(--steel); font-size: .95rem; margin: 0; }
.areas-more { margin: 2rem 0 0; color: var(--steel); text-align: center; }
.areas-more a { color: #fff; font-weight: 700; }

/* ---------- Testimonials ---------- */
.review-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.review-card {
  margin: 0; background: #fff; border: 1px solid #E3E7EE; border-radius: var(--radius);
  padding: 1.7rem; display: flex; flex-direction: column; position: relative;
}
.review-card::before {
  content: "\201C"; position: absolute; top: .2rem; right: 1.2rem;
  font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--mist);
}
.stars { display: flex; gap: 2px; color: #F5A623; margin-bottom: 1rem; }
.star { width: 20px; height: 20px; stroke-width: 1; }
.review-card blockquote { margin: 0 0 1.3rem; flex-grow: 1; }
.review-card blockquote p { margin: 0; }
.review-card figcaption { border-top: 1px solid var(--mist); padding-top: 1rem; display: grid; }
.review-card figcaption strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.review-card figcaption span { color: var(--muted); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--mist); }
.faq-grid { display: grid; gap: 2.5rem; }
.faq-intro p { color: var(--muted); }
.faq-list { display: grid; gap: .8rem; }
.faq-item { background: #fff; border-radius: var(--radius); border-left: 4px solid transparent; transition: border-color .2s ease; }
.faq-item[open] { border-left-color: var(--red); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.25rem; margin: 0; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; background: var(--navy); color: #fff;
  font-size: 1.3rem; font-weight: 700; transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--red); }
.faq-item p { padding: 0 1.3rem 1.3rem; margin: 0; color: var(--muted); }
.faq-item[open] p { animation: rise .35s ease; }
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 4rem; }
  .faq-intro { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
}

/* ---------- Recent posts ---------- */
.post-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.post-card { background: #fff; border: 1px solid #E3E7EE; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-thumb {
  display: grid; place-items: center; aspect-ratio: 16 / 9;
  background: repeating-linear-gradient(-60deg, rgba(255,255,255,.04) 0 14px, transparent 14px 28px), var(--navy);
  color: var(--red);
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-thumb-icon { width: 56px; height: 56px; }
.post-body { padding: 1.4rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-body time { font-size: .88rem; color: var(--red); font-weight: 600; margin-bottom: .4rem; }
.post-body h3 { font-size: 1.35rem; }
.post-body h3 a { color: var(--navy); text-decoration: none; }
.post-body h3 a:hover { color: var(--red); }
.post-body p { color: var(--muted); font-size: .98rem; flex-grow: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--steel); padding-top: 4.5rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding-bottom: 3rem; }
.footer-logo img { width: 110px; height: 110px; background: #fff; border-radius: 50%; padding: 6px; margin-bottom: 1rem; }
.footer-about p { font-size: .98rem; }
.site-footer h4 { color: #fff; margin-bottom: 1.1rem; }
.site-footer h4::after { content: ""; display: block; width: 40px; height: 4px; margin-top: .45rem; background: var(--red); transform: skewX(-30deg); }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer ul a { color: var(--steel); text-decoration: none; transition: color .2s ease, padding .2s ease; }
.site-footer ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact .icon { color: var(--red); margin-top: .2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .9rem; }
.footer-bottom p { margin: 0; text-align: center; }

/* ---------- Floating WhatsApp + mobile bar ---------- */
.float-wa {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25D366; color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.45);
  animation: bob 3s ease-in-out infinite;
}
.float-wa .icon { width: 30px; height: 30px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.mobile-bar { display: none; }
@media (max-width: 1024px) {
  body { padding-bottom: 64px; }
  .float-wa { bottom: 80px; right: 1rem; width: 52px; height: 52px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    box-shadow: 0 -6px 20px -8px rgba(0,0,0,.35);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 60px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
    text-decoration: none; color: #fff;
  }
  .mobile-bar-call { background: var(--red); }
  .mobile-bar-call .icon { animation: ring 2s ease-in-out infinite; }
  .mobile-bar-book { background: var(--navy); }
}
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  65%, 75%, 85% { transform: rotate(-15deg); }
  70%, 80%, 90% { transform: rotate(15deg); }
}

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal, .hero-copy > *, .hero-form { opacity: 1 !important; transform: none !important; }
  .speed span { transform: skewX(-30deg) !important; }
}
