/* Sunset Homes Painting - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --sunset-orange: #ed6a3d;
    --sunset-gold: #f2c57c;
    --sunset-indigo: #25344d;
    --sunset-sand: #fff8ef;
    --ink: #1f2633;
    --ink-muted: #5f697a;
    --text-dark: #1f2633;
    --text-light: #5f697a;
    --white: #ffffff;
    --card-shadow: 0 20px 55px rgba(24, 36, 62, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 10%, rgba(242, 197, 124, 0.25), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(237, 106, 61, 0.18), transparent 35%),
        linear-gradient(180deg, #fffdfa 0%, #fff8ef 45%, #ffffff 100%);
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 0.02em;
}

.site-header {
    z-index: 1030;
    background: #11161f;
}

.site-header .navbar {
    background: rgba(17, 22, 31, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 30px rgba(7, 10, 15, 0.25);
    padding: 0.65rem 0;
    margin: 0;
}

.navbar {
    background: rgba(17, 22, 31, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 30px rgba(7, 10, 15, 0.25);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img,
.navbar-brand .logo-img,
.navbar-brand .site-logo {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Homepage: slightly larger logo next to wordmark */
.home-page .navbar-brand img,
.home-page .navbar-brand .logo-img,
.home-page .navbar-brand .site-logo {
    height: 80px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .navbar-brand img,
    .navbar-brand .logo-img,
    .navbar-brand .site-logo {
        height: 52px;
        max-width: 180px;
    }

    .home-page .navbar-brand img,
    .home-page .navbar-brand .logo-img,
    .home-page .navbar-brand .site-logo {
        height: 56px;
        max-width: 200px;
    }

    .navbar-brand span {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img,
    .navbar-brand .logo-img,
    .navbar-brand .site-logo {
        height: 44px;
        max-width: 140px;
    }

    .home-page .navbar-brand img,
    .home-page .navbar-brand .logo-img,
    .home-page .navbar-brand .site-logo {
        height: 48px;
        max-width: 150px;
    }

    .navbar-brand span {
        font-size: 0.95rem;
    }
}

.navbar-nav.site-nav-list,
.navbar-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.25rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    margin: 0 0.2rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 999px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-link {
        padding: 0.45rem 0.6rem !important;
        font-size: 0.88rem;
    }

    .navbar-brand span {
        font-size: 1.15rem;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.14);
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #ff9d5d 100%);
    font-weight: 700;
}

.navbar-toggler {
    border-color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    background: linear-gradient(120deg, #1e2a3f 0%, #2f3f58 45%, #4d5f7e 100%);
    padding: 6.5rem 0 5rem;
    text-align: center;
    margin-top: 0;
    color: var(--white);
    box-shadow: 0 14px 35px rgba(24, 32, 45, 0.26);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 25%, rgba(242, 197, 124, 0.36), transparent 35%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    right: -80px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(1.05rem, 2.5vw, 1.55rem);
    font-weight: 700;
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--sunset-gold);
    margin: 0 auto 1.5rem;
    max-width: 960px;
    line-height: 1.45;
    position: relative;
}

@media (max-width: 576px) {
    .hero-kicker {
        font-size: clamp(0.95rem, 4.2vw, 1.2rem);
        letter-spacing: 0.08em;
    }
}

.hero-quote {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    text-shadow: 0 8px 22px rgba(8, 12, 19, 0.45);
    margin-bottom: 1.2rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-author {
    font-size: 1.02rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
}

.home-image-section {
    width: 100%;
    margin: 0;
    margin-bottom: 2.25rem;
    padding: 0;
    overflow: hidden;
}

.home-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 650px;
    filter: saturate(1.08) contrast(1.05);
}

.home-hero-slideshow {
    position: relative;
    width: 100%;
}

.home-hero-slideshow-viewport {
    overflow: hidden;
    width: 100%;
}

.home-hero-slideshow-track {
    display: flex;
    transition: transform 0.55s ease-in-out;
    will-change: transform;
}

.home-hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.home-hero-slide > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 650px;
    filter: saturate(1.08) contrast(1.05);
}

.home-hero-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-height: 650px;
    aspect-ratio: 2 / 1;
}

.home-hero-before-after-panel + .home-hero-before-after-panel {
    border-left: 2px solid rgba(255, 255, 255, 0.85);
}

.home-hero-before-after-panel {
    position: relative;
    margin: 0;
    overflow: hidden;
    min-height: 240px;
    max-height: 650px;
}

.home-hero-before-after-panel img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    max-height: 650px;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.05);
}

.home-hero-before-after-panel figcaption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.65rem 1.35rem;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: rgba(37, 52, 77, 0.88);
    border: 2px solid var(--sunset-gold);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    z-index: 1;
    min-width: 7rem;
}

.home-hero-slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sunset-indigo);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-hero-slideshow-btn:hover {
    background: var(--sunset-orange);
    color: #fff;
}

.home-hero-slideshow-btn:focus-visible {
    outline: 2px solid var(--sunset-orange);
    outline-offset: 2px;
}

.home-hero-slideshow-btn--prev {
    left: 1rem;
}

.home-hero-slideshow-btn--next {
    right: 1rem;
}

@media (max-width: 576px) {
    .home-hero-slideshow-btn {
        width: 2.25rem;
        height: 2.25rem;
    }

    .home-hero-slideshow-btn--prev {
        left: 0.5rem;
    }

    .home-hero-slideshow-btn--next {
        right: 0.5rem;
    }
}

.site-call-banner {
    padding: 0.55rem 1rem;
    background: linear-gradient(135deg, var(--sunset-indigo) 0%, #1a3558 100%);
    border-bottom: 3px solid var(--sunset-orange);
}

.site-call-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    text-align: center;
}

.site-call-banner__label {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sunset-gold);
    white-space: nowrap;
}

.site-call-banner__phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.site-call-banner__link {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 2.8vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.site-call-banner__sep {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 1rem;
}

.site-call-banner__link:hover,
.site-call-banner__link:focus-visible {
    color: var(--sunset-gold);
}

@media (max-width: 576px) {
    .site-call-banner__inner {
        flex-direction: column;
        gap: 0.35rem;
    }

    .site-call-banner__sep {
        display: none;
    }

    .site-call-banner__phones {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Offset fixed header — height set via JS (--site-header-height) */
body.has-site-header {
    padding-top: var(--site-header-height, 8.5rem);
}

.welcome-section {
    padding: 3.5rem 2rem 4.75rem;
    text-align: center;
    background: transparent;
}

.welcome-section h1 {
    color: #1f2c44;
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin-bottom: 1.5rem;
}

.welcome-section p {
    font-size: 1.2rem;
    color: var(--ink-muted);
    max-width: 820px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #ff9e66 100%);
    border: none;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.03rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px rgba(237, 106, 61, 0.34);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 34px rgba(237, 106, 61, 0.4);
    color: var(--white);
}

.btn-secondary-custom {
    background: linear-gradient(135deg, #26364f 0%, #3b5579 100%);
    border: none;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.03rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px rgba(37, 52, 77, 0.28);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(37, 52, 77, 0.35);
    color: var(--white);
}

.page-top-section {
    margin-top: 1.5rem;
}

.page-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    margin: 3rem 0;
    border-radius: 24px;
    border: 1px solid rgba(208, 213, 227, 0.68);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-section.page-top-section {
    margin-top: 1.5rem;
}

.page-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 60px rgba(24, 36, 62, 0.16);
}

.page-section h2 {
    color: #22314c;
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 2rem;
    text-align: center;
}

.page-section p {
    font-size: 1.1rem;
    color: var(--ink-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.premium-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.premium-stat {
    border: 1px solid rgba(37, 52, 77, 0.14);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.1rem 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 52, 77, 0.12);
}

.premium-stat h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.65rem;
    margin-bottom: 0.25rem;
    color: #20304c;
}

.premium-stat p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(19, 32, 56, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(19, 32, 56, 0.2);
}

.gallery-item-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8ecf2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-item-media img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(18, 27, 42, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-caption {
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-weight: 600;
    color: var(--ink);
}

.review-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f1 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(27, 43, 70, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(237, 106, 61, 0.25);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(27, 43, 70, 0.2);
}

.review-card::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 3.2rem;
    color: rgba(237, 106, 61, 0.2);
    line-height: 1;
    display: block;
}

.review-stars {
    color: #f4b655;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.review-author {
    font-size: 1.02rem;
    color: #ca5a34;
    font-weight: 700;
    text-align: right;
}

.contact-form {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
}

.contact-form h3 {
    color: #22314c !important;
}

.form-label {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #d2dae7;
    border-radius: 12px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #e5784f;
    box-shadow: 0 0 0 0.22rem rgba(237, 106, 61, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: #9ba4b3;
}

.btn-submit {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #f7b46f 100%);
    border: none;
    color: var(--white);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(237, 106, 61, 0.35);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(237, 106, 61, 0.42);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-info {
    background: linear-gradient(145deg, #1f2c44 0%, #30435f 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 16px 35px rgba(18, 27, 42, 0.3);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.contact-info a {
    color: #ffd393;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    color: #fff2da;
    text-decoration: underline;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--sunset-gold);
}

.calendly-section {
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-top: 3rem;
}

.calendly-section .calendly-inline-widget {
    border-radius: 14px;
    overflow: hidden;
}

.calendly-embed {
    min-height: 700px;
    border: none;
    border-radius: 10px;
}

.footer {
    background: linear-gradient(135deg, #151d2a 0%, #1f2b42 100%);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #f7c88d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #d5d9e2;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #ffd7a5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    color: #ffd7a5;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a4761;
    color: #a8b0be;
}

.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #f5bb7d 100%);
    color: var(--white);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

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

a:focus-visible,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #3f5b86;
    outline-offset: 2px;
}

.sticky-cta-button {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1050;
    background: linear-gradient(135deg, #1f9d43 0%, #43d37a 100%);
    color: var(--white);
    padding: 1.43rem 2.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 16px 40px rgba(31, 157, 67, 0.30);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sticky-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 55px rgba(31, 157, 67, 0.38);
    color: var(--white);
}

.sticky-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.estimate-call-modal .blog-before-after {
    margin: 0 0 1.5rem;
    max-width: none;
}

.estimate-call-modal-lead {
    text-align: center;
    color: var(--ink-muted);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    max-width: none;
}

.estimate-call-modal-number {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--sunset-indigo);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    user-select: all;
}

.estimate-call-modal-divider {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin: 1.75rem 0 1.25rem;
    max-width: none;
}

.estimate-call-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 auto 0.5rem;
    max-width: 100%;
}

.estimate-call-modal-email {
    margin-bottom: 0;
    text-align: left;
    flex: 1 1 12rem;
    min-width: 0;
    word-break: break-word;
}

.estimate-call-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 420px;
    margin: 0 auto;
}

.estimate-call-copy-btn {
    background: linear-gradient(135deg, #1f9d43 0%, #43d37a 100%);
    border: none;
    color: var(--white);
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(31, 157, 67, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estimate-call-copy-btn--block {
    width: 100%;
}

.estimate-call-copy-btn--inline {
    flex: 0 0 auto;
    padding: 0.85rem 1.35rem;
    font-size: 1rem;
    white-space: nowrap;
    align-self: center;
}

.estimate-call-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(31, 157, 67, 0.34);
    color: var(--white);
}

.estimate-call-copy-feedback {
    text-align: center;
    margin: 1rem 0 0;
    min-height: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f9d43;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-quote {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-quote {
        font-size: 1.3rem;
    }

    .hero-section {
        padding: 5.25rem 0.5rem 3.5rem;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .page-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-section {
        padding: 3rem 1.25rem;
    }

    .sticky-cta-button {
        bottom: 45px;
        right: 45px;
        padding: 1.14rem 1.63rem;
        font-size: 1.17rem;
    }
}

@media (max-width: 576px) {
    .hero-quote {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 1.05rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .sticky-cta-button {
        bottom: 40px;
        right: 40px;
        padding: 0.98rem 1.3rem;
        font-size: 1.1rem;
        border-radius: 40px;
    }
}

/* SEO / Services / Blog */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(208, 213, 227, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    text-align: left;
}

.service-card-showcase {
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.service-card-image-link {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #e8ecf2;
}

.service-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.service-card-showcase:hover .service-card-image {
    transform: scale(1.03);
}

/* Avoid full-page overlay if showcase image omits .service-card-image-link wrapper */
.service-card-showcase > .service-card-image,
.service-card-image-link:empty + .service-card-image {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: 22rem;
    transform: none !important;
}

.service-card-showcase:hover > .service-card-image {
    transform: none !important;
}

.service-card-body {
    padding: 1.5rem 2rem 2rem;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h3 {
    color: var(--sunset-indigo);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-card p {
    margin: 0 0 1.25rem;
    max-width: none;
}

.service-card a {
    color: var(--sunset-orange);
    font-weight: 700;
    text-decoration: none;
}

.service-areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.service-area-tag {
    background: rgba(237, 106, 61, 0.12);
    color: var(--sunset-indigo);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.content-prose {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
}

.content-prose h2,
.content-prose h3 {
    color: #22314c;
    margin: 2rem 0 1rem;
    text-align: left;
}

.content-prose p,
.content-prose li {
    font-size: 1.08rem;
    color: var(--ink-muted);
    line-height: 1.85;
    max-width: none;
    margin-bottom: 1rem;
}

.content-prose ul {
    margin: 0 0 1.5rem 1.25rem;
}

.faq-item {
    border-bottom: 1px solid rgba(208, 213, 227, 0.8);
    padding: 1.25rem 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--sunset-indigo);
    margin-bottom: 0.5rem;
    text-align: left;
}

.faq-item p {
    margin: 0;
    text-align: left;
    max-width: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(208, 213, 227, 0.75);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--sunset-indigo);
}

.blog-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
    max-width: none;
    font-size: 1rem;
}

.blog-card a {
    color: var(--sunset-orange);
    font-weight: 700;
    text-decoration: none;
}

.blog-article .page-section h1 {
    text-align: center;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.blog-meta {
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.blog-figure {
    margin: 2rem auto;
    max-width: 820px;
    text-align: center;
}

.blog-figure img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    display: block;
}

.blog-figure figcaption {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--ink-muted);
    font-style: italic;
}

.blog-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
}

.blog-before-after figure {
    margin: 0;
    text-align: center;
}

.blog-before-after img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    display: block;
}

.blog-before-after figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sunset-indigo);
}

@media (max-width: 576px) {
    .blog-before-after {
        grid-template-columns: 1fr;
    }
}

.cta-banner {
    background: linear-gradient(135deg, var(--sunset-indigo) 0%, #3b5579 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 2.5rem;
}

.cta-banner h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 1.25rem;
}

.footer-section a.service-area-link {
    display: inline;
}

.breadcrumb-nav {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--ink-muted);
}

.breadcrumb-nav a {
    color: var(--sunset-orange);
    text-decoration: none;
}


/* --- Polish pass (sparkle/polish-pass) --- */
:root {
    --site-header-height: 112px;
    --focus-ring: 0 0 0 3px rgba(237, 106, 61, 0.45);
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.form-footnote {
    font-size: 0.92rem;
    color: var(--text-light);
}

.form-footnote a {
    color: var(--sunset-orange);
    font-weight: 700;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.estimate-form-card {
    height: 100%;
}

.form-select.form-control {
    appearance: auto;
    padding-right: 2rem;
}

.btn-submit:focus-visible,
.btn-primary-custom:focus-visible,
.btn-secondary-custom:focus-visible,
.sticky-cta-button:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring), 0 12px 30px rgba(237, 106, 61, 0.35);
}

.btn-submit:disabled {
    opacity: 0.75;
    cursor: wait;
    transform: none;
}

.contact-form .alert {
    border-radius: 12px;
    font-size: 0.98rem;
}

.contact-form .alert a {
    font-weight: 700;
}

.footer {
    margin-top: 1rem;
}

.footer-section a {
    display: block;
    margin-bottom: 0.35rem;
}

.footer-section p {
    margin-bottom: 0.45rem;
}

.site-call-banner__phones {
    gap: 0;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(17, 22, 31, 0.98);
        border-radius: 14px;
        margin-top: 0.65rem;
        padding: 0.75rem;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }

    .navbar-nav .nav-link {
        margin: 0.15rem 0;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .home-hero-before-after {
        aspect-ratio: 1 / 1;
        max-height: none;
        grid-template-columns: 1fr 1fr;
    }

    .home-hero-before-after-panel {
        min-height: 0;
        max-height: none;
    }

    .home-hero-before-after-panel img {
        min-height: 0;
        max-height: none;
    }

    .home-hero-before-after-panel figcaption {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
        min-width: 0;
        bottom: 0.55rem;
    }

    .sticky-cta-button span {
        display: none;
    }

    .sticky-cta-button {
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        right: 1rem;
        bottom: 1rem;
    }
}

img[loading="lazy"] {
    background-color: #eef1f6;
}

.gallery-item:focus-visible {
    outline: 3px solid var(--sunset-orange);
    outline-offset: 3px;
}

.page-top-section {
    padding-top: calc(var(--site-header-height, 112px) + 1.5rem);
}

.calendly-section {
    background: #fff;
    border: 1px solid rgba(208, 213, 227, 0.85);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: var(--card-shadow);
}

.js-form-status code {
    font-size: 0.85em;
}


/* ===== WOW / visual-audit fixes (v20) ===== */
.sticky-cta-button,
a.sticky-cta-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Single-phone call banner — compact */
.site-call-banner {
    padding: 0.4rem 0.75rem;
}
.site-call-banner__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
}
.site-call-banner__label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}
.site-call-banner__link {
    font-size: 1.05rem;
}
.site-call-banner__sep,
.site-call-banner__link--secondary {
    display: none !important;
}

@media (max-width: 576px) {
    .site-call-banner__label { display: none; }
    .site-call-banner { padding: 0.35rem 0.5rem; }
    .site-call-banner__link { font-size: 1.1rem; }
    .navbar-brand span { font-size: 0.95rem; }
    .navbar-brand img, .navbar-brand .logo-img, .navbar-brand .site-logo { height: 44px; max-width: 140px; }
}

/* Brand hero with imagery + in-flow CTAs */
.hero-section--brand {
    text-align: left;
    padding: 3.5rem 0 3rem;
    background:
        linear-gradient(105deg, rgba(30,42,63,0.92) 0%, rgba(47,63,88,0.78) 55%, rgba(237,106,61,0.35) 100%),
        url('../images/2.jpeg') center/cover no-repeat;
    min-height: min(70vh, 560px);
    display: flex;
    align-items: center;
}
.hero-section--brand .container { max-width: 720px; margin-left: 1.25rem; margin-right: auto; }
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 5vw, 2.85rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.hero-lead {
    color: rgba(255,255,255,0.92);
    font-size: 1.08rem;
    margin-bottom: 0.75rem;
    max-width: 34rem;
}
.hero-seasonal {
    color: rgba(255,255,255,0.95);
    font-size: 1.02rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    max-width: 34rem;
}
.hero-cta-note {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    margin: -0.75rem 0 1.5rem;
    max-width: 34rem;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.hero-cta-row .btn-primary-custom,
.hero-cta-row .btn-secondary-custom,
.hero-cta {
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}
.hero-cta-row .btn-primary-custom,
a.hero-cta.btn-primary-custom {
    background: linear-gradient(135deg, var(--sunset-orange), #ff9d5d);
    color: #fff !important;
    border: none;
    box-shadow: 0 10px 28px rgba(237,106,61,0.35);
}
.hero-cta-row .btn-secondary-custom,
a.hero-cta.btn-secondary-custom {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.75);
}
.hero-quote--compact {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 36rem;
    margin: 0;
    opacity: 0.95;
}
.hero-section--brand .hero-author { opacity: 0.85; font-size: 0.85rem; }

/* Mobile bottom action bar — does NOT cover form inputs (above keyboard zone) */
.mobile-action-bar {
    display: none;
}
@media (max-width: 991.98px) {
    .mobile-action-bar {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 1040;
        gap: 0.5rem;
        padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
        background: rgba(17, 22, 31, 0.96);
        backdrop-filter: blur(10px);
        box-shadow: 0 -8px 28px rgba(0,0,0,0.28);
    }
    .mobile-action-bar a {
        flex: 1;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
    }
    .mobile-action-bar__call {
        background: #fff;
        color: #1e2a3f;
    }
    .mobile-action-bar__book {
        background: linear-gradient(135deg, var(--sunset-orange), #ff9d5d);
        color: #fff;
    }
    /* Keep bar from covering form bottoms */
    body.has-mobile-action-bar {
        padding-bottom: 5.25rem;
    }
    body.has-mobile-action-bar .contact-form,
    body.has-mobile-action-bar .lead-form,
    body.has-mobile-action-bar form.js-sunset-form {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    /* Hide bar while typing in forms */
    body.form-focus .mobile-action-bar {
        transform: translateY(110%);
        pointer-events: none;
    }
    .mobile-action-bar {
        transition: transform 0.25s ease;
    }
}

/* Services: full-width professional cards */
.services-page .content-prose,
.services-page .page-section .container > .content-prose {
    max-width: none;
}
.service-card-grid,
.services-grid,
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto 0;
    text-align: left;
}
.service-card {
    height: 100%;
    border-radius: 18px;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid rgba(208,213,227,0.85);
    box-shadow: 0 14px 40px rgba(24,36,62,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(24,36,62,0.14);
}

/* Gallery: stronger tiles, no overlay CTA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}
@media (min-width: 576px) {
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
}
@media (min-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(24,36,62,0.12);
}
.gallery-item-media,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0.65rem 0.85rem;
    background: linear-gradient(transparent, rgba(17,22,31,0.85));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact: kill empty white / tighten layout */
.contact-page .page-section,
.contact-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}
.contact-form {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 16px 44px rgba(24,36,62,0.1);
    border: 1px solid rgba(208,213,227,0.8);
}
.contact-info {
    background: linear-gradient(160deg, #1e2a3f, #2f3f58);
    color: #fff;
    border-radius: 18px;
    padding: 1.5rem;
}
.contact-info a { color: var(--sunset-gold); }
.form-control, .form-select {
    min-height: 48px;
    font-size: 1rem;
}
textarea.form-control { min-height: 120px; }
.btn-submit, .btn-submit-custom {
    min-height: 52px;
    width: 100%;
    border-radius: 12px;
    font-weight: 700;
}

/* FAQ accordion polish */
.faq-item, .accordion-item {
    border: 1px solid rgba(208,213,227,0.9);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
}
.faq-item h3, .accordion-button {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Page heroes for geo/blog */
.page-hero {
    background: linear-gradient(120deg, #1e2a3f, #3d516e);
    color: #fff;
    padding: 2.75rem 0 2.25rem;
    text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 40rem; margin: 0 auto; }

/* Nav CTAs thumb-friendly */
.nav-cta-cluster {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 0.75rem;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
}
.nav-cta--call { background: rgba(255,255,255,0.12); color: #fff !important; }
.nav-cta--book { background: linear-gradient(135deg, var(--sunset-orange), #ff9d5d); color: #fff !important; }
@media (max-width: 991.98px) {
    .nav-cta-cluster {
        width: 100%;
        margin: 0.75rem 0 0;
        flex-direction: column;
    }
    .nav-cta { width: 100%; justify-content: center; min-height: 48px; }
    .navbar-collapse {
        background: rgba(17,22,31,0.98);
        border-radius: 14px;
        padding: 0.75rem;
        margin-top: 0.5rem;
    }
    .navbar-nav .nav-link {
        padding: 0.85rem 1rem !important;
        font-size: 1.05rem;
        border-radius: 10px;
    }
}

.calendly-section, .calendly-inline-widget, .calendly-embed { display: none !important; }


/* Services / content width unlock */
.services-page .page-section .container,
.services-page .content-wrap,
.services-page .prose-wrap {
    max-width: 1100px;
}
.services-page .content-prose,
.services-page .narrow-content,
.services-page .text-content {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.services-page .service-card-grid,
.services-page .row.g-4 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact page: reduce empty whitespace */
.contact-page .page-section { padding-top: 1.75rem; padding-bottom: 2rem; }
.contact-page .row { align-items: stretch; }
.contact-page .col-lg-6 { margin-bottom: 1.25rem; }

/* Gallery CTA band below grid (never overlay) */
.gallery-page .gallery-cta-band {
    margin-top: 2rem;
    text-align: center;
}
.gallery-page .sticky-cta-button { display: none !important; }

/* FAQ accordion spacing */
.faq-page .faq-item,
.faq-page .accordion-item {
    margin-bottom: 0.85rem;
}

/* About credibility */
.about-visual-band img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
}
