:root {
  --brand: #1565c0;
  --brand-dark: #0d47a1;
  --brand-light: #bbdefb;
  --brand-soft: #e3f2fd;
  --accent: #166534;
  --accent-dark: #14532d;
  --accent-ui: #2db84d;
  --text: #0f172a;
  --muted: #475569;
  --surface: #f8fafc;
  --bg-page: #f4f7fb;
  --bg-section: #eef3f9;
  --bg-muted: #e8eef5;
  --glow: rgba(21, 101, 192, 0.22);
  --glow-accent: rgba(22, 101, 52, 0.22);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --bs-primary: #1565c0;
  --bs-primary-rgb: 21, 101, 192;
  --nav-bg: rgba(244, 247, 251, 0.94);
  --nav-dark-bg: rgba(15, 23, 42, 0.68);
  --nav-dark-utility-bg: rgba(0, 0, 0, 0.18);
  --border-brand: rgba(21, 101, 192, 0.12);
  --site-nav-utility-height: 2.35rem;
  --site-nav-main-height: 4.25rem;
  --site-nav-height: calc(var(--site-nav-utility-height) + var(--site-nav-main-height));
}

html { scroll-behavior: smooth; }

html, body { margin: 0; }

body.site-body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  background: var(--bg-page);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

.site-body > main,
.site-body > footer {
  position: relative;
  z-index: 1;
}
.site-body > nav {
  position: relative;
  z-index: 1030;
}

@media (max-width: 991.98px) {
  body.site-body.mobile-cta-active { padding-bottom: 4.5rem; }
}

.text-muted { color: var(--muted) !important; }

h1, h2, h3, h4, .display-5, .display-6 {
  letter-spacing: -0.02em;
}

/* ── Navbar ── */
.site-nav {
  background: var(--nav-dark-bg) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 0;
}
.site-nav__shell {
  display: flex;
  flex-direction: column;
}
.site-nav__utility-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--nav-dark-utility-bg);
}
.site-nav__utility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.1rem;
  min-height: var(--site-nav-utility-height);
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
}
.site-nav__utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.2rem 0.15rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav__utility-link i {
  font-size: 0.95rem;
  opacity: 0.95;
}
.site-nav__utility-link:hover {
  color: #fff;
}
.site-nav__utility-link.is-active,
.site-nav__utility-link--prices.is-active {
  color: #fff;
  background: rgba(45, 184, 77, 0.22);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.site-nav__utility-link--prices {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.site-nav__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: var(--site-nav-main-height);
}
.site-nav .navbar-brand {
  color: #fff !important;
  font-weight: 700;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}
.site-nav .navbar-toggler {
  padding: 0.35rem 0.5rem;
}
.site-nav .navbar-toggler-icon {
  filter: invert(1) brightness(1.85);
}
.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  border-radius: 8px;
  padding-left: 0.85rem !important;
  padding-right: 0.85rem !important;
}
.site-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.site-nav .nav-link.active {
  color: #fff !important;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
}
.site-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-ui), #7dd3fc);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  transform: scaleX(1);
}
.site-nav.scrolled {
  background: var(--nav-bg) !important;
  border-bottom-color: var(--border-brand);
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.1);
}
.site-nav.scrolled .site-nav__utility-wrap {
  background: rgba(21, 101, 192, 0.06);
  border-bottom-color: var(--border-brand);
}
.site-nav.scrolled .site-nav__utility-link {
  color: var(--muted);
}
.site-nav.scrolled .site-nav__utility-link:hover,
.site-nav.scrolled .site-nav__utility-link.is-active {
  color: var(--brand);
  background: rgba(21, 101, 192, 0.08);
}
.site-nav.scrolled .site-nav__utility-link--prices {
  color: var(--brand-dark);
}
.site-nav.scrolled .navbar-brand {
  color: var(--text) !important;
}
.site-nav.scrolled .navbar-toggler-icon {
  filter: none;
}
.site-nav.scrolled .nav-link {
  color: var(--muted) !important;
  background: transparent;
}
.site-nav.scrolled .nav-link:hover {
  color: var(--brand) !important;
  background: rgba(21, 101, 192, 0.06);
}
.site-nav.scrolled .nav-link.active {
  color: var(--brand) !important;
  background: rgba(21, 101, 192, 0.08);
}
.site-nav.scrolled .nav-link::after {
  background: linear-gradient(90deg, var(--brand), var(--accent-ui));
}

/* Homepage: fixed nav over full-viewport hero */
body.site-body:has(.home-main > .hero-photo:first-child) .bubble-bg {
  display: none;
}
body.site-body:has(.home-main > .hero-photo:first-child) .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 991.98px) {
  .site-nav__utility {
    justify-content: center;
    gap: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }
  .site-nav__utility-link span {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-nav .navbar-collapse.show,
  .site-nav .navbar-collapse.collapsing {
    margin-top: 0.5rem;
    padding: 0.65rem 0.85rem 0.85rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-nav.scrolled .navbar-collapse.show,
  .site-nav.scrolled .navbar-collapse.collapsing {
    background: #fff;
    border-color: var(--border-brand);
  }
  .site-nav.scrolled .navbar-collapse .nav-link {
    color: var(--muted) !important;
  }
}
.home-main > .hero-photo:first-child {
  padding-top: calc(var(--site-nav-height) + 1rem);
}
@media (min-width: 992px) {
  .home-main > .hero-photo:first-child {
    padding-top: calc(var(--site-nav-height) + 1.25rem);
  }
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px var(--glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow);
}

.btn-phone {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px var(--glow-accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-phone:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow-accent);
}

/* ── Hero stack (text top + full image) ── */
.hero-stack {
  background: #fff;
}
.hero-stack__top {
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-soft) 100%);
  border-top: 1px solid rgba(26, 111, 212, 0.08);
  padding: 2rem 0 1.75rem;
}
.hero-stack__lead { max-width: 36rem; }
.hero-stack__image {
  background: #f1f5f9;
  line-height: 0;
}
.hero-stack__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 992px) {
  .hero-stack__top { padding: 2.5rem 0 2rem; }
}

/* ── Photo hero (overlay) ── */
.hero-photo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
.home-main > .hero-photo:first-child {
  min-height: 100vh;
  min-height: 100dvh;
}
.hero-photo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.06);
}
.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.62) 32%, rgba(15, 23, 42, 0.28) 58%, rgba(15, 23, 42, 0.08) 100%),
    linear-gradient(105deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.35) 42%, transparent 72%);
}
@media (min-width: 992px) {
  .hero-photo__img {
    object-position: right center;
  }
  .hero-photo__overlay {
    background: linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.88) 0%,
      rgba(15, 23, 42, 0.72) 28%,
      rgba(15, 23, 42, 0.35) 42%,
      rgba(15, 23, 42, 0.08) 50%,
      transparent 58%
    );
  }
  .hero-photo__content {
    padding: 3rem 0;
  }
  .hero-photo__content .col-lg-5 {
    max-width: 520px;
  }
}
.hero-photo__content {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0 3.5rem;
  color: #fff;
}
.hero-photo .section-eyebrow {
  color: var(--accent-ui);
}
.hero-photo__lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}
.hero-photo .stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  animation: none;
  backdrop-filter: blur(6px);
}
.hero-photo .stat-pill i { color: var(--accent-ui) !important; }
.hero-photo .stat-pill a { color: #fff !important; }
.hero-photo__btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.hero-photo__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 767.98px) {
  .hero-photo__img { object-position: 75% center; }
  .hero-photo__overlay {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 55%, rgba(15, 23, 42, 0.5) 100%);
  }
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-section);
  border-bottom: 1px solid rgba(26, 111, 212, 0.14);
  padding: 1.25rem 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.trust-bar__item i {
  font-size: 1.35rem;
  color: var(--brand);
  flex-shrink: 0;
}
.trust-bar__item span { color: var(--muted); font-weight: 500; }

/* ── Hero (legacy light) ── */
.hero-light {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(45, 184, 77, 0.15), transparent),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26, 111, 212, 0.12), transparent),
              linear-gradient(180deg, #ffffff 0%, var(--brand-soft) 100%);
  overflow: hidden;
}
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.12), rgba(45, 184, 77, 0.08));
  animation: floatBubble 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-bubble.b1 { width: 120px; height: 120px; top: 10%; left: 5%; animation-delay: 0s; }
.hero-bubble.b2 { width: 80px;  height: 80px;  top: 60%; left: 15%; animation-delay: -2s; }
.hero-bubble.b3 { width: 160px; height: 160px; top: 20%; right: 8%; animation-delay: -4s; }
.hero-bubble.b4 { width: 60px;  height: 60px;  bottom: 15%; right: 20%; animation-delay: -1s; }
@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(12px, -18px) scale(1.05); }
  66%       { transform: translate(-8px, 10px) scale(0.95); }
}

.hero-logo-wrap .site-logo--hero {
  width: min(100%, 360px);
  height: auto;
}

/* ── Site logo (wide horizontal asset — size by width, not square box) ── */
.site-logo {
  object-fit: contain;
  object-position: left center;
  display: block;
  height: auto;
}
.site-logo--nav {
  width: 132px;
  max-height: 52px;
  transition: width 0.3s ease, max-height 0.3s ease;
}
body.site-body:has(.home-main > .hero-photo:first-child) .site-logo--nav {
  width: min(44vw, 220px);
  max-height: 80px;
}
body.site-body:has(.home-main > .hero-photo:first-child) .site-nav.scrolled .site-logo--nav {
  width: 148px;
  max-height: 56px;
}
.site-logo--hero-display {
  width: min(92%, 520px);
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.45));
}
.site-logo--hero-display-sm {
  width: min(78%, 300px);
  max-width: 300px;
}
.site-logo--footer {
  width: 148px;
  max-height: 58px;
}
.site-logo--hero {
  width: min(100%, 360px);
  max-height: none;
}
.sparkle { display: inline-block; }

/* ── Scroll reveal ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="left"]  { transform: translateX(-32px); }
[data-animate="right"] { transform: translateX(32px); }
[data-animate="scale"] { transform: scale(0.92); }
[data-animate="left"].is-visible,
[data-animate="right"].is-visible,
[data-animate="scale"].is-visible { transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ── Cards ── */
.anim-card {
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.1);
  border-radius: 1rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.anim-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 111, 212, 0.12);
  border-color: rgba(26, 111, 212, 0.22);
}
.anim-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.anim-card:hover .card-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--brand-light), rgba(45, 184, 77, 0.25));
}

/* ── Section titles ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

/* ── Ticker strip ── */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--brand-soft), #fff, var(--brand-soft));
  border-block: 1px solid rgba(26, 111, 212, 0.1);
  padding: 0.75rem 0;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.ticker-track i { color: var(--brand); margin-right: 0.35rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stat pills ── */
.stat-pill {
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.18);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 3.5rem 0 3rem;
  background-color: var(--bg-muted);
  background-image: radial-gradient(rgba(26, 111, 212, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: 1px solid rgba(26, 111, 212, 0.12);
}

/* ── Section rhythm ── */
.section-tint { background: var(--bg-section); }
.section-pad {
  padding: 5rem 0;
  background: var(--bg-page);
}
.section-pad.section-tint { background: var(--bg-section); }
main section.bg-white { background-color: var(--bg-muted) !important; }

/* ── Home page rhythm ── */
.home-tagline {
  padding: 2rem 0;
  background: var(--bg-page);
  border-bottom: 1px solid rgba(26, 111, 212, 0.1);
}
.home-tagline__text {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: 0.01em;
}
.home-main .section-pad {
  padding: 3.75rem 0;
}
.home-main .section-pad.section-tint {
  border-top: 1px solid rgba(26, 111, 212, 0.08);
}
.home-main .hero-photo__img {
  will-change: auto;
  transform: none;
}
.home-cta {
  border-top: 1px solid var(--border-brand);
}

/* ── Pickup request form (below hero) ── */
.pickup-band {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: 0.5rem;
}
.pickup-form-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border-brand);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  padding: 1.5rem 1.35rem;
}
@media (min-width: 992px) {
  .pickup-form-card {
    padding: 1.75rem 2rem;
  }
}
.pickup-form .form-control {
  border-color: rgba(21, 101, 192, 0.18);
}
.pickup-form .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.12);
}
.pickup-form__hint {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .pickup-form__hint {
    flex: 1 1 auto;
  }
}

/* ── Home: combined link grid ── */
.home-link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.home-link-card:hover { color: inherit; }

/* ── Home: horizontal process steps ── */
.home-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .home-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.home-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
}
.home-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.home-step__icon {
  display: block;
  font-size: 1.35rem;
  color: var(--brand);
  margin-bottom: 0.35rem;
}
.home-step__title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.home-step__text {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.45;
}

/* ── Home: asymmetric split block ── */
.home-split__img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.home-split__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.home-split__stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  border-radius: 0.75rem;
}
.home-split__stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--brand);
  line-height: 1.2;
}
.home-split__stat span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Design sample banner ── */
.design-sample-banner {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 0.65rem 0;
  font-size: 0.85rem;
  text-align: center;
}
.design-sample-banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.design-sample-banner a:hover { color: rgba(255, 255, 255, 0.9); }

/* ── Static caption band (no parallax) ── */
.caption-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.caption-band--sm { height: clamp(150px, 22vh, 220px); }
.caption-band--md { height: clamp(200px, 32vh, 320px); }
.caption-band--lg { height: clamp(260px, 42vh, 400px); }
.caption-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.caption-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.62) 0%,
    rgba(15, 23, 42, 0.42) 50%,
    rgba(15, 23, 42, 0.62) 100%
  );
}
.caption-band__text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
}
.caption-band__text p {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.45);
  max-width: 36rem;
}

/* ── Image parallax bands ── */
.parallax-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.parallax-band--sm { height: clamp(150px, 22vh, 220px); }
.parallax-band--md { height: clamp(200px, 32vh, 320px); }
.parallax-band--lg { height: clamp(260px, 42vh, 400px); }
.parallax-band__clip {
  position: absolute;
  inset: -28% 0;
  overflow: hidden;
}
.parallax-band__img {
  width: 100%;
  height: 135%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.12);
}
.parallax-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.62) 0%,
    rgba(15, 23, 42, 0.42) 50%,
    rgba(15, 23, 42, 0.62) 100%
  );
}
.parallax-band__caption {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
}
.parallax-band__caption p {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.45);
  max-width: 36rem;
}

/* ── Process steps ── */
.process-step {
  position: relative;
  padding-left: 3rem;
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0; top: 0;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: stepPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.process-step.is-visible::before { animation: stepPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
@keyframes stepPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ── Contact cards ── */
.contact-card {
  border-radius: 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 111, 212, 0.12);
}
.contact-card .bi {
  font-size: 2rem;
  color: var(--brand);
  animation: iconBob 2.5s ease-in-out infinite;
}
.contact-card:nth-child(2) .bi { animation-delay: -0.8s; }
.contact-card:nth-child(3) .bi { animation-delay: -1.6s; }
@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* ── FAQ ── */
.faq-page .accordion-button:not(.collapsed) {
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: none;
}
.faq-page .accordion-item {
  border-color: rgba(26, 111, 212, 0.12);
  margin-bottom: 0.5rem;
  border-radius: 0.75rem !important;
  overflow: hidden;
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-section) 55%, var(--brand-light) 100%);
  border-top: 1px solid rgba(26, 111, 212, 0.18);
  color: var(--text);
  margin-top: auto;
}
.footer-brand-title { font-weight: 800; font-size: 1.15rem; color: var(--text); }
.footer-brand-tagline { font-size: 0.8rem; color: var(--muted); }
.footer-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: 28rem; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover { color: var(--brand); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-contact .bi { color: var(--brand); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: var(--brand); text-decoration: none; font-weight: 600; }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.2);
  color: var(--brand);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}
.footer-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--glow);
  background: var(--brand-light);
  color: var(--brand);
}
.footer-mid {
  background: rgba(220, 232, 229, 0.75);
  border-top: 1px solid rgba(26, 111, 212, 0.12);
  border-bottom: 1px solid rgba(26, 111, 212, 0.12);
}
.footer-mid-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.footer-pay-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.footer-bottom { background: rgba(184, 220, 226, 0.45); }
.footer-copy { font-size: 0.85rem; color: var(--muted); }
.footer-legal a { font-size: 0.85rem; color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--brand); }

/* ── Gallery ── */
.gallery-filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(26, 111, 212, 0.22);
  color: var(--muted);
  background: var(--surface);
  transition: all 0.25s ease;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}
.gallery-card { background: none; cursor: pointer; }
.gallery-card-inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(26, 111, 212, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.gallery-card:hover .gallery-card-inner {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(26, 111, 212, 0.18);
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-caption { font-size: 0.9rem; font-weight: 600; }
.gallery-card-overlay .bi { font-size: 1.25rem; }
.gallery-item.is-hidden { display: none !important; }
.gallery-modal-img { max-height: 70vh; object-fit: contain; background: #f8fafc; }

/* ── Locations ── */
.location-card .badge { font-size: 0.7rem; }
.location-info-panel { background: var(--surface); }
.location-hero .breadcrumb a { color: var(--brand); text-decoration: none; }
.location-hero .breadcrumb-item.active { color: var(--muted); }

.store-card-map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
}
.store-card .badge { font-size: 0.7rem; }

/* ── Landing pages ── */
.landing-main { overflow-x: hidden; }

.lp-section {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}
.lp-hero { padding: 4rem 0 5rem; }
.lp-hero-compact { padding: 3.5rem 0 4rem; }

.lp-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lp-section > .container,
.lp-section > .ticker-wrap { position: relative; z-index: 1; }

.lp-bg-bubbles {
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(45, 184, 77, 0.12), transparent),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26, 111, 212, 0.1), transparent),
              linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-section) 100%);
}
.lp-bg-gradient {
  background: linear-gradient(90deg, var(--bg-section), var(--bg-page) 50%, var(--bg-section));
}
.lp-bg-gradient-reverse {
  background: linear-gradient(135deg, var(--bg-page) 0%, var(--bg-section) 50%, var(--bg-page) 100%);
}
.lp-bg-dots {
  background-color: var(--bg-page);
  background-image: radial-gradient(rgba(26, 111, 212, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lp-bg-mesh {
  background: linear-gradient(135deg, var(--bg-page) 0%, var(--brand-light) 40%, var(--bg-muted) 100%);
}
.lp-bg-lines {
  background: linear-gradient(180deg, var(--bg-muted), var(--bg-section));
}
.lp-bg-shimmer {
  background: linear-gradient(110deg, var(--bg-page) 0%, var(--bg-section) 45%, var(--bg-page) 90%);
  background-size: 200% 100%;
  animation: lpShimmer 8s ease-in-out infinite;
}
@keyframes lpShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lp-bg-map {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-page) 100%);
}
.lp-bg-cta {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--bg-muted) 50%, var(--bg-section) 100%);
}

.lp-bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.14), rgba(45, 184, 77, 0.08));
  animation: floatBubble 9s ease-in-out infinite;
}
.lp-b1 { width: 140px; height: 140px; top: 8%; left: 4%; }
.lp-b2 { width: 90px; height: 90px; top: 55%; left: 12%; animation-delay: -2s; }
.lp-b3 { width: 180px; height: 180px; top: 15%; right: 6%; animation-delay: -4s; }
.lp-b4 { width: 70px; height: 70px; bottom: 12%; right: 18%; animation-delay: -1s; }

.lp-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath fill='%23f0f9ff' d='M0,30 C300,60 600,0 900,30 C1050,45 1150,40 1200,30 L1200,60 L0,60 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 100% 100%;
  opacity: 0.9;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: lpOrb 12s ease-in-out infinite;
}
.lp-orb-1 { width: 200px; height: 200px; background: rgba(26, 111, 212, 0.15); top: 10%; right: 10%; }
.lp-orb-2 { width: 160px; height: 160px; background: rgba(45, 184, 77, 0.12); bottom: 15%; left: 5%; animation-delay: -5s; }
@keyframes lpOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.1); }
}

.lp-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 111, 212, 0.2), transparent);
  animation: lpLine 6s ease-in-out infinite;
}
.lp-line-1 { width: 40%; top: 25%; left: 10%; }
.lp-line-2 { width: 35%; bottom: 30%; right: 8%; animation-delay: -3s; }
@keyframes lpLine {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

.lp-hero-media { position: relative; }
.lp-hero-img { display: block; aspect-ratio: 3/2; object-fit: cover; }
.lp-hero-showcase {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(145deg, var(--surface) 0%, var(--bg-section) 55%, var(--brand-light) 100%);
  border: 1px solid rgba(26, 111, 212, 0.12);
  overflow: hidden;
  min-height: 320px;
}
.lp-showcase-glow {
  position: absolute;
  inset: -20% 10% auto;
  height: 55%;
  background: radial-gradient(circle, rgba(45, 184, 77, 0.22), transparent 70%);
  animation: lpShowcaseGlow 6s ease-in-out infinite;
}
@keyframes lpShowcaseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.lp-showcase-orbit {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
}
.lp-showcase-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(26, 111, 212, 0.25);
  border-radius: 50%;
  animation: lpShowcaseSpin 18s linear infinite;
}
@keyframes lpShowcaseSpin {
  to { transform: rotate(360deg); }
}
.lp-showcase-core,
.lp-showcase-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.15);
}
.lp-showcase-core {
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  animation: lpShowcasePulse 2.5s ease-in-out infinite;
}
@keyframes lpShowcasePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}
.lp-showcase-icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
  animation: lpShowcaseFloat 4s ease-in-out infinite;
}
.lp-showcase-icon--1 { top: 0; left: 50%; margin-left: -1.25rem; }
.lp-showcase-icon--2 { right: 0; top: 50%; margin-top: -1.25rem; animation-delay: -1s; }
.lp-showcase-icon--3 { bottom: 0; left: 50%; margin-left: -1.25rem; animation-delay: -2s; }
.lp-showcase-icon--4 { left: 0; top: 50%; margin-top: -1.25rem; animation-delay: -3s; }
@keyframes lpShowcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.lp-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.lp-showcase-stat {
  background: rgba(247, 250, 250, 0.92);
  border: 1px solid rgba(26, 111, 212, 0.1);
  border-radius: 0.85rem;
  padding: 0.65rem 0.75rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-showcase-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(26, 111, 212, 0.12);
}
.lp-showcase-stat i {
  display: block;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}
.lp-showcase-stat__label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.lp-showcase-stat strong {
  display: block;
  font-size: 0.82rem;
  color: #0f172a;
}
.lp-showcase-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(26, 111, 212, 0.12);
  padding-top: 0.75rem;
  margin-top: 0.15rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-showcase-ticker__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: lpShowcaseTicker 24s linear infinite;
}
.lp-showcase-ticker__track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
}
.lp-showcase-ticker__track i {
  color: var(--accent-ui);
  margin-right: 0.3rem;
  font-size: 0.65rem;
}
@keyframes lpShowcaseTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.lp-hero-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.lp-breadcrumb a { color: var(--brand); text-decoration: none; }
.lp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
}
.lp-highlight-row { transition: transform 0.3s ease; }
.lp-service-card:hover { transform: translateY(-6px); }

.lp-process-step { border-left: 3px solid var(--brand); }
.lp-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-gallery-card img { aspect-ratio: 4/3; object-fit: cover; display: block; }
.lp-map-frame iframe { display: block; min-height: 280px; }
.lp-rates-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.lp-area-link:hover { transform: translateY(-4px); color: inherit; }
.lp-soc-link { color: var(--muted); padding: 0.35rem 0; }
.lp-soc-link:hover { color: var(--brand); }

.lp-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-soft);
  color: var(--brand);
}

.lp-ticker .ticker-wrap { background: transparent; }

/* ── Price list page ── */
.prices-page .prices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 992px) {
  .prices-page .prices-grid { grid-template-columns: 1fr; }
}
.price-cat-card {
  background: var(--surface);
  border: 1px solid rgba(26, 111, 212, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 111, 212, 0.08);
}
.price-cat-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.price-cat-card--ladies .price-cat-card__head { background: linear-gradient(135deg, #e11d48, #f43f5e); }
.price-cat-card--children .price-cat-card__head { background: linear-gradient(135deg, #ea580c, #f97316); }
.price-cat-card--household .price-cat-card__head { background: linear-gradient(135deg, #059669, #10b981); }
.price-cat-card__count {
  opacity: 0.85;
  font-size: 0.75rem;
  font-weight: 600;
}
.price-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.price-table th {
  background: var(--brand-soft);
  padding: 0.55rem 0.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--muted);
}
.price-table td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}
.price-table tbody tr:hover { background: rgba(212, 232, 229, 0.55); }
.price-table .col-num { width: 2rem; text-align: center; color: var(--muted); font-weight: 600; }
.price-table .col-item { word-break: break-word; }
.price-table .col-price {
  width: 5.25rem;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.78rem;
}
.price-table .col-price--dc { color: var(--brand); }
.price-table .col-price--pr { color: var(--accent-dark); }
.price-na { color: #64748b; }
.price-dash { color: #cbd5e1; }
.prices-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.prices-fab {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 100;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 6px 22px var(--glow);
  transition: transform 0.2s ease;
}
.prices-fab:hover { color: #fff; transform: translateY(-2px); }
.prices-fab--print {
  right: max(1rem, env(safe-area-inset-right));
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.prices-fab--pdf {
  right: calc(max(1rem, env(safe-area-inset-right)) + 4rem);
  background: linear-gradient(135deg, #059669, #10b981);
}
.prices-fab--pdf-mobile {
  right: calc(max(1rem, env(safe-area-inset-right)) + 7rem);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}
@media (max-width: 991.98px) {
  .prices-fab {
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}
@media (max-width: 768px) {
  .prices-fab--pdf-desktop { display: none !important; }
  .prices-actions .pdf-link-desktop { display: none; }
}
@media (min-width: 769px) {
  .prices-fab--pdf-mobile { display: none !important; }
  .prices-actions .pdf-link-mobile { display: none; }
}
@media print {
  .prices-fab, .site-nav, .site-footer, .prices-actions { display: none !important; }
  body.site-body { background: #fff; }
  .price-cat-card { break-inside: avoid; page-break-inside: avoid; }
}

/* ── Footer (legacy link rule) ── */
.site-footer a { color: inherit; }

/* ── Mobile sticky CTA ── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-brand);
  padding: 0.55rem max(0.5rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.5rem, env(safe-area-inset-left));
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}
.mobile-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 0.25rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand);
  transition: background 0.2s ease;
}
.mobile-cta__btn i { font-size: 1.2rem; }
.mobile-cta__btn:hover { background: var(--brand-soft); color: var(--brand-dark); }
.mobile-cta__btn--wa { color: var(--accent); }
.mobile-cta__btn--wa:hover { background: #e8f5e9; color: var(--accent-dark); }
.mobile-cta__btn--brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}
.mobile-cta__btn--brand:hover { color: #fff; opacity: 0.92; }

/* ── Laundry bubble background (subtle) ── */
.bubble-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.35;
}
.bubble-bg__bubble {
  position: absolute;
  left: var(--left);
  bottom: -12%;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.6) 0%, rgba(187, 222, 251, 0.25) 38%, rgba(21, 101, 192, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 -3px 8px rgba(21, 101, 192, 0.04),
    0 3px 10px rgba(21, 101, 192, 0.03);
  animation: bubbleRise var(--duration) linear var(--delay) infinite;
}
@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.35; }
  85% { opacity: 0.15; }
  100% { transform: translateY(-115vh) translateX(var(--drift)) scale(1.08); opacity: 0; }
}

/* ── Service category cards ── */
.service-cat-card {
  min-height: 5.75rem;
}
.service-cat-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  text-align: center;
  line-height: 1;
}
.service-cat-card__body {
  min-width: 0;
  flex: 1;
}

/* ── Legal pages ── */
.legal-prose {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p,
.legal-prose ul { margin-bottom: 1rem; }
.legal-prose ul { padding-left: 1.25rem; }
.legal-prose li { margin-bottom: 0.35rem; }
.legal-prose a { color: var(--brand); font-weight: 600; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .lp-showcase-ticker__track { animation: none; }
  .bubble-bg__bubble { animation: none; opacity: 0.2; }
  .parallax-band__img,
  .hero-photo__img { transform: none !important; }
}
