/* ============================================================
   Commercial Wallpaper Pros Dallas — Style Sheet
   Palette: Deep Emerald / Antique Gold / Champagne
   Fonts: DM Serif Display (headings) + Nunito Sans (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

:root {
    --emerald:       #0b3d2e;
    --emerald-deep:  #072a1f;
    --emerald-light: #14573f;
    --forest:        #0a2e22;
    --champagne:     #f5efe3;
    --champagne-dark:#e8dfd0;
    --cream:         #faf7f0;
    --gold:          #c5a55a;
    --gold-dark:     #a88b3d;
    --gold-light:    #d4bb76;
    --charcoal:      #1e2a24;
    --text-dark:     #1a2e24;
    --text-light:    #f0ead8;
    --white:         #ffffff;
    --font-heading:  'DM Serif Display', Georgia, serif;
    --font-body:     'Nunito Sans', 'Segoe UI', sans-serif;
    --transition:    .3s ease;
    --shadow:        0 4px 24px rgba(0,0,0,.15);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.2);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px; line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
ul,ol { list-style:none; }
img { max-width:100%; height:auto; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ---------- HEADER (single row) ---------- */
.site-header {
    position:fixed; top:0; left:0; width:100%; z-index:1000;
    background: rgba(7,42,31,.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(197,165,90,.15);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.header-main {
    display:flex; align-items:center;
    padding:0 20px; max-width:1440px; margin:0 auto;
    gap:10px;
}

.logo a {
    font-family: var(--font-heading);
    font-size:1.3rem; font-weight:400;
    color: var(--text-light);
    line-height:1.2; padding:14px 0; display:block;
    white-space:nowrap;
}
.logo span { color: var(--gold); }

/* ---------- NAVIGATION ---------- */
.main-nav { margin-left:auto; }
.main-nav > ul { display:flex; align-items:center; gap:0; }
.main-nav > ul > li { position:relative; }
.main-nav > ul > li > a {
    display:block; padding:18px 11px;
    font-family: var(--font-body);
    font-size:.73rem; font-weight:600;
    letter-spacing:.09em; text-transform:uppercase;
    color: var(--text-light);
    transition: color var(--transition);
    white-space:nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--gold); }

.header-contact {
    display:flex; gap:14px; align-items:center;
    font-size:.72rem; color: var(--text-light);
    white-space:nowrap; flex-shrink:0;
}
.header-contact a { color: var(--gold-light); transition: color var(--transition); }
.header-contact a:hover { color: var(--champagne); }
.header-contact svg { width:13px; height:13px; fill:var(--gold-light); margin-right:4px; vertical-align:middle; }

.nav-cta-btn {
    display:inline-block;
    background: var(--gold); color: var(--emerald-deep);
    padding:9px 18px;
    font-family: var(--font-body);
    font-size:.7rem; font-weight:700;
    letter-spacing:.08em; text-transform:uppercase;
    transition: background var(--transition), transform .2s;
    white-space:nowrap; flex-shrink:0;
    box-shadow: 0 2px 10px rgba(197,165,90,.3);
}
.nav-cta-btn:hover { background: var(--gold-dark); color:#fff; transform:translateY(-1px); }

/* ---------- DROPDOWN MENUS (emerald-unfurl animation) ---------- */
.dropdown-menu {
    position:absolute; top:100%; left:0;
    min-width:260px;
    background: var(--emerald-deep);
    border-top:3px solid var(--gold);
    box-shadow: 0 12px 36px rgba(0,0,0,.45);
    opacity:0; visibility:hidden;
    transform:scaleY(0); transform-origin:top;
    transition: opacity .3s ease, transform .35s cubic-bezier(.4,0,.2,1), visibility .3s;
    flex-direction:column;
    display:flex;
    z-index:100;
}
.main-nav > ul > li:hover > .dropdown-menu {
    opacity:1; visibility:visible; transform:scaleY(1);
}
.dropdown-menu li { overflow:hidden; }
.dropdown-menu a {
    display:block; padding:12px 22px;
    font-size:.82rem; color: var(--text-light);
    border-bottom:1px solid rgba(255,255,255,.06);
    transition: background var(--transition), padding-left var(--transition), color var(--transition);
    opacity:0; transform:translateY(-10px);
    animation:none;
}
.main-nav > ul > li:hover .dropdown-menu a {
    animation: dropItemIn .35s ease forwards;
}
.dropdown-menu li:nth-child(1) a { animation-delay:.04s; }
.dropdown-menu li:nth-child(2) a { animation-delay:.08s; }
.dropdown-menu li:nth-child(3) a { animation-delay:.12s; }
.dropdown-menu li:nth-child(4) a { animation-delay:.16s; }
.dropdown-menu li:nth-child(5) a { animation-delay:.20s; }
.dropdown-menu li:nth-child(6) a { animation-delay:.24s; }
.dropdown-menu li:nth-child(7) a { animation-delay:.28s; }
.dropdown-menu li:nth-child(8) a { animation-delay:.32s; }
.dropdown-menu li:nth-child(9) a { animation-delay:.36s; }
.dropdown-menu li:nth-child(10) a { animation-delay:.40s; }
.dropdown-menu li:nth-child(11) a { animation-delay:.44s; }

@keyframes dropItemIn {
    0%   { opacity:0; transform:translateY(-10px); }
    100% { opacity:1; transform:translateY(0); }
}
.dropdown-menu a:hover {
    background: rgba(197,165,90,.12);
    padding-left:30px;
    color: var(--gold);
}

/* ---------- MOBILE MENU ---------- */
.menu-toggle {
    display:none; background:none; border:none; cursor:pointer;
    padding:8px; margin-left:auto;
}
.menu-toggle span {
    display:block; width:24px; height:2px;
    background: var(--text-light); margin:5px 0;
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity:0; }
.menu-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ---------- HERO ---------- */
.hero {
    position:relative; min-height:92vh;
    display:flex; align-items:center;
    background-size:cover; background-position:center;
    margin-top:56px;
}
.hero-overlay {
    position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(7,42,31,.88) 0%, rgba(11,61,46,.7) 50%, rgba(7,42,31,.85) 100%);
}
.hero-content {
    position:relative; z-index:2;
    display:flex; align-items:center; justify-content:space-between;
    gap:48px; max-width:1200px; margin:0 auto; padding:0 24px; width:100%;
}
.hero-text { flex:1; max-width:540px; }
.hero-text .subtitle {
    font-family: var(--font-body);
    font-size:.85rem; font-weight:600;
    letter-spacing:.18em; text-transform:uppercase;
    color: var(--gold); margin-bottom:16px;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size:3rem; font-weight:400;
    color: var(--text-light); line-height:1.15;
    margin-bottom:20px;
}
.hero-text h1 em { font-style:italic; color: var(--gold); }
.hero-text p {
    font-size:1.05rem; color: rgba(240,234,216,.85);
    line-height:1.8; margin-bottom:28px;
}
.hero-form { flex:1; max-width:480px; }

/* ---------- BUTTONS ---------- */
.btn {
    display:inline-block;
    padding:14px 36px;
    font-family: var(--font-body);
    font-size:.85rem; font-weight:700;
    letter-spacing:.06em; text-transform:uppercase;
    transition: all var(--transition);
    cursor:pointer; border:none;
}
.btn-gold {
    background: var(--gold); color: var(--emerald-deep);
    box-shadow: 0 4px 16px rgba(197,165,90,.3);
}
.btn-gold:hover { background: var(--gold-dark); color:#fff; transform:translateY(-2px); box-shadow: 0 6px 24px rgba(197,165,90,.4); }
.btn-outline {
    background:transparent; color: var(--gold);
    border:2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--emerald-deep); }
.btn-emerald {
    background: var(--emerald); color: var(--text-light);
    box-shadow: 0 4px 16px rgba(11,61,46,.3);
}
.btn-emerald:hover { background: var(--emerald-light); transform:translateY(-2px); }

/* ---------- FORM STYLES ---------- */
.feedback-form-container {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
    border:1px solid rgba(197,165,90,.2);
    padding:32px; border-radius:2px;
}
.feedback-form-container h3 {
    font-family: var(--font-heading);
    font-size:1.5rem; color: var(--text-light);
    text-align:center; margin-bottom:24px;
}
.form-row { display:flex; gap:14px; margin-bottom:14px; }
.form-group { flex:1; }
.form-group input,
.form-group textarea {
    width:100%; padding:13px 16px;
    background: rgba(255,255,255,.08);
    border:1px solid rgba(197,165,90,.25);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size:.9rem;
    transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,234,216,.45); }
.form-group input:focus,
.form-group textarea:focus {
    outline:none;
    border-color: var(--gold);
    background: rgba(255,255,255,.12);
}
.form-group textarea { min-height:100px; resize:vertical; }
.form-submit { margin-top:16px; }
.submit-btn {
    width:100%; padding:14px;
    background: var(--gold); color: var(--emerald-deep);
    font-family: var(--font-body);
    font-size:.9rem; font-weight:700;
    letter-spacing:.08em; text-transform:uppercase;
    border:none; cursor:pointer;
    transition: background var(--transition), transform .2s;
    box-shadow: 0 4px 16px rgba(197,165,90,.3);
}
.submit-btn:hover { background: var(--gold-dark); color:#fff; transform:translateY(-2px); }

/* Light background form */
.form-light .feedback-form-container {
    background: var(--white);
    border:1px solid var(--champagne-dark);
}
.form-light .feedback-form-container h3 { color: var(--emerald); }
.form-light .form-group input,
.form-light .form-group textarea {
    background: var(--cream);
    border:1px solid var(--champagne-dark);
    color: var(--text-dark);
}
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color:#999; }
.form-light .form-group input:focus,
.form-light .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

/* ---------- SECTIONS ---------- */
.section { padding:80px 0; }
.section-dark { background: var(--emerald); color: var(--text-light); }
.section-forest { background: var(--forest); color: var(--text-light); }
.section-light { background: var(--champagne); }
.section-cream { background: var(--cream); }

.section-header {
    text-align:center; margin-bottom:48px;
}
.section-header .label {
    font-family: var(--font-body);
    font-size:.8rem; font-weight:600;
    letter-spacing:.2em; text-transform:uppercase;
    color: var(--gold); margin-bottom:10px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size:2.4rem; font-weight:400;
    line-height:1.2; margin-bottom:16px;
}
.section-dark .section-header h2,
.section-forest .section-header h2 { color: var(--text-light); }
.section-light .section-header h2,
.section-cream .section-header h2 { color: var(--emerald); }
.section-header p {
    max-width:640px; margin:0 auto;
    font-size:1.05rem; line-height:1.7;
    opacity:.85;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:24px;
}
.service-card {
    background: var(--white);
    border:1px solid var(--champagne-dark);
    overflow:hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform:translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width:100%; height:220px; object-fit:cover; }
.service-card-body { padding:24px; }
.service-card h3 {
    font-family: var(--font-heading);
    font-size:1.2rem; color: var(--emerald);
    margin-bottom:10px;
}
.service-card p { font-size:.92rem; color:#555; line-height:1.6; margin-bottom:16px; }
.service-card .btn { padding:10px 24px; font-size:.78rem; }

/* ---------- GALLERY ---------- */
.gallery-grid {
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:16px;
}
.gallery-item {
    overflow:hidden; position:relative;
    aspect-ratio:1;
}
.gallery-item img {
    width:100%; height:100%; object-fit:cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform:scale(1.08); }

/* ---------- FEATURES / WHY CHOOSE ---------- */
.features-grid {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:32px;
}
.feature-card {
    text-align:center; padding:32px 24px;
}
.feature-card .icon {
    width:56px; height:56px; margin:0 auto 20px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(197,165,90,.12);
    border-radius:50%;
}
.feature-card .icon svg { width:28px; height:28px; fill: var(--gold); }
.section-dark .feature-card .icon { background: rgba(197,165,90,.15); }
.feature-card h3 {
    font-family: var(--font-heading);
    font-size:1.15rem; margin-bottom:10px;
}
.section-dark .feature-card h3 { color: var(--gold-light); }
.feature-card p { font-size:.92rem; line-height:1.65; opacity:.85; }

/* ---------- ABOUT PREVIEW ---------- */
.about-preview {
    display:flex; align-items:center; gap:48px;
}
.about-preview-img { flex:1; }
.about-preview-img img { width:100%; height:400px; object-fit:cover; }
.about-preview-text { flex:1; }
.about-preview-text h2 {
    font-family: var(--font-heading);
    font-size:2rem; color: var(--emerald);
    margin-bottom:16px;
}
.about-preview-text p { margin-bottom:16px; font-size:1rem; line-height:1.75; }

/* ---------- LOCATIONS GRID ---------- */
.locations-grid {
    display:grid; grid-template-columns:repeat(5,1fr);
    gap:16px;
}
.location-card {
    text-align:center; padding:20px 12px;
    background: rgba(255,255,255,.06);
    border:1px solid rgba(197,165,90,.15);
    transition: all var(--transition);
}
.location-card:hover {
    background: rgba(197,165,90,.1);
    border-color: var(--gold);
    transform:translateY(-3px);
}
.location-card svg {
    width:20px; height:20px; fill: var(--gold);
    margin-bottom:8px;
}
.location-card h3 {
    font-family: var(--font-heading);
    font-size:1rem; color: var(--text-light);
}

/* ---------- STATS ---------- */
.stats-row {
    display:flex; justify-content:center; gap:48px;
    padding:40px 0;
}
.stat-item { text-align:center; }
.stat-item .number {
    font-family: var(--font-heading);
    font-size:2.8rem; color: var(--gold);
    display:block;
}
.stat-item .label {
    font-size:.85rem; text-transform:uppercase;
    letter-spacing:.1em; opacity:.8;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    text-align:center; padding:80px 24px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size:2.4rem; color: var(--text-light);
    margin-bottom:16px;
}
.cta-section p { color: rgba(240,234,216,.8); font-size:1.05rem; margin-bottom:28px; }

/* ---------- MAP ---------- */
.map-container { width:100%; }
.map-container iframe { width:100%; height:400px; border:0; display:block; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    position:relative; padding:120px 0 60px;
    background: var(--emerald);
    text-align:center; margin-top:56px;
}
.page-hero .label {
    font-size:.8rem; font-weight:600;
    letter-spacing:.2em; text-transform:uppercase;
    color: var(--gold); margin-bottom:10px;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size:2.6rem; color: var(--text-light);
    margin-bottom:14px;
}
.page-hero p { color: rgba(240,234,216,.8); font-size:1.05rem; max-width:600px; margin:0 auto; }

/* ---------- SERVICE PAGE CONTENT ---------- */
.service-content { display:flex; gap:40px; align-items:flex-start; }
.service-content-text { flex:1.2; }
.service-content-text h2 {
    font-family: var(--font-heading);
    font-size:1.8rem; color: var(--emerald);
    margin-bottom:16px;
}
.service-content-text p { margin-bottom:16px; line-height:1.75; }
.service-content-images { flex:1; }
.service-content-images img {
    width:100%; margin-bottom:16px; object-fit:cover;
}

/* ---------- LOCATION PAGE ---------- */
.location-intro { display:flex; gap:40px; align-items:center; }
.location-intro-text { flex:1.2; }
.location-intro-text h2 {
    font-family: var(--font-heading);
    font-size:1.8rem; color: var(--emerald);
    margin-bottom:16px;
}
.location-intro-text p { margin-bottom:16px; line-height:1.75; }
.location-intro-img { flex:1; }
.location-intro-img img { width:100%; object-fit:cover; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display:flex; gap:48px; align-items:flex-start; }
.contact-info { flex:1; }
.contact-form-wrap { flex:1; }
.contact-info-item {
    display:flex; align-items:flex-start; gap:16px;
    margin-bottom:28px;
}
.contact-info-item .ci-icon {
    width:48px; height:48px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    background: rgba(197,165,90,.1);
    border:1px solid rgba(197,165,90,.2);
    border-radius:50%;
}
.contact-info-item .ci-icon svg { width:22px; height:22px; fill: var(--gold); }
.contact-info-item h3 {
    font-family: var(--font-heading);
    font-size:1.1rem; color: var(--emerald);
    margin-bottom:4px;
}
.contact-info-item p { font-size:.92rem; color:#555; line-height:1.6; }
.contact-info-item a { color: var(--gold-dark); font-weight:600; }
.contact-info-item a:hover { color: var(--emerald); }

/* ---------- FAQ ---------- */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item {
    border-bottom:1px solid var(--champagne-dark);
    margin-bottom:0;
}
.faq-question {
    display:flex; justify-content:space-between; align-items:center;
    padding:20px 0; cursor:pointer;
    font-family: var(--font-heading);
    font-size:1.1rem; color: var(--emerald);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question .arrow {
    width:20px; height:20px; flex-shrink:0;
    transition: transform var(--transition);
}
.faq-question .arrow svg { width:20px; height:20px; fill: var(--gold); }
.faq-item.active .faq-question .arrow { transform:rotate(180deg); }
.faq-answer {
    max-height:0; overflow:hidden;
    transition: max-height .4s ease, padding .3s ease;
}
.faq-item.active .faq-answer {
    max-height:400px; padding-bottom:20px;
}
.faq-answer p { font-size:.95rem; line-height:1.7; color:#555; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--emerald-deep);
    color: var(--text-light);
    padding:60px 0 0;
}
.footer-grid {
    display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px; margin-bottom:40px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size:1.1rem; color: var(--gold);
    margin-bottom:16px;
}
.footer-col p { font-size:.9rem; line-height:1.7; opacity:.8; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a {
    font-size:.88rem; color: rgba(240,234,216,.7);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px 0; text-align:center;
    font-size:.82rem; opacity:.6;
}

/* ---------- STICKY QUOTE BUTTON ---------- */
.sticky-quote {
    position:fixed; bottom:28px; right:28px;
    z-index:999;
}
.sticky-quote button {
    background: var(--gold); color: var(--emerald-deep);
    padding:14px 28px;
    font-family: var(--font-body);
    font-size:.82rem; font-weight:700;
    letter-spacing:.06em; text-transform:uppercase;
    border:none; cursor:pointer;
    box-shadow: 0 6px 24px rgba(197,165,90,.4);
    transition: all var(--transition);
}
.sticky-quote button:hover { background: var(--gold-dark); color:#fff; transform:translateY(-2px); }

/* ---------- MODAL ---------- */
.modal-overlay {
    display:none; position:fixed; inset:0;
    background: rgba(0,0,0,.7);
    z-index:2000;
    align-items:center; justify-content:center;
}
.modal-overlay.active { display:flex; }
.modal-box {
    background: var(--emerald);
    max-width:520px; width:90%;
    padding:40px; position:relative;
}
.modal-close {
    position:absolute; top:14px; right:14px;
    background:none; border:none; cursor:pointer;
    color: var(--text-light); font-size:1.6rem;
    line-height:1; transition: color var(--transition);
}
.modal-close:hover { color: var(--gold); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
    padding:12px 0; font-size:.82rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { color:#888; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
    opacity:0; transform:translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px) {
    .services-grid { grid-template-columns:repeat(2,1fr); }
    .gallery-grid { grid-template-columns:repeat(3,1fr); }
    .locations-grid { grid-template-columns:repeat(3,1fr); }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
    .features-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:768px) {
    .header-contact { display:none; }
    .nav-cta-btn { display:none; }
    .menu-toggle { display:block; }

    .main-nav {
        position:absolute; top:100%; left:0; width:100%;
        background: var(--emerald-deep);
        max-height:0; overflow:hidden;
        transition: max-height .4s ease;
    }
    .main-nav.open { max-height:100vh; overflow-y:auto; }
    .main-nav > ul { flex-direction:column; padding:16px 0; }
    .main-nav > ul > li > a { padding:12px 24px; font-size:.85rem; }

    .dropdown-menu {
        position:static; min-width:100%;
        border-top:none; box-shadow:none;
        background: rgba(0,0,0,.15);
        opacity:1; visibility:visible;
        transform:scaleY(1);
        max-height:0; overflow:hidden;
        transition: max-height .3s ease;
    }
    .dropdown-menu.mob-open { max-height:600px; }
    .dropdown-menu a { padding:10px 40px; opacity:1; transform:none; animation:none !important; }

    .hero { min-height:auto; padding:100px 0 60px; }
    .hero-content { flex-direction:column; gap:32px; }
    .hero-text { max-width:100%; }
    .hero-text h1 { font-size:2rem; }
    .hero-form { max-width:100%; }
    .form-row { flex-direction:column; gap:10px; }

    .services-grid { grid-template-columns:1fr; }
    .gallery-grid { grid-template-columns:repeat(2,1fr); }
    .locations-grid { grid-template-columns:repeat(2,1fr); }
    .features-grid { grid-template-columns:1fr; }
    .about-preview { flex-direction:column; }
    .service-content { flex-direction:column; }
    .location-intro { flex-direction:column; }
    .contact-grid { flex-direction:column; }
    .footer-grid { grid-template-columns:1fr; }
    .stats-row { flex-wrap:wrap; gap:24px; }

    .section { padding:50px 0; }
    .section-header h2 { font-size:1.8rem; }
    .page-hero h1 { font-size:2rem; }
    .cta-section h2 { font-size:1.8rem; }

    .sticky-quote { bottom:16px; right:50%; transform:translateX(50%); }
}

@media (max-width:480px) {
    .gallery-grid { grid-template-columns:1fr 1fr; }
    .locations-grid { grid-template-columns:1fr; }
    .hero-text h1 { font-size:1.7rem; }
}
