/* Final polish — refinement layer (does not change brand direction) */

:root {
    --section-y: clamp(3.25rem, 6.5vw, 5.25rem);
    --section-y-tight: clamp(2.5rem, 5vw, 3.75rem);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --body-readable: #38383f;
    --hero-img-filter: contrast(1.07) brightness(0.96) saturate(1.05);
    --gallery-img-filter: contrast(1.04) saturate(1.03);
    --shadow-premium: 0 8px 28px rgba(20, 20, 22, 0.08);
    --shadow-premium-hover: 0 14px 40px rgba(20, 20, 22, 0.12);
    --radius-ui: var(--radius-lg);
}

body {
    color: var(--body-readable);
}

/* —— Hero —— */
.hero-split {
    padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-split::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, var(--warm));
    pointer-events: none;
    z-index: 1;
}

.hero-copy-inner {
    max-width: 38rem;
    padding: 0;
}

.hero-kicker {
    margin-bottom: 1.35rem;
}

.hero-copy h1 {
    margin-bottom: 1.5rem;
    max-width: 22ch;
}

.hero-lead {
    margin-bottom: 1.75rem;
    max-width: 36rem;
    line-height: 1.74;
}

.hero-cta-panel {
    padding: 1.15rem 1.25rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: 0 20px 48px rgba(20, 20, 22, 0.1);
    border-radius: var(--radius-ui);
}

.hero-cta-row {
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    align-items: stretch;
}

.hero-cta-row .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 3rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.hero-points {
    margin-top: 0.5rem;
    gap: 0.5rem 1.25rem;
    line-height: 1.5;
}

.hero-cta-row .btn-lg {
    padding: 0.85rem 1.25rem;
    min-height: 3rem;
}

.hero-anim {
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.55s var(--ease-out) forwards;
    animation-delay: calc(0.08s + (var(--hero-i, 0) * 0.07s));
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-photo-card {
    position: relative;
    padding: 0;
    background: var(--true-black);
    border-radius: var(--radius-ui);
    transition: transform 300ms ease, box-shadow 300ms ease;
    will-change: transform;
}

@media (hover: hover) {
    .hero-photo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 56px rgba(20, 20, 22, 0.18);
    }
}

.hero-photo-media {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
}

.hero-photo-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 85% 75% at 50% 42%, transparent 35%, rgba(0, 0, 0, 0.22) 100%),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.32) 55%,
            rgba(0, 0, 0, 0.52) 100%
        );
    pointer-events: none;
}

.hero-photo-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(20, 20, 22, 0.55) 0%,
        rgba(20, 20, 22, 0.2) 45%,
        transparent 100%
    );
    pointer-events: none;
}

.hero-parallax-img {
    width: 100%;
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
    object-position: center 28%;
    transform: scale(1.06);
    will-change: transform;
    filter: var(--hero-img-filter);
    -webkit-filter: var(--hero-img-filter);
}

.hero-photo-caption {
    padding: 0.65rem 0.85rem 0.75rem;
    margin: 0;
}

.hero-trust-card {
    position: absolute;
    right: 0.85rem;
    bottom: 3.25rem;
    z-index: 3;
    width: min(15.5rem, calc(100% - 1.7rem));
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius);
    background: rgba(20, 20, 22, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero-trust-line {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.hero-trust-line + .hero-trust-line {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

/* —— Service area SEO content —— */
.area-body {
    display: grid;
    gap: 0.95rem;
    max-width: 40rem;
}

.area-body p {
    color: var(--body-readable);
    line-height: 1.72;
    font-size: 0.98rem;
}

.area-body p + p {
    margin: 0;
}

/* —— City landing pages —— */
.breadcrumbs {
    padding: 0.85rem 1.35rem 0;
    font-size: 0.8125rem;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs-sep {
    margin: 0 0.35rem;
    opacity: 0.45;
}

.nearby-areas {
    padding: 1.35rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-premium);
}

.nearby-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.45rem;
}

.nearby-lead {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.nearby-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.nearby-link {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        background 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        color 0.25s var(--ease-out);
}

.nearby-link:hover {
    background: var(--warm);
    border-color: rgba(138, 122, 98, 0.22);
    color: var(--accent);
}

.nearby-home {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.nearby-home a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.nearby-home a:hover {
    color: var(--accent);
}

.reviews-grid--city {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .reviews-grid--city {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
    }
}

a.city-chip {
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.25s var(--ease-out),
        background 0.25s var(--ease-out),
        color 0.25s var(--ease-out);
}

a.city-chip:hover {
    color: var(--ink);
}

.footer-col-title--spaced {
    margin-top: 1.15rem;
}

/* —— Global rhythm + motion —— */
.section {
    padding: var(--section-y) 0;
}

.btn:active {
    transform: translateY(0) scale(0.985);
    transition-duration: 0.12s;
}

.reveal {
    transition-duration: 0.45s;
    transition-timing-function: var(--ease-out);
}

.service-block.reveal,
.review-card.reveal,
.about-stat-card.reveal {
    transition-duration: 0.5s;
}

.section-reviews {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.section-head {
    margin-bottom: clamp(1.5rem, 3.5vw, 2.15rem);
}

.section-head h2 {
    margin-bottom: 0.85rem;
}

#services .section-head {
    margin-bottom: clamp(2rem, 4vw, 2.65rem);
}

#services .service-columns {
    box-shadow: var(--shadow-premium);
}

/* —— Services —— */
.service-block {
    padding: 1.95rem 1.55rem;
    border: 1px solid rgba(20, 20, 22, 0.07);
    box-shadow: 0 2px 10px rgba(20, 20, 22, 0.04);
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        background 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out);
}

.service-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium-hover);
    background: var(--white);
    border-color: rgba(20, 20, 22, 0.14);
    z-index: 1;
}

.service-block:hover .service-icon {
    background: rgba(138, 122, 98, 0.22);
    transition: background 0.3s var(--ease-out);
}

/* Keep CTA card dark on hover (override generic service hover) */
.service-block.service-block-cta:hover {
    background: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-block.service-block-cta h3 {
    color: var(--white);
}

.service-block.service-block-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    color: var(--true-black);
}

.service-block.service-block-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.service-block p {
    color: var(--body-readable);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Ensure CTA card never inherits dark-on-light paragraph styles */
.service-block.service-block-cta,
.service-block.service-block-cta:hover {
    color: rgba(255, 255, 255, 0.9);
}

.service-block.service-block-cta h3 {
    color: var(--white);
}

.service-block.service-block-cta p:not(.service-cta-line),
.service-block.service-block-cta:hover p:not(.service-cta-line) {
    color: rgba(255, 255, 255, 0.85);
}

.service-block.service-block-cta .service-cta-line,
.service-block.service-block-cta:hover .service-cta-line {
    color: rgba(255, 255, 255, 0.78);
}

/* Keep "Call now" button high-contrast (no dark hover swap) */
.service-block.service-block-cta .btn-primary,
.service-block.service-block-cta:hover .btn-primary {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.98);
    color: var(--true-black);
}

.service-block.service-block-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    color: var(--true-black);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 0.9rem;
    border-radius: var(--radius);
    background: var(--accent-soft);
    color: var(--accent);
    transition: background 0.3s var(--ease-out);
}

.service-icon svg {
    display: block;
}

.service-block h3 {
    margin-bottom: 0.45rem;
}

.service-cta-line {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

/* —— Reviews —— */
.reviews-grid {
    gap: 0.7rem;
    margin-bottom: 1.35rem;
}

.review-card {
    padding: 1.05rem 1rem 1.1rem;
    gap: 0.6rem;
    min-height: 10.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s var(--ease-out),
        background 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.review-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.review-header {
    padding-bottom: 0.55rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-name {
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.review-stars {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.35rem;
    opacity: 0.95;
}

.review-meta {
    margin-top: 0;
}

.review-quote {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    flex: 1;
}

.reviews-cta {
    gap: 0.75rem;
    padding-top: 0.75rem;
}

.reviews-cta .btn {
    min-height: 3.05rem;
}

.review-name {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.review-stars {
    color: #c4b08a;
    opacity: 1;
}

/* —— About —— */
.about-copy p + p {
    margin-top: 1rem;
}

.about-copy p {
    line-height: 1.72;
}

.about-stat-card {
    padding: 1.25rem 1.3rem;
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out);
}

.about-stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(138, 122, 98, 0.35);
    box-shadow:
        var(--shadow-premium),
        0 0 0 1px rgba(138, 122, 98, 0.12);
}

.about-stat-card:last-child .about-stat-value a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}

.about-stat-card:last-child .about-stat-value a:hover {
    color: var(--accent);
}

.review-card--clamp .review-quote {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card--clamp.is-expanded .review-quote,
.review-card--clamp:hover .review-quote {
    -webkit-line-clamp: unset;
}

.review-card--clamp {
    cursor: pointer;
}

/* —— Gallery —— */
#gallery .section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

#gallery .section-head .section-lead {
    margin-bottom: 0;
}

#gallery .section-cta-row {
    margin-top: 0.95rem;
}

.gallery-bento {
    gap: 0.6rem;
}

.gallery-bento--preview {
    gap: 0.6rem;
}

.gallery-bento--preview .gallery-tile,
.gallery-bento--preview .gallery-tile-wide,
.gallery-bento--preview .gallery-tile-tall {
    border: 1px solid rgba(20, 20, 22, 0.07);
    border-radius: var(--radius-lg);
}

.gallery-bento--preview .gallery-tile img {
    aspect-ratio: 4 / 3;
    min-height: 0;
    object-position: center;
    filter: var(--gallery-img-filter);
    -webkit-filter: var(--gallery-img-filter);
}

.gallery-bento--uniform .gallery-tile {
    border: 1px solid rgba(20, 20, 22, 0.07);
}

.gallery-bento--uniform .gallery-tile img {
    filter: var(--gallery-img-filter);
    -webkit-filter: var(--gallery-img-filter);
}

.project-card-media img {
    filter: var(--gallery-img-filter);
    -webkit-filter: var(--gallery-img-filter);
}

.gallery-tile {
    cursor: pointer;
    border-radius: var(--radius-ui);
    box-shadow: var(--shadow-premium);
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.gallery-tile::after {
    opacity: 0;
    background: linear-gradient(to top, rgba(20, 20, 22, 0.35), transparent 55%);
    transition: opacity 0.3s var(--ease-out);
}

.gallery-tile:hover {
    box-shadow: var(--shadow-premium-hover);
}

.gallery-tile:hover::after {
    opacity: 1;
}

.gallery-tile img {
    transition: transform 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}

@media (hover: hover) {
    .gallery-tile:hover img {
        transform: scale(1.045);
        filter: contrast(1.05) brightness(0.94);
        -webkit-filter: contrast(1.05) brightness(0.94);
    }
}

.section-cta-row {
    gap: 0.6rem;
}

.section-cta-row .btn {
    min-height: 3rem;
    white-space: nowrap;
}

.project-gallery-actions {
    padding-top: 1.25rem;
    margin-top: 0;
    justify-content: flex-start;
}

.project-gallery-actions .btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.gallery-tile.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.45s var(--ease-out),
        transform 0.45s var(--ease-out),
        box-shadow 0.28s var(--ease-out);
}

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

.gallery-tile.reveal.is-visible:hover {
    transform: translateY(-3px);
}

.service-block.service-block-cta {
    border-color: rgba(255, 255, 255, 0.06);
}

.service-block.service-block-cta:hover {
    border-color: rgba(255, 255, 255, 0.14);
}

.section--dark .section-lead {
    color: rgba(255, 255, 255, 0.68);
}

/* —— FAQ —— */
.faq-list {
    gap: 0.55rem;
    max-width: none;
    width: 100%;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition:
        border-color 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        background 0.3s var(--ease-out);
}

.faq-item:hover {
    border-color: rgba(138, 122, 98, 0.32);
    background: rgba(244, 242, 239, 0.4);
}

.faq-item[open] {
    border-color: rgba(138, 122, 98, 0.45);
    box-shadow: var(--shadow-sm);
    background: var(--warm);
}

.faq-item summary {
    padding: 1.05rem 1.15rem;
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
    line-height: 1.35;
    transition: color 0.22s var(--ease-out), background 0.22s var(--ease-out);
}

.faq-item summary:hover {
    color: var(--ink);
    background: rgba(244, 242, 239, 0.65);
}

.faq-item[open] summary {
    color: var(--ink);
    background: transparent;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.05rem;
    top: 50%;
    width: 1.35rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1;
    color: var(--accent);
    border: 1px solid rgba(138, 122, 98, 0.28);
    border-radius: 50%;
    transition:
        transform 0.32s var(--ease-out),
        background 0.22s var(--ease-out),
        border-color 0.22s var(--ease-out);
}

.faq-item summary:hover::after {
    background: var(--accent-soft);
    border-color: rgba(138, 122, 98, 0.45);
}

.faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(90deg);
    background: var(--accent-soft);
    border-color: rgba(138, 122, 98, 0.5);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s var(--ease-out);
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer > p {
    overflow: hidden;
    padding: 0.25rem 1.15rem 1.25rem;
    margin: 0;
    color: var(--body-readable);
    font-size: 0.96rem;
    line-height: 1.72;
}

/* —— Contact + footer —— */
.section-contact {
    padding: var(--section-y-tight) 0;
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.contact-copy .section-lead {
    margin-bottom: 0;
    max-width: 26rem;
}

.contact-card {
    padding: 1.65rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-ui);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.contact-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.contact-card-btn span {
    line-height: 1.2;
}

.contact-helper {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon-messenger,
.btn-icon-facebook,
.btn-icon-text {
    flex-shrink: 0;
    opacity: 0.95;
}

.section-contact .btn-secondary.contact-card-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.section-contact .btn-secondary.contact-card-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--white);
}

.hero-meta-messenger {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--ink-soft);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(20, 20, 22, 0.22);
    text-underline-offset: 0.15em;
}

.hero-meta-messenger:hover {
    color: var(--accent);
}

.hero-meta-messenger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-link-icon {
    flex-shrink: 0;
    opacity: 0.88;
}

/* Facebook Messenger widget — room for sticky CTA on mobile */
body.has-fb-chat-mobile .sticky-cta,
body.has-messenger-fab .sticky-cta {
    z-index: 200;
}

@media (max-width: 768px) {
    body.has-fb-chat-mobile,
    body.has-messenger-fab {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
    }
}

/* Fallback Messenger FAB when Meta plugin does not render */
.messenger-fab-fallback {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 170;
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem 0.55rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(145deg, #0b1f3a 0%, #132a4d 55%, #1a3560 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 28px rgba(8, 18, 36, 0.28),
        0 2px 6px rgba(8, 18, 36, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.messenger-fab-fallback.is-visible {
    display: inline-flex;
}

.messenger-fab-fallback:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(8, 18, 36, 0.32),
        0 4px 10px rgba(8, 18, 36, 0.14);
}

.messenger-fab-fallback:focus-visible {
    outline: 2px solid #6ea8ff;
    outline-offset: 3px;
}

.messenger-fab-fallback__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(0, 132, 255, 0.22);
    color: #5eb3ff;
}

.messenger-fab-fallback__label {
    line-height: 1;
}

body.has-fb-chat-plugin-active .messenger-fab-fallback {
    display: none !important;
}

@media (max-width: 768px) {
    .messenger-fab-fallback {
        right: 0.85rem;
        bottom: calc(4.75rem + env(safe-area-inset-bottom));
    }
}

.contact-form {
    gap: 1.1rem;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
    padding: 0.82rem 1rem;
    border-color: rgba(20, 20, 22, 0.14);
    background: var(--warm);
    transition:
        border-color 0.25s var(--ease-out),
        background 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out);
}

.contact-form .form-field textarea {
    min-height: 8.5rem;
    resize: vertical;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
    border-color: rgba(20, 20, 22, 0.28);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(138, 122, 98, 0.2);
}

.contact-form .btn-block {
    margin-top: 0.25rem;
}

.form-privacy {
    margin-top: 0.85rem;
}

.footer-grid {
    gap: 2.25rem 3.25rem;
    padding: clamp(2.5rem, 4.5vw, 3.25rem) 0 1.85rem;
}

.footer-brand {
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 22rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.55);
}

.footer-links a,
.footer-contact a,
.footer-cookie-settings {
    color: rgba(255, 255, 255, 0.82);
}

.footer-bar {
    color: rgba(255, 255, 255, 0.48);
}

.footer-logo-wrap {
    padding: 0.7rem 1.2rem;
    margin-bottom: 0.15rem;
}

.footer-logo {
    height: clamp(2.15rem, 4vw, 2.85rem);
}

.footer-links,
.footer-contact {
    padding-top: 0.15rem;
}

.site-footer {
    border-top-width: 2px;
}

.footer-bar {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.footer-credit {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.site-footer .footer-credit .footer-credit-text {
    color: rgba(255, 255, 255, 0.45);
}

.site-footer .footer-credit .footer-credit-link {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-credit .footer-credit-link:hover,
.site-footer .footer-credit .footer-credit-link:focus-visible {
    color: rgba(255, 255, 255, 0.95);
}

.footer-links a,
.footer-contact a,
.footer-cookie-settings {
    transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-cookie-settings:hover {
    transform: translateX(2px);
}

/* —— Global buttons + nav —— */
.btn {
    min-height: 2.85rem;
    transition:
        background 0.25s var(--ease-out),
        color 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        transform 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out);
}

.header-nav a::after {
    transition: width 0.28s var(--ease-out);
}

/* —— Mobile drawer nav —— */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 280;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
}

.nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 290;
    width: min(19rem, 88vw);
    padding: 1.25rem 1.15rem 1.5rem;
    background: var(--true-black);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(-105%);
    transition: transform 0.34s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.nav-drawer.is-open {
    transform: translateX(0);
}

.nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-drawer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.nav-drawer-close {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    position: relative;
}

.nav-drawer-close-icon,
.nav-drawer-close-icon::before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.1rem;
    height: 2px;
    background: var(--white);
    content: "";
}

.nav-drawer-close-icon {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-drawer-close-icon::before {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.nav-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.nav-drawer-link {
    display: block;
    padding: 0.95rem 0.65rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: var(--radius);
    opacity: 0;
    transform: translateX(-8px);
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.nav-drawer.is-open .nav-drawer-link {
    animation: navLinkIn 0.4s var(--ease-out) forwards;
    animation-delay: calc(0.05s + (var(--nav-i, 0) * 0.04s));
}

@keyframes navLinkIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-drawer-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.nav-drawer-foot {
    display: grid;
    gap: 0.55rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-drawer-foot .btn {
    min-height: 3rem;
}

/* Hamburger → X */
.mobile-menu-btn.is-open .mobile-menu-btn-lines {
    background: transparent;
    box-shadow: none;
}

.mobile-menu-btn.is-open .mobile-menu-btn-lines::before {
    top: 0;
    transform: translateY(0) rotate(45deg);
}

.mobile-menu-btn.is-open .mobile-menu-btn-lines::after {
    top: 0;
    transform: translateY(0) rotate(-45deg);
}

.mobile-menu-btn-lines,
.mobile-menu-btn-lines::before,
.mobile-menu-btn-lines::after {
    transition: transform 0.28s var(--ease-out), top 0.28s var(--ease-out), background 0.2s;
}

.header-nav--desktop {
    display: flex;
}

/* —— Desktop header —— */
@media (min-width: 769px) {
    .nav-drawer,
    .nav-overlay,
    .mobile-menu-btn {
        display: none !important;
    }

    .header-nav--desktop {
        display: flex;
        margin-left: auto;
    }

    .hero-trust-card {
        bottom: 3.5rem;
    }
}

/* —— Sticky mobile CTA —— */
.sticky-cta {
    background: rgba(28, 31, 38, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
}

.sticky-cta .btn {
    min-height: 2.85rem;
    font-size: 0.8125rem;
    font-weight: 700;
}

/* —— Mobile tightening —— */
@media (max-width: 768px) {
    :root {
        --section-y: clamp(2.25rem, 6vw, 3rem);
        --hero-img-filter: contrast(1.06) brightness(0.97) saturate(1.04);
    }

    .header-nav--desktop,
    .header-cta--desktop {
        display: none;
    }

    .hero-split {
        padding: 1.5rem 0 1.85rem;
    }

    .hero-split-grid {
        gap: 1.15rem;
    }

    .hero-copy-inner {
        padding: 0;
    }

    .hero-kicker {
        margin-bottom: 1.1rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.85rem, 1.5rem + 1.5vw, 2.35rem);
        max-width: none;
        margin-bottom: 1.15rem;
    }

    .hero-lead {
        font-size: 1rem;
        margin-bottom: 1.35rem;
        line-height: 1.62;
    }

    .hero-cta-panel {
        margin-bottom: 1.2rem;
        padding: 1rem 1rem;
    }

    .hero-cta-row {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }

    .hero-cta-row .btn {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 3.05rem;
    }

    .hero-meta-alt {
        margin-top: 0.4rem;
        font-size: 0.8125rem;
    }

    .hero-points {
        margin-top: 0.35rem;
        font-size: 0.8125rem;
    }

    .hero-parallax-img {
        aspect-ratio: 16 / 11;
        max-height: 260px;
    }

    .hero-trust-card {
        position: static;
        width: calc(100% - 1.5rem);
        margin: 0.6rem 0.75rem 0;
        bottom: auto;
        right: auto;
    }

    .hero-photo-caption {
        text-align: left;
        padding-left: 0.85rem;
    }

    .section-head-row {
        align-items: flex-start;
        gap: 1rem;
    }

    .section-head-row .btn {
        width: 100%;
    }

    .section-cta-row {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.5rem;
        margin-top: 0.85rem;
    }

    .section-cta-row .btn {
        width: 100%;
        white-space: normal;
        min-height: 3.05rem;
    }

    .service-block {
        padding: 1.65rem 1.35rem;
    }

    .reviews-grid {
        gap: 0.55rem;
    }

    .review-card {
        padding: 1rem 0.95rem;
    }

    .review-quote {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.35rem 1.2rem;
    }

    .contact-card-btn {
        min-height: 52px;
    }

    .footer-brand {
        border-right: none;
        padding-right: 0;
        max-width: none;
    }

    .footer-grid {
        gap: 1.65rem;
    }

    .gallery-bento {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: minmax(120px, auto);
        gap: 0.5rem;
    }

    .gallery-bento--preview {
        gap: 0.48rem;
    }

    .gallery-tile-wide {
        grid-column: span 2;
        min-height: 180px;
    }

    .gallery-bento--preview .gallery-tile img {
        aspect-ratio: 4 / 3;
    }

    .project-gallery-actions .btn {
        width: 100%;
        min-height: 3rem;
    }

    .faq-item summary {
        padding: 0.95rem 1rem;
        padding-right: 2.35rem;
        font-size: 0.9375rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-anim,
    .nav-drawer.is-open .nav-drawer-link {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-parallax-img {
        transform: none !important;
        filter: contrast(1.04) brightness(0.98);
        -webkit-filter: contrast(1.04) brightness(0.98);
    }

    .gallery-tile img,
    .gallery-tile:hover img {
        transform: none;
        filter: none;
        -webkit-filter: none;
    }

    .gallery-tile:hover,
    .service-block:hover,
    .review-card:hover,
    .about-stat-card:hover,
    .hero-photo-card:hover {
        transform: none;
    }

    .faq-item[open] summary::after {
        transform: translateY(-50%);
    }

    .btn:active {
        transform: none;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
        transform: none;
    }
}
