/* ============================= */
/* GLOBAL STYLES */
/* ============================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    line-height:1.6;
    color:#2e2925;
    background:#f7f3ec;
}

section{
    padding:80px 40px;
    max-width:1200px;
    margin:auto;
}

.inner-page{
    background:
        radial-gradient(circle at top left, rgba(200,16,46,0.06), transparent 28%),
        linear-gradient(180deg, #f7f3ec 0%, #f3ede4 100%);
}

h1{
    font-size:42px;
    margin-bottom:20px;
}

h2{
    font-size:32px;
    margin-bottom:20px;
    text-align:center;
}

p{
    margin-bottom:20px;
}


/* ============================= */
/* TOPBAR */
/* ============================= */

.topbar{
    background:linear-gradient(90deg, #8f1124 0%, #c8102e 55%, #dd3f58 100%);
    color:white;
    display:flex;
    justify-content:space-between;
    padding:8px 40px;
    font-size:14px;
    letter-spacing:.02em;
}


/* ============================= */
/* NAVIGATION */
/* ============================= */

nav{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(14px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    border-bottom:1px solid rgba(117,84,52,0.12);
    box-shadow:0 12px 30px rgba(56,38,22,0.08);
}

.logo{
    font-size:24px;
    font-weight:800;
    letter-spacing:-0.03em;
    color:#1f1a17;
    display:flex;
    align-items:baseline;
    gap:8px;
    white-space:nowrap;
}

.logo-atlanta{
    font-family:Georgia, "Times New Roman", serif;
    font-weight:700;
    font-style:italic;
    letter-spacing:.01em;
}

.logo-painters{
    font-family:"Brush Script MT", "Lucida Handwriting", cursive;
    font-weight:400;
    font-size:1.15em;
    line-height:1;
    color:#8f1124;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav li{
    position:relative;
}

nav a{
    text-decoration:none;
    color:#3b3029;
    font-weight:700;
}

nav ul a{
    position:relative;
    padding-bottom:6px;
}

nav ul a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:#c8102e;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
}

nav ul a:hover::after,
nav ul a.active::after{
    transform:scaleX(1);
}

.has-dropdown{
    padding-bottom:10px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:50%;
    min-width:240px;
    padding:12px;
    background:rgba(255,255,255,0.98);
    border:1px solid rgba(117,84,52,0.12);
    border-radius:18px;
    box-shadow:0 20px 40px rgba(56,38,22,0.14);
    transform:translateX(-50%);
    display:none;
    flex-direction:column;
    gap:4px;
    z-index:1001;
}

.has-dropdown:hover .dropdown-menu{
    display:flex;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{
    display:block;
    padding:10px 12px;
    border-radius:12px;
    color:#3b3029;
}

.dropdown-menu a::after{
    display:none;
}

.dropdown-menu a:hover{
    background:#f4ede5;
}

.cta-btn{
    background:linear-gradient(135deg, #c8102e 0%, #9b1026 100%);
    color:white;
    padding:12px 20px;
    border-radius:999px;
    box-shadow:0 10px 22px rgba(200,16,46,0.22);
}

.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}


/* ============================= */
/* HERO */
/* ============================= */

.hero{
    min-height:78vh;
    padding:110px 40px 90px;
    background:
        linear-gradient(90deg, rgba(21,18,16,0.82) 0%, rgba(21,18,16,0.68) 38%, rgba(21,18,16,0.26) 100%),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    display:flex;
    align-items:center;
    position:relative;
    max-width:none;
    margin:auto;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:120px;
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 100%);
    pointer-events:none;
}

.hero-content{
    max-width:720px;
    margin-left:60px;
    color:white;
    position:relative;
    z-index:1;
}

.hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 14px;
    margin-bottom:22px;
    border:1px solid rgba(255,255,255,0.28);
    border-radius:999px;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(6px);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.hero-kicker::before{
    content:"";
    width:9px;
    height:9px;
    border-radius:50%;
    background:#f2c14e;
    box-shadow:0 0 0 6px rgba(242,193,78,0.18);
}

.hero h1{
    max-width:12ch;
    font-size:64px;
    line-height:1.02;
    letter-spacing:-0.04em;
    margin-bottom:22px;
}

.hero-lead{
    max-width:620px;
    font-size:20px;
    line-height:1.7;
    color:rgba(255,255,255,0.92);
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:25px;
    margin-bottom:34px;
}

.btn-primary{
    background:linear-gradient(135deg, #c8102e 0%, #9b1026 100%);
    color:white;
    padding:14px 24px;
    border-radius:999px;
    text-decoration:none;
    margin-right:10px;
    font-weight:700;
    box-shadow:0 12px 24px rgba(200,16,46,0.2);
}

.btn-secondary{
    background:rgba(255,255,255,0.96);
    color:#2b2622;
    padding:14px 24px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    border:1px solid rgba(78,58,42,0.14);
}

.hero-highlights{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px;
    max-width:980px;
}

.hero-highlight{
    padding:18px 18px 16px;
    border:1px solid rgba(255,255,255,0.16);
    border-radius:18px;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

.hero-highlight strong{
    display:block;
    margin-bottom:6px;
    font-size:16px;
    color:#ffffff;
}

.hero-highlight span{
    display:block;
    font-size:14px;
    line-height:1.5;
    color:rgba(255,255,255,0.82);
}


/* ============================= */
/* SERVICES */
/* ============================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    padding:34px 30px;
    border-radius:24px;
    box-shadow:0 24px 50px rgba(56,38,22,0.08);
    border:1px solid rgba(115,83,51,0.08);
    background:linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
    text-align:left;
    transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 56px rgba(56,38,22,0.12);
}

.card h3{
    font-size:22px;
    margin-bottom:14px;
    color:#241d18;
}

.card p{
    color:#5f544c;
    margin-bottom:0;
}

.trust-signals{
    margin-top:38px;
}

.trust-card{
    text-align:center;
    padding:28px 24px;
}

.trust-card h3{
    font-size:20px;
}

.service-link-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:16px;
}

.text-link{
    color:#9b1026;
    font-weight:800;
    text-decoration:none;
}

.text-link:hover{
    text-decoration:underline;
}

.page-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:28px;
}

.thank-you-shell{
    text-align:center;
    min-height:420px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.service-gallery-grid{
    margin-bottom:0;
}

.faq-list{
    display:grid;
    gap:18px;
    margin-top:12px;
}

.faq-item{
    padding:26px 28px;
    border-radius:24px;
    background:linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
    border:1px solid rgba(115,83,51,0.08);
    box-shadow:0 18px 36px rgba(56,38,22,0.08);
    text-align:left;
}

.faq-item h3{
    font-size:20px;
    margin-bottom:10px;
    color:#241d18;
}

.faq-item p{
    margin-bottom:0;
    color:#5f544c;
}

.area-grid{
    margin-top:12px;
}

.area-card{
    text-align:left;
}

.location-chip-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-top:10px;
}

.location-chip{
    display:inline-flex;
    align-items:center;
    padding:12px 18px;
    border-radius:999px;
    background:linear-gradient(180deg, #ffffff 0%, #f7f1ea 100%);
    border:1px solid rgba(117,84,52,0.12);
    box-shadow:0 10px 22px rgba(56,38,22,0.06);
    font-weight:700;
    color:#4a3c33;
}

/* ============================= */
/* HOMEPAGE PREVIEW SECTIONS */
/* ============================= */

.section-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px auto;
    color:#62564d;
    font-size:18px;
}

.section-label{
    display:block;
    width:fit-content;
    margin:0 auto 16px;
    padding:8px 14px;
    border-radius:999px;
    background:#efe6da;
    color:#8b5a2b;
    font-size:12px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.page-section{
    position:relative;
}

.page-shell{
    margin-top:38px;
    margin-bottom:38px;
    padding:56px;
    border-radius:34px;
    background:linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,249,245,0.96) 100%);
    border:1px solid rgba(115,83,51,0.08);
    box-shadow:0 26px 60px rgba(56,38,22,0.08);
}

.page-section-soft{
    background:linear-gradient(180deg, rgba(250,246,239,0.98) 0%, rgba(243,234,223,0.98) 100%);
}

.page-shell h1,
.page-shell h2{
    color:#211b17;
    text-align:center;
}

.page-shell p:not(.section-label):not(.section-intro){
    color:#5e534b;
}

.page-shell .section-intro{
    margin-bottom:34px;
}

.gallery-page-shell{
    padding-bottom:44px;
}

/* Homepage Section Bands */

.home-section{
    position:relative;
    isolation:isolate;
}

.home-section::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:50%;
    width:100vw;
    transform:translateX(-50%);
    z-index:-1;
    border-top:1px solid #e7dfd4;
}

.section-soft::before{
    background:linear-gradient(180deg, #faf7f2 0%, #f3ede4 100%);
}

.section-plain::before{
    background:#ffffff;
}

.about-preview,
.services,
.gallery-preview,
.reviews-section,
.service-area{
    text-align:center;
}

/* Gallery Preview */

.preview-gallery-grid{
    
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-bottom:40px;
    
}

.preview-gallery-item{
    overflow:hidden;
    border-radius:26px;
    box-shadow:0 24px 48px rgba(56,38,22,0.12);
    border:1px solid rgba(115,83,51,0.08);
    background:white;
}

.preview-gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.preview-gallery-item:hover img{
    transform:scale(1.04);
}

/* Center Button */

.center-button{
    
    text-align:center;
    margin-top:20px;
    
}

/* ============================= */
/* SERVICE MAP */
/* ============================= */

.service-area p{
    text-align:center;
}

.map-container{
    margin-top:40px;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 24px 48px rgba(56,38,22,0.12);
    border:1px solid rgba(115,83,51,0.08);
}

.map-container iframe{
    width:100%;
    height:400px;
    border:0;
}


/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta{
    background:#c8102e;
    color:white;
    text-align:center;
    padding:96px 40px;
}

.home-cta{
    max-width:none;
    margin:0;
    position:relative;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,0.2);
}

.home-cta::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 48%),
        linear-gradient(180deg, #c8102e 0%, #a60d25 100%);
    z-index:-1;
}

.cta-button{
    display:inline-block;
    margin-top:20px;
    background:white;
    color:#c8102e;
    padding:16px 28px;
    border-radius:999px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 18px 34px rgba(0,0,0,0.16);
}


/* ============================= */
/* MASONRY GALLERY */
/* ============================= */

.gallery-title{
    text-align:center;
    margin-bottom:60px;
}

/* Masonry Columns */

.masonry-gallery{
    column-count:3;
    column-gap:20px;
}

@media(max-width:900px){
    .masonry-gallery{
        column-count:2;
    }
}

@media(max-width:600px){
    .masonry-gallery{
        column-count:1;
    }
}

/* Gallery Item */

.gallery-item{
    position:relative;
    margin-bottom:20px;
    break-inside:avoid;
    overflow:hidden;
    border-radius:6px;
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp .8s ease forwards;
}

.gallery-item img{
    width:100%;
    display:block;
    border-radius:6px;
}

/* Hover Overlay */

.gallery-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:opacity .3s ease;
    padding:20px;
    text-align:center;
}

.gallery-overlay p,
.page-shell .gallery-overlay p,
.gallery-page-shell .gallery-overlay p{
    color:#ffffff !important;
    font-size:16px;
    line-height:1.4;
    text-shadow:0 2px 12px rgba(0,0,0,0.4);
}

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


/* ============================= */
/* GALLERY ANIMATION */
/* ============================= */

@keyframes fadeUp{
    
    0%{
        opacity:0;
        transform:translateY(30px);
    }
    
    100%{
        opacity:1;
        transform:translateY(0);
    }
    
}

@keyframes reviewCardInFromRight{
    0%{
        opacity:.18;
        transform:translateX(26px) scale(.96);
    }
    
    100%{
        opacity:1;
        transform:translateX(0) scale(1);
    }
}

@keyframes reviewCardInFromLeft{
    0%{
        opacity:.18;
        transform:translateX(-26px) scale(.96);
    }
    
    100%{
        opacity:1;
        transform:translateX(0) scale(1);
    }
}

@keyframes reviewPreviewInFromRight{
    0%{
        opacity:.18;
        transform:translateX(18px) scale(.84);
    }
    
    100%{
        opacity:.45;
        transform:translateX(0) scale(.88);
    }
}

@keyframes reviewPreviewInFromLeft{
    0%{
        opacity:.18;
        transform:translateX(-18px) scale(.84);
    }
    
    100%{
        opacity:.45;
        transform:translateX(0) scale(.88);
    }
}

/* ============================= */
/* GALLERY FILTERS */
/* ============================= */

.gallery-filters {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-filters button {
  margin: 6px;
  padding: 12px 18px;
  border: 1px solid rgba(117,84,52,0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7f1ea 100%);
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  color:#4a3c33;
  box-shadow:0 10px 22px rgba(56,38,22,0.06);
}

.gallery-filters button:hover {
  background: #c8102e;
  color: white;
}

/* ============================= */
/* GOOGLE REVIEWS SECTION */
/* ============================= */

.reviews-section{
    
    text-align:center;
    
}

.reviews-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    overflow:hidden;
}

.review-card{
    background:linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
    box-shadow:0 24px 50px rgba(56,38,22,0.1);
    border-radius:28px;
    border:1px solid rgba(115,83,51,0.08);
    padding:48px 38px;
    max-width:650px;
    min-height:240px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:transform .32s ease, opacity .32s ease, filter .32s ease;
}

.review-card-main{
    transform:translateX(0) scale(1);
}

.review-card-preview{
    max-width:260px;
    min-height:210px;
    padding:28px 24px;
    opacity:.45;
    transform:scale(.88);
    filter:saturate(.8);
}

.reviews-slider.is-transitioning-next .review-card{
    opacity:.18;
}

.reviews-slider.is-transitioning-next .review-card-main{
    transform:translateX(-26px) scale(.96);
}

.reviews-slider.is-transitioning-next .review-card-preview{
    transform:translateX(-18px) scale(.84);
}

.reviews-slider.is-transitioning-prev .review-card{
    opacity:.18;
}

.reviews-slider.is-transitioning-prev .review-card-main{
    transform:translateX(26px) scale(.96);
}

.reviews-slider.is-transitioning-prev .review-card-preview{
    transform:translateX(18px) scale(.84);
}

.reviews-slider.is-entering-next .review-card-main{
    animation:reviewCardInFromRight .42s ease;
}

.reviews-slider.is-entering-next .review-card-preview{
    animation:reviewPreviewInFromRight .42s ease;
}

.reviews-slider.is-entering-prev .review-card-main{
    animation:reviewCardInFromLeft .42s ease;
}

.reviews-slider.is-entering-prev .review-card-preview{
    animation:reviewPreviewInFromLeft .42s ease;
}

.review-card-preview .review-text{
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
    font-size:15px;
    line-height:1.6;
}

.review-card-preview .review-author{
    font-size:14px;
}

.review-stars{
    
    font-size:22px;
    color:#c8102e;
    margin-bottom:20px;
    
}

.review-text{
    
    font-size:18px;
    line-height:1.7;
    margin-bottom:20px;
    
}

.review-author{
    
    font-weight:bold;
    margin-bottom:10px;
    
}

.review-link{
    
    font-size:14px;
    color:#c8102e;
    text-decoration:none;
    
}

.review-link:hover{
    
    text-decoration:underline;
    
}

.review-arrow{
    background:linear-gradient(135deg, #c8102e 0%, #9b1026 100%);
    color:white;
    border:none;
    width:54px;
    height:54px;
    border-radius:50%;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 14px 28px rgba(200,16,46,0.22);
}

.review-arrow:hover{
    
    opacity:.9;
    
}


/* MOBILE */

@media(max-width:768px){
    
    .review-card-preview{
        display:none;
    }
    
    .review-card{
        
        padding:30px 20px;
        min-height:auto;
        
    }
    
    .review-text{
        
        font-size:16px;
        
    }
    
    .review-arrow{
        
        width:42px;
        height:42px;
        
    }
    
}
/* ============================= */
/* CONTACT / ESTIMATE FORM */
/* ============================= */

.estimate-form{
    max-width:600px;
    margin:auto;
    padding:34px;
    border-radius:28px;
    background:linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
    border:1px solid rgba(115,83,51,0.08);
    box-shadow:0 20px 42px rgba(56,38,22,0.08);
}

.estimate-form label{
    font-weight:600;
    color:#302823;
}

.estimate-form input,
.estimate-form textarea,
.estimate-form select{
    width:100%;
    padding:14px 16px;
    margin-top:8px;
    margin-bottom:20px;
    border:1px solid rgba(117,84,52,0.18);
    border-radius:16px;
    background:#fffdfb;
    color:#2e2925;
}

.estimate-form button{
    background:linear-gradient(135deg, #c8102e 0%, #9b1026 100%);
    color:white;
    padding:14px 24px;
    border:none;
    border-radius:999px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 16px 30px rgba(200,16,46,0.2);
}


/* ============================= */
/* FLOATING BUTTON */
/* ============================= */

.floating-estimate{
    position:fixed;
    bottom:30px;
    right:30px;
    background:linear-gradient(135deg, #c8102e 0%, #9b1026 100%);
    color:white;
    padding:16px 22px;
    border-radius:30px;
    font-weight:bold;
    text-decoration:none;
    box-shadow:0 16px 32px rgba(56,38,22,0.22);
}


/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer{
    
    background:#222;
    color:white;
    padding-top:60px;
    
}

.footer-container{
    
    max-width:1200px;
    margin:auto;
    padding:0 40px;
    
    display:grid;
    grid-template-columns:repeat(3, minmax(220px, 1fr));
    column-gap:clamp(36px, 6vw, 96px);
    row-gap:32px;
    align-items:start;
    justify-items:center;
    
}

/* Footer Columns */

.footer-column h3{
    
    margin-bottom:15px;
    font-size:18px;
    
}

.footer-column{
    width:100%;
    max-width:320px;
}

.footer-column:first-child{
    justify-self:start;
    text-align:left;
}

.footer-column:first-child .social-icons{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-start;
}

.footer-column.footer-logo{
    justify-self:center;
    text-align:center;
}

.footer-column:last-child{
    justify-self:end;
    text-align:left;
}

.footer-column:last-child .footer-links{
    width:fit-content;
    margin:0;
}

.footer-column p{
    
    font-size:14px;
    line-height:1.6;
    
}

.footer-column a{
    
    color:white;
    text-decoration:none;
    
}

.footer-column a:hover{
    
    text-decoration:underline;
    
}

/* Logo Column */

.footer-logo{
    
    text-align:center;
    
}

.footer-logo img{
    
    max-width:180px;
    margin-bottom:10px;
    
}

.footer-tagline{
    
    font-size:14px;
    opacity:.8;
    
}

/* Sitemap Links */

.footer-links{
    
    list-style:none;
    
}

.footer-links li{
    
    margin-bottom:10px;
    
}

.footer-links a{
    
    color:white;
    text-decoration:none;
    
}

.footer-links a:hover{
    
    text-decoration:underline;
    
}

/* Social Icons */

.social-icons{
    
    margin-top:15px;
    
}

.social-icons a{
    
    display:inline-block;
    margin-right:12px;
    
}

.social-icons img{
    
    width:24px;
    height:24px;
    
    filter:invert(1);
    
    transition:opacity .2s ease;
    
}

.social-icons img:hover{
    
    opacity:.7;
    
}

/* Service Area */

.footer-service-area{
    
    max-width:900px;
    margin:40px auto;
    text-align:center;
    font-size:14px;
    opacity:.8;
    
}

/* Bottom Bar */

.footer-bottom{
    
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:20px;
    font-size:13px;
    opacity:.7;
    
}

/* Mobile Footer */

@media(max-width:768px){
    
    .footer-container{
        
        grid-template-columns:1fr;
        text-align:center;
        
    }

    .footer-column,
    .footer-column:first-child,
    .footer-column.footer-logo,
    .footer-column:last-child{
        justify-self:center;
        text-align:center;
    }

    .footer-column:first-child .social-icons{
        justify-content:center;
    }
    
    .footer-column:last-child .footer-links{
        margin:0 auto;
    }
    
    .footer-logo{
        
        order:-1;
        
    }
    
}


/* ============================= */
/* MOBILE */
/* ============================= */

@media(max-width:768px){
    
    nav ul{
        display:none;
        flex-direction:column;
        background:rgba(255,255,255,0.98);
        position:absolute;
        top:78px;
        right:20px;
        width:220px;
        padding:20px;
        border-radius:20px;
        border:1px solid rgba(117,84,52,0.12);
        box-shadow:0 20px 40px rgba(56,38,22,0.16);
    }
    
    nav ul.show{
        display:flex;
    }

    .dropdown-menu{
        position:static;
        transform:none;
        min-width:100%;
        margin-top:10px;
        padding:10px;
        display:flex;
        box-shadow:none;
        background:#f8f2ea;
    }

    .has-dropdown{
        padding-bottom:0;
    }
    
    .menu-toggle{
        display:block;
    }
    
    .hero{
        min-height:auto;
        padding:96px 20px 72px;
        background:
            linear-gradient(180deg, rgba(21,18,16,0.8) 0%, rgba(21,18,16,0.7) 48%, rgba(21,18,16,0.55) 100%),
            url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    }

    .hero-content{
        margin-left:0;
        margin-right:0;
    }
    
    .hero h1{
        max-width:none;
        font-size:42px;
    }

    h2{
        font-size:30px;
    }

    .hero-lead{
        font-size:17px;
        line-height:1.65;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .btn-primary,
    .btn-secondary{
        margin-right:0;
        text-align:center;
    }

    .hero-highlights{
        grid-template-columns:1fr;
        gap:12px;
    }

    .hero-highlight{
        padding:16px;
    }

    .topbar{
        padding:10px 16px;
        flex-direction:column;
        gap:4px;
        text-align:center;
    }

    nav{
        padding:16px 20px;
    }

    .logo{
        max-width:none;
        font-size:20px;
        gap:6px;
        flex-wrap:wrap;
    }

    .cta-btn{
        display:none;
    }

    section{
        padding:72px 20px;
    }

    .page-shell{
        margin-top:24px;
        margin-bottom:24px;
        padding:32px 22px;
        border-radius:26px;
    }

    .section-intro{
        font-size:17px;
    }

    .preview-gallery-item img{
        height:220px;
    }

    .reviews-slider{
        flex-direction:column;
    }

    .estimate-form{
        padding:24px 18px;
        border-radius:22px;
    }

    .floating-estimate{
        right:18px;
        bottom:18px;
        padding:14px 18px;
    }
    
}
