/* ============================================
   FM Landscapes & Design Landing Page Styles
   Mobile-First Responsive Design
   Earth Tones: #2D5016 (green), #C4A484 (stone)
   ============================================ */

/* CSS Custom Properties */
:root {
    --green: #2D5016;
    --green-dark: #1e3a0f;
    --green-light: #3d6b20;
    --stone: #C4A484;
    --stone-light: #d4b894;
    --stone-dark: #a68b6a;
    --cta: #E88420;
    --cta-hover: #D07418;
    --charcoal: #1a1a1a;
    --gray-dark: #333;
    --gray: #666;
    --gray-light: #f5f5f0;
    --cream: #FAF9F6;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --container-max: 1200px;
}

/* ============================================
   BASE STYLES & RESET
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* Section Title Styles */
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: var(--white);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    padding: 14px 20px;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--stone);
}

.header-phone {
    font-weight: 600;
    color: var(--green);
    font-size: 0.95rem;
    padding: 8px 16px;
    border: 2px solid var(--green);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--green);
    color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px 60px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.88) 0%, rgba(26, 26, 26, 0.92) 100%),
                url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero .subheadline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    line-height: 1.5;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-copy {
    text-align: center;
}

/* Hero Form Card */
.hero-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

/* Form glow pulse — triggered when CTA is clicked */
@keyframes formGlow {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(232, 132, 32, 0);
    }
    25% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px 8px rgba(232, 132, 32, 0.6);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 50px 14px rgba(232, 132, 32, 0.4);
    }
    75% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px 8px rgba(232, 132, 32, 0.6);
    }
}

.hero-form.glow {
    animation: formGlow 2s ease-in-out;
}

.hero-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 6px;
}

.hero-form-sub {
    font-size: 0.95rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 16px;
}

.hero-form .form-trust {
    margin-top: 14px;
}

/* Primary CTA Button */
.cta-primary {
    display: inline-block;
    background: var(--cta);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(232, 132, 32, 0.4);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 132, 32, 0.5);
    background: var(--cta-hover);
}

/* Slow breath — plays once on page load to draw the eye */
@keyframes ctaBreath {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(232, 132, 32, 0.4);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 36px rgba(232, 132, 32, 0.65);
    }
}

.cta-primary.breath {
    animation: ctaBreath 1.8s ease-in-out;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--stone);
    flex-shrink: 0;
}

.urgency-line {
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #F5A050;
    letter-spacing: 0.3px;
}

.mid-cta .urgency-line {
    color: #F5A050;
    font-size: 1rem;
    margin-top: 18px;
}

/* ============================================
   BEFORE/AFTER GALLERY
   ============================================ */
.gallery {
    background: var(--cream);
}

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

.gallery-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-img-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
}

.gallery-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-card figcaption strong {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.gallery-card figcaption span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.review-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    border-left: 4px solid var(--stone);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: #f5a623;
}

.review-card blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 16px;
    font-style: italic;
}

.review-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
}

.review-card cite span {
    color: var(--gray);
    font-weight: 400;
}

/* ============================================
   MEET THE OWNER
   ============================================ */
.owner {
    background: var(--white);
}

.owner-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.owner-photo {
    text-align: center;
}

.owner-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--stone);
    box-shadow: var(--shadow);
}

.owner-photo-caption {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
}

.owner-content .section-title {
    margin-bottom: 16px;
}

.owner-intro {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 16px;
    line-height: 1.5;
}

.owner-story p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.owner-signature {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--stone-dark);
    font-family: 'Inter', Georgia, serif;
    font-style: italic;
    margin-top: 8px;
}

/* ============================================
   FEATURES / WHAT YOU GET
   ============================================ */
.features {
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.features .section-title {
    color: var(--white);
}

.features .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--stone);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--charcoal);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
}

.feature-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--stone);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   FAQ SECTION (Pure CSS Accordion)
   ============================================ */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--cream);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--stone);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--stone-dark);
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-item[open] summary {
    color: var(--green);
    background: rgba(45, 80, 22, 0.05);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   WARRANTY SECTION
   ============================================ */
.warranty {
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.warranty .section-title {
    color: var(--white);
}

.warranty .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.warranty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.warranty-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.warranty-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.warranty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warranty-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--charcoal);
}

.warranty-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.warranty-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

/* ============================================
   MID-PAGE CTA SECTION
   ============================================ */
.mid-cta {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.92) 0%, rgba(26, 26, 26, 0.94) 100%),
                url('images/mid-cta-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.mid-cta h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.mid-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.mid-cta .cta-primary {
    font-size: 1.05rem;
    padding: 18px 40px;
}

/* ============================================
   CLOSING CTA SECTION
   ============================================ */
.closing-cta {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding: 80px 0;
}

.closing-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.closing-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.closing-actions .cta-primary,
.closing-actions .cta-secondary {
    max-width: 360px;
    width: 100%;
}

.closing-actions .cta-secondary {
    color: var(--green);
    border: 2px solid var(--green);
    background: transparent;
}

.closing-actions .cta-secondary:hover {
    background: var(--green);
    color: var(--white);
}

/* Form Wrapper */
.consultation-form-wrapper {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

/* GHL Form Embed — auto-resizing container */
#ghl-form {
    min-height: 500px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: min-height 0.3s ease;
}

/* Form Trust Text */
.form-trust {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lock-icon {
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.footer-brand .tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-contact h4,
.footer-service h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-contact p,
.footer-service p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--stone);
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--stone-light);
}

.service-cities {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1.5;
}

.cta-footer {
    display: inline-block;
    background: var(--cta);
    color: var(--charcoal);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
}

.cta-footer:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--cta);
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.sticky-cta a {
    display: block;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1rem;
}

.sticky-cta.hidden {
    transform: translateY(100%);
}

/* ============================================
   DESKTOP STYLES (768px+)
   ============================================ */
@media (min-width: 768px) {
    /* Layout */
    .container {
        padding: 0 40px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.15rem;
        margin-bottom: 50px;
    }
    
    /* Hero */
    .hero {
        padding: 120px 40px 80px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }
    
    .hero-copy {
        text-align: left;
        padding-top: 8px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .hero .subheadline {
        font-size: 1.15rem;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
    
    .hero-copy .cta-primary {
        margin: 0;
        display: block;
        max-width: 340px;
    }
    
    .hero-form {
        max-width: 100%;
        margin: 0;
    }
    
    .trust-badges {
        gap: 40px;
        margin-top: 40px;
        justify-content: flex-start;
        text-align: left;
    }
    
    .trust-badge {
        font-size: 0.95rem;
    }
    
    /* Owner */
    .owner-inner {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 48px;
        text-align: left;
    }
    
    .owner-content .section-title {
        text-align: left;
    }
    
    .owner-photo {
        text-align: center;
    }
    
    /* Warranty */
    .warranty-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    /* Closing CTA */
    .closing-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        text-align: left;
    }
    
    .closing-text .section-title,
    .closing-text .section-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .closing-actions {
        flex-shrink: 0;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .feature-item {
        padding: 24px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    /* Warranty */
    .warranty-card {
        padding: 36px 28px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
        gap: 40px;
        align-items: start;
    }
    
    /* Hide sticky CTA on desktop */
    .sticky-cta {
        display: none;
    }
}

/* ============================================
   LARGE DESKTOP STYLES (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 2.9rem;
    }
    
    .hero .subheadline {
        font-size: 1.2rem;
    }
    
    .hero-inner {
        gap: 64px;
    }
    
    /* Services - 4 columns */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Gallery - 4 columns */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--stone);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header,
    .sticky-cta,
    .hero {
        display: none;
    }
    
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}
