/* ================================================================
   MR CLEAN'S MOBILE — mrcleansmobile.com
   Design system built from the logo: bright blue + navy + orange,
   rounded display type, sparkle & suds motifs.
   Built per BUILD-PROMPT.md · v1
   ================================================================ */

/* ---------- tokens ---------- */
:root {
  --blue: #1d4ed8;
  --blue-2: #2f6bf0;
  --blue-3: #4f83f7;
  --sky: #38bdf8;
  --navy: #132a63;
  --ink: #0b1533;
  --ink-2: #10204a;
  --orange: #f97316;
  --orange-2: #ea580c;
  --gold: #f5b301;
  --paper: #f6f9ff;
  --card: #ffffff;
  --text: #24345f;
  --head: #10245c;
  --mut: #5c6b95;
  --line: rgba(19, 42, 99, 0.12);
  --ease: cubic-bezier(0.22, 0.9, 0.28, 1);
  --shadow: 0 10px 30px rgba(19, 42, 99, 0.10);
  --shadow-lg: 0 24px 60px rgba(19, 42, 99, 0.16);
  --r: 18px;
  --r-lg: 26px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg, video, canvas { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Baloo 2", "Inter", sans-serif;
  color: var(--head);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1em; }
.container { width: min(1180px, 92vw); margin-inline: auto; }
.container-wide { width: min(1360px, 94vw); margin-inline: auto; }
::selection { background: rgba(56, 189, 248, 0.35); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 3000;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 0 0 14px 14px; transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: "Baloo 2", sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-2);
}
.eyebrow::before { content: "✦"; color: var(--orange); font-size: 1em; }
.dark .eyebrow, .band-dark .eyebrow { color: var(--sky); }
.o { color: var(--orange); }
.b { color: var(--blue-2); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--mut); max-width: 56ch; }
.band-dark .lead { color: #b9c6ea; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.02rem;
  padding: 0.86em 1.7em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(180deg, #ff8a3d, var(--orange) 55%, var(--orange-2));
  color: #fff; box-shadow: 0 10px 24px rgba(249, 115, 22, 0.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(249, 115, 22, 0.46); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--head); border-color: rgba(19, 42, 99, 0.25); }
.btn-ghost:hover { border-color: var(--blue-2); color: var(--blue-2); transform: translateY(-3px); }
.band-dark .btn-ghost, .sweep .btn-ghost { color: #eaf0ff; border-color: rgba(234, 240, 255, 0.35); }
.band-dark .btn-ghost:hover, .sweep .btn-ghost:hover { border-color: var(--sky); color: var(--sky); }
.btn-blue { background: linear-gradient(180deg, var(--blue-3), var(--blue-2) 60%, var(--blue)); color: #fff; box-shadow: 0 10px 24px rgba(29, 78, 216, 0.35); }
.btn-blue:hover { transform: translateY(-3px); }
.btn-lg { font-size: 1.14rem; padding: 1em 2.1em; }
.btn-sm { font-size: 0.92rem; padding: 0.62em 1.25em; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.link-arrow {
  font-family: "Baloo 2", sans-serif; font-weight: 700; color: var(--blue-2);
  display: inline-flex; gap: 0.4em; align-items: center;
  position: relative;
}
.link-arrow::after { content: "→"; transition: transform 0.25s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- progress + header ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  z-index: 1002;
}
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: transform 0.4s var(--ease), background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
  padding: 14px 0;
}
.site-header.hidden { transform: translateY(-110%); }
.site-header .bar {
  display: flex; align-items: center; gap: 28px;
  width: min(1320px, 94vw); margin-inline: auto;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(19, 42, 99, 0.10);
  padding: 9px 0;
}
.header-dark:not(.scrolled) { color: #fff; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 4px 12px rgba(11, 21, 51, 0.25); }
.brand .word {
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.32rem; letter-spacing: -0.02em;
  color: var(--blue-2); line-height: 1;
}
.brand .word b { color: var(--navy); font-weight: 800; }
.brand .word small { display: block; font-family: "Inter", sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mut); margin-top: 3px; }
.header-dark:not(.scrolled) .brand .word b { color: #dbe7ff; }
.header-dark:not(.scrolled) .brand .word small { color: #9fb2dd; }

.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-weight: 600; font-size: 0.98rem; color: var(--head); position: relative; padding: 4px 0;
}
.header-dark:not(.scrolled) .nav-links a { color: #e6edff; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2.5px; width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.header-cta { margin-left: 6px; }
.hamburger {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 10px;
}
.hamburger span { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--head); margin: 5px 0; transition: 0.3s var(--ease); }
.header-dark:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(160deg, var(--ink), var(--navy));
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2rem; color: #eaf0ff;
  padding: 8px 20px; transform: translateY(14px); opacity: 0; transition: 0.4s var(--ease);
}
.mobile-menu.open a { transform: none; opacity: 1; }
.mobile-menu a.active { color: var(--sky); }
.mobile-menu .btn { margin-top: 18px; }
.mobile-menu::after {
  content: "✦"; position: absolute; bottom: 7vh; font-size: 1.4rem; color: rgba(56, 189, 248, 0.5);
}

/* ---------- mobile sticky bar ---------- */
.mobile-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 950;
  display: none; gap: 10px; padding: 10px;
  background: rgba(11, 21, 51, 0.78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px; box-shadow: 0 14px 40px rgba(11, 21, 51, 0.45);
}
.mobile-bar .btn { flex: 1; font-size: 1rem; padding: 0.8em 0.4em; }
.mobile-bar .btn-ghost { color: #eaf0ff; border-color: rgba(234, 240, 255, 0.35); }

/* ================================================================
   THE HERO — same look as v1's opening frame, no scroll-jacking
   ================================================================ */
.sweep { position: relative; background: var(--ink); }
.sweep-pin {
  position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden;
  display: flex; align-items: center; padding: 110px 0 70px;
}
.sweep-bg { position: absolute; inset: 0; }
.sweep-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(58% 48% at 72% 40%, rgba(47, 107, 240, 0.30), transparent 70%),
    radial-gradient(40% 36% at 18% 20%, rgba(56, 189, 248, 0.14), transparent 70%),
    radial-gradient(70% 55% at 50% 110%, rgba(16, 32, 74, 0.9), transparent 72%),
    linear-gradient(178deg, #0a1430 0%, #0e1c44 48%, #0b1533 100%);
}
.sweep-bg::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.5; mix-blend-mode: overlay; pointer-events: none; }
.beam {
  position: absolute; top: -22%; width: 30vw; height: 150%;
  background: linear-gradient(180deg, rgba(120, 170, 255, 0.10), transparent 68%);
  transform: skewX(-14deg); filter: blur(14px);
}
.beam.b1 { left: 12%; } .beam.b2 { left: 46%; width: 18vw; opacity: 0.7; } .beam.b3 { right: 4%; width: 24vw; opacity: 0.5; }

.sweep-grid {
  position: relative; z-index: 3; width: min(1320px, 94vw); margin-inline: auto;
  display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: 3vw;
}
.sweep-copy { color: #eaf0ff; padding-bottom: 6vh; }
.sweep-copy h1 { color: #fff; margin: 0.35em 0 0.32em; }
.sweep-copy .lead { color: #bccbf2; margin-bottom: 1.5em; }
.sweep-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.sweep-rating {
  display: flex; align-items: center; gap: 10px; margin-top: 26px;
  font-size: 0.92rem; color: #9fb2dd;
}
.sweep-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.sweep-rating b { color: #fff; }

.sweep-stagewrap { position: relative; }
.sweep-stage {
  position: relative; width: 100%; aspect-ratio: 1212 / 1016;
  filter: drop-shadow(0 30px 50px rgba(4, 10, 28, 0.55));
  animation: herofloat 7s ease-in-out infinite alternate;
}
@keyframes herofloat { from { transform: translateY(0); } to { transform: translateY(-7px); } }
.sweep-stage .art-clean { width: 100%; height: auto; }
.floor-shadow {
  position: absolute; left: 8%; right: 8%; bottom: -4.5%; height: 12%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(3, 8, 22, 0.65), transparent 70%);
  filter: blur(6px); z-index: -1;
}

.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; bottom: -60px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.85), rgba(174, 228, 255, 0.25) 55%, rgba(174, 228, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.85; }
  100% { transform: translateY(-108vh) translateX(var(--drift, 30px)); opacity: 0; }
}

.sweep-cue {
  position: absolute; z-index: 6; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(190, 208, 250, 0.5); border-radius: 15px;
}
.sweep-cue::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 9px; border-radius: 3px;
  background: var(--sky); transform: translateX(-50%); animation: cue 1.6s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translate(-50%, 0); opacity: 1; } 70% { transform: translate(-50%, 14px); opacity: 0; } 100% { opacity: 0; } }

.reduce .sweep-cue, .reduce .bubble { display: none; }
.reduce .sweep-stage { animation: none; }

/* ================================================================
   HOME SECTIONS
   ================================================================ */
section { position: relative; }
.pad { padding: clamp(70px, 9vw, 120px) 0; }
.pad-sm { padding: clamp(48px, 6vw, 76px) 0; }

/* marquee */
.marquee {
  background: linear-gradient(90deg, var(--blue), var(--blue-2) 55%, var(--blue));
  color: #fff; overflow: hidden; padding: 13px 0; position: relative; z-index: 5;
}
.marquee .track { display: flex; width: max-content; animation: marq 30s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee ul { display: flex; list-style: none; margin: 0; padding: 0; }
.marquee li {
  display: flex; align-items: center; gap: 26px; padding-right: 26px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.09em;
  text-transform: uppercase; white-space: nowrap;
}
.marquee li::after { content: "✦"; color: var(--sky); }
@keyframes marq { to { transform: translateX(-50%); } }

/* section heads */
.sec-head { max-width: 720px; margin-bottom: clamp(34px, 4.5vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .lead { margin-inline: auto; }

/* two big service cards */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 30px); }
.svc-card {
  position: relative; background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--sky));
}
.svc-card .icon { position: absolute; top: 22px; right: 18px; width: clamp(84px, 9vw, 128px); opacity: 0.96; transform: rotate(4deg); transition: transform 0.5s var(--ease); }
.svc-card:hover .icon { transform: rotate(-3deg) scale(1.06); }
.svc-card .from { font-family: "Baloo 2", sans-serif; color: var(--mut); font-weight: 600; font-size: 0.95rem; }
.svc-card .from b { color: var(--orange-2); font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.svc-card h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; max-width: 76%; }
.svc-card ul { list-style: none; padding: 0; margin: 6px 0 16px; display: grid; gap: 8px; }
.svc-card li { padding-left: 26px; position: relative; color: var(--text); font-size: 0.98rem; }
.svc-card li::before { content: "✦"; position: absolute; left: 0; color: var(--sky); font-size: 0.85em; top: 0.2em; }
.svc-card .cta-row { margin-top: auto; display: flex; align-items: center; gap: 18px; }

/* how it works */
.steps, .value-grid { counter-reset: step; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); position: relative; }
.steps::before {
  content: ""; position: absolute; top: 54px; left: 12%; right: 12%; height: 0;
  border-top: 3px dashed rgba(47, 107, 240, 0.3); z-index: 0;
}
.step {
  position: relative; z-index: 1; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px 26px; box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .num {
  counter-increment: step; width: 64px; height: 64px; border-radius: 22px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(160deg, var(--blue-2), var(--blue)); color: #fff;
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.7rem;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.35); transform: rotate(-4deg);
}
.step .num::before { content: counter(step); }
.step:nth-child(2) .num { background: linear-gradient(160deg, #ff8a3d, var(--orange-2)); box-shadow: 0 10px 22px rgba(249, 115, 22, 0.35); transform: rotate(3deg); }
.step:nth-child(3) .num { background: linear-gradient(160deg, var(--sky), #0ea5e9); box-shadow: 0 10px 22px rgba(56, 189, 248, 0.35); }
.step h3 { margin-bottom: 0.3em; }
.step p { color: var(--mut); font-size: 0.98rem; margin: 0; }
.step .tag { display: inline-block; margin-top: 14px; font-size: 0.8rem; font-weight: 700; color: var(--blue-2); background: rgba(47, 107, 240, 0.1); padding: 4px 12px; border-radius: 999px; }

/* bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.tile {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 34px); box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.t-4 { grid-column: span 4; } .t-5 { grid-column: span 5; } .t-3 { grid-column: span 3; }
.t-6 { grid-column: span 6; } .t-7 { grid-column: span 7; } .t-8 { grid-column: span 8; }
.tile .big {
  font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--head); line-height: 1; letter-spacing: -0.02em;
}
.tile .cap { color: var(--mut); font-size: 0.95rem; margin-top: 6px; }
.tile.tile-blue { background: linear-gradient(160deg, var(--blue-2), var(--blue)); border: 0; }
.tile.tile-blue .big, .tile.tile-blue h3 { color: #fff; }
.tile.tile-blue .cap { color: #cddcff; }
.tile.tile-orange { background: linear-gradient(160deg, #ff9046, var(--orange-2)); border: 0; }
.tile.tile-orange .big, .tile.tile-orange h3 { color: #fff; }
.tile.tile-orange .cap { color: #ffe3cd; }
.tile .stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 3px; }
.tile ul.checks { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 9px; }
.tile ul.checks li { padding-left: 30px; position: relative; }
.tile ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 0.28em; width: 18px; height: 18px; border-radius: 6px;
  background: rgba(56, 189, 248, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.town-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.town-chips span {
  font-size: 0.85rem; font-weight: 600; color: var(--head);
  background: rgba(47, 107, 240, 0.09); border: 1px solid rgba(47, 107, 240, 0.18);
  padding: 5px 13px; border-radius: 999px;
}
.tile-blue .town-chips span { color: #eaf0ff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.22); }

/* odometer */
.odom { display: inline-flex; overflow: hidden; }
.odom .col { display: inline-block; height: 1em; overflow: hidden; }
.odom .strip { display: inline-flex; flex-direction: column; transform: translateY(0); transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
.odom .strip b { height: 1em; line-height: 1; }

/* dark bands */
.band-dark { background: linear-gradient(175deg, var(--ink) 0%, var(--ink-2) 60%, var(--ink) 100%); color: #dfe8ff; position: relative; }
.band-dark::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.4; mix-blend-mode: overlay; pointer-events: none; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark > * { position: relative; }

/* reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.review {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(160, 190, 255, 0.16);
  border-radius: var(--r-lg); padding: 30px 28px; position: relative;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.review:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.08); }
.review::before {
  content: "“"; position: absolute; top: -6px; left: 18px; font-family: "Baloo 2", sans-serif;
  font-size: 5rem; color: rgba(56, 189, 248, 0.35); line-height: 1;
}
.review .stars { color: var(--gold); letter-spacing: 2.5px; margin-bottom: 12px; }
.review p { color: #ccd8f6; font-size: 1rem; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review .who .av {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Baloo 2", sans-serif; font-weight: 800; color: #fff;
  background: linear-gradient(160deg, var(--blue-2), var(--blue));
}
.review:nth-child(2) .who .av { background: linear-gradient(160deg, #ff9046, var(--orange-2)); }
.review:nth-child(3) .who .av { background: linear-gradient(160deg, var(--sky), #0284c7); }
.review .who b { color: #fff; display: block; line-height: 1.2; }
.review .who small { color: #8fa3d4; }

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden;
}
.band-dark .faq details { background: rgba(255, 255, 255, 0.05); border-color: rgba(160, 190, 255, 0.16); box-shadow: none; }
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 54px 19px 24px; position: relative;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.06rem; color: var(--head);
}
.band-dark .faq summary { color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(47, 107, 240, 0.1); color: var(--blue-2);
  font-weight: 700; transition: transform 0.3s var(--ease), background 0.3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--orange); color: #fff; }
.faq .a { padding: 0 24px 20px; color: var(--mut); }
.band-dark .faq .a { color: #b9c6ea; }

/* final CTA band */
.cta-band { text-align: center; overflow: hidden; }
.cta-band h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 20ch; margin-inline: auto; }
.cta-band .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.cta-band .watermark {
  position: absolute; right: -60px; bottom: -70px; width: 380px; opacity: 0.1;
  transform: rotate(-8deg); pointer-events: none;
}
.cta-phone { color: #9fb2dd; margin-top: 22px; font-size: 0.95rem; }
.cta-phone a { color: var(--sky); font-weight: 700; }

/* footer */
footer { background: var(--ink); color: #b9c6ea; position: relative; overflow: hidden; }
footer::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.35; mix-blend-mode: overlay; pointer-events: none; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr; gap: clamp(26px, 4vw, 60px);
  padding: clamp(54px, 6vw, 80px) 0 40px; position: relative;
}
.foot-brand .word { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--sky); }
.foot-brand .word b { color: #fff; }
.foot-brand p { font-size: 0.95rem; color: #8fa3d4; max-width: 30ch; margin-top: 12px; }
.foot-brand img { width: 54px; height: 54px; border-radius: 50%; margin-bottom: 14px; }
footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 18px; font-family: "Inter", sans-serif; font-weight: 700; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
footer ul a { color: #b9c6ea; transition: color 0.25s; font-size: 0.98rem; }
footer ul a:hover { color: var(--sky); }
.foot-contact li { display: flex; gap: 10px; align-items: baseline; font-size: 0.98rem; }
.foot-contact .ic { color: var(--sky); font-size: 0.8rem; }
.foot-bottom {
  border-top: 1px solid rgba(160, 190, 255, 0.14); padding: 22px 0 26px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.85rem; color: #8fa3d4; position: relative;
}
.foot-star { position: absolute; right: 4vw; bottom: 120px; font-size: 9rem; color: rgba(56, 189, 248, 0.05); pointer-events: none; }
.foot-credit { border-top: 1px solid rgba(160, 190, 255, 0.1); padding: 30px 0 36px; text-align: center; position: relative; }
.foot-credit a {
  display: inline-flex; align-items: center; gap: 16px; color: #b9c6ea; font-size: 1.02rem;
  background: rgba(232, 179, 75, 0.07);
  border: 1px solid rgba(232, 179, 75, 0.4);
  border-radius: 18px; padding: 14px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.foot-credit a:hover {
  transform: translateY(-3px); border-color: #e8b34b;
  background: rgba(232, 179, 75, 0.12);
  box-shadow: 0 12px 34px rgba(232, 179, 75, 0.22);
}
.foot-credit svg { width: 56px; height: 56px; border-radius: 14px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45); flex: none; transition: transform 0.3s var(--ease); }
.foot-credit a:hover svg { transform: rotate(-5deg) scale(1.07); }
.foot-credit .cr-text { text-align: left; line-height: 1.3; }
.foot-credit small { display: block; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8fa3d4; margin-bottom: 3px; }
.foot-credit b {
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.22em;
  background: linear-gradient(90deg, #e8b34b, #f2da9a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 560px) {
  .foot-credit a { width: 100%; justify-content: center; }
}

/* ================================================================
   INNER PAGE HERO STRIPS
   ================================================================ */
.page-hero {
  padding: 150px 0 64px; text-align: center; color: #e8efff; position: relative; overflow: hidden;
  background:
    radial-gradient(50% 60% at 80% 10%, rgba(47, 107, 240, 0.35), transparent 70%),
    radial-gradient(40% 50% at 12% 20%, rgba(56, 189, 248, 0.16), transparent 70%),
    linear-gradient(175deg, #0a1430, #10204a 70%, #0b1533);
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.45; mix-blend-mode: overlay; pointer-events: none; }
.page-hero .crumb {
  display: inline-flex; gap: 12px; align-items: center; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #8fa3d4; margin-bottom: 18px;
}
.page-hero .crumb .sep { color: var(--orange); }
.page-hero .crumb a { color: #8fa3d4; } .page-hero .crumb a:hover { color: var(--sky); }
.page-hero h1 { color: #fff; position: relative; z-index: 1; }
.page-hero .lead { margin: 10px auto 0; color: #b9c6ea; position: relative; z-index: 1; }
.page-hero .spark-l, .page-hero .spark-r { position: absolute; color: rgba(56, 189, 248, 0.5); font-size: 1.6rem; }
.page-hero .spark-l { left: 12%; top: 40%; animation: twinkle 3.2s ease-in-out infinite; }
.page-hero .spark-r { right: 14%; top: 58%; font-size: 1.1rem; animation: twinkle 2.7s 0.9s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0.25; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.15); } }

/* pricing cards (services page) */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.price-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.price-card.pop { border: 2px solid var(--orange); }
.price-card.pop::before {
  content: "Most booked"; position: absolute; top: -13px; left: 24px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em;
  background: linear-gradient(90deg, #ff8a3d, var(--orange-2)); color: #fff;
  padding: 4px 14px; border-radius: 999px; box-shadow: 0 6px 14px rgba(249, 115, 22, 0.4);
}
.price-card .name { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--head); }
.price-card .tagline { color: var(--mut); font-size: 0.9rem; min-height: 2.6em; }
.price-card .price { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--head); letter-spacing: -0.03em; margin: 8px 0 2px; }
.price-card .price small { font-size: 0.95rem; color: var(--mut); font-weight: 600; letter-spacing: 0; }
.price-card .time { font-size: 0.85rem; font-weight: 700; color: var(--blue-2); background: rgba(47, 107, 240, 0.09); align-self: flex-start; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.price-card li { padding-left: 26px; position: relative; font-size: 0.95rem; }
.price-card li::before { content: "✦"; position: absolute; left: 0; top: 0.2em; color: var(--sky); font-size: 0.8em; }
.price-card .btn { margin-top: auto; }
.addons { display: flex; flex-wrap: wrap; gap: 10px; }
.addons span {
  background: var(--card); border: 1px dashed rgba(47, 107, 240, 0.4); color: var(--head);
  font-weight: 600; font-size: 0.92rem; padding: 9px 18px; border-radius: 999px;
}
.addons b { color: var(--orange-2); }

/* about page */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split .art { filter: drop-shadow(0 24px 40px rgba(19, 42, 99, 0.25)); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.badge-row span {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--head);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 10px 18px; border-radius: 999px;
}
.badge-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2); }

/* contact page */
.contact-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.ct {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 34px 28px; text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ct:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.ct .ic {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 20px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--blue-2), var(--blue)); color: #fff; font-size: 1.5rem;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.3); transform: rotate(-4deg);
}
.ct:nth-child(2) .ic { background: linear-gradient(160deg, #ff9046, var(--orange-2)); box-shadow: 0 10px 22px rgba(249, 115, 22, 0.3); transform: rotate(3deg); }
.ct:nth-child(3) .ic { background: linear-gradient(160deg, var(--sky), #0284c7); box-shadow: 0 10px 22px rgba(56, 189, 248, 0.3); }
.ct b { font-family: "Baloo 2", sans-serif; font-size: 1.2rem; color: var(--head); display: block; margin-bottom: 4px; }
.ct p { color: var(--mut); font-size: 0.92rem; margin-bottom: 14px; }
.hours { max-width: 560px; margin-inline: auto; }
.hours table { width: 100%; border-collapse: collapse; }
.hours td { padding: 13px 10px; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--head); }
.hours tr.closed td:last-child { color: var(--orange-2); }

/* generic form bits (contact page quick form) */
.form-grid { display: grid; gap: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--head); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--head);
  background: #fff; border: 2px solid rgba(19, 42, 99, 0.14); border-radius: 14px;
  padding: 13px 16px; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(47, 107, 240, 0.14);
}
.field.err input, .field.err select, .field.err textarea { border-color: #e11d48; }
.field .msg { font-size: 0.8rem; color: #e11d48; margin-top: 5px; min-height: 1em; }
.field.ok input { border-color: rgba(34, 197, 94, 0.5); }

/* ================================================================
   BOOKING WIZARD
   ================================================================ */
.book-wrap { display: grid; grid-template-columns: 1fr 320px; gap: clamp(22px, 3vw, 40px); align-items: start; }
.wizard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.wtabs { display: flex; border-bottom: 1px solid var(--line); background: #fbfdff; }
.wtab {
  flex: 1; text-align: center; padding: 17px 6px 15px; font-family: "Baloo 2", sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mut); position: relative; cursor: default; border: 0; background: none;
}
.wtab .n { color: var(--blue-2); margin-right: 4px; }
.wtab::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: linear-gradient(90deg, var(--orange), var(--sky)); transform: scaleX(0); transition: transform 0.35s var(--ease); }
.wtab.active { color: var(--head); }
.wtab.active::after { transform: scaleX(1); }
.wtab.done { color: var(--blue-2); cursor: pointer; }
.wtab.done .n::before { content: "✓ "; }
.wstep { display: none; padding: clamp(24px, 3vw, 38px); }
.wstep.active { display: block; animation: stepin 0.45s var(--ease); }
@keyframes stepin { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }
.wstep h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.wstep .hint { color: var(--mut); margin-bottom: 24px; }

.svc-pick { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 13px; margin-bottom: 8px; }
.svc-opt {
  position: relative; border: 2px solid rgba(19, 42, 99, 0.13); border-radius: var(--r);
  padding: 16px 15px 14px; cursor: pointer; background: #fff;
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.svc-opt:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-opt input { position: absolute; opacity: 0; pointer-events: none; }
.svc-opt .nm { display: block; font-family: "Baloo 2", sans-serif; font-weight: 700; color: var(--head); font-size: 1.02rem; line-height: 1.2; }
.svc-opt .pr { display: block; color: var(--orange-2); font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.3rem; line-height: 1.15; }
.svc-opt .pr small { font-size: 0.68em; font-weight: 700; color: var(--mut); margin-right: 3px; }
.svc-opt .tm { display: block; font-size: 0.78rem; color: var(--mut); line-height: 1.45; }
.svc-opt.sel { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(47, 107, 240, 0.14); }
.svc-opt.sel::after {
  content: "✓"; position: absolute; top: -11px; right: -9px; width: 26px; height: 26px;
  background: var(--blue-2); border-radius: 50%; color: #fff; display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 800; box-shadow: 0 4px 10px rgba(29, 78, 216, 0.4);
}
.svc-group-label { font-family: "Baloo 2", sans-serif; font-weight: 800; color: var(--head); margin: 20px 0 12px; display: flex; align-items: center; gap: 10px; }
.svc-group-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* calendar */
.cal-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 26px; align-items: start; }
.cal { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.cal-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 14px; background: linear-gradient(160deg, var(--blue-2), var(--blue)); color: #fff; }
.cal-head b { font-family: "Baloo 2", sans-serif; font-size: 1.05rem; letter-spacing: 0.03em; }
.cal-head button {
  background: rgba(255, 255, 255, 0.16); border: 0; color: #fff; width: 34px; height: 34px;
  border-radius: 10px; cursor: pointer; font-size: 1.05rem; transition: background 0.25s;
}
.cal-head button:hover { background: rgba(255, 255, 255, 0.3); }
.cal-head button[disabled] { opacity: 0.35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 10px; gap: 4px; }
.cal-dow { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--mut); padding: 8px 0 6px; text-transform: uppercase; }
.cal-day {
  aspect-ratio: 1; border: 0; background: none; border-radius: 12px; cursor: pointer;
  font: inherit; font-weight: 600; color: var(--head); position: relative;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.cal-day:hover:not([disabled]) { background: rgba(47, 107, 240, 0.1); transform: scale(1.06); }
.cal-day[disabled] { color: #b6c1dd; cursor: default; text-decoration: line-through; text-decoration-color: rgba(182, 193, 221, 0.6); }
.cal-day.today::after { content: ""; position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.cal-day.sel { background: linear-gradient(160deg, var(--blue-2), var(--blue)); color: #fff; box-shadow: 0 8px 18px rgba(29, 78, 216, 0.4); }
.slot-side h3 { font-size: 1.1rem; margin-bottom: 4px; }
.slot-side .picked-date { color: var(--mut); font-size: 0.92rem; margin-bottom: 16px; min-height: 1.4em; }
.slots { display: grid; gap: 10px; }
.slot {
  border: 2px solid rgba(19, 42, 99, 0.13); background: #fff; border-radius: 14px;
  padding: 13px 16px; cursor: pointer; font: inherit; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.slot:hover:not([disabled]) { transform: translateY(-2px); box-shadow: var(--shadow); }
.slot b { font-family: "Baloo 2", sans-serif; color: var(--head); }
.slot small { color: var(--mut); }
.slot.sel { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(47, 107, 240, 0.14); }
.slot[disabled] { opacity: 0.45; cursor: default; }
.next-avail {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35); color: #0369a1; font-weight: 600; font-size: 0.85rem;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 16px; cursor: pointer; transition: background 0.25s;
}
.next-avail:hover { background: rgba(56, 189, 248, 0.2); }

.wfoot { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px clamp(24px, 3vw, 38px) 26px; border-top: 1px solid var(--line); background: #fbfdff; }
.wback { background: none; border: 0; font: inherit; font-weight: 700; color: var(--mut); cursor: pointer; padding: 10px 14px; border-radius: 10px; transition: color 0.2s; }
.wback:hover { color: var(--head); }

/* summary rail */
.summary {
  position: sticky; top: 96px; border-radius: var(--r-lg); overflow: hidden;
  background: rgba(11, 21, 51, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #dfe8ff; box-shadow: var(--shadow-lg); border: 1px solid rgba(160, 190, 255, 0.18);
}
.summary .s-head { padding: 18px 22px 14px; border-bottom: 1px solid rgba(160, 190, 255, 0.16); display: flex; align-items: center; gap: 12px; }
.summary .s-head img { width: 40px; height: 40px; border-radius: 50%; }
.summary .s-head b { font-family: "Baloo 2", sans-serif; font-size: 1.05rem; color: #fff; }
.summary .s-head small { display: block; color: #8fa3d4; font-size: 0.78rem; }
.summary dl { margin: 0; padding: 16px 22px; display: grid; gap: 11px; }
.summary .row { display: flex; justify-content: space-between; gap: 14px; font-size: 0.92rem; }
.summary dt { color: #8fa3d4; }
.summary dd { margin: 0; text-align: right; color: #fff; font-weight: 600; }
.summary .row.tot { border-top: 1px dashed rgba(160, 190, 255, 0.25); padding-top: 13px; margin-top: 4px; }
.summary .row.tot dd { font-family: "Baloo 2", sans-serif; font-size: 1.3rem; color: var(--sky); }
.side-cards { display: grid; gap: 14px; margin-top: 16px; }
.side-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.side-card .ic {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(47, 107, 240, 0.1); color: var(--blue-2); font-size: 1.1rem;
}
.side-card b { font-size: 0.95rem; color: var(--head); display: block; }
.side-card p { font-size: 0.85rem; color: var(--mut); margin: 3px 0 0; }
.side-card a { font-weight: 700; }

/* success */
.success { text-align: center; padding: clamp(30px, 4vw, 50px); }
.success .check {
  width: 96px; height: 96px; margin: 0 auto 20px; border-radius: 50%;
  background: linear-gradient(160deg, #34d399, #059669); display: grid; place-items: center;
  box-shadow: 0 18px 40px rgba(5, 150, 105, 0.4); animation: popin 0.6s var(--ease);
}
@keyframes popin { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
.success .check svg { width: 46px; }
.success .check path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 0.7s 0.35s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success .ref {
  display: inline-block; font-family: "Baloo 2", sans-serif; font-weight: 800; letter-spacing: 0.1em;
  background: rgba(47, 107, 240, 0.1); color: var(--blue); border: 1px dashed rgba(47, 107, 240, 0.5);
  border-radius: 12px; padding: 8px 20px; font-size: 1.15rem; margin: 6px 0 16px;
}
.success .cal-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 20px 0 8px; }
.success .nextsteps { text-align: left; max-width: 440px; margin: 26px auto 0; background: #fbfdff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 24px; }
.success .nextsteps b { color: var(--head); }
.success .nextsteps ol { margin: 10px 0 0; padding-left: 20px; color: var(--mut); display: grid; gap: 7px; font-size: 0.95rem; }
.notice-amber {
  background: #fff7ed; border: 1px solid #fdba74; color: #9a3412; border-radius: 14px;
  padding: 14px 18px; font-size: 0.92rem; margin: 14px auto 0; max-width: 480px; text-align: left;
}

/* confetti suds */
.suds-burst { position: fixed; inset: 0; pointer-events: none; z-index: 1200; }
.suds-burst i {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.95), rgba(174, 228, 255, 0.4) 60%, rgba(56, 189, 248, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: sudfall var(--dur, 2.4s) var(--ease) forwards;
}
@keyframes sudfall {
  0% { transform: translate(0, 0) scale(0.3); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translate(var(--dx, 0), var(--dy, 70vh)) scale(1); opacity: 0; }
}

/* ---------- reveals ---------- */
.reveal, .reveal-left, .reveal-right { opacity: 1; }
.reveal.reveal-pending { opacity: 0; transform: translateY(34px); }
.reveal-left.reveal-pending { opacity: 0; transform: translateX(-44px); }
.reveal-right.reveal-pending { opacity: 0; transform: translateX(44px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.d1 { transition-delay: 0.08s !important; } .d2 { transition-delay: 0.16s !important; }
.d3 { transition-delay: 0.24s !important; } .d4 { transition-delay: 0.32s !important; }

/* ---------- page wipe + preloader ---------- */
#wipe {
  position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  background: linear-gradient(160deg, var(--blue-2), var(--blue) 60%, var(--navy));
  transform: translateY(101%); display: grid; place-items: center;
  visibility: hidden;
}
#wipe.in, #wipe.out, #wipe.cover { visibility: visible; }
#wipe.cover { transform: translateY(0); }
#wipe.in { transition: transform 0.4s var(--ease); transform: translateY(0); }
#wipe.out { transition: transform 0.55s 0.06s var(--ease); transform: translateY(-101%); }
#wipe::after { content: "✦"; color: #fff; font-size: 2.2rem; opacity: 0.9; }
#preloader {
  position: fixed; inset: 0; z-index: 2100; background: var(--ink);
  display: grid; place-items: center; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
#preloader.done { opacity: 0; visibility: hidden; }
#preloader img { width: 86px; height: 86px; border-radius: 50%; animation: plpulse 1s var(--ease) infinite alternate; }
#preloader .pl-rule { width: 150px; height: 3px; background: rgba(160, 190, 255, 0.2); border-radius: 3px; margin-top: 22px; overflow: hidden; }
#preloader .pl-rule i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--orange), var(--sky)); transform: scaleX(0); transform-origin: left; }
@keyframes plpulse { from { transform: scale(1); } to { transform: scale(1.07); } }

/* ---------- 404 ---------- */
.err-page { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 100px 20px 60px; }
.err-page img { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 24px; transform: rotate(-8deg); box-shadow: 0 20px 50px rgba(4, 10, 28, 0.6); }
.err-page h1 { color: #fff; }
.err-page .code { font-family: "Baloo 2", sans-serif; font-weight: 800; color: var(--sky); letter-spacing: 0.3em; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .header-cta { display: none; }
  .hamburger { display: block; }
  .book-wrap { grid-template-columns: 1fr; }
  .summary { position: static; order: -1; }
  .side-cards { grid-template-columns: 1fr 1fr; }
  /* solid header instead of backdrop blur = smoother scrolling on phones */
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  /* 16px inputs stop iOS Safari's auto-zoom on focus */
  .field input, .field select, .field textarea { font-size: 16px; }
}
@media (max-width: 960px) {
  .sweep-pin { padding: 96px 0 46px; }
  .sweep-grid { grid-template-columns: 1fr; gap: 18px; align-content: center; }
  .sweep-copy { padding-bottom: 0; text-align: center; }
  .sweep-copy .lead { margin-inline: auto; }
  .sweep-ctas { justify-content: center; }
  .sweep-rating { justify-content: center; flex-wrap: wrap; row-gap: 4px; }
  .sweep-stage { max-width: min(80vw, 46vh); margin-inline: auto; }
  .sweep-cue { display: none; }
  .svc-grid, .reviews, .steps, .value-grid, .contact-tiles, .price-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .t-3, .t-4, .t-5 { grid-column: span 3; }
  .t-6, .t-7, .t-8 { grid-column: span 6; }
  .split { grid-template-columns: 1fr; }
  .split .art { order: -1; max-width: 420px; margin-inline: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cal-wrap { grid-template-columns: 1fr; }
  .svc-pick { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body.has-mobile-bar { padding-bottom: 86px; }
  .wtab { font-size: 0.72rem; letter-spacing: 0.03em; }
  .wtab .lbl { display: none; }
  .wtab.active .lbl { display: inline; }
}
@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .svc-pick, .grid-2, .side-cards { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .t-3, .t-4, .t-5, .t-6, .t-7, .t-8 { grid-column: span 2; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .sweep-pct { display: none; }
  .sweep-phase { min-width: 0; }
  .cta-band .watermark { width: 240px; right: -50px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .marquee .track { animation: none; }
  html { scroll-behavior: auto; }
}
