/* ============================================
   SUNSET VIEW PAINTING LLC — Landing Page Styles
   Logo Palette: #f5c280 #f5b26c #e76f7b #e76f7b #f5b26c #f5b26c
   ============================================ */

:root {
    /* ── Logo Color Palette ── */
    --peach: #f5c280;
    --amber: #f5b26c;
    --coral: #e76f7b;
    --mauve: #e76f7b;
    --violet: #f5b26c;
    --navy: #f5b26c;

    /* ── Semantic Aliases ── */
    --cta-primary: var(--coral);
    /* ZIP/check button - high energy */
    --cta-secondary: var(--coral);
    /* Call button, drywall CTA */
    --cta-tertiary: #f5b26c;
    /* Painting service CTA */
    --accent: var(--amber);
    /* Subtle accents, borders, labels */
    --accent-light: rgba(245, 178, 108, 0.15);
    --accent-med: rgba(245, 178, 108, 0.35);

    /* ── Neutral / UI ── */
    --dark: #1a1a2e;
    --dark2: #2f3542;
    --text: #4a4a60;
    --light-bg: #f8f9fc;
    --white: #ffffff;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(31, 38, 135, 0.1);

    /* iPhone safe area */
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ============================
   STICKY HEADER
   ============================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184, 105, 127, 0.2);
    padding: 10px 20px;
    padding-top: calc(10px + var(--safe-top));
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--mauve);
}

.header-logo span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark2);
    white-space: nowrap;
}

/* 📞 CALL BUTTON: Mauve from logo */
.header-call-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--mauve);
    /* #e76f7b — user's requested color */
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 30px;
    padding: 9px 18px;
    transition: all 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-call-btn:hover {
    background: var(--violet);
    transform: translateY(-1px);
}

.header-call-btn svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    flex-shrink: 0;
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1e2d3d 0%, #2a1f35 50%, #1a2a3a 100%);
    padding: 70px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(231, 111, 123, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(245, 178, 108, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 178, 108, 0.18);
    border: 1px solid rgba(245, 178, 108, 0.4);
    color: var(--peach);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ============================
   ZIP FLOW
   ============================ */
.zip-flow {
    max-width: 480px;
    margin: 0 auto;
}

.zip-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(245, 178, 108, 0.3);
    border-radius: 20px;
    padding: 28px 24px 22px;
    backdrop-filter: blur(8px);
}

.zip-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 14px;
    line-height: 1.4;
}

.zip-row {
    display: flex;
    gap: 10px;
}

.zip-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(245, 178, 108, 0.4);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: 2px;
    transition: border-color 0.2s;
    outline: none;
}

.zip-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0;
    font-weight: 400;
}

.zip-input:focus {
    border-color: var(--coral);
}

/* 🔘 CHECK BUTTON: Coral — high-energy CTA */
.zip-btn {
    background: var(--coral);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    padding: 0 24px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: var(--font);
}

.zip-btn:hover {
    background: var(--mauve);
    transform: translateY(-1px);
}

.zip-hint {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    margin-top: 10px;
}

/* SERVICE CHOICE */
.service-choice {
    flex-direction: column;
    gap: 12px;
    border-radius: 20px;
    padding: 6px 0;
}

.service-choice-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 6px;
    text-align: center;
}

.svc-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(245, 178, 108, 0.3);
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s;
}

.svc-btn:hover {
    border-color: var(--amber);
    background: rgba(245, 178, 108, 0.15);
    transform: translateX(4px);
}

.svc-painting:hover {
    border-color: var(--coral);
    background: rgba(231, 111, 123, 0.12);
}

.svc-drywall:hover {
    border-color: var(--mauve);
    background: rgba(184, 105, 127, 0.12);
}

.svc-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.svc-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.svc-text strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.svc-text small {
    font-size: 0.8rem;
    opacity: 0.65;
}

.svc-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: transform 0.2s;
}

.svc-btn:hover .svc-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.zip-change {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    cursor: pointer;
    font-family: var(--font);
    margin-top: 4px;
    padding: 4px 0;
    transition: color 0.2s;
}

.zip-change:hover {
    color: var(--peach);
}

/* ============================
   TRUST STRIP
   ============================ */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid rgba(184, 105, 127, 0.15);
    padding: 18px 20px;
}

.trust-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.trust-item strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--violet);
}

.trust-item span {
    font-size: 0.72rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(184, 105, 127, 0.25);
}

.nextdoor-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.75rem;
    text-align: left;
    font-weight: 600;
    line-height: 1.3;
}

.nextdoor-trust svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.nextdoor-trust:hover {
    color: #00b55a;
}

/* ============================
   SERVICES GRID
   ============================ */
.services-section {
    padding: 64px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--dark2);
    margin-bottom: 8px;
}

.section-sub {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 36px;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* iOS: prevent auto-zoom on input focus (font-size must be >= 16px) */
.zip-input {
    font-size: max(16px, 1.1rem);
}

.svc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(107, 90, 122, 0.2);
}

.svc-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.svc-card:hover .svc-card-img {
    transform: scale(1.07);
}

.svc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(54, 89, 119, 0.88) 0%, rgba(107, 90, 122, 0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px;
    color: #fff;
    text-align: left;
}

.svc-card-overlay h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.svc-card-overlay p {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-bottom: 10px;
}

.svc-card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--peach);
    display: inline-block;
    transition: letter-spacing 0.2s;
}

.svc-card:hover .svc-card-link {
    letter-spacing: 0.5px;
}

/* ============================
   SERVICE CATALOG GRID
   ============================ */
.catalog-section {
    padding: 72px 20px;
    background: #f9f6f2;
    text-align: center;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 36px auto 0;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: default;
}

.catalog-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.catalog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.catalog-item:hover .catalog-img img {
    transform: scale(1.06);
}

.catalog-item:hover .catalog-img {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.catalog-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    text-align: center;
}

/* ============================
   STATS + TESTIMONIALS
   ============================ */
.social-proof {
    padding: 72px 20px;
    background: var(--white);
    text-align: center;
}

.stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 32px auto;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-num {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--violet);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(184, 105, 127, 0.25);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f9f6f2;
    border: 1px solid rgba(184, 105, 127, 0.15);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(184, 105, 127, 0.12);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--violet);
}

/* Stress-split variant: light bg */
.stress-split {
    background: #f9f6f2;
}

@media (max-width: 900px) {
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .stats-strip {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   FEATURE SPLIT SECTION
   ============================ */
.feature-split {
    padding: 80px 20px;
    background: var(--white);
}

.feature-split-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-split-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--dark2);
    line-height: 1.25;
    margin-bottom: 18px;
}

.feature-split-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 24px;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.feature-checklist li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--amber);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
}

.feature-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--amber);
    color: var(--amber);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 12px;
    transition: all 0.25s;
}

.feature-cta-btn:hover {
    background: var(--amber);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 178, 108, 0.35);
}

.feature-split-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .feature-split {
        padding: 54px 16px;
    }

    .feature-split-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-split-img {
        order: -1;
    }
}

/* ============================
   WHY US
   ============================ */
.why-section {
    background: var(--white);
    padding: 64px 20px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 36px auto 0;
}

.why-item {
    padding: 28px 18px;
    background: var(--light-bg);
    border-radius: 18px;
    border: 1px solid rgba(184, 105, 127, 0.18);
    transition: all 0.3s;
}

.why-item:hover {
    border-color: var(--mauve);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184, 105, 127, 0.15);
}

.why-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.why-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--violet);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
    text-align: center;
    padding: 72px 20px;
    background: linear-gradient(135deg, #1e2839 0%, #2a1f35 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(231, 111, 123, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btn.cta-visualizer {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-weight: 600;
}

.cta-btn.cta-visualizer:hover {
    background: #0071e3;
    border-color: #0071e3;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.4);
}

.cta-btn {
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 28px;
    border-radius: 14px;
    transition: all 0.25s;
}

/* 🎨 Painting → Amber */
.cta-painting {
    background: #f5b26c;
    color: #fff;
}

.cta-painting:hover {
    background: #e8a050;
    transform: translateY(-2px);
}

/* 🏗️ Drywall → Coral */
.cta-drywall {
    background: #e76f7b;
    color: #fff;
}

.cta-drywall:hover {
    background: #d45f6a;
    transform: translateY(-2px);
}

/* 📞 Call → Peach */
.cta-call {
    background: #f5c280;
    color: #fff;
}

.cta-call:hover {
    background: #e8a050;
    transform: translateY(-2px);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: #111120;
    padding: 30px 20px;
    padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--peach);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--mauve);
    border-color: var(--mauve);
    transform: translateY(-3px);
}

.social-icons a img,
.social-icons a svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.social-icons a:hover img,
.social-icons a:hover svg path {
    filter: brightness(0) invert(1);
    fill: #fff;
}

.nextdoor-link svg {
    width: 20px;
    height: 20px;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   RESPONSIVE — MOBILE FIRST
   ============================ */

/* ── Tablet & small desktop ── */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobile (iPhone + Android, up to 768px) ── */
@media (max-width: 768px) {

    /* Header */
    .site-header {
        padding: 8px 16px;
        padding-top: calc(8px + var(--safe-top));
    }

    .header-logo span {
        display: none;
        /* saves space on narrow screens */
    }

    .header-call-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
        gap: 5px;
    }

    /* Hero */
    .hero-section {
        padding: 48px 16px 44px;
    }

    .hero-badge {
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: clamp(1.55rem, 6vw, 2.2rem);
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    /* ZIP box */
    .zip-box {
        padding: 22px 18px 18px;
    }

    .zip-input {
        font-size: 16px;
        /* prevents iOS auto-zoom */
        padding: 13px 15px;
    }

    .zip-btn {
        padding: 0 20px;
        font-size: 0.95rem;
    }

    /* Trust strip */
    .trust-inner {
        gap: 10px;
        flex-wrap: wrap;
    }

    .trust-divider {
        display: none;
    }

    .trust-item strong {
        font-size: 1rem;
    }

    .trust-item span {
        font-size: 0.65rem;
    }

    /* Services */
    .services-section {
        padding: 44px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-card {
        aspect-ratio: 16 / 7;
    }

    /* Why us */
    .why-section {
        padding: 44px 16px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .why-item {
        padding: 20px 14px;
    }

    .why-icon {
        font-size: 1.6rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 54px 16px;
    }

    .cta-buttons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-btn.cta-visualizer {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s;
    }

    .cta-btn.cta-painting {
        background: var(--amber);
        color: #000;
    }

    .cta-btn.cta-drywall {
        background: #e76f7b;
        color: #fff;
    }

    .cta-btn.cta-visualizer {
        background: #4a4a60;
        color: #fff;
    }

    .cta-btn.cta-call {
        background: var(--peach);
        color: #000;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Footer */
    .site-footer {
        padding: 24px 16px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .footer-links {
        gap: 16px;
    }
}

/* ── Small phones (< 480px, older iPhones / SE) ── */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 14px 38px;
    }

    .hero-title {
        font-size: clamp(1.35rem, 7vw, 1.7rem);
    }

    /* Stack ZIP input + button vertically */
    .zip-row {
        flex-direction: column;
        gap: 8px;
    }

    .zip-btn {
        padding: 14px;
        border-radius: 12px;
        width: 100%;
        font-size: 1rem;
    }

    /* Single-column everything */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .svc-card {
        aspect-ratio: 16 / 8;
    }

    .why-item {
        padding: 18px 12px;
    }

    /* Testimonials carousel mobile */
    .testimonials-carousel {
        padding-bottom: 12px;
    }

    .testimonial-card {
        min-width: 290px;
    }
}

/* ── Testimonials Carousel ── */
.testimonials-carousel-wrap {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--amber) #f0f0f0;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 5px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--amber);
    border-radius: 10px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.testimonials-carousel .testimonial-card {
    background: #fff;
    border: 1.5px solid #ffe5cc;
    border-radius: 16px;
    padding: 22px 20px 18px;
    min-width: 320px;
    max-width: 340px;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    transition: transform .2s, box-shadow .2s;
    position: relative;
}

.testimonials-carousel .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
}

.tc-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
}

.tc-source {
    font-size: 0.7rem;
    font-weight: 700;
    color: #00b55a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 2px 10px;
    align-self: flex-start;
}

.carousel-hint {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 4px;
    letter-spacing: .5px;
}