/* ==========================================================================
   Bubbles & Bows — Homepage + inner page-hero styles
   ========================================================================== */

/* ---------- Hero (split layout with bubble-framed photo) ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--sky-50) 0%, var(--white) 46%, var(--pink-50) 100%);
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem;
  align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--sky-700); background: var(--white);
  border: 2px solid var(--sky-200); border-radius: var(--radius-pill);
  padding: 0.45rem 1.2rem; margin-bottom: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--rose-600); }
.hero-lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 32rem; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.8rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: 0.95rem; font-weight: 800; color: var(--ink-soft); }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-meta svg { color: var(--rose-600); flex: none; }

.hero-photo { position: relative; }
.hero-photo-frame {
  border-radius: 38% 62% 55% 45% / 45% 48% 52% 55%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 8px solid var(--white);
  aspect-ratio: 1 / 0.92;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .float-badge {
  position: absolute; bottom: 6%; left: -4%;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: 0.9rem 1.3rem;
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-display); font-weight: 600; color: var(--ink-strong);
}
.float-badge .paw { width: 40px; height: 40px; flex: none; }
.float-badge small { display: block; font-family: var(--font-body); font-weight: 700; color: var(--ink-soft); font-size: 0.82rem; }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-photo { max-width: 480px; margin-inline: auto; width: 100%; }
  .hero-photo .float-badge { left: 2%; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); padding: 1.6rem 0; border-bottom: 1px solid var(--pink-100); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; }
.trust-item { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 800; color: var(--ink-strong); font-size: 0.98rem; }
.trust-item svg { color: var(--rose-600); flex: none; }

/* ---------- Services preview ---------- */
.service-card .card-img-wrap { position: relative; }
.service-price-chip {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.94); color: var(--rose-700);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius-pill); padding: 0.35rem 0.95rem;
  box-shadow: var(--shadow-soft);
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; counter-reset: step; }
.step {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem; box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  background: var(--sky-100); color: var(--sky-700);
  margin-bottom: 1.1rem;
}
.step:nth-child(2) .step-num { background: var(--pink-100); color: var(--rose-700); }
.step p { color: var(--ink-soft); font-size: 0.99rem; margin: 0; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Gallery strip (marquee) ---------- */
.gallery-strip { overflow: hidden; padding: 0.5rem 0 0; }
.gallery-track { display: flex; gap: 1.2rem; width: max-content; animation: marquee 38s linear infinite; }
.gallery-strip:hover .gallery-track { animation-play-state: paused; }
.gallery-track img {
  height: 230px; width: auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); object-fit: cover;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* ---------- Hours + map ---------- */
.hours-map { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.4rem; align-items: start; }
.hours-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 2rem 2.1rem;
}
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3; border: 6px solid var(--white);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 880px) { .hours-map { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(135deg, var(--pink-100), var(--sky-100)); overflow: hidden; }
.cta-band-inner { position: relative; z-index: 2; text-align: center; padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.cta-band h2 { margin-bottom: 0.6rem; }
.cta-band p { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 2rem; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--sky-50), var(--white) 55%, var(--pink-50));
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
  text-align: left;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 0.6rem; max-width: 18ch; }
.page-hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 56ch; margin: 0; }
