.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: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--blush-400), var(--peony-500));
    color: #fff;
    box-shadow: 0 18px 40px hsla(337, 74%, 64%, 0.28);
    font-size: 1.4rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1.1rem;
    font-size: 0.95rem;
    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));
}

.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(192, 65%, 97%);
    --blush-100: hsl(192, 62%, 94%);
    --blush-200: hsl(191, 58%, 88%);
    --blush-300: hsl(188, 49%, 78%);
    --blush-400: hsl(188, 49%, 66%);
    --blush-500: hsl(188, 63%, 48%);
    --blush-600: hsl(190, 74%, 38%);
    --peony-400: hsl(159, 33%, 78%);
    --peony-500: hsl(160, 28%, 60%);
    --mulberry-700: hsl(214, 31%, 24%);
    --mulberry-800: hsl(214, 39%, 17%);
    --surface-soft: radial-gradient(circle at 12% 18%, rgba(183, 225, 236, 0.36), transparent 54%),
        radial-gradient(circle at 88% 10%, rgba(198, 227, 214, 0.34), transparent 56%),
        linear-gradient(180deg, #f8fcfd, #eef7fa 42%, #edf4f7);
    --surface-glass: hsla(0, 0%, 100%, 0.88);
    --surface-border: hsla(190, 44%, 44%, 0.16);
    --surface-border-strong: hsla(190, 44%, 44%, 0.26);
    --shadow-soft: 0 28px 68px hsla(201, 35%, 32%, 0.12);
    --shadow-glow: 0 20px 48px hsla(190, 74%, 38%, 0.14);
}

.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.94), hsla(192, 62%, 95%, 0.7));
    box-shadow: 0 30px 80px hsla(201, 35%, 32%, 0.12);
}

.pink-hero__background {
    background: radial-gradient(circle at 14% 14%, rgba(162, 214, 231, 0.34), transparent 62%),
        radial-gradient(circle at 88% 8%, rgba(186, 223, 203, 0.3), 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.92), rgba(240, 248, 250, 0.94));
}

.cleaning-hero__panel-eyebrow {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: hsla(214, 31%, 24%, 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(214, 31%, 24%, 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 (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); }
