.scroll-fade-in {
    --reveal-translate-x: 0px;
    --reveal-translate-y: 42px;
    --reveal-scale: 0.98;
    --reveal-rotate: 0deg;
    --reveal-blur: 18px;
    --reveal-duration: 0.9s;
    --reveal-delay: 0s;
    --reveal-ease: cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 1;
    transform: none;
    filter: none;
    transition:
        opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
        transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
        filter calc(var(--reveal-duration) * 0.85) var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform, filter;
}

.scroll-fade-in.js-initial-hide {
    opacity: 0;
    transform: translate3d(var(--reveal-translate-x), var(--reveal-translate-y), 0) scale(var(--reveal-scale))
        rotate(var(--reveal-rotate));
    filter: blur(var(--reveal-blur));
}

.scroll-fade-in.is-visible,
.scroll-fade-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
}

.scroll-fade-in[data-reveal='hero'] {
    --reveal-translate-y: 72px;
    --reveal-duration: 1.2s;
}

.scroll-fade-in[data-reveal='fade'] {
    --reveal-translate-y: 18px;
    --reveal-blur: 10px;
}

.scroll-fade-in[data-reveal='slide-up'] {
    --reveal-translate-y: 56px;
}

.scroll-fade-in[data-reveal='slide-right'] {
    --reveal-translate-x: -48px;
    --reveal-translate-y: 0;
}

.scroll-fade-in[data-reveal='slide-left'] {
    --reveal-translate-x: 48px;
    --reveal-translate-y: 0;
}

.scroll-fade-in[data-reveal='zoom'] {
    --reveal-scale: 0.92;
    --reveal-blur: 14px;
}

.scroll-fade-in[data-reveal='tilt'] {
    --reveal-rotate: -3deg;
    --reveal-translate-y: 64px;
    --reveal-scale: 0.96;
}

.scroll-fade-in[data-reveal='glow'] {
    --reveal-blur: 24px;
    --reveal-duration: 1.1s;
}

@keyframes gradient-pan {
    0% {
        transform: translate3d(-6%, -6%, 0) scale(1);
    }

    50% {
        transform: translate3d(6%, 4%, 0) scale(1.05);
    }

    100% {
        transform: translate3d(-6%, -6%, 0) scale(1);
    }
}

@keyframes halo-pulse {
    0% {
        opacity: 0.45;
        transform: scale(0.92);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.08);
    }

    100% {
        opacity: 0.45;
        transform: scale(0.92);
    }
}

@keyframes shimmer-sweep {
    0% {
        opacity: 0;
        transform: translate3d(-140%, 0, 0) rotate(8deg);
    }

    40% {
        opacity: 0.55;
    }

    100% {
        opacity: 0;
        transform: translate3d(200%, 0, 0) rotate(8deg);
    }
}

@keyframes footer-wave {
    0% {
        transform: translate3d(-18%, 0, 0);
    }

    50% {
        transform: translate3d(18%, 0, 0);
    }

    100% {
        transform: translate3d(-18%, 0, 0);
    }
}

[data-parallax-parent] {
    position: relative;
    isolation: isolate;
}

[data-parallax-depth] {
    --parallax-offset: 0px;
    transform: translate3d(0, var(--parallax-offset), 0);
    will-change: transform;
    transition: transform 0.9s cubic-bezier(0.33, 1, 0.68, 1);
    pointer-events: none;
}

:root {
    --blush-50: hsl(336, 100%, 97%);
    --blush-100: hsl(339, 100%, 95%);
    --blush-200: hsl(339, 100%, 90%);
    --blush-300: hsl(338, 86%, 82%);
    --blush-400: hsl(338, 77%, 73%);
    --blush-500: hsl(337, 74%, 64%);
    --blush-600: hsl(337, 59%, 56%);
    --peony-400: hsl(297, 55%, 71%);
    --peony-500: hsl(297, 43%, 57%);
    --mulberry-700: hsl(336, 43%, 26%);
    --mulberry-800: hsl(308, 39%, 19%);
    --surface-soft: radial-gradient(circle at 10% 20%, rgba(251, 208, 223, 0.35), transparent 60%),
        radial-gradient(circle at 90% 8%, rgba(222, 139, 216, 0.3), transparent 65%),
        linear-gradient(180deg, #fef7fa, #fbeff5 40%, #f9eaf2);
    --surface-glass: hsla(0, 0%, 100%, 0.78);
    --surface-border: hsla(337, 74%, 64%, 0.18);
    --surface-border-strong: hsla(337, 74%, 64%, 0.28);
    --shadow-soft: 0 34px 80px hsla(333, 46%, 58%, 0.18);
    --shadow-glow: 0 24px 60px hsla(337, 74%, 64%, 0.25);

    /* UI God Tokens */
    --color-text-warning: #856404;
    --color-text-error: #721C24;
    --color-text-info: #0C5460;
    --color-error: #DC3545;
    --color-success: #28A745;
    --color-text-muted: #6c757d;

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    --radius-xs: 0.125rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
}

.text-muted {
    color: var(--color-text-muted);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--blush-600);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 9999;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 1rem;
}

body#app-body {
    min-height: 100vh;
    margin: 0;
    background: var(--surface-soft);
    color: var(--mulberry-700);
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    line-height: 1.65;
    position: relative;
}

body#app-body h1,
body#app-body h2,
body#app-body h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    color: var(--mulberry-800);
    letter-spacing: -0.01em;
}

body#app-body a {
    color: inherit;
    text-decoration: none;
}

body#app-body a:hover,
body#app-body a:focus-visible {
    color: var(--blush-600);
}

.font-display {
    font-family: "Playfair Display", "Times New Roman", serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: hsla(0, 0%, 100%, 0.88);
    border-bottom: 1px solid hsla(337, 74%, 64%, 0.12);
    box-shadow: 0 12px 44px hsla(336, 43%, 26%, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
    width: min(100% - 2rem, 72rem);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 0;
}

.site-brand {
    display: flex;
    align-items: center;
}

.site-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.35rem 0.4rem;
    border-radius: var(--radius-lg);
    transition: background 0.25s ease, transform 0.25s ease;
}

.site-brand-link:hover,
.site-brand-link:focus-visible {
    background: hsla(0, 0%, 100%, 0.6);
    transform: translateY(-1px);
    outline: none;
}

.site-brand-copy {
    display: grid;
    gap: 0.1rem;
}

.site-brand-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--mulberry-800);
    letter-spacing: -0.02em;
}

.site-brand-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: hsla(336, 43%, 26%, 0.55);
    font-weight: 600;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.05rem;
    height: 3.05rem;
    border-radius: 1rem;
    background: linear-gradient(140deg, var(--blush-400), var(--peony-500) 58%, var(--mulberry-800));
    color: #fff;
    box-shadow: 0 18px 40px hsla(337, 74%, 64%, 0.28);
    font-size: 1.4rem;
}

.brand-mark__svg {
    display: block;
    width: 2.96rem;
    height: 1.9rem;
    overflow: visible;
}

.ma-logo-mark__house-roof,
.ma-logo-mark__chimney,
.ma-logo-mark__window-cross,
.ma-logo-mark__door,
.ma-logo-mark__baseboard,
.ma-logo-mark__bucket-rim,
.ma-logo-mark__bucket-handle,
.ma-logo-mark__mop-handle,
.ma-logo-mark__mop-grip,
.ma-logo-mark__mop-collar,
.ma-logo-mark__clean-floor-line,
.ma-logo-mark__home-shine,
.ma-logo-mark__floor-sparkle,
.ma-logo-mark__tool-hand {
    fill: none;
    stroke: rgba(255, 255, 255, 0.92);
    stroke-width: 4.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ma-logo-mark__house-wall,
.ma-logo-mark__window {
    fill: rgba(255, 255, 255, 0.14);
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 3.8;
    stroke-linejoin: round;
}

.ma-logo-mark__bucket,
.ma-logo-mark__mop-head {
    fill: rgba(255, 255, 255, 0.92);
}

.ma-logo-mark__mop-head {
    fill: rgba(255, 246, 250, 0.95);
}

.ma-logo-mark__bucket {
    fill: rgba(255, 240, 247, 0.9);
}

.brand-mark__duster,
.ma-logo-mark__sparkle {
    fill: rgba(255, 255, 255, 0.94);
}

.brand-mark__duster--light,
.ma-logo-mark__duster-highlight {
    fill: rgba(255, 255, 255, 0.72);
}

.brand-mark__handle,
.ma-logo-mark__handle,
.ma-logo-mark__clean-sweep,
.ma-logo-mark__hair-ribbon,
.ma-logo-mark__eye-cut,
.ma-logo-mark__waist,
.ma-logo-mark__wrist,
.ma-logo-mark__apron-line {
    fill: none;
    stroke: #fff;
    stroke-width: 4.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-mark__silhouette,
.brand-mark__pony,
.brand-mark__arm,
.ma-logo-mark__head,
.ma-logo-mark__ponytail,
.ma-logo-mark__torso,
.ma-logo-mark__neck,
.ma-logo-mark__raised-arm,
.ma-logo-mark__support-arm,
.ma-logo-mark__support-hand,
.ma-logo-mark__apron-shadow {
    fill: var(--mulberry-800);
}

.brand-mark__profile,
.ma-logo-mark__profile-cut,
.ma-logo-mark__face-cut {
    fill: hsla(337, 100%, 96%, 0.42);
}

.ma-logo-mark__apron-line {
    stroke: hsla(337, 100%, 96%, 0.44);
    stroke-width: 3.4;
}

.ma-logo-mark__clean-sweep {
    stroke: hsla(337, 100%, 96%, 0.72);
    stroke-width: 4.2;
    opacity: 0.2;
}

.ma-logo-mark__hair-ribbon {
    stroke: hsla(337, 100%, 96%, 0.48);
    stroke-width: 3.6;
}

.ma-logo-mark__eye-cut,
.ma-logo-mark__wrist,
.ma-logo-mark__waist {
    stroke: hsla(337, 100%, 96%, 0.5);
    stroke-width: 3.2;
}

.ma-logo-mark--mono .ma-logo-mark__sparkle,
.ma-logo-mark--mono .ma-logo-mark__duster,
.ma-logo-mark--mono .ma-logo-mark__duster-highlight,
.ma-logo-mark--mono .ma-logo-mark__house-wall,
.ma-logo-mark--mono .ma-logo-mark__window,
.ma-logo-mark--mono .ma-logo-mark__bucket,
.ma-logo-mark--mono .ma-logo-mark__mop-head,
.ma-logo-mark--mono .ma-logo-mark__head,
.ma-logo-mark--mono .ma-logo-mark__ponytail,
.ma-logo-mark--mono .ma-logo-mark__torso,
.ma-logo-mark--mono .ma-logo-mark__neck,
.ma-logo-mark--mono .ma-logo-mark__raised-arm,
.ma-logo-mark--mono .ma-logo-mark__support-arm,
.ma-logo-mark--mono .ma-logo-mark__support-hand,
.ma-logo-mark--mono .ma-logo-mark__apron-shadow,
.ma-logo-mark--mono .ma-logo-mark__profile-cut,
.ma-logo-mark--mono .ma-logo-mark__face-cut {
    fill: currentColor;
}

.ma-logo-mark--mono .ma-logo-mark__handle,
.ma-logo-mark--mono .ma-logo-mark__clean-sweep,
.ma-logo-mark--mono .ma-logo-mark__house-roof,
.ma-logo-mark--mono .ma-logo-mark__chimney,
.ma-logo-mark--mono .ma-logo-mark__window-cross,
.ma-logo-mark--mono .ma-logo-mark__door,
.ma-logo-mark--mono .ma-logo-mark__baseboard,
.ma-logo-mark--mono .ma-logo-mark__bucket-rim,
.ma-logo-mark--mono .ma-logo-mark__bucket-handle,
.ma-logo-mark--mono .ma-logo-mark__mop-handle,
.ma-logo-mark--mono .ma-logo-mark__mop-grip,
.ma-logo-mark--mono .ma-logo-mark__mop-collar,
.ma-logo-mark--mono .ma-logo-mark__clean-floor-line,
.ma-logo-mark--mono .ma-logo-mark__home-shine,
.ma-logo-mark--mono .ma-logo-mark__floor-sparkle,
.ma-logo-mark--mono .ma-logo-mark__tool-hand,
.ma-logo-mark--mono .ma-logo-mark__hair-ribbon,
.ma-logo-mark--mono .ma-logo-mark__eye-cut,
.ma-logo-mark--mono .ma-logo-mark__waist,
.ma-logo-mark--mono .ma-logo-mark__wrist,
.ma-logo-mark--mono .ma-logo-mark__apron-line {
    stroke: currentColor;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.72rem 0.95rem;
    font-size: 0.94rem;
    font-weight: 500;
}

.site-nav .nav-link {
    position: relative;
    color: hsla(336, 43%, 26%, 0.72);
    padding-bottom: 0.25rem;
    transition: color 0.25s ease;
}

.site-nav .nav-link--phone {
    color: var(--mulberry-800);
    font-weight: 700;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -0.15rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    background: linear-gradient(90deg, var(--blush-400), var(--peony-400));
    border-radius: var(--radius-full);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link:focus-visible::after,
.site-nav .nav-link:focus::after {
    transform: scaleX(1);
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
    color: var(--blush-600);
}

.pink-hero__content {
    width: min(100% - 3rem, 64rem);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: clamp(4.5rem, 10vw, 7rem) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pink-hero {
    position: relative;
    overflow: hidden;
    margin-inline: auto;
    max-width: 1200px;
    border-radius: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(140deg, hsla(0, 0%, 100%, 0.92), hsla(339, 100%, 95%, 0.58));
    box-shadow: 0 40px 120px hsla(297, 55%, 71%, 0.28);
    --pointer-x: 50%;
    --pointer-y: 50%;
    transition: box-shadow 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}

.pink-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), hsla(337, 74%, 64%, 0.16), transparent 55%);
    mix-blend-mode: screen;
    transition: opacity 0.8s ease, transform 0.8s ease;
    opacity: 0.65;
}

.pink-hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 18% 16%, hsla(338, 77%, 73%, 0.32), transparent 68%),
        radial-gradient(circle at 78% 8%, hsla(297, 43%, 57%, 0.28), transparent 62%),
        linear-gradient(165deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0));
    isolation: isolate;
}

.pink-hero__background::before,
.pink-hero__background::after {
    content: "";
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(36px);
    opacity: 0.7;
    animation: gradient-pan 18s ease-in-out infinite;
}

.pink-hero__background::before {
    top: -18%;
    left: -14%;
    width: 46vw;
    max-width: 520px;
    aspect-ratio: 1;
    background: radial-gradient(circle at 40% 40%, hsla(339, 100%, 91%, 0.9), hsla(337, 74%, 64%, 0));
}

.pink-hero__background::after {
    bottom: -22%;
    right: -12%;
    width: 52vw;
    max-width: 580px;
    aspect-ratio: 1;
    background: radial-gradient(circle at 50% 50%, hsla(297, 55%, 71%, 0.85), hsla(297, 43%, 57%, 0));
    animation-direction: reverse;
}

.pink-hero__layer {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(36px);
    opacity: 0.7;
    mix-blend-mode: screen;
    transform: translate3d(0, var(--parallax-offset), 0) scale(var(--parallax-scale, 1));
    transition: transform 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}

.pink-hero__layer--blush {
    top: -22%;
    left: -14%;
    width: clamp(20rem, 46vw, 34rem);
    aspect-ratio: 1;
    background: radial-gradient(circle at 40% 40%, hsla(339, 100%, 91%, 0.88), hsla(337, 74%, 64%, 0));
}

.pink-hero__layer--peony {
    bottom: -26%;
    right: -18%;
    width: clamp(22rem, 48vw, 38rem);
    aspect-ratio: 1;
    background: radial-gradient(circle at 50% 50%, hsla(297, 55%, 71%, 0.82), hsla(297, 43%, 57%, 0));
}

.pink-hero__layer--halo {
    top: 20%;
    left: 18%;
    width: clamp(26rem, 54vw, 44rem);
    aspect-ratio: 1;
    background: radial-gradient(circle at 50% 50%, hsla(337, 74%, 64%, 0.18), hsla(0, 0%, 100%, 0));
    filter: blur(80px);
    opacity: 0.55;
    animation: halo-pulse 16s ease-in-out infinite alternate;
}

@media (hover: hover) {
    .pink-hero:hover {
        box-shadow: 0 50px 140px hsla(337, 74%, 64%, 0.32);
    }

    .pink-hero:hover::after {
        opacity: 0.85;
    }
}

@media (hover: none) {
    .pink-hero::after {
        opacity: 0.5;
    }
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    font-weight: 600;
    color: hsla(336, 43%, 26%, 0.65);
}

.pink-hero__title {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--mulberry-800);
    max-width: 16ch;
}

.pink-hero__body {
    max-width: 42rem;
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: hsla(336, 43%, 26%, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, var(--blush-400), var(--blush-600));
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.cta-primary:hover,
.cta-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 30px 70px hsla(337, 74%, 64%, 0.3);
}

.cta-secondary {
    background: hsla(0, 0%, 100%, 0.82);
    border: 1px solid hsla(337, 74%, 64%, 0.25);
    color: hsla(336, 43%, 26%, 0.75);
    box-shadow: 0 10px 30px hsla(336, 43%, 26%, 0.08);
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
    background: hsla(0, 0%, 100%, 0.95);
    color: var(--blush-600);
}

.section-divider {
    position: relative;
    width: min(280px, 60%);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, hsla(337, 74%, 64%, 0.55), transparent);
    overflow: hidden;
}

.section-divider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, hsla(337, 74%, 64%, 0.78), transparent);
    transform: translate3d(-120%, 0, 0);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.6s ease;
}

.section-divider.is-visible::after,
.section-divider.visible::after {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.section-block {
    position: relative;
    padding: clamp(4rem, 9vw, 6rem) 1.5rem;
}

.section-inner {
    margin: 0 auto;
    max-width: 70rem;
    display: grid;
    gap: 1.4rem;
}

.section-inner--centered {
    text-align: center;
}

.section-soft {
    background: linear-gradient(180deg, hsla(339, 100%, 95%, 0.65), hsla(322, 72%, 90%, 0.35));
}

.section-accent {
    background: linear-gradient(180deg, hsla(339, 100%, 95%, 0.45), hsla(301, 65%, 89%, 0.4));
}

.section-quote {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.92), hsla(339, 100%, 95%, 0.65));
    scroll-margin-top: clamp(5rem, 8vw, 7rem);
}

#quote,
#quote.js-initial-hide {
    opacity: 1;
    transform: none;
    filter: none;
}

.service-area-page {
    padding-top: clamp(3rem, 7vw, 5rem);
}

.service-area-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
}

.service-area-actions {
    justify-content: flex-start;
}

.service-area-facts__title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
}

.service-area-facts__grid {
    display: grid;
    gap: 0.85rem;
    margin: 0;
}

.service-area-facts__grid div {
    display: grid;
    gap: 0.15rem;
}

.service-area-facts__grid dt {
    color: hsla(336, 43%, 26%, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-area-facts__grid dd {
    margin: 0;
    color: var(--mulberry-800);
}

.service-area-grid {
    display: grid;
    gap: 0.58rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
    align-items: stretch;
}

.service-area-link {
    display: grid;
    min-width: 0;
    min-height: 3.15rem;
    align-content: center;
    gap: 0.12rem;
    padding: 0.68rem 0.82rem;
    border-radius: 0.78rem;
    background: hsla(0, 0%, 100%, 0.76);
    border: 1px solid hsla(337, 74%, 64%, 0.16);
    box-shadow: 0 10px 26px hsla(336, 43%, 26%, 0.07);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.service-area-link:hover,
.service-area-link:focus-visible {
    transform: translateY(-1px);
    border-color: hsla(337, 74%, 64%, 0.32);
    box-shadow: 0 16px 36px hsla(336, 43%, 26%, 0.1);
    outline: none;
}

.service-area-link strong {
    min-width: 0;
    color: var(--mulberry-800);
    font-size: 0.94rem;
    line-height: 1.17;
    overflow-wrap: anywhere;
}

.service-area-link span {
    min-width: 0;
    color: hsla(336, 43%, 26%, 0.64);
    font-size: 0.78rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.service-area-quick-quote {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-area-quick-quote .wizard-field:has(textarea),
.service-area-quick-quote button {
    grid-column: 1 / -1;
}

.location-detect-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2.75rem;
    border: 1px solid hsla(337, 74%, 64%, 0.24);
    border-radius: var(--radius-full);
    background: hsla(0, 0%, 100%, 0.76);
    color: var(--mulberry-700);
    padding: 0.58rem 1rem;
    font-size: 0.94rem;
    font-weight: 700;
    box-shadow: 0 10px 28px hsla(336, 43%, 26%, 0.08);
}

.location-detect-button:hover,
.location-detect-button:focus-visible {
    color: var(--blush-600);
    border-color: hsla(337, 74%, 64%, 0.42);
    outline: none;
}

@media (max-width: 767px) {
    .service-area-hero,
    .service-area-quick-quote {
        grid-template-columns: 1fr;
    }

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

    .service-area-actions {
        justify-content: center;
    }
}

@media (max-width: 340px) {
    .service-area-grid {
        grid-template-columns: 1fr;
    }
}

.section-eyebrow {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 600;
    color: hsla(336, 43%, 26%, 0.6);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.section-body {
    font-size: 1.02rem;
    color: hsla(336, 43%, 26%, 0.78);
}

.section-body--measure {
    max-width: 46rem;
    margin-inline: auto;
}

.service-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.glass-panel {
    position: relative;
    padding: 1.8rem;
    border-radius: var(--radius-xl);
    background: var(--surface-glass);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

@supports not (backdrop-filter: blur(0)) {
    .glass-panel {
        background: hsla(0, 0%, 100%, 0.95);
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    --pointer-x: 50%;
    --pointer-y: 50%;
    transition: transform 0.65s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.65s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(120deg, hsla(337, 74%, 64%, 0.22), hsla(297, 43%, 57%, 0.08), transparent 55%);
    transform: translate3d(-140%, 0, 0) rotate(8deg);
    opacity: 0;
    pointer-events: none;
}

.service-card.is-visible::before,
.service-card.visible::before {
    animation: shimmer-sweep 2.2s ease forwards;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), hsla(337, 74%, 64%, 0.18), transparent 65%);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 38px 95px hsla(337, 74%, 64%, 0.28);
    }

    .service-card:hover::after {
        opacity: 1;
        transform: scale(1.05);
    }

    .service-card:hover .service-card__title {
        color: var(--blush-600);
    }
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.service-card__icon {
    flex: none;
    font-size: 1.8rem;
    line-height: 1;
}

.service-card__body {
    color: hsla(336, 43%, 26%, 0.7);
}

.testimonial-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: -45%;
    background: conic-gradient(from 120deg, hsla(337, 74%, 64%, 0.28), hsla(297, 43%, 57%, 0.18), transparent 75%);
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    animation: gradient-pan 18s linear infinite;
    animation-play-state: paused;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, hsla(0, 0%, 100%, 0.08), hsla(337, 74%, 64%, 0.12) 45%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.testimonial-card.is-visible::before,
.testimonial-card.visible::before {
    animation-play-state: running;
}

.testimonial-card.is-visible::after,
.testimonial-card.visible::after {
    opacity: 0.55;
}

@media (hover: hover) {
    .testimonial-card:hover {
        transform: translateY(-8px);
    }
}

.testimonial-card blockquote {
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    color: var(--mulberry-800);
    font-style: italic;
}

.testimonial-card figcaption {
    font-size: 0.9rem;
    color: hsla(336, 43%, 26%, 0.6);
}

/* ==========================================================================
   Quote Wizard
   ========================================================================== */
.quote-layout {
    display: grid;
    gap: clamp(2rem, 3vw, 3.2rem);
    align-items: start;
}

.quote-intro {
    display: grid;
    gap: 1.1rem;
    text-align: left;
    max-width: 32rem;
}

.quote-highlights {
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.quote-highlight {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-lg);
    background: hsla(337, 74%, 64%, 0.08);
    border: 1px solid hsla(337, 74%, 64%, 0.16);
    box-shadow: 0 18px 38px hsla(337, 74%, 64%, 0.08);
    color: hsla(336, 43%, 26%, 0.78);
    font-size: 0.95rem;
}

.quote-form {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    padding: clamp(2rem, 4vw, 3.1rem);
    text-align: left;
}

.quote-form[data-wizard-initialized='true'] {
    gap: 2.6rem;
}

.quote-form [data-wizard-step] {
    display: block;
}

.quote-form[data-wizard-initialized='true'] [data-wizard-step] {
    display: none;
    opacity: 0;
    transform: translate3d(0, 26px, 0);
}

.quote-form[data-wizard-initialized='true'] [data-wizard-step].is-active {
    display: block;
    opacity: 1;
    transform: none;
    animation: wizard-fade-in 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.wizard-progress {
    display: grid;
    gap: 0.75rem;
}

.wizard-progress__list {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.wizard-progress__item {
    display: grid;
    gap: 0.3rem;
    align-items: center;
    justify-items: center;
    padding: 0.75rem 0.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid hsla(337, 74%, 64%, 0.2);
    background: hsla(0, 0%, 100%, 0.85);
    color: hsla(336, 43%, 26%, 0.55);
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.wizard-progress__marker {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    font-weight: 600;
    background: hsla(337, 74%, 64%, 0.12);
    color: inherit;
    transition: background 0.3s ease, transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.wizard-progress__label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wizard-progress__item.is-current {
    color: var(--mulberry-700);
    border-color: hsla(337, 74%, 64%, 0.4);
    background: hsla(337, 74%, 64%, 0.14);
    box-shadow: 0 20px 40px hsla(337, 74%, 64%, 0.16);
}

.wizard-progress__item.is-current .wizard-progress__marker {
    background: linear-gradient(135deg, hsla(337, 74%, 64%, 0.55), hsla(297, 43%, 57%, 0.45));
    color: #fff;
    transform: scale(1.05);
}

.wizard-progress__item.is-complete {
    color: hsla(336, 43%, 26%, 0.75);
    border-color: hsla(337, 74%, 64%, 0.35);
    background: hsla(337, 74%, 64%, 0.12);
}

.wizard-progress__item.is-complete .wizard-progress__marker {
    background: linear-gradient(135deg, hsla(337, 74%, 64%, 0.65), hsla(297, 43%, 57%, 0.55));
    color: #fff;
}

.wizard-progress__bar {
    position: relative;
    height: 5px;
    border-radius: var(--radius-full);
    background: hsla(337, 74%, 64%, 0.12);
    overflow: hidden;
}

.wizard-progress__meter {
    --progress: 0%;
    position: absolute;
    inset: 0;
    width: var(--progress);
    background: linear-gradient(135deg, hsla(337, 74%, 64%, 0.55), hsla(297, 43%, 57%, 0.5));
    border-radius: inherit;
    transition: width 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.wizard-panels {
    display: grid;
    gap: 2rem;
}

.wizard-panel {
    display: grid;
    gap: 1.6rem;
}

.wizard-panel__header {
    display: grid;
    gap: 0.4rem;
}

.wizard-panel__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: hsla(336, 43%, 26%, 0.55);
    font-weight: 600;
}

.wizard-panel__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.2;
}

.wizard-panel__description {
    color: hsla(336, 43%, 26%, 0.7);
    font-size: 1rem;
}

.wizard-panel__grid {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

.wizard-panel__primary {
    display: grid;
    gap: 1.35rem;
}

.wizard-panel__aside {
    display: grid;
    gap: 1.1rem;
}

.wizard-field-group {
    display: grid;
    gap: 1.1rem;
}

.wizard-field {
    display: grid;
    gap: 0.35rem;
    align-content: start;
}

.wizard-field--choices {
    border: none;
    padding: 0;
    margin: 0;
}

.wizard-field__label {
    font-weight: 600;
    color: var(--mulberry-800);
}

.wizard-field__hint {
    font-size: 0.9rem;
    color: hsla(336, 43%, 26%, 0.55);
}

.wizard-field__error {
    min-height: 1em;
    font-size: 0.88rem;
    color: #c3426e;
}

.wizard-input,
.wizard-select,
.wizard-textarea {
    width: 100%;
    border-radius: 0.95rem;
    border: 1px solid var(--surface-border-strong);
    background: hsla(0, 0%, 100%, 0.96);
    color: var(--mulberry-700);
    font-size: 1rem;
    padding: 0.85rem 1.05rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wizard-input:focus,
.wizard-select:focus,
.wizard-textarea:focus {
    border-color: var(--blush-500);
    box-shadow: 0 0 0 3px hsla(337, 74%, 64%, 0.16);
    outline: none;
}

.wizard-input::placeholder,
.wizard-textarea::placeholder {
    color: hsla(336, 43%, 26%, 0.4);
}

.wizard-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, hsla(336, 43%, 26%, 0.45) 50%), linear-gradient(135deg, hsla(336, 43%, 26%, 0.45) 50%, transparent 50%);
    background-position: calc(100% - 1.6rem) calc(50% - 0.25rem), calc(100% - 1.2rem) calc(50% - 0.25rem);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.wizard-textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

[data-field][data-invalid='true'] .wizard-input,
[data-field][data-invalid='true'] .wizard-select,
[data-field][data-invalid='true'] .wizard-textarea {
    border-color: #c3426e;
    box-shadow: 0 0 0 3px rgba(195, 66, 110, 0.18);
}

.wizard-range {
    width: 100%;
    height: 4px;
    appearance: none;
    background: linear-gradient(90deg, hsla(337, 74%, 64%, 0.35), hsla(297, 43%, 57%, 0.2));
    border-radius: var(--radius-full);
    outline: none;
    margin-top: 0.6rem;
}

.wizard-range::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsla(337, 74%, 64%, 0.9), hsla(297, 43%, 57%, 0.85));
    box-shadow: 0 8px 18px hsla(337, 74%, 64%, 0.32);
    border: none;
    cursor: pointer;
}

.wizard-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsla(337, 74%, 64%, 0.9), hsla(297, 43%, 57%, 0.85));
    box-shadow: 0 8px 18px hsla(337, 74%, 64%, 0.32);
    border: none;
    cursor: pointer;
}

.wizard-range__value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mulberry-700);
    margin-top: 0.45rem;
}

.service-options {
    display: grid;
    gap: 1rem;
}

.service-option {
    position: relative;
    display: block;
}

.service-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.service-option__content {
    display: grid;
    gap: 0.4rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-xl);
    border: 1px solid hsla(337, 74%, 64%, 0.2);
    background: hsla(0, 0%, 100%, 0.9);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-option__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--mulberry-800);
}

.service-option__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.9rem;
    background: hsla(337, 74%, 64%, 0.12);
    color: var(--mulberry-800);
    font-size: 1.2rem;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.9);
}

.service-option__label {
    font-size: 0.9rem;
    color: hsla(336, 43%, 26%, 0.7);
}

.service-option__description {
    font-size: 0.95rem;
    color: hsla(336, 43%, 26%, 0.68);
}

.service-option__meta {
    font-size: 0.85rem;
    color: hsla(337, 74%, 64%, 0.7);
    font-weight: 600;
}

.service-option input:checked + .service-option__content {
    border-color: hsla(337, 74%, 64%, 0.45);
    box-shadow: 0 24px 48px hsla(337, 74%, 64%, 0.2);
    transform: translateY(-4px);
}

.service-option input:focus-visible + .service-option__content {
    outline: 3px solid hsla(337, 74%, 64%, 0.35);
    outline-offset: 4px;
}

.service-calculator {
    display: grid;
    gap: 1.4rem;
    padding: 1.4rem 1.2rem;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, hsla(337, 74%, 64%, 0.12), hsla(297, 43%, 57%, 0.1));
    border: 1px solid hsla(337, 74%, 64%, 0.18);
}

.service-calculator__grid {
    display: grid;
    gap: 1.1rem;
}

.service-calculator__result {
    display: grid;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-lg);
    background: hsla(0, 0%, 100%, 0.94);
    border: 1px solid hsla(337, 74%, 64%, 0.16);
    box-shadow: 0 18px 34px hsla(337, 74%, 64%, 0.14);
}

.service-calculator__headline {
    font-weight: 600;
    color: var(--mulberry-800);
}

.service-calculator__metrics {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.service-calculator__metrics div {
    display: grid;
    gap: 0.3rem;
}

.service-calculator__metrics dt {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: hsla(336, 43%, 26%, 0.6);
}

.service-calculator__metrics dd {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mulberry-800);
}

.wizard-visual {
    --visual-hue: 338;
    --visual-secondary-hue: 312;
    --visual-saturation: 78%;
    --visual-lightness: 88%;
    position: relative;
    border-radius: var(--radius-2xl);
    padding: 1.6rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, hsla(var(--visual-hue), var(--visual-saturation), var(--visual-lightness), 0.55), transparent 65%),
        linear-gradient(135deg, hsla(var(--visual-secondary-hue), 70%, 88%, 0.65), hsla(0, 0%, 100%, 0.1));
    color: hsla(322, 49%, 15%, 0.88);
    box-shadow: 0 30px 70px hsla(337, 74%, 64%, 0.18);
}

.wizard-visual__halo {
    position: absolute;
    inset: -25% -40% 20% -40%;
    background: radial-gradient(circle at 50% 50%, hsla(0, 0%, 100%, 0.32), transparent 70%);
    opacity: 0.75;
    filter: blur(40px);
    animation: wizard-orbit 12s ease-in-out infinite alternate;
}

.wizard-visual__icon {
    position: relative;
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
}

.wizard-visual__label {
    font-weight: 600;
    font-size: 1.05rem;
}

.wizard-visual__note {
    font-size: 0.92rem;
    color: hsla(322, 49%, 15%, 0.75);
}

.wizard-tip {
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-xl);
    background: hsla(0, 0%, 100%, 0.92);
    border: 1px solid hsla(337, 74%, 64%, 0.18);
    box-shadow: 0 16px 34px hsla(337, 74%, 64%, 0.12);
    display: grid;
    gap: 0.4rem;
}

.wizard-tip--neutral {
    border-color: hsla(337, 74%, 64%, 0.12);
    box-shadow: 0 12px 24px hsla(336, 43%, 26%, 0.1);
}

.wizard-tip__title {
    font-weight: 600;
    color: var(--mulberry-800);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.wizard-tip__body {
    font-size: 0.95rem;
    color: hsla(336, 43%, 26%, 0.7);
    margin: 0;
}

.availability-picker {
    display: grid;
    gap: 0.65rem;
    padding: 1.2rem 1.3rem;
    border-radius: var(--radius-xl);
    background: hsla(0, 0%, 100%, 0.9);
    border: 1px solid hsla(337, 74%, 64%, 0.16);
}

.availability-picker__title {
    font-weight: 600;
    color: var(--mulberry-800);
}

.availability-picker__subtitle {
    font-size: 0.9rem;
    color: hsla(336, 43%, 26%, 0.6);
}

.availability-picker__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.availability-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid hsla(337, 74%, 64%, 0.2);
    background: hsla(337, 74%, 64%, 0.1);
    color: var(--mulberry-700);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.availability-option:hover,
.availability-option:focus-visible {
    transform: translateY(-2px);
    border-color: hsla(337, 74%, 64%, 0.4);
    box-shadow: 0 16px 32px hsla(337, 74%, 64%, 0.16);
    outline: none;
}

.availability-option.is-active {
    background: linear-gradient(135deg, hsla(337, 74%, 64%, 0.55), hsla(297, 43%, 57%, 0.45));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 22px 46px hsla(337, 74%, 64%, 0.22);
}

.wizard-summary {
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem 1.3rem;
    border-radius: var(--radius-xl);
    background: hsla(0, 0%, 100%, 0.92);
    border: 1px solid hsla(337, 74%, 64%, 0.18);
}

.wizard-summary__title {
    font-weight: 600;
    color: var(--mulberry-800);
    margin: 0;
}

.wizard-summary__grid {
    display: grid;
    gap: 0.8rem;
    margin: 0;
}

.wizard-summary__grid div {
    display: grid;
    gap: 0.3rem;
}

.wizard-summary__grid dt {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: hsla(336, 43%, 26%, 0.58);
}

.wizard-summary__grid dd {
    margin: 0;
    font-size: 1rem;
    color: var(--mulberry-800);
    font-weight: 600;
}

.wizard-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.wizard-footer__status {
    font-size: 0.95rem;
    color: hsla(336, 43%, 26%, 0.65);
    text-align: center;
}

.wizard-footer__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.wizard-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    font-size: 0.96rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.wizard-nav--back {
    background: hsla(337, 74%, 64%, 0.1);
    border: 1px solid hsla(337, 74%, 64%, 0.22);
    color: var(--mulberry-700);
}

.wizard-nav--back:hover,
.wizard-nav--back:focus-visible {
    background: hsla(337, 74%, 64%, 0.18);
    box-shadow: 0 18px 36px hsla(337, 74%, 64%, 0.18);
    outline: none;
}

.wizard-nav--next,
.wizard-nav--submit {
    min-width: 10rem;
}

.quote-form:not([data-wizard-initialized='true']) .wizard-nav--back,
.quote-form:not([data-wizard-initialized='true']) .wizard-nav--next {
    display: none;
}

.quote-form:not([data-wizard-initialized='true']) .wizard-nav--submit {
    display: inline-flex;
}

.site-footer {
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 0.9rem;
    color: hsla(336, 43%, 26%, 0.7);
    padding: 3rem 1.5rem 4rem;
    background: linear-gradient(180deg, hsla(339, 100%, 95%, 0.55), hsla(327, 79%, 92%, 0.25));
    border-top: 1px solid hsla(337, 74%, 64%, 0.18);
    isolation: isolate;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    inset-inline: -20%;
    height: 65%;
    top: 5%;
    background: radial-gradient(circle at 50% 50%, hsla(337, 74%, 64%, 0.24), transparent 70%);
    filter: blur(70px);
    opacity: 0.35;
    pointer-events: none;
}

.site-footer::before {
    animation: footer-wave 22s ease-in-out infinite;
}

.site-footer::after {
    animation: footer-wave 26s ease-in-out infinite reverse;
    top: auto;
    bottom: 0;
    opacity: 0.28;
}

.footer-link {
    color: var(--blush-600);
    font-weight: 600;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--peony-500);
}

.footer-link--back-to-top {
    display: inline-flex;
    margin-top: 1rem;
    font-size: 0.88rem;
}

/* ==========================================================================
   Installer and Login Shells
   ========================================================================== */
.installer-shell,
.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 4vw, 2.5rem);
}

.installer-card,
.auth-card {
    width: min(100%, 46rem);
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.75rem);
}

.auth-card {
    width: min(100%, 28rem);
}

.installer-card__brand,
.auth-card__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.installer-title,
.auth-card__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
}

.installer-copy,
.auth-card__body,
.auth-card__support {
    margin: 0;
    color: hsla(336, 43%, 26%, 0.72);
    font-size: 0.98rem;
}

.installer-state--blocked {
    display: grid;
    gap: 1rem;
    text-align: center;
    justify-items: center;
}

.installer-action {
    justify-self: center;
}

.installer-notice,
.installer-status,
.auth-feedback {
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
}

.installer-notice,
.installer-status--progress {
    background: hsla(337, 74%, 64%, 0.1);
    border: 1px solid hsla(337, 74%, 64%, 0.2);
    color: var(--mulberry-700);
}

.installer-status--success {
    background: hsla(142, 71%, 45%, 0.1);
    border: 1px solid hsla(142, 71%, 45%, 0.22);
    color: hsl(143, 64%, 28%);
}

.installer-status--error,
.auth-feedback--error {
    background: hsla(0, 75%, 60%, 0.1);
    border: 1px solid hsla(0, 75%, 60%, 0.18);
    color: hsl(0, 58%, 36%);
}

.installer-form,
.auth-form {
    display: grid;
    gap: 1rem;
}

.installer-form__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.form-field {
    display: grid;
    gap: 0.45rem;
    color: var(--mulberry-800);
    font-weight: 600;
}

.form-field__label {
    color: inherit;
}

.form-hint {
    font-weight: 400;
    color: hsla(336, 43%, 26%, 0.6);
    font-size: 0.88rem;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid hsla(337, 74%, 64%, 0.18);
    border-radius: var(--radius-lg);
    background: hsla(0, 0%, 100%, 0.94);
    color: var(--mulberry-800);
    font: inherit;
    padding: 0.82rem 0.95rem;
    box-shadow: inset 0 1px 2px hsla(336, 43%, 26%, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsla(337, 74%, 64%, 0.45);
    box-shadow: 0 0 0 4px hsla(337, 74%, 64%, 0.12);
}

.form-textarea {
    min-height: 7rem;
    resize: vertical;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--mulberry-700);
    font-weight: 500;
}

.checkbox-field__input {
    margin-top: 0.25rem;
}

.installer-options {
    display: grid;
    gap: 1rem;
    border: 1px solid hsla(337, 74%, 64%, 0.16);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    background: hsla(0, 0%, 100%, 0.68);
}

.installer-options__legend {
    padding: 0 0.45rem;
    color: var(--mulberry-800);
    font-weight: 700;
}

.installer-submit,
.auth-form__submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

.installer-results {
    display: grid;
    gap: 1rem;
}

.installer-results.is-hidden {
    display: none;
}

.installer-results__header {
    display: grid;
    gap: 0.35rem;
}

.installer-results__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mulberry-800);
}

.installer-results__subtitle {
    margin: 0;
    color: hsla(336, 43%, 26%, 0.62);
    font-size: 0.92rem;
}

.installer-log {
    margin: 0;
    padding: 1rem;
    min-height: 14rem;
    max-height: 22rem;
    overflow: auto;
    border-radius: var(--radius-xl);
    border: 1px solid hsla(337, 74%, 64%, 0.16);
    background: hsla(322, 49%, 15%, 0.95);
    color: hsla(0, 0%, 100%, 0.92);
    font-family: "Cascadia Code", "Consolas", monospace;
    font-size: 0.84rem;
    line-height: 1.55;
    white-space: pre-wrap;
}

.credential-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-xl);
    background: hsl(48, 100%, 96%);
    border: 1px solid hsl(45, 88%, 83%);
    color: hsl(29, 67%, 20%);
}

.credential-card__title,
.credential-card__body {
    margin: 0;
}

.credential-card__title {
    font-size: 1rem;
    font-weight: 700;
}

.credential-card__body {
    font-size: 0.92rem;
}

.credential-card__list {
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.credential-card__row {
    display: grid;
    gap: 0.15rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid hsla(29, 67%, 20%, 0.12);
}

.credential-card__row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.credential-card__row dt {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.credential-card__row dd {
    margin: 0;
    font-family: "Cascadia Code", "Consolas", monospace;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
}

@media (min-width: 640px) {
    .wizard-panel__grid {
        gap: 2rem;
    }

    .wizard-field-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-summary__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-footer {
        align-items: center;
    }

    .wizard-footer__status {
        text-align: left;
    }

    .wizard-footer__actions {
        justify-content: flex-end;
    }
}

@media (min-width: 900px) {
    .quote-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
        align-items: stretch;
    }

    .quote-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-panel__grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    }

    .wizard-progress__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .quote-layout {
        gap: 2rem;
    }

    .wizard-progress__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-progress__item {
        padding: 0.65rem 0.5rem;
    }
}

@keyframes wizard-fade-in {
    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wizard-orbit {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(8deg) scale(1.08);
    }

    100% {
        transform: rotate(-6deg) scale(1.05);
    }
}

@media (max-width: 639px) {
    .site-header__inner {
        width: min(100% - 1.5rem, 72rem);
        flex-direction: column;
        align-items: stretch;
        padding: 0.9rem 0;
    }

    .site-brand {
        justify-content: center;
    }

    .site-brand-link {
        justify-content: center;
    }

    .site-nav {
        justify-content: center;
    }

    .pink-hero {
        border-radius: clamp(1rem, 5vw, 1.5rem);
        margin-inline: 1rem;
    }

    .pink-hero__content {
        width: min(100% - 2rem, 64rem);
        gap: 1.25rem;
        padding: 4rem 0;
    }

    .pink-hero__layer {
        filter: blur(28px);
    }

    .pink-hero__title {
        max-width: 11ch;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions > a {
        width: 100%;
    }

    .wizard-visual {
        display: none;
    }

    .quote-form {
        padding: 1.25rem;
    }

    .wizard-progress__list {
        /* Ensure readable labels on small screens */
        font-size: 0.9em;
    }

    /* UI God: Performance - simplify shadows on mobile */
    .glass-panel, .service-card, .testimonial-card, .pink-hero {
        box-shadow: none !important;
        border: 1px solid var(--surface-border-strong);
    }

    .installer-card,
    .auth-card {
        padding: 1.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-fade-in {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    [data-parallax-depth] {
        transform: none !important;
        transition: none !important;
    }

    .pink-hero::after,
    .pink-hero__background::before,
    .pink-hero__background::after,
    .pink-hero__layer,
    .service-card::before,
    .service-card::after,
    .testimonial-card::before,
    .testimonial-card::after,
    .site-footer::before,
    .site-footer::after {
        animation: none !important;
        transition: none !important;
    }

    .quote-form[data-wizard-initialized='true'] [data-wizard-step] {
        animation: none !important;
        transition: none !important;
    }

    .wizard-progress__meter,
    .service-option__content,
    .availability-option,
    .wizard-nav {
        transition: none !important;
    }

    .wizard-visual__halo {
        animation: none !important;
    }

    .service-card::before,
    .service-card::after,
    .testimonial-card::after {
        opacity: 0 !important;
    }

    .cta-primary,
    .cta-secondary {
        transition: none;
    }
}

/* UI God: Loading States & Animations */
.wizard-nav.is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.wizard-nav.is-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.2em;
    height: 1.2em;
    margin-left: -0.6em;
    margin-top: -0.6em;
    border: 2px solid hsla(0, 0%, 100%,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.wizard-field.has-error {
    animation: shake 0.4s ease-in-out;
}

/* Footer Stacking */
.footer-contact-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.footer-links-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-separator {
    color: hsla(336, 43%, 26%, 0.4);
}

@media (max-width: 639px) {
    .footer-contact-block {
        flex-direction: column;
        gap: 0.25rem;
    }
    .footer-links-group {
        flex-direction: column;
        gap: 0.25rem;
    }
    .footer-separator {
        display: none;
    }
}

:root {
    --blush-50: hsl(336, 100%, 97%);
    --blush-100: hsl(339, 100%, 95%);
    --blush-200: hsl(339, 100%, 90%);
    --blush-300: hsl(338, 86%, 82%);
    --blush-400: hsl(338, 77%, 73%);
    --blush-500: hsl(337, 74%, 64%);
    --blush-600: hsl(337, 59%, 56%);
    --peony-400: hsl(297, 55%, 71%);
    --peony-500: hsl(297, 43%, 57%);
    --mulberry-700: hsl(336, 43%, 26%);
    --mulberry-800: hsl(308, 39%, 19%);
    --surface-soft: radial-gradient(circle at 12% 18%, rgba(255, 214, 236, 0.5), transparent 54%),
        radial-gradient(circle at 88% 10%, rgba(231, 197, 238, 0.36), transparent 56%),
        linear-gradient(180deg, #fff7fb, #fff0f6 42%, #fdf2f8);
    --surface-glass: hsla(0, 0%, 100%, 0.88);
    --surface-border: hsla(337, 74%, 64%, 0.16);
    --surface-border-strong: hsla(337, 74%, 64%, 0.28);
    --shadow-soft: 0 28px 68px hsla(336, 43%, 26%, 0.12);
    --shadow-glow: 0 20px 48px hsla(337, 74%, 64%, 0.16);
}

.site-header__inner {
    width: min(100% - 2rem, 66rem);
}

.section-block {
    padding: clamp(3.5rem, 7vw, 5rem) 1.25rem;
}

.section-inner {
    max-width: 64rem;
    gap: 1.2rem;
}

.pink-hero {
    max-width: 66rem;
    border-radius: clamp(1.6rem, 4vw, 2.75rem);
    background: linear-gradient(145deg, hsla(0, 0%, 100%, 0.95), hsla(339, 100%, 95%, 0.78));
    box-shadow: 0 30px 80px hsla(336, 43%, 26%, 0.12);
}

.pink-hero__background {
    background: radial-gradient(circle at 14% 14%, hsla(337, 74%, 64%, 0.24), transparent 62%),
        radial-gradient(circle at 88% 8%, hsla(297, 55%, 71%, 0.22), transparent 58%),
        linear-gradient(165deg, hsla(0, 0%, 100%, 0.92), hsla(0, 0%, 100%, 0));
}

.pink-hero__content.cleaning-hero__content {
    width: min(100% - 2.5rem, 60rem);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    text-align: left;
}

.cleaning-hero__copy {
    display: grid;
    gap: 1.25rem;
    align-content: center;
}

.hero-actions {
    justify-content: flex-start;
}

.cleaning-hero__panel {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), hsla(339, 100%, 95%, 0.82));
}

.cleaning-hero__panel-eyebrow {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: hsla(336, 43%, 26%, 0.62);
}

.cleaning-hero__metrics {
    display: grid;
    gap: 0.8rem;
}

.cleaning-hero__metric {
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--surface-border);
    background: rgba(255, 255, 255, 0.82);
}

.cleaning-hero__metric strong {
    color: var(--mulberry-800);
}

.cleaning-hero__metric span,
.cleaning-hero__checklist {
    color: hsla(336, 43%, 26%, 0.72);
}

.cleaning-hero__checklist {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.55rem;
}

.section-panel {
    padding: clamp(1.35rem, 2vw, 1.8rem);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--surface-border);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: 1.2rem;
    align-items: start;
}

.about-panel__copy,
.about-panel__facts,
.section-header-stack {
    display: grid;
    gap: 0.8rem;
}

.section-header-stack--centered {
    text-align: center;
    justify-items: center;
}

.about-fact {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid var(--surface-border);
    background: linear-gradient(180deg, rgba(245, 251, 252, 0.94), rgba(255, 255, 255, 0.96));
}

.about-fact h3,
.quote-intro-card__title {
    margin: 0 0 0.35rem;
    color: var(--mulberry-800);
}

.about-fact p,
.service-card__detail,
.quote-intro-card__body {
    margin: 0;
    color: hsla(214, 31%, 24%, 0.72);
}

.service-grid,
.testimonial-grid {
    margin-top: 1.6rem;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    min-height: 100%;
    display: grid;
    gap: 0.75rem;
}

.service-card__body {
    margin: 0;
}

.service-card__detail {
    padding-top: 0.85rem;
    border-top: 1px solid var(--surface-border);
    font-size: 0.95rem;
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-layout {
    gap: 1.5rem;
}

.quote-intro {
    max-width: none;
}

.quote-intro-card {
    display: grid;
    gap: 0.55rem;
    padding: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 250, 0.94));
}

@media (min-width: 900px) {
    .quote-layout {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }
}

@media (max-width: 960px) {
    .pink-hero__content.cleaning-hero__content,
    .about-panel,
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 961px) and (max-height: 920px) {
    .pink-hero__content.cleaning-hero__content {
        align-items: start;
        padding: clamp(2rem, 4vw, 2.75rem) 0;
    }

    .cleaning-hero__copy {
        align-content: start;
    }

    .cleaning-hero__panel {
        gap: 0.72rem;
        padding: 1rem;
    }

    .cleaning-hero__metric {
        padding: 0.68rem 0.82rem;
    }

    .cleaning-hero__checklist {
        gap: 0.34rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 639px) {
    .site-header__inner {
        width: min(100% - 1rem, 66rem);
    }

    .pink-hero {
        margin-inline: 0.75rem;
    }

    .pink-hero__content.cleaning-hero__content {
        width: min(100% - 1.5rem, 60rem);
        gap: 1rem;
        padding: 3rem 0;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions > a {
        width: 100%;
        text-align: center;
    }
}

html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.05); }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.3); }

/* MA admin local utility fallback.
   Admin pages use utility-style classes, but the dashboard must remain styled
   when Tailwind's CDN is slow or unavailable. Scope this to the admin body so
   the customer-facing site keeps its own visual system. */
body.text-slate-800 {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: #1e293b;
    font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.text-slate-800 *,
body.text-slate-800 *::before,
body.text-slate-800 *::after {
    box-sizing: border-box;
}

body.text-slate-800 a {
    color: inherit;
    text-decoration: none;
}

body.text-slate-800 button,
body.text-slate-800 input,
body.text-slate-800 select,
body.text-slate-800 textarea {
    font: inherit;
}

body.text-slate-800 button {
    cursor: pointer;
}

body.text-slate-800 table {
    border-collapse: collapse;
}

body.text-slate-800 .hidden { display: none !important; }
body.text-slate-800 .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
body.text-slate-800 .block { display: block !important; }
body.text-slate-800 .inline-flex { display: inline-flex !important; }
body.text-slate-800 .flex { display: flex !important; }
body.text-slate-800 .grid { display: grid !important; }
body.text-slate-800 .flex-col { flex-direction: column !important; }
body.text-slate-800 .flex-wrap { flex-wrap: wrap !important; }
body.text-slate-800 .flex-1 { flex: 1 1 0% !important; }
body.text-slate-800 .items-center { align-items: center !important; }
body.text-slate-800 .items-start { align-items: flex-start !important; }

/* MA mobile operations surfaces: customer onboarding, jobs, and crew actions. */
body.text-slate-800 .ma-mobile-job-list {
    display: none;
}

body.text-slate-800 .ma-mobile-job-card {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(126, 55, 88, 0.08);
}

body.text-slate-800 .ma-mobile-job-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

body.text-slate-800 .ma-mobile-job-card__title {
    display: block;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 900;
}

body.text-slate-800 .ma-mobile-job-card p {
    margin: 0.25rem 0 0;
    color: #64748b;
    font-size: 0.95rem;
}

body.text-slate-800 .ma-mobile-job-card dl {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

body.text-slate-800 .ma-mobile-job-card dl div {
    display: grid;
    gap: 0.12rem;
}

body.text-slate-800 .ma-mobile-job-card dt {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.text-slate-800 .ma-mobile-job-card dd {
    margin: 0;
    color: #1e293b;
    overflow-wrap: anywhere;
}

body.text-slate-800 .ma-mobile-status {
    flex: 0 0 auto;
    border: 1px solid rgba(244, 114, 182, 0.3);
    border-radius: 999px;
    background: #fdf2f8;
    color: #9d174d;
    padding: 0.35rem 0.58rem;
    font-size: 0.75rem;
    font-weight: 900;
}

body.text-slate-800 .ma-crew-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

body.text-slate-800 .ma-crew-actions button {
    min-height: 2.85rem;
    border: 1px solid rgba(244, 114, 182, 0.38);
    border-radius: 0.78rem;
    background: linear-gradient(135deg, #fdf2f8, #ecfdf5);
    color: #9d174d;
    font-size: 0.95rem;
    font-weight: 900;
}

body.text-slate-800 .ma-crew-actions textarea {
    grid-column: 1 / -1;
    min-height: 5rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.78rem;
    padding: 0.8rem;
    resize: vertical;
}

body.text-slate-800 .ma-crew-actions--detail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 767px) {
    body.text-slate-800 {
        font-size: 16px;
    }

    body.text-slate-800 input,
    body.text-slate-800 select,
    body.text-slate-800 textarea,
    body.text-slate-800 button {
        min-height: 44px;
        font-size: 16px;
    }

    body.text-slate-800 .ma-desktop-table {
        display: none !important;
    }

    body.text-slate-800 .ma-mobile-job-list {
        display: grid;
        gap: 0.9rem;
    }

    body.text-slate-800 .ma-mobile-job-card__header {
        flex-direction: column;
    }

    body.text-slate-800 .ma-crew-actions,
    body.text-slate-800 .ma-crew-actions--detail {
        grid-template-columns: 1fr;
    }

    body.text-slate-800 .grid,
    body.text-slate-800 .md\:grid-cols-2,
    body.text-slate-800 .md\:grid-cols-3,
    body.text-slate-800 .lg\:grid-cols-3 {
        min-width: 0;
    }

    body.text-slate-800 table {
        min-width: 0;
    }

    body.text-slate-800 .glass-table thead {
        display: none;
    }

    body.text-slate-800 .glass-table,
    body.text-slate-800 .glass-table tbody,
    body.text-slate-800 .glass-table tr,
    body.text-slate-800 .glass-table td {
        display: block;
        width: 100%;
    }

    body.text-slate-800 .glass-table tr {
        margin: 0.75rem;
        padding: 0.85rem;
        border: 1px solid rgba(226, 232, 240, 0.95) !important;
        border-radius: 0.9rem;
        background: rgba(255,255,255,0.94);
    }

    body.text-slate-800 .glass-table td {
        padding: 0.45rem 0 !important;
    }

    body.text-slate-800 .overflow-x-auto {
        max-width: 100%;
    }
}
body.text-slate-800 .justify-center { justify-content: center !important; }
body.text-slate-800 .justify-between { justify-content: space-between !important; }
body.text-slate-800 .text-center { text-align: center !important; }
body.text-slate-800 .text-left { text-align: left !important; }

body.text-slate-800 .fixed { position: fixed !important; }
body.text-slate-800 .sticky { position: sticky !important; }
body.text-slate-800 .relative { position: relative !important; }
body.text-slate-800 .absolute { position: absolute !important; }
body.text-slate-800 .inset-y-0 { top: 0 !important; bottom: 0 !important; }
body.text-slate-800 .left-0 { left: 0 !important; }
body.text-slate-800 .top-0 { top: 0 !important; }
body.text-slate-800 .z-10 { z-index: 10 !important; }
body.text-slate-800 .z-20 { z-index: 20 !important; }
body.text-slate-800 .z-30 { z-index: 30 !important; }

body.text-slate-800 .min-h-screen { min-height: 100vh !important; }
body.text-slate-800 .w-full { width: 100% !important; }
body.text-slate-800 .w-10 { width: 2.5rem !important; }
body.text-slate-800 .h-10 { height: 2.5rem !important; }
body.text-slate-800 .w-16 { width: 4rem !important; }
body.text-slate-800 .h-16 { height: 4rem !important; }
body.text-slate-800 .w-64 { width: 16rem !important; }
body.text-slate-800 .max-w-3xl { max-width: 48rem !important; }
body.text-slate-800 .min-w-0 { min-width: 0 !important; }

body.text-slate-800 .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
body.text-slate-800 .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
body.text-slate-800 .gap-1 { gap: 0.25rem !important; }
body.text-slate-800 .gap-2 { gap: 0.5rem !important; }
body.text-slate-800 .gap-3 { gap: 0.75rem !important; }
body.text-slate-800 .gap-4 { gap: 1rem !important; }
body.text-slate-800 .gap-6 { gap: 1.5rem !important; }
body.text-slate-800 .space-y-1 > * + * { margin-top: 0.25rem !important; }
body.text-slate-800 .space-y-2 > * + * { margin-top: 0.5rem !important; }
body.text-slate-800 .space-y-3 > * + * { margin-top: 0.75rem !important; }
body.text-slate-800 .space-y-4 > * + * { margin-top: 1rem !important; }
body.text-slate-800 .space-y-6 > * + * { margin-top: 1.5rem !important; }
body.text-slate-800 .space-y-8 > * + * { margin-top: 2rem !important; }

body.text-slate-800 .p-0 { padding: 0 !important; }
body.text-slate-800 .p-2 { padding: 0.5rem !important; }
body.text-slate-800 .p-3 { padding: 0.75rem !important; }
body.text-slate-800 .p-4 { padding: 1rem !important; }
body.text-slate-800 .p-5 { padding: 1.25rem !important; }
body.text-slate-800 .p-6 { padding: 1.5rem !important; }
body.text-slate-800 .p-8 { padding: 2rem !important; }
body.text-slate-800 .px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
body.text-slate-800 .px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
body.text-slate-800 .px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
body.text-slate-800 .py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
body.text-slate-800 .py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
body.text-slate-800 .py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
body.text-slate-800 .py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
body.text-slate-800 .py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
body.text-slate-800 .py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
body.text-slate-800 .py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
body.text-slate-800 .pt-2 { padding-top: 0.5rem !important; }
body.text-slate-800 .mx-auto { margin-left: auto !important; margin-right: auto !important; }

body.text-slate-800 .overflow-hidden { overflow: hidden !important; }
body.text-slate-800 .overflow-x-auto { overflow-x: auto !important; }
body.text-slate-800 .overflow-y-auto { overflow-y: auto !important; }

body.text-slate-800 .rounded-lg { border-radius: 0.5rem !important; }
body.text-slate-800 .rounded-xl { border-radius: 0.75rem !important; }
body.text-slate-800 .rounded-2xl { border-radius: 1rem !important; }
body.text-slate-800 .rounded-full { border-radius: 9999px !important; }
body.text-slate-800 .border { border-width: 1px !important; border-style: solid !important; }
body.text-slate-800 .border-b { border-bottom-width: 1px !important; border-bottom-style: solid !important; }
body.text-slate-800 .border-l-4 { border-left-width: 4px !important; border-left-style: solid !important; }
body.text-slate-800 .border-l-transparent { border-left-color: transparent !important; }
body.text-slate-800 .border-l-emerald-500 { border-left-color: #10b981 !important; }
body.text-slate-800 .border-white\/40 { border-color: rgba(255,255,255,0.4) !important; }
body.text-slate-800 .border-white\/50 { border-color: rgba(255,255,255,0.5) !important; }
body.text-slate-800 .border-white\/60 { border-color: rgba(255,255,255,0.6) !important; }
body.text-slate-800 .border-slate-200 { border-color: #e2e8f0 !important; }
body.text-slate-800 .border-slate-300 { border-color: #cbd5e1 !important; }
body.text-slate-800 .border-emerald-200 { border-color: #a7f3d0 !important; }
body.text-slate-800 .border-emerald-200\/50 { border-color: rgba(167,243,208,0.5) !important; }
body.text-slate-800 .border-amber-200\/50 { border-color: rgba(253,230,138,0.5) !important; }
body.text-slate-800 .border-rose-200\/50 { border-color: rgba(254,205,211,0.5) !important; }
body.text-slate-800 .border-dashed { border-style: dashed !important; }
body.text-slate-800 .last\:border-0:last-child { border-width: 0 !important; }

body.text-slate-800 .bg-white { background-color: #fff !important; }
body.text-slate-800 .bg-white\/50 { background-color: rgba(255,255,255,0.5) !important; }
body.text-slate-800 .bg-slate-50 { background-color: #f8fafc !important; }
body.text-slate-800 .bg-slate-100 { background-color: #f1f5f9 !important; }
body.text-slate-800 .bg-slate-800 { background-color: #1e293b !important; }
body.text-slate-800 .bg-emerald-50 { background-color: #ecfdf5 !important; }
body.text-slate-800 .bg-emerald-100 { background-color: #d1fae5 !important; }
body.text-slate-800 .bg-emerald-600 { background-color: #059669 !important; }
body.text-slate-800 .bg-amber-100 { background-color: #fef3c7 !important; }
body.text-slate-800 .bg-amber-200 { background-color: #fde68a !important; }
body.text-slate-800 .bg-rose-100 { background-color: #ffe4e6 !important; }
body.text-slate-800 .bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-from, #f472b6), var(--tw-gradient-to, #a855f7)) !important; }
body.text-slate-800 .bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from, #10b981), var(--tw-gradient-to, #14b8a6)) !important; }
body.text-slate-800 .from-blush-400 { --tw-gradient-from: #ef84ab; }
body.text-slate-800 .from-emerald-500 { --tw-gradient-from: #10b981; }
body.text-slate-800 .from-amber-100 { --tw-gradient-from: #fef3c7; }
body.text-slate-800 .to-peony-600 { --tw-gradient-to: #a4479c; }
body.text-slate-800 .to-teal-500 { --tw-gradient-to: #14b8a6; }
body.text-slate-800 .to-amber-200 { --tw-gradient-to: #fde68a; }

body.text-slate-800 .text-white { color: #fff !important; }
body.text-slate-800 .text-slate-500 { color: #64748b !important; }
body.text-slate-800 .text-slate-600 { color: #475569 !important; }
body.text-slate-800 .text-slate-700 { color: #334155 !important; }
body.text-slate-800 .text-slate-800 { color: #1e293b !important; }
body.text-slate-800 .text-slate-900 { color: #0f172a !important; }
body.text-slate-800 .text-emerald-600 { color: #059669 !important; }
body.text-slate-800 .text-emerald-700 { color: #047857 !important; }
body.text-slate-800 .text-emerald-800 { color: #065f46 !important; }
body.text-slate-800 .text-amber-700 { color: #b45309 !important; }
body.text-slate-800 .text-rose-700 { color: #be123c !important; }
body.text-slate-800 .text-blue-600 { color: #2563eb !important; }
body.text-slate-800 .text-blush-700 { color: #a83c66 !important; }

body.text-slate-800 .text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
body.text-slate-800 .text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
body.text-slate-800 .text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
body.text-slate-800 .text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
body.text-slate-800 .text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
body.text-slate-800 .text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
body.text-slate-800 .text-5xl { font-size: 3rem !important; line-height: 1 !important; }
body.text-slate-800 .font-medium { font-weight: 500 !important; }
body.text-slate-800 .font-semibold { font-weight: 600 !important; }
body.text-slate-800 .font-bold { font-weight: 700 !important; }
body.text-slate-800 .uppercase { text-transform: uppercase !important; }
body.text-slate-800 .tracking-wide { letter-spacing: 0.025em !important; }
body.text-slate-800 .tracking-wider { letter-spacing: 0.05em !important; }
body.text-slate-800 .underline { text-decoration: underline !important; }

body.text-slate-800 .shadow-sm { box-shadow: 0 1px 2px rgba(15,23,42,0.08) !important; }
body.text-slate-800 .shadow-md { box-shadow: 0 8px 18px rgba(15,23,42,0.12) !important; }
body.text-slate-800 .shadow-lg { box-shadow: 0 18px 34px rgba(15,23,42,0.15) !important; }
body.text-slate-800 .drop-shadow-sm { filter: drop-shadow(0 1px 1px rgba(15,23,42,0.12)) !important; }

body.text-slate-800 .transform { transform: translateX(0); }
body.text-slate-800 .-translate-x-full { transform: translateX(-100%) !important; }
body.text-slate-800 .translate-x-0 { transform: translateX(0) !important; }
body.text-slate-800 .transition { transition: all 160ms ease !important; }
body.text-slate-800 .transition-all { transition: all 160ms ease !important; }
body.text-slate-800 .transition-transform { transition: transform 200ms ease !important; }
body.text-slate-800 .duration-200 { transition-duration: 200ms !important; }

body.text-slate-800 .hover\:bg-white\/50:hover { background-color: rgba(255,255,255,0.5) !important; }
body.text-slate-800 .hover\:bg-emerald-50:hover { background-color: #ecfdf5 !important; }
body.text-slate-800 .hover\:bg-emerald-200:hover { background-color: #a7f3d0 !important; }
body.text-slate-800 .hover\:bg-emerald-700:hover { background-color: #047857 !important; }
body.text-slate-800 .hover\:bg-slate-900:hover { background-color: #0f172a !important; }
body.text-slate-800 .hover\:text-emerald-600:hover { color: #059669 !important; }
body.text-slate-800 .hover\:text-emerald-700:hover { color: #047857 !important; }
body.text-slate-800 .hover\:text-blush-700:hover { color: #a83c66 !important; }
body.text-slate-800 .hover\:scale-105:hover { transform: scale(1.05) !important; }

@media (min-width: 768px) {
    body.text-slate-800 .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    body.text-slate-800 .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (min-width: 1024px) {
    body.text-slate-800 .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    body.text-slate-800 .lg\:hidden { display: none !important; }
    body.text-slate-800 .lg\:static { position: static !important; }
    body.text-slate-800 .lg\:translate-x-0 { transform: translateX(0) !important; }
    body.text-slate-800 .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
    body.text-slate-800 .lg\:ml-0 { margin-left: 0 !important; }
}

@media (max-width: 1023px) {
    body.text-slate-800 main {
        padding-bottom: 2rem;
    }
}

@media (max-width: 639px) {
    body.text-slate-800 .grid-cols-2,
    body.text-slate-800 .md\:grid-cols-2,
    body.text-slate-800 .md\:grid-cols-3,
    body.text-slate-800 .lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    body.text-slate-800 .text-3xl {
        font-size: 1.55rem !important;
        line-height: 2rem !important;
    }

    body.text-slate-800 .glass-card {
        border-radius: 0.85rem;
    }
}

/* Admin mobile fit pass: keep the dashboard useful on narrow phones and
   folding-phone cover screens without relying on the external utility CDN. */
@media (max-width: 767px) {
    body.text-slate-800 .glass-header .px-4 {
        padding-left: 0.72rem !important;
        padding-right: 0.72rem !important;
    }

    body.text-slate-800 .glass-header .py-4 {
        padding-top: 0.52rem !important;
        padding-bottom: 0.52rem !important;
    }

    body.text-slate-800 .glass-header h1 {
        max-width: calc(100vw - 6rem) !important;
        font-size: 1rem !important;
        line-height: 1.18 !important;
    }

    body.text-slate-800 main.flex-1 {
        padding: 0.82rem 0.72rem 1rem !important;
    }

    body.text-slate-800 .space-y-8 > * + * {
        margin-top: 1rem !important;
    }

    body.text-slate-800 .space-y-6 > * + * {
        margin-top: 0.85rem !important;
    }

    body.text-slate-800 .p-6 {
        padding: 0.82rem !important;
    }

    body.text-slate-800 .text-3xl {
        font-size: 1.35rem !important;
        line-height: 1.18 !important;
    }

    body.text-slate-800 .text-2xl {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
    }

    body.text-slate-800 header .ma-profile {
        max-width: none !important;
        padding: 0.28rem !important;
    }

    body.text-slate-800 header .ma-profile__body,
    body.text-slate-800 header .ma-profile__role {
        display: none !important;
    }

    body.text-slate-800 .ma-profile__avatar {
        width: 2rem !important;
        height: 2rem !important;
        flex-basis: 2rem !important;
    }

    body.text-slate-800 #open-nav,
    body.text-slate-800 #close-nav {
        min-width: 2.35rem !important;
        min-height: 2.35rem !important;
        padding: 0.5rem !important;
    }

    body.text-slate-800 .glass-card.flex.flex-col.gap-2 {
        min-height: 7.4rem;
    }
}

@media (min-width: 520px) and (max-width: 899px) {
    body.text-slate-800 main .grid.gap-4.md\:grid-cols-2,
    body.text-slate-800 main .grid.gap-4.lg\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.text-slate-800 .glass-card.flex.flex-col.gap-2 {
        min-height: 8.2rem;
    }
}

/* MA hero silhouette and page motion system. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@keyframes ma-page-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes ma-page-exit {
    to {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
        filter: blur(8px);
    }
}

.cleaning-hero__panel .cleaning-hero__metric {
    position: relative;
    overflow: hidden;
}

.cleaning-hero__panel .cleaning-hero__metric::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.62), transparent);
    transform: translateX(-130%);
    opacity: 0;
}

.cleaning-hero__panel.is-visible .cleaning-hero__metric::after,
.pink-hero.is-visible .cleaning-hero__metric::after {
    animation: shimmer-sweep 2.4s ease forwards;
}

.cleaning-hero__panel.is-visible .cleaning-hero__metric:nth-child(2)::after,
.pink-hero.is-visible .cleaning-hero__metric:nth-child(2)::after {
    animation-delay: 0.16s;
}

.cleaning-hero__panel.is-visible .cleaning-hero__metric:nth-child(3)::after,
.pink-hero.is-visible .cleaning-hero__metric:nth-child(3)::after {
    animation-delay: 0.32s;
}

html.ma-page-ready body {
    animation: ma-page-enter 0.48s cubic-bezier(0.33, 1, 0.68, 1) both;
}

html.ma-page-leaving body {
    animation: ma-page-exit 0.18s ease both;
    pointer-events: none;
}

@media (max-width: 639px) {
    .pink-hero__background {
        contain: paint;
    }

    .hero-actions > a,
    .cta-primary,
    .cta-secondary {
        max-width: 100%;
    }

    .quote-form,
    .wizard-input,
    .wizard-select,
    .wizard-textarea {
        max-width: 100%;
        min-width: 0;
    }

}

@media (prefers-reduced-motion: reduce) {
    html.ma-page-ready body,
    html.ma-page-leaving body,
    .cleaning-hero__metric::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }
}
