:root {
  --charcoal: #1e1e1e;
  --dark: #111111;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --border: #e6e6e3;
  --muted: #686868;
  --success: #2f6b4f;
  --shadow: 0 1px 2px rgba(17, 17, 17, 0.05), 0 10px 28px rgba(17, 17, 17, 0.06);
  --radius: 16px;
  --space: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--charcoal);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--white);
  animation: introExit 460ms cubic-bezier(0.76, 0, 0.24, 1) 2.2s forwards;
  pointer-events: none;
}

.intro-copy {
  width: min(100% - 32px, 920px);
  display: grid;
  gap: 10px;
  overflow: hidden;
  font-size: clamp(42px, 10vw, 104px);
  font-weight: 800;
  line-height: 0.95;
}

.intro-copy small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(12px, 2.4vw, 16px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  animation: introFadeUp 520ms ease forwards;
}

.intro-copy span {
  display: block;
  transform: translateY(110%);
  animation: introWord 800ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-copy span:nth-of-type(1) {
  animation-delay: 180ms;
}

.intro-copy span:nth-of-type(2) {
  animation-delay: 580ms;
}

.intro-copy span:nth-of-type(3) {
  animation-delay: 980ms;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
}

.brand-logo {
  width: 132px;
  height: 42px;
  display: block;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 13px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-left: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--charcoal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lucide-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.mobile-search-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
}

.search-icon {
  width: 21px;
  height: 21px;
}

.header-search {
  margin-right: 0;
}

.header-search input {
  width: 180px;
  padding: 10px 16px 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: width 0.2s, background 0.2s, border-color 0.2s;
}

.header-search input:focus {
  width: 220px;
  background: var(--white);
  border-color: var(--charcoal);
}

.location-chip,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

.location-detect-button {
  min-height: 44px;
  max-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off-white);
  color: var(--charcoal);
  padding: 10px 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.location-detect-button:hover {
  transform: translateY(-2px);
  border-color: #c9c9c2;
  box-shadow: var(--shadow);
}

.location-detect-button:disabled {
  cursor: progress;
}

.pin-icon {
  width: 18px;
  height: 18px;
}

.mobile-location-action {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off-white);
  color: var(--charcoal);
  font-weight: 900;
  margin-top: 8px;
}

.mobile-city-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-city-form label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.mobile-city-form div,
.city-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mobile-city-form input {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
}

.mobile-city-form button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  padding: 0 16px;
  font-weight: 900;
}

.location-chip {
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 14px;
}

.button {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.16);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  background: var(--charcoal);
  color: var(--white);
}

.button-primary:hover {
  background: var(--dark);
}

.button-secondary {
  border-color: var(--border);
  background: var(--white);
  color: var(--charcoal);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
}

.menu-button .lucide-icon {
  width: 22px;
  height: 22px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 2px 0;
  background: var(--charcoal);
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 12px 20px 18px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 800;
}

.mobile-search-bar {
  display: none;
}

.hero-section {
  background: var(--off-white);
  padding: 88px 0 76px;
  display: none;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 720ms ease forwards;
}

.hero-copy > *:nth-child(2) { animation-delay: 120ms; }
.hero-copy > *:nth-child(3) { animation-delay: 220ms; }
.hero-copy > *:nth-child(4) { animation-delay: 320ms; }
.hero-copy > *:nth-child(5) { animation-delay: 420ms; }
.hero-copy > *:nth-child(6) { animation-delay: 520ms; }
.hero-copy > *:nth-child(7) { animation-delay: 620ms; }

.booking-preview {
  animation: floatCard 4200ms ease-in-out infinite;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.uc-category-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow);
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeSlideUp 600ms ease-out both;
}

.mini-card:nth-child(1) { animation-delay: 200ms; }
.mini-card:nth-child(2) { animation-delay: 300ms; }
.mini-card:nth-child(3) { animation-delay: 400ms; }
.mini-card:nth-child(4) { animation-delay: 500ms; }

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.mini-card .line-icon {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.hero-grid,
.booking-grid,
.areas-grid,
.service-hero-grid,
.result-grid,
.coverage-grid,
.final-cta-inner,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero-shop {
  display: grid;
  gap: 32px;
}

.hero-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 160px;
  gap: 10px;
  min-height: 500px;
}

.hero-image-mosaic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  background: var(--off-white);
  animation: fadeInUp 700ms ease both;
}

.hero-image-mosaic .mosaic-large {
  grid-row: span 2;
}

.hero-image-mosaic img:nth-child(2) {
  animation-delay: 120ms;
}

.hero-image-mosaic img:nth-child(3) {
  animation-delay: 220ms;
}

.hero-image-mosaic img:nth-child(4) {
  animation-delay: 320ms;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}

h1,
h2,
.story-background-word,
.story-card > span {
  font-family: "Bricolage Grotesque", "Manrope", Arial, sans-serif;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.18;
}

p {
  color: var(--muted);
  max-width: 640px;
}

.hero-text {
  max-width: 660px;
  font-size: 19px;
}

.trust-message,
.payment-note {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin: 18px 0 26px;
  border: 1px solid rgba(47, 107, 79, 0.24);
  border-radius: 18px;
  background: rgba(47, 107, 79, 0.08);
  color: var(--success);
  padding: 12px 16px;
  font-weight: 800;
  list-style: none;
}

.trust-message li {
  position: relative;
  padding-left: 22px;
}

.trust-message li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  background: var(--success);
}

.hero-search {
  max-width: 520px;
  display: grid;
  gap: 8px;
  margin: 6px 0 24px;
  font-weight: 800;
}

.hero-search input {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 18px;
  background: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 30px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-points span,
.city-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 12px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.trust-points span {
  animation: softPulse 2600ms ease-in-out infinite;
}

.booking-preview,
.service-facts,
.area-panel,
.booking-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.preview-label {
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-preview ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.is-hidden-section {
  display: none;
}

.we-story-simple {
  background: #111315;
  color: var(--white);
  overflow: hidden;
}

.we-quote-stage {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.we-quote-stage p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
}

.we-quote {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(46px, 8.8vw, 118px);
  line-height: 0.9;
}

.we-quote span {
  display: block;
  opacity: 0;
  transform: translateY(48px);
}

.we-story-simple.is-visible .we-quote span {
  animation: quoteRise 780ms cubic-bezier(0.18, 0.84, 0.2, 1) forwards;
}

.we-story-simple.is-visible .we-quote span:nth-child(2) {
  animation-delay: 160ms;
}

.we-story-simple.is-visible .we-quote span:nth-child(3) {
  animation-delay: 320ms;
}

.we-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.we-story-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #17191b;
  padding: 24px;
  animation: fadeInUp 700ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.we-story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
}

.we-story-card:nth-child(2) {
  animation-delay: 120ms;
}

.we-story-card:nth-child(3) {
  animation-delay: 240ms;
}

.we-story-card span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Bricolage Grotesque", "Manrope", Arial, sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.8;
}

.we-story-card h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.we-story-card p {
  color: rgba(255, 255, 255, 0.68);
}

.we-story-card.is-strong {
  background: var(--white);
  color: var(--charcoal);
}

.we-story-card.is-strong h3 {
  color: var(--charcoal);
}

.we-story-card.is-strong p {
  color: var(--muted);
}

.we-story-card.is-strong span {
  color: rgba(17, 17, 17, 0.07);
}

.we-story-card .button {
  width: fit-content;
  margin-top: 12px;
}

.urbanwe-story {
  position: relative;
  min-height: 320vh;
  background: #111315;
  color: var(--white);
}

.story-sticky-container {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.story-background-word {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-size: clamp(8rem, 28vw, 24rem);
  font-weight: 900;
  color: var(--white);
  opacity: 0.04;
  line-height: 0.8;
  letter-spacing: -0.04em;
  transform: scale(var(--story-word-scale, 1));
  will-change: transform, opacity;
  transition: opacity 180ms ease;
}

.story-background-line {
  position: absolute;
  top: 10vh;
  width: 100%;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.we-line {
  position: absolute;
  inset: 12vh 3vw auto;
  z-index: 1;
  width: 94vw;
  height: min(76vh, 680px);
  pointer-events: none;
}

.we-line path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.we-line-base {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 3;
}

.we-line-active {
  stroke: #ff5a36;
  stroke-width: 3.5;
  stroke-dasharray: 1300;
  stroke-dashoffset: calc(1300 - (var(--story-progress, 0) * 1300));
}

.we-logo-line {
  stroke: #ffffff;
  stroke-width: 4;
  opacity: var(--story-logo-opacity, 0);
  stroke-dasharray: 760;
  stroke-dashoffset: calc(760 - (var(--story-logo-opacity, 0) * 760));
  transition: opacity 300ms ease;
}

.story-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.story-person,
.assignment-card,
.booking-phone,
.coordination-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.story-person {
  width: min(25vw, 320px);
  min-width: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  transform: translate3d(0, 0, 0);
  transition: opacity 320ms ease, transform 420ms ease;
}

.story-person img {
  width: 100%;
  height: 315px;
  display: block;
  object-fit: cover;
}

.story-person figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.story-professional {
  left: 6vw;
  bottom: 11vh;
  opacity: var(--pro-opacity, 1);
  transform: translate3d(var(--pro-x, -24px), var(--pro-y, 0), 0);
  clip-path: inset(0 var(--pro-mask, 0) 0 0 round 28px);
}

.story-customer {
  right: 6vw;
  bottom: 11vh;
  opacity: var(--customer-opacity, 0);
  transform: translate3d(var(--customer-x, 80px), var(--customer-y, 0), 0);
  clip-path: inset(0 0 0 var(--customer-mask, 42%) round 28px);
}

.assignment-card,
.booking-phone,
.coordination-card {
  border-radius: 22px;
  padding: 18px;
  color: var(--white);
  transition: opacity 320ms ease, transform 420ms ease;
}

.assignment-card {
  left: 27vw;
  bottom: 8vh;
  width: 230px;
  opacity: var(--assign-opacity, 1);
  transform: translate3d(0, var(--assign-y, 0), 0);
}

.assignment-card span,
.booking-phone span,
.coordination-card span {
  display: block;
  color: #ffb29f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assignment-card strong,
.coordination-card strong {
  display: block;
  margin: 6px 0;
  font-size: 22px;
  line-height: 1.1;
}

.assignment-card small {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.booking-phone {
  right: 27vw;
  bottom: 8vh;
  width: 230px;
  opacity: var(--phone-opacity, 0);
  transform: translate3d(0, var(--phone-y, 32px), 0) scale(var(--phone-scale, 0.96));
}

.booking-phone ol,
.coordination-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.booking-phone li,
.coordination-card li {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.booking-phone li.is-active,
.booking-phone li.story-step-active,
.coordination-card li {
  background: rgba(255, 90, 54, 0.18);
  color: #ffffff;
}

.coordination-card {
  left: 50%;
  top: 69%;
  width: min(100% - 48px, 420px);
  opacity: var(--coord-opacity, 0);
  transform: translate3d(-50%, calc(-50% + var(--coord-y, 30px)), 0) scale(var(--coord-scale, 0.96));
}

.story-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: min(100% - 32px, 620px);
  z-index: 20;
  text-align: center;
}

.story-copy h2,
.story-copy h3,
.story-copy p,
.story-points {
  transition: opacity 180ms ease;
}

.fade-switch {
  opacity: 0 !important;
}

.story-copy .eyebrow {
  color: var(--primary);
  margin-bottom: 24px;
}

.story-copy h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  text-wrap: balance;
}

.story-copy h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  text-wrap: balance;
}

.story-copy p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.7);
}

.story-progress {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 25;
  display: inline-flex;
  gap: 8px;
  translate: -50% 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.72);
  padding: 8px;
  backdrop-filter: blur(14px);
}

.story-progress button {
  min-width: 62px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

.story-progress button.is-active {
  background: var(--white);
  color: var(--charcoal);
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-points li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.story-progress {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 8;
  display: none;
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.72);
  padding: 7px;
  backdrop-filter: blur(12px);
}

.story-progress button {
  min-width: 58px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.story-progress button.is-active {
  background: var(--white);
  color: #111315;
}

/* Clean story version 2 */
.urbanwe-story {
  min-height: 260vh;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.055), transparent 34%),
    #111315;
}

.urbanwe-story .we-line,
.urbanwe-story .story-stage {
  display: none;
}

.urbanwe-story .story-background-word {
  top: 52%;
  font-size: clamp(9rem, 30vw, 25rem);
  opacity: 0.055;
}

.urbanwe-story .story-background-line {
  top: 15vh;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.urbanwe-story .story-copy {
  top: 49%;
  width: min(100% - 36px, 760px);
}

.urbanwe-story .story-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.urbanwe-story .story-copy h2 {
  font-size: clamp(4.2rem, 9vw, 9.4rem);
  line-height: 0.86;
}

.urbanwe-story .story-copy h3,
.urbanwe-story .story-copy p {
  max-width: 620px;
  margin-inline: auto;
}

.urbanwe-story .story-points {
  display: none;
}

.urbanwe-story .story-points li {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

.section-soft {
  background: linear-gradient(180deg, var(--off-white), #ffffff);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.service-unavailable-card,
.popular-card,
.trust-grid article,
.steps-grid article,
.review-grid article,
.option-card,
.coverage-card {
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.popular-card:hover,
.trust-grid article:hover,
.option-card:hover {
  transform: translateY(-8px);
  border-color: #d7d7d2;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.12);
}

.service-card,
.popular-card,
.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card[data-card-href],
.popular-card[data-card-href] {
  cursor: pointer;
}

.service-unavailable-card {
  grid-column: 1 / -1;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  border-style: dashed;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 90, 54, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--off-white));
}

.service-unavailable-card .pin-icon {
  width: 42px;
  height: 42px;
  color: var(--charcoal);
  opacity: 0.72;
}

.service-unavailable-card h3 {
  max-width: 620px;
  margin-inline: auto;
  font-size: clamp(28px, 4vw, 44px);
}

.service-unavailable-card p {
  margin-inline: auto;
}

.unavailable-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.popular-empty {
  grid-column: 1 / -1;
  min-height: auto;
  text-align: center;
  background: var(--off-white);
}

.service-icon-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.12);
  animation: iconFloat 3400ms ease-in-out infinite;
}

.service-photo,
.popular-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: var(--off-white);
  transition: transform 320ms ease;
}

.service-card:hover .service-photo,
.popular-card:hover .popular-photo {
  transform: scale(1.055);
}

.service-card:hover .service-icon-badge,
.trust-grid article:hover .line-icon {
  animation: iconBounce 620ms ease;
}

.service-photo {
  height: 132px;
}

.popular-photo {
  height: 108px;
}

.option-photo,
.summary-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
}

.option-photo {
  height: 154px;
  transition: transform 320ms ease;
}

.option-card:hover .option-photo {
  transform: scale(1.035);
}

.option-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.option-card .button {
  min-height: 48px;
  margin-top: 10px;
}

.summary-photo {
  height: 160px;
  margin-bottom: 18px;
}

.service-card p,
.popular-card p,
.option-card p {
  margin-bottom: auto;
}

.service-card p {
  display: none;
}

.service-card h3 {
  margin-bottom: 0;
}

.service-card p,
.popular-card p,
.trust-grid p,
.steps-grid p,
.review-grid p {
  font-size: 14px;
  line-height: 1.45;
}

.service-card strong,
.popular-card strong,
.option-card strong {
  color: var(--charcoal);
}

.service-card strong {
  margin-top: auto;
}

.uc-service-card {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.uc-service-card .service-photo {
  height: 150px;
  border-radius: 0;
}

.uc-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.uc-price-row,
.uc-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.uc-price-row strong {
  margin-top: 0;
  font-size: 18px;
}

.uc-price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.uc-card-actions .button {
  width: auto;
  flex: 1;
  min-height: 42px;
  margin-top: 0;
}

.city-required {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.hero-search input:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.service-card .button,
.popular-card .button,
.option-card .button {
  width: 100%;
  margin-top: 8px;
}

.popular-card {
  gap: 8px;
  padding: 16px;
}

.popular-card h3 {
  margin-bottom: 2px;
  font-size: 20px;
}

.popular-card p {
  margin: 0;
}

.popular-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.text-action {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-bottom: 2px solid var(--charcoal);
  color: var(--charcoal);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.text-action:hover {
  transform: translateX(4px);
  color: var(--success);
  border-color: var(--success);
}

.popular-grid,
.trust-grid,
.steps-grid,
.review-grid,
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.popular-card span,
.popular-card small,
.option-card span,
.option-card small,
.review-grid span,
.review-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.line-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
  position: relative;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
}

.icon-cleaning::before { width: 28px; height: 20px; border: 2px solid var(--charcoal); border-radius: 8px; background: transparent; }
.icon-cleaning::after { width: 3px; height: 22px; right: 13px; top: 8px; transform: rotate(-18deg); }
.icon-ac::before { width: 34px; height: 14px; border: 2px solid var(--charcoal); border-radius: 5px; background: transparent; }
.icon-ac::after { width: 24px; height: 2px; top: 31px; }
.icon-appliance::before { width: 26px; height: 32px; border: 2px solid var(--charcoal); border-radius: 7px; background: transparent; }
.icon-appliance::after { width: 10px; height: 2px; top: 18px; }
.icon-electrician::before { width: 4px; height: 34px; transform: rotate(35deg); }
.icon-electrician::after { width: 24px; height: 4px; transform: rotate(-35deg); }
.icon-plumbing::before { width: 30px; height: 18px; border: 3px solid var(--charcoal); border-left: 0; border-bottom: 0; border-radius: 0 14px 0 0; background: transparent; }
.icon-plumbing::after { width: 8px; height: 8px; bottom: 10px; border-radius: 999px; background: var(--success); }
.icon-salon::before { width: 28px; height: 28px; border: 2px solid var(--charcoal); border-radius: 50%; background: transparent; }
.icon-salon::after { width: 22px; height: 8px; top: 13px; border-radius: 999px; }
.icon-pest::before { width: 26px; height: 20px; border: 2px solid var(--charcoal); border-radius: 50%; background: transparent; }
.icon-pest::after { width: 32px; height: 2px; transform: rotate(28deg); }
.icon-painting::before { width: 28px; height: 18px; border: 2px solid var(--charcoal); border-radius: 5px; background: transparent; }
.icon-painting::after { width: 4px; height: 22px; bottom: 7px; }
.icon-verified::before { width: 22px; height: 12px; border-left: 3px solid var(--success); border-bottom: 3px solid var(--success); transform: rotate(-45deg); background: transparent; }
.icon-price::before { width: 26px; height: 26px; border: 2px solid var(--charcoal); border-radius: 50%; background: transparent; }
.icon-price::after { width: 14px; height: 2px; }
.icon-payment::before { width: 30px; height: 22px; border: 2px solid var(--success); border-radius: 5px; background: transparent; }
.icon-payment::after { width: 20px; height: 2px; top: 20px; background: var(--success); }
.icon-support::before { width: 28px; height: 20px; border: 2px solid var(--charcoal); border-radius: 10px; background: transparent; }
.icon-support::after { width: 10px; height: 8px; bottom: 11px; left: 24px; clip-path: polygon(0 0, 100% 0, 0 100%); }
.icon-bathroom::before { width: 30px; height: 20px; border: 2px solid var(--charcoal); border-radius: 4px 4px 12px 12px; background: transparent; }
.icon-bathroom::after { width: 20px; height: 2px; top: 16px; background: var(--success); }
.icon-iron::before { width: 30px; height: 18px; border: 2px solid var(--charcoal); border-radius: 14px 6px 6px 6px; background: transparent; transform: skewX(-12deg); }
.icon-iron::after { width: 20px; height: 3px; bottom: 12px; background: var(--success); }
.icon-car::before { width: 34px; height: 16px; border: 2px solid var(--charcoal); border-radius: 10px 10px 5px 5px; background: transparent; }
.icon-car::after { width: 28px; height: 5px; bottom: 10px; border-radius: 999px; background: radial-gradient(circle at 4px 2px, var(--success) 0 3px, transparent 3px), radial-gradient(circle at 24px 2px, var(--success) 0 3px, transparent 3px); }

.steps-grid article span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  animation: stepPop 2600ms ease-in-out infinite;
}

.steps-grid {
  position: relative;
}

@media (min-width: 1041px) {
  .steps-grid::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 38px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--success), var(--border), transparent);
    background-size: 220% 100%;
    animation: lineFlow 2600ms linear infinite;
  }
}

.area-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}

.city-pill.live {
  color: var(--charcoal);
  border-color: rgba(220, 38, 38, 0.24);
  background: #fff7f7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.city-list.muted .city-pill {
  color: var(--muted);
  background: var(--off-white);
  font-size: 13px;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 18px;
  overflow: hidden;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-list details[open] {
  border-color: #d7d7d2;
  box-shadow: var(--shadow);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 18px;
  animation: fadeInUp 220ms ease;
}

.booking-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.form-steps span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.form-steps .is-active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--charcoal);
  padding: 11px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47, 107, 79, 0.18);
  outline-offset: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-summary {
  margin: 18px 0;
  box-shadow: none;
}

.booking-summary p,
.service-facts p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.booking-summary p:last-child,
.service-facts p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.booking-summary span,
.service-facts span {
  color: var(--muted);
}

.form-status {
  margin: 12px 0 0;
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--success);
}

.field-error {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.service-hero {
  background: var(--off-white);
  padding: 72px 0;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-facts {
  display: grid;
  gap: 12px;
}

.comparison-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.comparison-photo {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
}

.comparison-photo span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-photo img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.coverage-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-card li {
  position: relative;
  padding-left: 24px;
}

.coverage-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 12px;
  height: 2px;
  background: var(--success);
}

.final-cta {
  padding: 64px 0;
  background: var(--charcoal);
  color: var(--white);
}

.final-cta p {
  color: #d8d8d4;
}

.final-cta .eyebrow {
  color: #cce5d8;
}

.final-cta .button-primary {
  background: var(--white);
  color: var(--charcoal);
}

.mobile-whatsapp {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  min-height: 48px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
  animation: whatsappPulse 2200ms ease-in-out infinite;
}

.mobile-whatsapp.is-hidden-during-story {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  animation: none;
}

.mobile-call {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  width: 48px;
  min-height: 44px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--border);
  padding: 0;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 14px;
  font-weight: 800;
  transition: 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.city-dialog {
  width: min(100% - 32px, 520px);
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: transparent;
}

.city-dialog::backdrop {
  background: rgba(17, 17, 17, 0.42);
}

.city-dialog-card {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.city-dialog-card h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.city-dialog-card p {
  margin-bottom: 0;
}

.city-dialog-card label {
  margin-bottom: 0;
}

.city-input-row input {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 14px;
}

.city-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1;
}

.reveal,
.service-card,
.service-unavailable-card,
.popular-card,
.trust-grid article,
.steps-grid article,
.option-card,
.coverage-card,
.comparison-photo,
.booking-form,
.booking-summary {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 720ms ease var(--stagger, 0ms), transform 720ms ease var(--stagger, 0ms);
}

body:not(.motion-ready) .reveal,
body:not(.motion-ready) .service-card,
body:not(.motion-ready) .popular-card,
body:not(.motion-ready) .trust-grid article,
body:not(.motion-ready) .steps-grid article,
body:not(.motion-ready) .option-card,
body:not(.motion-ready) .coverage-card,
body:not(.motion-ready) .comparison-photo,
body:not(.motion-ready) .booking-form,
body:not(.motion-ready) .booking-summary {
  opacity: 1;
  transform: none;
}

.reveal.is-visible,
.service-card.is-visible,
.service-unavailable-card.is-visible,
.popular-card.is-visible,
.trust-grid article.is-visible,
.steps-grid article.is-visible,
.option-card.is-visible,
.coverage-card.is-visible,
.comparison-photo.is-visible,
.booking-form.is-visible,
.booking-summary.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonials-carousel {
  display: block;
  position: relative;
  min-height: 178px;
}

#finalWhatsapp {
  animation: whatsappPulse 2600ms ease-in-out infinite;
}

.testimonials-carousel article {
  display: none;
  opacity: 0;
  transform: translateX(30px);
}

.testimonials-carousel article.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: reviewSlide 620ms ease;
}

.testimonials-carousel article p {
  border-left: 3px solid var(--success);
  padding-left: 14px;
  color: var(--charcoal);
  font-size: 18px;
}

.is-loading {
  pointer-events: none;
  opacity: 0.72;
  animation: loadingPulse 700ms ease-in-out infinite;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--dark);
  color: var(--white);
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 22px;
}

.footer-brand,
.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: #d8d8d4;
}

.site-footer a {
  display: block;
  margin-top: 9px;
}

.site-footer .brand-mark {
  background: var(--white);
  color: var(--charcoal);
}

.site-footer .brand-logo {
  background: var(--white);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  opacity: 0.82;
}

.footer-socials a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@keyframes introWord {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes introFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introExit {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quoteRise {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-0.4deg);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.16) rotate(-4deg);
  }
}

@keyframes stepPop {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 79, 0);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(47, 107, 79, 0.12);
  }
}

@keyframes lineFlow {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 220% 0;
  }
}

@keyframes reviewSlide {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes loadingPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.82);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.28);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(47, 107, 79, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.12);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(47, 107, 79, 0);
  }
}

@media (max-width: 1040px) {
  .main-nav,
  .header-book {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .popular-grid,
  .trust-grid,
  .steps-grid,
  .review-grid,
  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .booking-grid,
  .areas-grid,
  .service-hero-grid,
  .result-grid,
  .coverage-grid,
  .final-cta-inner,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-image-mosaic {
    min-height: 380px;
    grid-auto-rows: 150px;
  }

  .we-story-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 62px;
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .brand-logo {
    width: 128px;
    height: 36px;
  }

  .location-chip {
    max-width: 132px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .location-detect-button {
    max-width: 172px;
    min-height: 38px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .header-search {
    display: none;
  }

  .mobile-search-toggle {
    width: 38px;
    height: 38px;
    display: grid;
  }

  .search-icon {
    width: 19px;
    height: 19px;
  }

  .mobile-search-bar {
    width: min(100% - 28px, 1180px);
    display: none;
    margin: 0 auto 10px;
  }

  .mobile-search-bar.is-open {
    display: block;
  }

  .mobile-search-bar input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--off-white);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
  }

  .location-detect-button .pin-icon {
    display: none;
  }

  .location-detect-button span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .hero-section,
  .service-hero {
    padding: 46px 0;
  }

  .hero-section {
    display: none;
  }

  .hero-shop {
    gap: 22px;
  }

  .hero-image-mosaic {
    grid-auto-rows: 112px;
    gap: 8px;
    min-height: 0;
  }

  .hero-image-mosaic img {
    border-radius: 10px;
  }

  .uc-category-panel {
    padding: 14px;
    border-radius: 16px;
  }

  .mini-card {
    min-height: 58px;
    padding: 12px;
    gap: 8px;
    font-size: 13px;
  }

  .mini-card .line-icon {
    width: 20px;
    height: 20px;
  }

  .section {
    padding: 64px 0;
  }

  .we-quote-stage {
    margin-bottom: 24px;
    text-align: left;
  }

  .we-quote-stage p {
    margin-inline: 0;
  }

  .we-quote {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 0.94;
  }

  .we-story-card {
    min-height: 230px;
    padding: 20px;
  }

  .we-story-card .button {
    width: 100%;
  }



  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .final-cta-inner .button {
    width: 100%;
  }

  .hero-actions .button,
  .booking-form .button,
  .final-cta .button {
    width: 100%;
  }

  .trust-message,
  .payment-note {
    border-radius: 14px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card,
  .popular-card,
  .trust-grid article,
  .steps-grid article,
  .review-grid article,
  .option-card,
  .coverage-card,
  .booking-form,
  .booking-preview,
  .service-facts,
  .area-panel {
    padding: 16px;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 16px;
    line-height: 1.15;
  }

  .service-card p {
    display: none;
  }

  .service-card .button {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .uc-service-card {
    padding: 0;
    overflow: hidden;
  }

  .uc-service-card .service-photo {
    height: 150px;
    border-radius: 0;
  }

  .uc-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .popular-grid,
  .trust-grid,
  .steps-grid,
  .review-grid,
  .option-grid,
  .form-row,
  .comparison-wrap {
    grid-template-columns: 1fr;
  }

  .form-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-photo {
    height: 96px;
  }

  .popular-photo,
  .comparison-photo img,
  .option-photo,
  .summary-photo {
    height: 150px;
  }

  .intro-copy {
    font-size: clamp(38px, 13vw, 62px);
  }

  .mobile-whatsapp {
    display: grid;
    right: 118px;
  }

  .mobile-call {
    display: grid;
    width: 48px;
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .intro-loader {
    display: none;
  }


  .reveal,
  .service-card,
  .popular-card,
  .trust-grid article,
  .steps-grid article,
  .option-card,
  .coverage-card,
  .comparison-photo,
  .booking-form,
  .booking-summary {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .location-chip {
    display: none;
  }

  .location-detect-button {
    max-width: 124px;
    padding-inline: 10px;
  }
}

/* ── Mobile/Tablet scroll-driven story ── */
@media (max-width: 1040px) {
  .urbanwe-story {
    min-height: 220vh;
  }

  .story-sticky-container {
    min-height: 100svh;
    padding: 0 16px;
  }

  .story-background-word {
    font-size: clamp(5rem, 22vw, 12rem);
  }

  .story-background-line {
    top: 5vh;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  }

  .we-line {
    display: none;
  }

  .story-stage {
    display: none;
  }

  .story-copy {
    top: 44%;
    left: 50%;
    translate: -50% -50%;
    width: min(100% - 28px, 540px);
  }

  .story-copy h2 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .story-copy h3 {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  }

  .story-copy p {
    font-size: 14px;
  }

  .story-points li {
    font-size: 11px;
    padding: 6px 9px;
  }

  .story-progress {
    bottom: 18px;
  }

  .story-progress button {
    min-width: 48px;
    min-height: 32px;
    font-size: 12px;
  }

}

@media (max-width: 680px) {
  .urbanwe-story {
    min-height: 170vh;
  }

  .story-background-word {
    font-size: clamp(4rem, 28vw, 8rem);
  }

  .story-copy {
    top: 46%;
    left: 50%;
    translate: -50% -50%;
    width: min(100% - 34px, 430px);
  }

  .story-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
    line-height: 0.9;
  }

  .story-copy h3 {
    max-width: 320px;
    font-size: clamp(1rem, 4.3vw, 1.25rem);
    line-height: 1.25;
  }

  .story-copy p {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.65;
  }

  .story-background-line {
    width: min(100% - 48px, 360px);
    top: 8vh;
    left: 50%;
    translate: -50% 0;
    text-align: center;
    line-height: 1.5;
  }

  .story-points,
  .story-progress {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Live Indicator ── */
.live-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
  animation: redPulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes redPulse {
  to {
    box-shadow: 0 0 0 12px rgba(255, 59, 59, 0);
  }
}
