:root {
    --navy: #071a3f;
    --navy-2: #05122b;
    --blue: #0d7be8;
    --lime: #b7dd16;
    --lime-2: #9fc70c;
    --white: #ffffff;
    --off: #091221;
    --paper: #040914;
    --ink: #f1f5f9;
    --muted: #94a3b8;
    --line: rgba(255, 255, 255, 0.05);
    --line-dark: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 32px 90px rgba(0, 0, 0, 0.7);
    --font-display: "Racing Sans One", "Arial Black", Impact, sans-serif;
    --font: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    --section-pad: clamp(18px, 4vw, 58px);
}

* { box-sizing: border-box; }
html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#services,
#proof,
#quote {
    scroll-margin-top: 112px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    overflow-x: hidden;
    background-image: 
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
figure { margin: 0; }
.mobile-only { display: none; }

.parallax-bg {
    transition: transform 0.1s ease-out;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(230px, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    padding: 12px clamp(18px, 4vw, 58px);
    background: rgba(4, 9, 20, 0.92);
    border-bottom: 1px solid var(--line-dark);
    backdrop-filter: blur(20px);
    transition: transform 0.24s ease, background 0.2s ease, border-color 0.2s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 6px 12px 6px 6px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
}

.brand-mark {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 14px;
    padding: 0;
    background: transparent;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}

.brand-mark-ai {
    overflow: hidden;
    background: #071a3f;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.brand-service {
    color: var(--lime);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    justify-self: center;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 800;
}

.nav a {
    padding: 8px 13px;
    border-radius: 999px;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav a[aria-current="page"] {
    color: var(--navy);
    background: var(--lime);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(183, 221, 22, 0.36);
    border-radius: 16px;
    background: rgba(183, 221, 22, 0.10);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--lime);
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle span:nth-child(3) { top: 33px; }

.site-header.is-menu-open .menu-toggle {
    background: var(--lime);
}

.site-header.is-menu-open .menu-toggle span {
    background: var(--navy);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    top: 25px;
    transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    top: 25px;
    transform: rotate(-45deg);
}

.header-cta,
.primary-btn,
.quote-form button,
.footer-cta {
    background: var(--lime);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(183, 221, 22, 0.30);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-cta {
    padding: 12px 18px;
    border-radius: 10px;
    white-space: nowrap;
}

.header-conversion {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.header-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(183, 221, 22, 0.24);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(183, 221, 22, 0.07);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 24px rgba(183, 221, 22, 0.08);
    transition: all 0.2s ease;
}

.header-proof::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.header-proof:hover {
    border-color: rgba(183, 221, 22, 0.46);
    background: rgba(183, 221, 22, 0.13);
    transform: translateY(-1px);
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    color: var(--white);
    background: rgba(255,255,255,0.05);
    font-family: var(--font-display);
    font-size: 0.86rem;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.instagram-link {
    gap: 8px;
}

.ig-icon {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-link.instagram-link,
.secondary-btn.instagram-link {
    min-width: 54px;
    padding-left: 0;
    padding-right: 0;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    min-height: min(960px, 100vh);
    padding: clamp(100px, 12vw, 160px) clamp(18px, 4vw, 58px) clamp(80px, 10vw, 130px);
    overflow: hidden;
    background: var(--navy);
}

.hero-bg-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    filter: brightness(0.76) contrast(1.08) saturate(1.04);
    transform: scale(1.12);
    will-change: transform;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(4, 9, 20, 0.95) 0%, rgba(4, 9, 20, 0.76) 42%, rgba(4, 9, 20, 0.32) 100%),
        linear-gradient(180deg, rgba(4, 9, 20, 0.22) 0%, rgba(4, 9, 20, 0.78) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--paper));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 780px;
}

.hero-proof-card {
    position: relative;
    z-index: 2;
    display: block;
    align-self: center;
    min-height: clamp(430px, 46vw, 640px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 28px;
    background: rgba(5, 18, 43, 0.94);
    box-shadow: var(--shadow-strong);
}

.hero-proof-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.86) contrast(1.08) saturate(1.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-proof-card:hover video {
    transform: scale(1.035);
}

.hero-proof-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(4, 9, 20, 0.94));
    pointer-events: none;
}

.hero-proof-copy {
    position: absolute;
    left: clamp(18px, 2.6vw, 28px);
    right: clamp(18px, 2.6vw, 28px);
    bottom: clamp(18px, 2.6vw, 28px);
    z-index: 2;
    display: grid;
    gap: 6px;
}

.hero-proof-copy strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    font-weight: 400;
    line-height: 0.94;
    text-transform: uppercase;
}

.hero-proof-copy span {
    color: var(--lime);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-line {
    position: absolute;
    top: 0;
    left: clamp(18px, 4vw, 58px);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue), transparent);
    opacity: 0.3;
}

.micro,
.label {
    display: inline-flex;
    align-items: center;
    color: var(--lime);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.micro {
    display: inline-block;
    max-width: 100%;
    padding: 7px 13px;
    margin-bottom: 22px;
    border: 1px solid rgba(183, 221, 22, 0.36);
    border-radius: 999px;
    background: rgba(183, 221, 22, 0.11);
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--white);
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(3.2rem, 7.2vw, 7.2rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.86;
    text-transform: uppercase;
}

h1 em {
    color: var(--lime);
    font-style: italic;
}

.hero-text {
    max-width: 580px;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 500;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

.primary-btn:hover,
.header-cta:hover,
.quote-form button:hover,
.footer-cta:hover {
    background: var(--lime-2);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(183, 221, 22, 0.4);
}

.header-link:hover,
.secondary-btn {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.secondary-btn:hover { 
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-row span {
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.03);
    font-size: 0.84rem;
    font-weight: 800;
    font-style: italic;
}

.motion-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: var(--navy);
    background: var(--lime);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(183, 221, 22, 0.22);
}

.booking-lane {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    padding: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 58px);
    background:
        linear-gradient(90deg, rgba(4, 9, 20, 0.98), rgba(7, 26, 63, 0.86)),
        url("assets/work/owner-supplied/red-house-clean/08-front-steps-after.jpg") center / cover;
    border-bottom: 1px solid var(--line);
}

.booking-copy {
    max-width: 620px;
}

.booking-copy .label {
    margin-bottom: 14px;
}

.booking-copy h2 {
    font-size: clamp(2rem, 4.2vw, 4rem);
}

.booking-copy p {
    max-width: 560px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.booking-step {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    background: rgba(5, 18, 43, 0.84);
    box-shadow: 0 18px 46px rgba(0,0,0,0.3);
    backdrop-filter: blur(16px);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.booking-step:hover {
    transform: translateY(-6px);
    border-color: rgba(183, 221, 22, 0.55);
    background: rgba(9, 31, 68, 0.94);
}

.booking-step span {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 28px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--lime);
    font-weight: 900;
}

.booking-step strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.booking-step small {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.booking-step-cta {
    border-color: rgba(183, 221, 22, 0.5);
    background: linear-gradient(180deg, rgba(183, 221, 22, 0.18), rgba(5, 18, 43, 0.9));
}

.section,
.why-us,
.reviews-section,
.quote-section {
    padding: clamp(80px, 10vw, 140px) clamp(18px, 4vw, 58px);
    position: relative;
}

.section-heading {
    max-width: 860px;
    margin-bottom: 64px;
}

.section-heading .label {
    margin-bottom: 14px;
    color: var(--blue);
}

.section-heading p {
    max-width: 640px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.55;
}

.proof-cue {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.proof-cue span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(183, 221, 22, 0.36);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(183, 221, 22, 0.08);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

.proof-cue span + span {
    border-color: rgba(0, 162, 255, 0.32);
    color: var(--blue);
    background: rgba(0, 162, 255, 0.08);
}

h2 {
    margin-bottom: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.96;
    text-transform: uppercase;
}

.visual-services {
    display: flex;
    gap: 18px;
    margin-inline: calc(var(--section-pad) * -0.35);
    padding: 4px calc(var(--section-pad) * 0.35) 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc(var(--section-pad) * 0.35);
    scrollbar-width: thin;
    scrollbar-color: rgba(183, 221, 22, 0.72) rgba(255, 255, 255, 0.08);
}

.visual-services::-webkit-scrollbar {
    height: 8px;
}

.visual-services::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.visual-services::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lime), var(--blue));
}

.visual-services article {
    position: relative;
    flex: 0 0 clamp(280px, 28vw, 340px);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--navy-2);
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-services article:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--blue);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.visual-services article > img,
.softwash-card {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.visual-services .ba-stage {
    height: 220px;
    min-height: 220px;
}

.snap-video-frame {
    position: relative;
    aspect-ratio: auto;
    height: 220px;
    min-height: 0;
    overflow: hidden;
    background: #02060f;
}

.snap-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.08) saturate(1.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.snap-video-card:hover .snap-video-frame video {
    transform: scale(1.04);
}

.snap-video-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(4, 9, 20, 0.72));
    pointer-events: none;
}

.visual-services .ba-chip {
    top: 14px;
    padding: 7px 10px;
    font-size: 0.66rem;
}

.visual-services .ba-chip-before {
    left: 14px;
}

.visual-services .ba-chip-after {
    right: 14px;
}

.visual-services article > div:not(.ba-stage):not(.softwash-card):not(.snap-video-frame) {
    padding: 22px;
}

.visual-services article > div:not(.ba-stage):not(.snap-video-frame) > span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.visual-services h3,
.why-card h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.visual-services p,
.why-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.visual-services article a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 16px;
    padding: 0 14px;
    border: 1px solid rgba(183, 221, 22, 0.28);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(183, 221, 22, 0.08);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.visual-services article a:hover {
    color: var(--navy);
    background: var(--lime);
}

.reviews-section {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(183, 221, 22, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(4, 9, 20, 0.96), rgba(7, 26, 63, 0.9));
}

.reviews-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.reviews-panel {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(4, 9, 20, 0.68);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    width: 100%;
    max-width: 430px;
}

.reviews-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: var(--white);
    background:
        conic-gradient(from 40deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
    font-family: Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.reviews-panel strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.reviews-panel span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.42;
}

.reviews-summary-stars {
    grid-column: 1 / -1;
    color: #fbbc05;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    line-height: 1;
}

.reviews-google-btn,
.reviews-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reviews-google-btn {
    grid-column: 1 / -1;
    margin-top: 12px;
    color: var(--navy);
    background: var(--lime);
    box-shadow: 0 18px 42px rgba(183, 221, 22, 0.2);
}

.reviews-quote-btn {
    grid-column: 1 / -1;
    color: var(--lime);
    border: 1px solid rgba(183, 221, 22, 0.32);
    background: rgba(183, 221, 22, 0.08);
}

.google-review-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 340px);
    gap: 18px;
    max-width: 1180px;
    margin: clamp(26px, 4vw, 46px) auto 0;
    padding: 4px 4px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(183, 221, 22, 0.58) rgba(255, 255, 255, 0.09);
}

.google-review-card {
    min-height: 252px;
    padding: 18px;
    border-radius: 8px;
    color: #172033;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
    scroll-snap-align: start;
}

.google-review-head {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: #005a4c;
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
}

.reviewer-photo {
    background: linear-gradient(135deg, #f0c58b, #a26342 55%, #fff 56%);
    font-size: 0.68rem;
}

.avatar-green {
    background: #005a4c;
}

.avatar-orange {
    background: #f4511e;
}

.avatar-red {
    background: #bf360c;
}

.avatar-purple {
    background: #ab47bc;
}

.avatar-teal {
    background: #00897b;
}

.google-review-head h3 {
    margin: 0;
    color: #0f172a;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: none;
}

.google-review-head span {
    color: #5f6368;
    font-size: 0.82rem;
}

.google-card-mark {
    color: #4285f4;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #5f6368;
    font-size: 0.9rem;
}

.review-meta span {
    color: #fbbc05;
    letter-spacing: 0.01em;
}

.review-meta time {
    font: inherit;
}

.google-review-card p {
    margin: 14px 0 0;
    color: #172033;
    font-size: 0.97rem;
    line-height: 1.42;
}

.owner-reply {
    margin-top: 18px;
    padding-left: 14px;
    border-left: 2px solid #d8dde6;
}

.owner-reply span {
    color: #172033;
    font-size: 0.86rem;
    font-weight: 800;
}

.owner-reply p {
    margin-top: 6px;
    font-size: 0.9rem;
}

.gallery-main {
    background:
        radial-gradient(circle at 12% 8%, rgba(13, 123, 232, 0.18), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(183, 221, 22, 0.12), transparent 26%),
        var(--navy);
}

.gallery-main .reveal {
    opacity: 1;
    transform: none;
}

main > section.reveal {
    opacity: 1;
    transform: none;
}

.gallery-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.76fr) minmax(420px, 1.24fr);
    gap: clamp(34px, 5vw, 82px);
    align-items: center;
    min-height: calc(100svh - 84px);
    padding: clamp(78px, 10vw, 132px) var(--section-pad) clamp(48px, 8vw, 92px);
    overflow: hidden;
}

.gallery-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.gallery-hero .label,
.gallery-section .label {
    color: var(--lime);
}

.gallery-hero h1 {
    margin: 14px 0 22px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.45vw, 5.6rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.92;
    text-transform: uppercase;
}

.gallery-hero p,
.gallery-cta p {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.55;
}

.gallery-hero-media {
    position: relative;
    z-index: 1;
}

.gallery-feature-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    background: var(--navy-2);
    box-shadow: var(--shadow-strong);
}

.gallery-feature-card .ba-stage {
    min-height: min(68vh, 680px);
}

.gallery-proof-photo {
    position: relative;
    min-height: min(68vh, 680px);
}

.gallery-proof-photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.08) saturate(1.04);
}

.gallery-proof-photo figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(183, 221, 22, 0.34);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(4, 9, 20, 0.78);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.gallery-section {
    background: var(--paper);
}

.gallery-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.gallery-filter {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.gallery-filter.is-active,
.gallery-filter:hover {
    color: var(--navy);
    border-color: var(--lime);
    background: var(--lime);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--navy-2);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.gallery-item[hidden] {
    display: none;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
    min-height: 658px;
}

.gallery-item img,
.gallery-item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.86) contrast(1.08) saturate(1.04);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.055);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(4, 9, 20, 0.86));
    pointer-events: none;
}

.gallery-item div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
}

.gallery-item span {
    display: block;
    margin-bottom: 8px;
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-item h2 {
    max-width: 420px;
    color: var(--white);
    font-size: clamp(1.3rem, 2.1vw, 2.1rem);
    line-height: 0.98;
}

.gallery-cta {
    padding: clamp(58px, 8vw, 104px) var(--section-pad);
    background:
        linear-gradient(120deg, rgba(4, 9, 20, 0.94), rgba(7, 26, 63, 0.78)),
        url("assets/work/owner-supplied/house-wash-clean/08-house-front-after.jpg") center / cover;
}

.gallery-cta h2 {
    max-width: 760px;
    margin-bottom: 18px;
}

.gallery-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 18px;
    padding: 0 22px;
    border-radius: 12px;
    color: var(--navy);
    background: var(--lime);
    font-family: var(--font-display);
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(183, 221, 22, 0.30);
}

.why-us {
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.why-us::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.why-us .section-heading .label { color: var(--lime); }

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

.why-card {
    min-width: 0;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}


.photo-tile {
    position: relative;
    min-height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy-2);
}

.ba-stage {
    --position: 48%;
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: #02060f;
    isolation: isolate;
}


.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.08) saturate(1.05);
}

.ba-before-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    clip-path: inset(0 52% 0 0);
}

.ba-before {
    width: 100%;
    filter: brightness(0.82) contrast(1.1) saturate(0.88);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 48%;
    z-index: 4;
    width: 2px;
    background: var(--lime);
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle span {
    display: none;
}

.ba-handle span::before,
.ba-handle span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--lime);
    border-left: 2px solid var(--lime);
}

.ba-handle span::before {
    left: 15px;
    transform: translateY(-50%) rotate(-45deg);
}

.ba-handle span::after {
    right: 15px;
    transform: translateY(-50%) rotate(135deg);
}

.ba-range {
    position: absolute;
    inset: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}


.ba-chip {
    position: absolute;
    top: 20px;
    z-index: 5;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    color: var(--white);
    background: rgba(4, 9, 20, 0.76);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.ba-chip-before { left: 20px; }
.ba-chip-after { right: 20px; color: var(--lime); }


.proof-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.photo-tile {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--navy-2);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.photo-tile.tall { grid-row: span 2; }

.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-tile:hover img { transform: scale(1.08); }


.play-dot {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 14px 36px rgba(183, 221, 22, 0.28);
}

.play-dot::before {
    content: "";
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--navy);
}

.quote-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.1fr);
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
    background:
        linear-gradient(125deg, rgba(4, 9, 20, 0.90), rgba(7, 26, 63, 0.76)),
        url("assets/work/before-after/sidewalk-after.jpg") center 58% / cover;
}

.quote-copy,
.quote-form {
    position: relative;
    z-index: 1;
}

.quote-section .label { color: var(--lime); }
.quote-section h2 {
    color: var(--white);
    margin: 16px 0 24px;
}

.quote-trust {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
}

.stars {
    display: block;
    margin-bottom: 12px;
    color: var(--lime);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.quote-trust blockquote {
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: clamp(30px, 4vw, 50px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    background: rgba(9, 18, 33, 0.95);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(30px);
}

.form-head,
.quote-actions,
.quote-status {
    grid-column: 1 / -1;
}

.form-head {
    display: grid;
    gap: 8px;
    padding-bottom: 10px;
}

.form-head strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.form-head span,
.file-drop span,
.quote-status {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.quote-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-form label:has(textarea),
.file-drop {
    grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 15px;
    color: var(--white);
    background: rgba(255,255,255,0.03);
    font: inherit;
    transition: all 0.2s ease;
}

.file-drop {
    padding: 16px;
    border: 1px dashed rgba(183, 221, 22, 0.35);
    border-radius: 18px;
    background: rgba(183, 221, 22, 0.06);
}

.file-drop input {
    border-style: dashed;
    background: rgba(4, 9, 20, 0.45);
}

.quote-form textarea {
    min-height: 120px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255,255,255,0.06);
}

.quote-form button {
    min-height: 60px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}

.quote-actions a {
    display: inline-grid;
    place-items: center;
    min-height: 60px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    color: var(--white);
    background: rgba(255,255,255,0.07);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-actions a.instagram-link {
    min-width: 64px;
    padding-left: 18px;
    padding-right: 18px;
}

.quote-actions a:hover {
    border-color: var(--blue);
    background: rgba(13, 123, 232, 0.16);
}

.quote-status {
    margin: -4px 0 0;
}

.quote-status.is-ready {
    color: var(--lime);
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 48px clamp(18px, 4vw, 58px);
    background: #02060f;
    border-top: 1px solid var(--line);
}

footer strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-sub {
    display: block;
    margin-top: 6px;
    color: var(--lime);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a:hover { color: var(--white); }

.footer-cta {
    padding: 12px 24px;
    border-radius: 12px;
}

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

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto 1fr;
    }

    .header-conversion {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .header-proof,
    .header-link,
    .header-cta {
        flex: 1 1 auto;
        justify-content: center;
    }

    .booking-lane { grid-template-columns: 1fr; }
    .hero { grid-template-columns: 1fr; }
    .hero-inner { max-width: 760px; }
    .hero-proof-card {
        width: min(100%, 720px);
        min-height: 520px;
    }
    .visual-services article { flex-basis: clamp(270px, 40vw, 330px); }
    .gallery-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .gallery-feature-card .ba-stage {
        min-height: 540px;
    }
    .gallery-proof-photo {
        min-height: 540px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header { grid-template-columns: 1fr; }

    .nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .booking-steps,
    .why-grid,
    .quote-section {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px;
    }

    .photo-tile.tall {
        grid-row: span 1;
        grid-column: 1 / -1;
    }

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

    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    body {
        width: 100%;
        padding-bottom: 72px;
        overflow-x: hidden;
        background-image: none;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        width: 100%;
        padding: 10px 14px;
        z-index: 90;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    }

    body.nav-drawer-open {
        overflow: hidden;
    }

    .site-header::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 92;
        background: rgba(2, 6, 15, 0.68);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
    }

    .site-header.is-menu-open::before {
        opacity: 1;
        pointer-events: auto;
    }

    .site-header.is-hidden {
        transform: translateY(calc(-100% - 2px));
    }

    main,
    .hero,
    .section,
    .why-us,
    .reviews-section,
    .quote-section,
    footer {
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    main {
        padding-top: 104px;
    }

    .section,
    .why-us {
        background: var(--paper);
    }

    .hero-line,
    .hero::after {
        display: none;
    }

    .parallax-bg {
        transform: none !important;
        transition: none;
    }

    .brand-mark {
        width: 50px;
        height: 50px;
    }

    .brand {
        width: 100%;
        max-width: none;
        min-height: 68px;
    }

    .brand-service {
        font-size: 0.68rem;
        white-space: normal;
    }

    .header-conversion { display: none; }

    .menu-toggle {
        display: block;
        align-self: center;
        z-index: 112;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 104;
        width: min(84vw, 340px);
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 10px;
        padding: 104px 18px 120px;
        border: 0;
        border-left: 1px solid rgba(183, 221, 22, 0.20);
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(7, 26, 63, 0.98), rgba(4, 9, 20, 0.99)),
            var(--navy);
        box-shadow: -28px 0 70px rgba(0, 0, 0, 0.52);
        color: var(--white);
        opacity: 1;
        overflow-y: auto;
        transform: translateX(105%);
        transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .site-header.is-menu-open .nav {
        transform: translateX(0);
    }

    .nav a {
        min-width: 0;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 14px;
        background: rgba(255,255,255,0.055);
        color: rgba(255,255,255,0.86);
        text-align: left;
        font-size: 0.92rem;
    }

    .nav a::after {
        content: ">";
        color: var(--lime);
        font-family: var(--font-body);
        font-weight: 900;
    }

    .nav a:hover,
    .nav a[aria-current="page"] {
        color: var(--navy);
        background: var(--lime);
    }

    .nav a:hover::after,
    .nav a[aria-current="page"]::after {
        color: var(--navy);
    }

    #services,
    #proof,
    #quote {
        scroll-margin-top: 116px;
    }

    .hero {
        padding-top: 28px;
        padding-left: 20px;
        padding-right: 20px;
        background-attachment: scroll;
        gap: 28px;
    }

    .gallery-hero,
    .gallery-section,
    .gallery-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-hero {
        padding-top: 26px;
        gap: 24px;
        min-height: auto;
    }

    .gallery-hero h1 {
        max-width: 350px;
        font-size: clamp(2.35rem, 10vw, 3.2rem);
        line-height: 0.9;
    }

    .gallery-hero p,
    .gallery-cta p {
        max-width: 350px;
        font-size: 1rem;
    }

    .gallery-feature-card {
        border-radius: 20px;
    }

    .gallery-feature-card .ba-stage {
        min-height: 300px;
    }

    .gallery-proof-photo {
        min-height: 300px;
    }

    .gallery-toolbar {
        flex-wrap: nowrap;
        margin-inline: -20px;
        padding: 0 20px 6px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .gallery-toolbar::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter {
        flex: 0 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item,
    .gallery-item-wide,
    .gallery-item-tall {
        min-height: 310px;
        border-radius: 20px;
    }

    .gallery-item h2 {
        max-width: 290px;
        font-size: 1.45rem;
    }

    .gallery-cta {
        padding-top: 58px;
        padding-bottom: 72px;
    }
    .mobile-only { display: block; }

    .hero-inner,
    .hero-text,
    .hero-actions,
    .trust-row,
    .micro,
    .hero-proof-card {
        width: 100%;
        max-width: 350px;
    }

    .hero-proof-card {
        min-height: 390px;
        border-radius: 20px;
    }

    .hero-proof-copy strong {
        font-size: clamp(1.75rem, 8vw, 2.45rem);
    }

    h1 {
        width: 100%;
        max-width: 350px;
        font-size: clamp(2.24rem, 9.5vw, 2.9rem);
        line-height: 0.88;
        overflow-wrap: normal;
    }

    h2 {
        max-width: 350px;
        font-size: clamp(2.05rem, 9vw, 2.75rem);
        line-height: 0.94;
    }

    .section-heading {
        max-width: 350px;
    }

    .reviews-section {
        padding-inline: 14px;
    }

    .reviews-inner {
        width: 100%;
        min-width: 0;
    }

    .reviews-panel {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
        width: calc(100vw - 28px);
        max-width: 350px;
        box-sizing: border-box;
        border-radius: 18px;
    }

    .reviews-google-btn,
    .reviews-quote-btn {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding-inline: 12px;
        font-size: 0.78rem;
    }

    .google-review-rail {
        grid-auto-columns: minmax(224px, 82vw);
        width: 100%;
        max-width: 100%;
        margin-top: 26px;
    }

    .google-review-card {
        padding: 16px;
    }

    .reviews-mark {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 1.35rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        margin-bottom: 22px;
    }

    .trust-row {
        display: none;
    }

    .hero-actions a {
        width: 100%;
        max-width: 350px;
    }

    .quote-form,
    .quote-actions {
        grid-template-columns: 1fr;
    }

    .booking-lane {
        padding: 58px 20px;
    }

    .booking-copy,
    .booking-copy p {
        max-width: 350px;
    }

    .booking-step {
        padding: 22px;
    }

    .photo-tile {
        width: 100%;
        max-width: 100%;
    }

    .visual-services {
        gap: 14px;
        margin-inline: -20px;
        padding-inline: 20px;
        scroll-padding-inline: 20px;
    }

    .visual-services article {
        flex-basis: min(82vw, 310px);
        border-radius: 20px;
    }

    .photo-tile { min-height: 270px; }
    .ba-stage { min-height: 440px; }
    .visual-services .ba-stage {
        height: 220px;
        min-height: 220px;
    }
    .snap-video-frame {
        aspect-ratio: auto;
        height: 220px;
        min-height: 0;
    }
    .ba-chip {
        top: 14px;
        padding: 8px 11px;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
    .ba-chip-before { left: 12px; }
    .ba-chip-after {
        right: 12px;
    }
    footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-booking-bar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 80;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 16px;
        background: rgba(7, 26, 63, 0.92);
        box-shadow: 0 18px 48px rgba(0,0,0,0.28);
        backdrop-filter: blur(14px);
    }

    .mobile-booking-bar a {
        display: grid;
        place-items: center;
        min-height: 48px;
        border-radius: 12px;
        color: var(--white);
        background: rgba(255,255,255,0.11);
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .mobile-booking-bar a.instagram-link .ig-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-booking-bar a:first-child {
        color: var(--navy);
        background: var(--lime);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header {
        transition: none;
    }
}

/* Premium Reveal & Glows */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 1200;
    background: linear-gradient(90deg, var(--lime), #0d7be8);
    box-shadow: 0 0 12px rgba(183, 221, 22, 0.6);
    pointer-events: none;
    transition: width 0.08s linear;
}

/* Staggered scroll reveals for cards / columns */
.reveal-item {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-item.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scroll-progress {
        display: none;
    }

    .hero-bg-image {
        transform: scale(1.04);
    }
}

.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 123, 232, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section {
    position: relative;
    overflow: hidden;
}

.service-grid article {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.service-grid article:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.primary-btn {
    position: relative;
    overflow: hidden;
}

/* Quote Submission & Toast Success Styles */
.copied-state {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.5) !important;
    transform: scale(1.02) !important;
    transition: all 0.3s ease !important;
}

.quote-success-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    max-width: 420px;
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    background: rgba(4, 9, 20, 0.95);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: toast-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toast-slide-in {
    from {
        transform: translateY(100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.toast-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-title {
    color: #10b981;
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.toast-close:hover {
    color: var(--white);
}

.toast-body {
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.45;
}

.toast-footer {
    display: flex;
    justify-content: flex-end;
}

.toast-action-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    background: var(--lime);
    color: var(--navy);
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 680px) {
    .quote-success-toast {
        left: 12px;
        right: 12px;
        bottom: 84px; /* Make space for mobile-booking-bar */
        max-width: none;
    }
}
