*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --gold:#EBA23D;
  --gold-light:#f5c97a;
  --gold-dark:#c5861e;
  --dark:#2C3E50;
  --dark-light:#34495e;
  --white:#fff;
  --gray-50:#f9fafb;
  --gray-100:#f3f4f6;
  --gray-200:#e5e7eb;
  --gray-300:#d1d5db;
  --gray-400:#9ca3af;
  --gray-500:#6b7280;
  --gray-600:#4b5563;
  --gray-700:#374151;
  --gray-800:#1f2937;
  --gray-900:#111827;
  --font-heading:'Playfair Display',Georgia,serif;
  --font-body:'Open Sans',system-ui,-apple-system,sans-serif;
  --container:1200px;
  --radius:0.75rem;
  --shadow:0 1px 3px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 4px 6px rgba(0,0,0,.1),0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:0 10px 15px rgba(0,0,0,.1),0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:0 20px 25px rgba(0,0,0,.1),0 10px 10px rgba(0,0,0,.04);
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);font-size:16px;line-height:1.6;color:var(--gray-800);background:var(--white)}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button,input,select,textarea{font:inherit;border:none;outline:none}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;line-height:1.2;color:var(--gray-900)}
h1{font-size:2.25rem}
h2{font-size:1.875rem}
h3{font-size:1.25rem}
p{margin-bottom:1rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

.container{max-width:var(--container);margin:0 auto;padding:0 1rem}
.text-center{text-align:center}
.font-heading{font-family:var(--font-heading)}

.topbar{background:var(--gold);color:var(--white);padding:.5rem 1rem;font-size:.875rem}
.topbar .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem}
.topbar a{color:var(--white)}
.topbar a:hover{text-decoration:underline}
.topbar-left,.topbar-right{display:flex;align-items:center;gap:1.5rem}
.topbar-item{display:flex;align-items:center;gap:.5rem}
@media(max-width:767px){.topbar{display:none}}

header.site-header{position:sticky;top:0;z-index:50;width:100%;transition:all .3s;background:rgba(255,255,255,.95);backdrop-filter:blur(8px);border-bottom:1px solid var(--gray-200);box-shadow:var(--shadow)}
header.site-header.home-header{position:fixed;background:transparent;border-color:transparent;box-shadow:none}
header.site-header.home-header.scrolled{background:rgba(255,255,255,.95);backdrop-filter:blur(8px);border-bottom:1px solid var(--gray-200);box-shadow:var(--shadow)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:5rem;padding:0 1rem;max-width:var(--container);margin:0 auto}
.logo img{height:3.5rem;width:auto;transition:.3s}
.home-header .logo img{filter:brightness(0) invert(1)}
.home-header.scrolled .logo img{filter:none}

.desktop-nav{display:flex;align-items:center;gap:1.5rem}
.desktop-nav a{font-size:.875rem;font-weight:600;color:var(--gray-700);transition:.2s;position:relative;padding:.5rem 0;display:flex;align-items:center;gap:.375rem}
.desktop-nav a:hover,.desktop-nav a.active{color:var(--gold)}
.desktop-nav a.active::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--gold);border-radius:1px}
.home-header .desktop-nav a{color:rgba(255,255,255,.9)}
.home-header .desktop-nav a:hover{color:var(--gold)}
.home-header.scrolled .desktop-nav a{color:var(--gray-700)}
.home-header.scrolled .desktop-nav a:hover,.home-header.scrolled .desktop-nav a.active{color:var(--gold)}

.nav-services{position:relative}
.nav-services .dropdown{position:absolute;top:100%;left:0;padding-top:.5rem;opacity:0;visibility:hidden;transition:.2s;z-index:60}
.nav-services:hover .dropdown{opacity:1;visibility:visible}
.dropdown-inner{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-xl);border:1px solid var(--gray-200);padding:.75rem 0;min-width:220px;max-height:70vh;overflow-y:auto}
.dropdown-inner a{display:flex;align-items:center;gap:.75rem;padding:.5rem 1rem;font-size:.875rem;color:var(--gray-700);transition:.15s}
.dropdown-inner a:hover{background:rgba(235,162,61,.05);color:var(--gold)}
.dropdown-inner a.all-services{font-weight:700;color:var(--gray-900);border-bottom:1px solid var(--gray-200);margin-bottom:.5rem;padding-bottom:.75rem}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;border-radius:var(--radius);font-weight:700;font-size:.875rem;cursor:pointer;transition:.2s;text-align:center;line-height:1.2}
.btn-primary{background:var(--gold);color:var(--white);box-shadow:var(--shadow-md)}
.btn-primary:hover{background:var(--gold-dark);box-shadow:var(--shadow-lg)}
.btn-outline{border:1.5px solid rgba(255,255,255,.5);color:var(--white);background:transparent}
.btn-outline:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.7)}
.btn-outline-dark{border:2px solid var(--dark);color:var(--dark);background:transparent}
.btn-outline-dark:hover{background:var(--dark);color:var(--white)}
.btn-secondary{background:var(--white);color:var(--gold)}
.btn-secondary:hover{background:var(--gray-100)}
.btn-dark{background:var(--dark);color:var(--white)}
.btn-dark:hover{background:var(--dark-light)}
.btn-lg{padding:1rem 2rem;font-size:1rem}
.btn-full{width:100%}
.btn-cta{padding:.875rem 2rem;font-size:1rem;letter-spacing:.25px;box-shadow:0 2px 8px rgba(235,162,61,.3)}
.btn-cta:hover{box-shadow:0 4px 14px rgba(235,162,61,.45);transform:translateY(-1px)}
.btn-nav-cta{padding:.5rem 1.5rem;font-size:.8rem;font-weight:700;letter-spacing:.25px;background:var(--gold);border:1.5px solid var(--gold);color:var(--white);border-radius:999px}
.btn-nav-cta:hover{background:var(--gold-dark);border-color:var(--gold-dark)}
.home-header .btn-nav-cta{background:rgba(255,255,255,.12);backdrop-filter:blur(4px);border:1.5px solid rgba(255,255,255,.35);color:var(--white)}
.home-header .btn-nav-cta:hover{background:rgba(255,255,255,.22);border-color:rgba(255,255,255,.5)}
.home-header.scrolled .btn-nav-cta{background:var(--gold);border-color:var(--gold);color:var(--white)}
.home-header.scrolled .btn-nav-cta:hover{background:var(--gold-dark);border-color:var(--gold-dark)}

.mobile-toggle{display:none;background:none;cursor:pointer;padding:.5rem;color:var(--gray-700)}
.mobile-toggle svg{width:1.5rem;height:1.5rem}
.home-header .mobile-toggle{color:var(--white)}
.home-header.scrolled .mobile-toggle{color:var(--gray-700)}

.mobile-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:100}
.mobile-overlay.open{display:block}
.mobile-nav{position:fixed;top:0;right:-100%;width:min(320px,85vw);height:100%;background:var(--white);z-index:101;transition:right .3s;display:flex;flex-direction:column;overflow-y:auto}
.mobile-nav.open{right:0}
.mobile-nav-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid var(--gray-200)}
.mobile-nav-header img{height:3rem;width:auto}
.mobile-close{background:none;cursor:pointer;padding:.25rem}
.mobile-close svg{width:1.5rem;height:1.5rem}
.mobile-nav-links{padding:1.5rem;display:flex;flex-direction:column;gap:1.25rem}
.mobile-nav-links a{font-size:1.25rem;font-weight:600;color:var(--gray-800);display:flex;align-items:center;gap:.75rem}
.mobile-nav-links a:hover{color:var(--gold)}
.mobile-nav-cta{padding:0 1.5rem}
.mobile-nav-cta .btn{width:100%;height:3.5rem;font-size:1.125rem}
.mobile-nav-contact{padding:1.5rem;display:flex;flex-direction:column;gap:.75rem}
.mobile-nav-contact a{display:flex;align-items:center;gap:.75rem;font-weight:500;color:var(--gray-800)}
.mobile-nav-footer{margin-top:auto;border-top:1px solid var(--gray-200);background:var(--gray-50);padding:1.25rem 1.5rem}
.trust-badges{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:1rem}
.trust-badge{display:flex;align-items:center;gap:.375rem;background:var(--white);padding:.375rem .75rem;border-radius:9999px;border:1px solid var(--gray-200);font-size:.75rem;font-weight:500;box-shadow:var(--shadow)}
.social-icons{display:flex;justify-content:center;gap:.75rem}
.social-icon{width:2.5rem;height:2.5rem;border-radius:50%;background:var(--dark);display:flex;align-items:center;justify-content:center;transition:.2s}
.social-icon:hover{background:var(--gold)}
.social-icon svg{width:1.25rem;height:1.25rem;fill:var(--white)}

@media(max-width:1023px){.desktop-nav{display:none}.mobile-toggle{display:block}}
@media(min-width:1024px){.mobile-toggle{display:none}}

.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0;overflow:hidden}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.35) 50%,rgba(0,0,0,.5) 100%);z-index:1}
.hero-slide{position:absolute;inset:0;opacity:0}
.hero-slide img{width:100%;height:100%;object-fit:cover}
.hero-slide:nth-child(1){animation:fadeSlide 24s infinite 0s,kenburns-1 24s infinite 0s}
.hero-slide:nth-child(2){animation:fadeSlide 24s infinite 6s,kenburns-2 24s infinite 6s}
.hero-slide:nth-child(3){animation:fadeSlide 24s infinite 12s,kenburns-3 24s infinite 12s}
.hero-slide:nth-child(4){animation:fadeSlide 24s infinite 18s,kenburns-4 24s infinite 18s}
@keyframes kenburns-1{0%{transform:scale(1) translate(0,0)}50%{transform:scale(1.15) translate(-2%,-1%)}100%{transform:scale(1) translate(0,0)}}
@keyframes kenburns-2{0%{transform:scale(1.1) translate(-1%,0)}50%{transform:scale(1) translate(1%,-2%)}100%{transform:scale(1.1) translate(-1%,0)}}
@keyframes kenburns-3{0%{transform:scale(1) translate(1%,1%)}50%{transform:scale(1.12) translate(-1%,0)}100%{transform:scale(1) translate(1%,1%)}}
@keyframes kenburns-4{0%{transform:scale(1.08) translate(0,-1%)}50%{transform:scale(1) translate(-2%,1%)}100%{transform:scale(1.08) translate(0,-1%)}}
@keyframes fadeSlide{0%{opacity:0}4%,21%{opacity:1}25%,100%{opacity:0}}
@media(prefers-reduced-motion:reduce){.hero-slide{animation:fadeSlide 24s infinite !important}}
.hero-content{position:relative;z-index:2;padding:2rem 1.5rem;max-width:700px;text-align:left}
.hero-badge{display:inline-block;background:rgba(30,40,50,.75);padding:.55rem 1.5rem;border-radius:6px;margin-bottom:1.25rem;color:var(--white);font-size:.8rem;font-weight:600;letter-spacing:.03em}
.hero h1{color:var(--white);font-size:2rem;margin-bottom:1rem;line-height:1.15}
.hero .hero-sub{color:rgba(255,255,255,.85);font-size:1rem;margin-bottom:1rem;line-height:1.7;max-width:540px}
.hero-rating{display:flex;align-items:center;gap:.75rem;margin-bottom:1.25rem;flex-wrap:wrap}
.google-badge{display:inline-flex;align-items:center;gap:.4rem;background:rgba(30,40,50,.65);padding:.4rem .75rem;border-radius:6px;border:1px solid rgba(235,162,61,.4)}
.google-badge img{height:15px;width:auto}
.google-stars{color:var(--gold);font-size:.8rem;letter-spacing:1px}
.google-score{color:var(--white);font-size:.8rem;font-weight:700}
.hero-divider{color:rgba(255,255,255,.5);font-size:.8rem}
.hgtv-text{color:var(--white);font-weight:800;font-size:1.1rem;letter-spacing:.02em}
.hero-buttons{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:1.5rem}
.hero-btn{padding:1rem 3.25rem;font-size:.95rem;border-radius:6px}
@media(min-width:768px){.hero h1{font-size:2.75rem}}
@media(min-width:1024px){.hero-content{padding:2rem 0 2rem 11%;max-width:820px}.hero h1{font-size:3.25rem}}

.hero-trust-logos{margin-top:.5rem}
.hero-trust-logos img{height:32px;width:auto;opacity:.55;filter:brightness(10)}
@media(min-width:768px){.hero-trust-logos img{height:38px}}
.hero-stats-desktop{display:none}
@media(min-width:1024px){
  .hero-stats-desktop{display:flex;position:absolute;bottom:2rem;right:3%;z-index:2;gap:.75rem}
  .hero-stat-card{background:rgba(30,35,45,.7);backdrop-filter:blur(8px);border-radius:8px;padding:1rem 1.75rem;text-align:left}
  .hero-stat-card .stat-value{font-family:var(--font-heading);font-size:1.75rem;font-weight:700;color:var(--gold)}
  .hero-stat-card .stat-label{font-size:.75rem;color:rgba(255,255,255,.6);font-weight:500;letter-spacing:.01em;margin-top:.15rem}
}
.hero-stats-mobile{background:var(--white);border-bottom:1px solid var(--gray-200);padding:1rem 0}
.hero-stats-mobile .container{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}
.hero-stat{text-align:center}
.hero-stat .stat-value{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--gold)}
.hero-stat .stat-label{font-size:.75rem;color:var(--gray-500);font-weight:600;text-transform:uppercase;letter-spacing:.05em}
@media(min-width:1024px){.hero-stats-mobile{display:none}}

.section{padding:4rem 0}
.section-sm{padding:2rem 0}
.section-gray{background:var(--gray-50)}
.section-dark{background:var(--dark);color:var(--white)}
.section-dark h2,.section-dark h3{color:var(--white)}
.section-dark p{color:rgba(255,255,255,.7)}
.section-gold{background:var(--gold);color:var(--white)}
.section-gold h2{color:var(--white)}
.section-gold p{color:rgba(255,255,255,.9)}

.section-heading{text-align:center;margin-bottom:2.5rem}
.section-heading .label{display:inline-flex;align-items:center;gap:.5rem;color:var(--gold);font-weight:600;font-size:.875rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.75rem}
.section-heading h2{margin-bottom:.75rem}
.section-heading p{color:var(--gray-600);max-width:640px;margin:0 auto}

.page-hero{background:linear-gradient(135deg,var(--dark),#1a252f);padding:5rem 0;text-align:center}
.page-hero h1{color:var(--white);margin-bottom:1rem}
.page-hero p{color:rgba(255,255,255,.8);font-size:1.125rem;max-width:640px;margin:0 auto}
.page-hero .page-hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.1);padding:.5rem 1rem;border-radius:9999px;margin-bottom:1.5rem;color:rgba(255,255,255,.9);font-size:.875rem;font-weight:500}

.grid{display:grid;gap:1.5rem}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}
.grid-4{grid-template-columns:1fr}
@media(min-width:768px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}}

.card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--gray-200);transition:.3s}
.card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.card-img{position:relative;aspect-ratio:4/3;overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover;transition:.5s}
.card:hover .card-img img{transform:scale(1.05)}
.card-img .card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7),transparent);display:flex;align-items:flex-end;padding:1.25rem}
.card-img .card-overlay p{color:var(--white);font-family:var(--font-heading);font-weight:700;font-size:1.125rem}
.card-img .card-overlay span{color:var(--gray-300);font-size:.875rem}
.card-body{padding:1.25rem}
.card-body h3{margin-bottom:.5rem}
.card-body h3 a{color:var(--gray-900);transition:.2s}
.card-body h3 a:hover{color:var(--gold)}
.card-body p{color:var(--gray-600);font-size:.875rem;margin-bottom:.75rem}
.card-link{color:var(--gold);font-weight:600;font-size:.875rem;display:inline-flex;align-items:center;gap:.25rem}
.card-link:hover{text-decoration:underline}

.service-card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--gray-200);transition:.3s;display:block}
.service-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.service-card .card-img{aspect-ratio:16/10}

.trust-bar{background:var(--white);border-bottom:1px solid var(--gray-200);padding:1rem 0}
.trust-bar .container{display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;text-align:center}
.trust-item{display:flex;align-items:center;gap:.5rem;font-weight:500;color:var(--gray-700);font-size:.875rem}
.trust-item svg{width:1.25rem;height:1.25rem;color:var(--gold);flex-shrink:0}

.benefits-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:1.5rem}
@media(min-width:768px){.benefits-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.benefits-grid{grid-template-columns:repeat(3,1fr)}}
.benefit-card{text-align:center;padding:2rem 1.5rem}
.benefit-icon{width:4rem;height:4rem;border-radius:50%;background:rgba(235,162,61,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.benefit-icon svg{width:2rem;height:2rem;color:var(--gold)}
.benefit-stat{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--gold);margin-bottom:.25rem}
.benefit-card h3{margin-bottom:.5rem}
.benefit-card p{color:var(--gray-600);font-size:.875rem}

.review-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow)}
.review-stars{display:flex;gap:.125rem;margin-bottom:.75rem}
.review-stars svg{width:1rem;height:1rem;fill:#facc15;color:#facc15}
.review-text{color:var(--gray-600);font-size:.875rem;line-height:1.6;margin-bottom:1rem;font-style:italic}
.review-author{font-weight:600;font-size:.875rem}
.review-project{color:var(--gray-500);font-size:.75rem}

.portfolio-carousel{position:relative;overflow:hidden;padding:1rem 0}
.carousel-track{display:flex;gap:1.5rem;animation:scroll-carousel 40s linear infinite;padding:0 1rem}
.carousel-track:hover{animation-play-state:paused}
@keyframes scroll-carousel{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.carousel-item{flex-shrink:0;width:300px;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-xl);position:relative;aspect-ratio:4/3}
@media(min-width:768px){.carousel-item{width:360px}}
.carousel-item img{width:100%;height:100%;object-fit:cover;transition:.5s}
.carousel-item:hover img{transform:scale(1.05)}
.carousel-item .carousel-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.8) 0%,rgba(0,0,0,.2) 40%,transparent 100%);display:flex;align-items:flex-end;padding:1.25rem}
.carousel-item .carousel-label h4{color:var(--white);font-family:var(--font-heading);font-size:1.125rem;font-weight:700}
.carousel-item .carousel-label span{color:var(--gray-300);font-size:.875rem}

.cta-section{padding:4rem 0;text-align:center}
.cta-section h2{color:var(--white);margin-bottom:1rem}
.cta-section p{color:rgba(255,255,255,.9);font-size:1.125rem;max-width:640px;margin:0 auto 2rem}
.cta-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem}

.faq-section{padding:4rem 0}
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--gray-200)}
.faq-item:first-child{border-top:1px solid var(--gray-200)}
.faq-question{width:100%;text-align:left;padding:1.25rem 0;font-weight:600;font-size:1rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:none;color:var(--gray-900)}
.faq-question:hover{color:var(--gold)}
.faq-question svg{width:1.25rem;height:1.25rem;transition:.3s;flex-shrink:0;margin-left:1rem}
.faq-item.open .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0}
.faq-item.open .faq-answer{max-height:2000px;padding:0 0 1.25rem}
.faq-answer p{color:var(--gray-600);font-size:.875rem;line-height:1.7}

.footer{background:var(--dark);color:var(--white);padding:4rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:3rem;margin-bottom:3rem}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer h3{font-family:var(--font-heading);font-size:1.125rem;font-weight:700;margin-bottom:1.5rem}
.footer-about p{color:var(--gray-300);font-size:.875rem;line-height:1.7}
.footer-about .logo{margin-bottom:1rem}
.footer-about .logo img{height:3rem;width:auto;filter:brightness(0) invert(1)}
.footer-links{display:flex;flex-direction:column;gap:.75rem}
.footer-links a{color:var(--gray-300);font-size:.875rem;transition:.2s}
.footer-links a:hover{color:var(--gold)}
.footer-links .area-link{display:flex;align-items:center;gap:.5rem}
.footer-links .area-link svg{width:.75rem;height:.75rem;color:var(--gold)}
.footer-contact{display:flex;flex-direction:column;gap:1rem}
.footer-contact-item{display:flex;align-items:flex-start;gap:.75rem;font-size:.875rem;color:var(--gray-300)}
.footer-contact-item svg{width:1.25rem;height:1.25rem;color:var(--gold);flex-shrink:0;margin-top:.125rem}
.footer-contact-item a{color:var(--gray-300);transition:.2s}
.footer-contact-item a:hover{color:var(--white)}
.footer-social{display:flex;gap:.5rem;margin-top:.5rem}
.footer-social a{width:2rem;height:2rem;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;transition:.2s}
.footer-social a:hover{background:var(--gold)}
.footer-social a svg{width:1rem;height:1rem;fill:currentColor;color:var(--white)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;display:flex;flex-direction:column;align-items:center;gap:1rem;font-size:.75rem;color:var(--gray-400)}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{color:var(--gray-400);transition:.2s}
.footer-bottom-links a:hover{color:var(--white)}
@media(min-width:768px){.footer-bottom{flex-direction:row;justify-content:space-between}}

.contact-info{display:flex;flex-direction:column;gap:2rem}
.contact-info-item{display:flex;gap:1rem}
.contact-info-item .icon-circle{width:3rem;height:3rem;border-radius:50%;background:rgba(235,162,61,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-item .icon-circle svg{width:1.5rem;height:1.5rem;color:var(--gold)}
.contact-info-item h3{font-size:1.125rem;margin-bottom:.25rem}
.contact-info-item p{color:var(--gray-500);font-size:.875rem;margin-bottom:.25rem}
.contact-info-item a{color:var(--gold);font-weight:700;font-size:1.125rem}
.contact-info-item a:hover{text-decoration:underline}

.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-weight:600;font-size:.875rem;margin-bottom:.375rem;color:var(--gray-700)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:.75rem 1rem;border:1px solid var(--gray-300);border-radius:var(--radius);font-size:1rem;background:var(--white);transition:.2s;color:var(--gray-800)}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(235,162,61,.15)}
.form-group textarea{resize:vertical;min-height:120px}
.form-group .error{color:#ef4444;font-size:.75rem;margin-top:.25rem}
.form-row{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:768px){.form-row{grid-template-columns:1fr 1fr}}
.form-message{padding:1rem;border-radius:var(--radius);margin-bottom:1rem;font-size:.875rem}
.form-message.success{background:#f0fdf4;border:1px solid #86efac;color:#166534}
.form-message.error-msg{background:#fef2f2;border:1px solid #fca5a5;color:#991b1b}

@media(pointer:coarse){.btn,.form-group input,.form-group textarea,.form-group select{min-height:44px}}

.breadcrumb{display:flex;align-items:center;gap:.5rem;padding:1rem 0;font-size:.875rem;color:var(--gray-500)}
.breadcrumb a{color:var(--gray-500);transition:.2s}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb .sep{color:var(--gray-400)}

.team-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:2rem}
@media(min-width:768px){.team-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.team-grid{grid-template-columns:repeat(4,1fr)}}
.team-card{text-align:center}
.team-card img{width:160px;height:160px;border-radius:50%;object-fit:cover;margin:0 auto 1rem;border:4px solid var(--gold)}
.team-card h3{font-size:1.125rem;margin-bottom:.25rem}
.team-card .role{color:var(--gold);font-weight:600;font-size:.875rem;margin-bottom:.5rem}
.team-card p{color:var(--gray-600);font-size:.875rem}

.stats-row{display:flex;flex-wrap:wrap;justify-content:center;gap:2rem}
.stat-item{text-align:center;padding:1rem}
.stat-item .stat-value{font-family:var(--font-heading);font-size:2.5rem;font-weight:700;color:var(--gold)}
.stat-item .stat-label{color:var(--gray-600);font-size:.875rem;font-weight:500}
.section-dark .stat-item .stat-label{color:rgba(255,255,255,.7)}

.value-card{text-align:center;padding:1.5rem}
.value-card .value-icon{width:3.5rem;height:3.5rem;border-radius:50%;background:rgba(235,162,61,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.value-card .value-icon svg{width:1.5rem;height:1.5rem;color:var(--gold)}
.value-card h3{margin-bottom:.5rem;font-size:1rem}
.value-card p{color:var(--gray-600);font-size:.875rem}

.project-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}
@media(min-width:768px){.project-gallery{grid-template-columns:repeat(3,1fr);gap:1rem}}
@media(min-width:1024px){.project-gallery{grid-template-columns:repeat(4,1fr)}}
.project-gallery a{display:block;border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3}
.project-gallery img{width:100%;height:100%;object-fit:cover;transition:.3s}
.project-gallery a:hover img{transform:scale(1.05)}

.project-info{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:3rem}
@media(min-width:768px){.project-info{grid-template-columns:1fr 1fr}}
.project-detail-item{display:flex;align-items:flex-start;gap:.75rem}
.project-detail-item svg{width:1.5rem;height:1.5rem;color:var(--gold);flex-shrink:0;margin-top:.125rem}
.project-detail-item h4{font-size:.875rem;font-weight:700;margin-bottom:.25rem}
.project-detail-item p{color:var(--gray-600);font-size:.875rem;margin:0}

.blog-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.blog-grid{grid-template-columns:repeat(3,1fr)}}
.blog-card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--gray-200);transition:.3s}
.blog-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.blog-card .card-img{aspect-ratio:16/9}
.blog-meta{display:flex;align-items:center;gap:1rem;font-size:.75rem;color:var(--gray-500);margin-bottom:.5rem}
.blog-category{display:inline-block;padding:.25rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:600;background:rgba(235,162,61,.1);color:var(--gold);margin-bottom:.75rem}

.blog-filters{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:2rem}
.blog-filter-btn{padding:.5rem 1rem;border-radius:9999px;font-size:.875rem;font-weight:500;cursor:pointer;background:var(--gray-100);color:var(--gray-600);border:1px solid var(--gray-200);transition:.2s}
.blog-filter-btn:hover,.blog-filter-btn.active{background:var(--gold);color:var(--white);border-color:var(--gold)}

.blog-search{max-width:400px;margin:0 auto 2rem;position:relative}
.blog-search input{width:100%;padding:.75rem 1rem .75rem 2.5rem;border:1px solid var(--gray-300);border-radius:9999px;font-size:.875rem}
.blog-search input:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(235,162,61,.15)}
.blog-search svg{position:absolute;left:1rem;top:50%;transform:translateY(-50%);width:1rem;height:1rem;color:var(--gray-400)}

.article{max-width:800px;margin:0 auto;padding:2rem 1rem 4rem}
.article-header{margin-bottom:2rem}
.article-header h1{font-size:2rem;margin-bottom:1rem}
@media(min-width:768px){.article-header h1{font-size:2.5rem}}
.article-meta{display:flex;flex-wrap:wrap;align-items:center;gap:1rem;font-size:.875rem;color:var(--gray-500);margin-bottom:1.5rem}
.article-meta span{display:flex;align-items:center;gap:.375rem}
.article-meta svg{width:1rem;height:1rem}

.prose{font-size:1rem;line-height:1.8;color:var(--gray-700)}
.prose h2{font-size:1.5rem;margin:2rem 0 1rem;color:var(--gray-900)}
.prose h3{font-size:1.25rem;margin:1.5rem 0 .75rem;color:var(--gray-900)}
.prose p{margin-bottom:1rem}
.prose ul,.prose ol{margin:1rem 0;padding-left:1.5rem}
.prose ul{list-style:disc}
.prose ol{list-style:decimal}
.prose li{margin-bottom:.5rem}
.prose a{color:var(--gold);font-weight:500;text-decoration:underline}
.prose a:hover{color:var(--gold-dark)}
.prose strong{font-weight:700;color:var(--gray-900)}
.prose blockquote{border-left:4px solid var(--gold);padding:1rem 1.5rem;margin:1.5rem 0;background:var(--gray-50);border-radius:0 var(--radius) var(--radius) 0}
.prose img{border-radius:var(--radius);margin:1.5rem 0;box-shadow:var(--shadow-lg)}
.prose hr{border:none;border-top:1px solid var(--gray-200);margin:2rem 0}

.article-inline-img{margin:2rem 0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg)}
.article-inline-img img{width:100%;height:auto}

.article-sidebar{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.5rem;margin:2rem 0}
.article-sidebar h3{font-size:1rem;margin-bottom:1rem}

.toc{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.5rem;margin-bottom:2rem}
.toc h3{font-size:1rem;margin-bottom:.75rem}
.toc ol{list-style:decimal;padding-left:1.25rem}
.toc li{margin-bottom:.375rem}
.toc a{color:var(--gold);font-size:.875rem;font-weight:500}
.toc a:hover{text-decoration:underline}

.related-posts{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:768px){.related-posts{grid-template-columns:repeat(3,1fr)}}

.article-cta{background:linear-gradient(135deg,var(--dark),#1a252f);border-radius:var(--radius);padding:2rem;text-align:center;margin:2rem 0}
.article-cta h3{color:var(--white);margin-bottom:.5rem}
.article-cta p{color:rgba(255,255,255,.8);font-size:.875rem;margin-bottom:1rem}

.service-hero{position:relative;padding:5rem 0;text-align:center;background:linear-gradient(135deg,var(--dark),#1a252f);overflow:hidden}
.service-hero h1{color:var(--white);font-size:2rem;margin-bottom:1rem}
@media(min-width:768px){.service-hero h1{font-size:2.5rem}}
@media(min-width:1024px){.service-hero h1{font-size:3rem}}
.service-hero p{color:rgba(255,255,255,.8);font-size:1.125rem;max-width:700px;margin:0 auto 1.5rem}
.service-quick-stats{display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;margin-top:2rem}
.service-quick-stat{text-align:center}
.service-quick-stat .val{font-family:var(--font-heading);font-size:1.25rem;font-weight:700;color:var(--gold)}
.service-quick-stat .lbl{font-size:.75rem;color:rgba(255,255,255,.7)}

.feature-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.feature-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.feature-grid{grid-template-columns:repeat(3,1fr)}}
.feature-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.5rem}
.feature-card h3{font-size:1rem;margin-bottom:.5rem;color:var(--gray-900)}
.feature-card p{color:var(--gray-600);font-size:.875rem;margin:0}

.process-list{max-width:700px;margin:0 auto}
.process-step{display:flex;gap:1.5rem;padding:1.5rem 0;border-bottom:1px solid var(--gray-200)}
.process-step:last-child{border-bottom:none}
.process-number{width:3rem;height:3rem;border-radius:50%;background:var(--gold);color:var(--white);display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-weight:700;font-size:1.125rem;flex-shrink:0}
.process-step h3{font-size:1rem;margin-bottom:.25rem}
.process-step p{color:var(--gray-600);font-size:.875rem;margin:0}

.area-highlights{display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem}
.area-highlight{display:flex;align-items:flex-start;gap:.75rem;font-size:.875rem}
.area-highlight svg{width:1.25rem;height:1.25rem;color:var(--gold);flex-shrink:0;margin-top:.125rem}

.tag-list{display:flex;flex-wrap:wrap;gap:.5rem}
.tag{display:inline-block;padding:.375rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:500;background:var(--gray-100);color:var(--gray-600);border:1px solid var(--gray-200)}

.quote-page{min-height:100vh;background:linear-gradient(135deg,var(--dark),#1a252f);display:flex;align-items:center;justify-content:center;padding:2rem 1rem}
.quote-container{background:var(--white);border-radius:1rem;max-width:600px;width:100%;padding:2rem;box-shadow:var(--shadow-xl)}
.quote-logo{text-align:center;margin-bottom:1.5rem}
.quote-logo img{height:3rem;width:auto;margin:0 auto}
.step-indicator{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-bottom:.5rem}
.step-dot{width:.625rem;height:.625rem;border-radius:50%;background:var(--gray-200);transition:.3s}
.step-dot.active{width:2rem;border-radius:9999px;background:var(--gold)}
.step-dot.done{background:rgba(235,162,61,.6)}
.step-title{text-align:center;font-size:.875rem;color:var(--gray-500);margin-bottom:1.5rem}
.quote-step{display:none}
.quote-step.active{display:block}
.option-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}
.option-btn{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:1rem;border:2px solid var(--gray-200);border-radius:var(--radius);cursor:pointer;transition:.2s;text-align:center;font-size:.875rem;font-weight:500;background:var(--white)}
.option-btn:hover{border-color:var(--gold);background:rgba(235,162,61,.05)}
.option-btn.selected{border-color:var(--gold);background:rgba(235,162,61,.1)}
.option-btn svg{width:1.5rem;height:1.5rem;color:var(--gold)}
.scope-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}
.scope-btn{display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;border:2px solid var(--gray-200);border-radius:var(--radius);cursor:pointer;transition:.2s;font-size:.875rem;font-weight:500;background:var(--white)}
.scope-btn:hover{border-color:var(--gold)}
.scope-btn.selected{border-color:var(--gold);background:rgba(235,162,61,.1)}
.scope-btn svg{width:1rem;height:1rem;color:var(--gold)}
.quote-nav{display:flex;justify-content:space-between;margin-top:1.5rem;gap:1rem}
.quote-nav .btn{flex:1}

.review-badge{display:flex;align-items:center;gap:1rem;padding:1rem;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid var(--gray-200);max-width:400px;margin:2rem auto 0}
.review-badge .avatar{width:3rem;height:3rem;border-radius:50%;background:linear-gradient(135deg,var(--gold),#f5a623);display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:700;font-size:1.125rem;flex-shrink:0}
.review-badge .stars{display:flex;gap:.125rem}
.review-badge .stars svg{width:1rem;height:1rem;fill:#facc15;color:#facc15}
.review-badge .quote-text{font-size:.75rem;color:var(--gray-500)}

.lp-header{background:var(--dark);border-bottom:1px solid rgba(255,255,255,.1)}
.lp-header .header-inner{display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto;padding:.5rem 1.5rem}
.lp-header .logo img{height:50px;width:auto}
.lp-header-call{display:inline-flex;align-items:center;gap:.5rem;font-size:.9rem}
.lp-footer{background:var(--dark);border-top:1px solid rgba(255,255,255,.1);padding:1.5rem 0}
.lp-footer-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}
.lp-footer .logo img{height:40px;width:auto}
.lp-footer-info{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;font-size:.8rem;color:rgba(255,255,255,.6)}
.lp-footer-info a{color:var(--gold)}

.lp-hero{position:relative;min-height:100vh;display:flex;align-items:center;color:var(--white);padding:2rem 0;overflow:hidden;background:var(--dark-blue)}
.lp-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.lp-hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,37,47,.95) 0%,rgba(44,62,80,.88) 40%,rgba(26,37,47,.92) 100%)}
.lp-hero .container{position:relative;z-index:1}
.lp-hero-inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.lp-hero-content{padding:2rem 0}
.lp-rating-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(235,162,61,.12);border:1px solid rgba(235,162,61,.25);padding:.5rem 1rem;border-radius:9999px;margin-bottom:1.5rem;backdrop-filter:blur(4px)}
.lp-stars{color:var(--gold);font-size:1rem;letter-spacing:1px}
.lp-rating-text{font-size:.8125rem;font-weight:600;color:rgba(255,255,255,.9)}
.lp-hero h1{font-size:2.5rem;line-height:1.15;margin-bottom:1rem;color:var(--white);letter-spacing:-.01em}
.lp-subtitle{font-size:1.125rem;color:rgba(255,255,255,.75);line-height:1.6;margin-bottom:1.75rem;max-width:520px}
.lp-trust-pills{display:flex;flex-direction:column;gap:.625rem;margin-bottom:2rem}
.lp-pill{display:flex;align-items:center;gap:.625rem;font-size:.9375rem;color:rgba(255,255,255,.9);font-weight:500}
.lp-phone-cta{display:inline-flex;align-items:center;gap:.625rem;background:transparent;border:2px solid var(--gold);color:var(--gold);padding:.875rem 1.5rem;border-radius:var(--radius);font-size:1rem;font-weight:700;transition:all .3s;text-decoration:none}
.lp-phone-cta:hover{background:var(--gold);color:var(--dark-blue)}
.lp-form-card{background:var(--white);border-radius:12px;padding:2rem;box-shadow:0 25px 50px -12px rgba(0,0,0,.4);position:relative;overflow:hidden}
.lp-form-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--gold),#f0c674,var(--gold))}
.lp-form-header{text-align:center;margin-bottom:1.5rem}
.lp-form-header h2{color:var(--dark-blue);font-size:1.5rem;margin-bottom:.375rem}
.lp-form-header p{color:var(--gray-500);font-size:.875rem}
.lp-form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.lp-form-card .form-group{margin-bottom:1rem}
.lp-form-card label{display:block;font-size:.8125rem;font-weight:600;color:var(--gray-700);margin-bottom:.375rem;text-transform:uppercase;letter-spacing:.5px}
.lp-form-card input,.lp-form-card select,.lp-form-card textarea{width:100%;padding:.75rem 1rem;border:1.5px solid var(--gray-200);border-radius:8px;font-size:.9375rem;font-family:var(--ff-body);transition:border-color .2s,box-shadow .2s;background:var(--gray-50)}
.lp-form-card input:focus,.lp-form-card select:focus,.lp-form-card textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(235,162,61,.15);outline:none;background:var(--white)}
.lp-form-card input::placeholder,.lp-form-card textarea::placeholder{color:var(--gray-400)}
.lp-form-card select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}
.lp-submit-btn{width:100%;display:flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem;border:none;border-radius:8px;background:linear-gradient(135deg,var(--gold),#d4922e);color:var(--white);font-size:1.0625rem;font-weight:700;font-family:var(--ff-body);cursor:pointer;transition:all .3s;box-shadow:0 4px 14px rgba(235,162,61,.4);letter-spacing:.25px}
.lp-submit-btn:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(235,162,61,.5);background:linear-gradient(135deg,#d4922e,var(--gold))}
.lp-submit-btn:active{transform:translateY(0)}
.lp-submit-btn:disabled{opacity:.7;cursor:not-allowed;transform:none}
.lp-form-footer{display:flex;align-items:center;justify-content:center;gap:.375rem;margin-top:1rem;font-size:.75rem;color:var(--gray-400)}
.lp-form-footer svg{flex-shrink:0}
.lp-stats-bar{background:var(--white);border-bottom:1px solid var(--gray-200);padding:1.5rem 0}
.lp-stats-grid{display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap}
.lp-stat{text-align:center}
.lp-stat-number{display:block;font-family:var(--ff-heading);font-size:1.75rem;font-weight:700;color:var(--dark-blue);line-height:1.2}
.lp-stat-star{color:var(--gold);font-size:1.25rem}
.lp-stat-label{font-size:.8125rem;color:var(--gray-500);font-weight:500;text-transform:uppercase;letter-spacing:.5px}
.lp-stat-divider{width:1px;height:2.5rem;background:var(--gray-200)}
.section-eyebrow{display:block;font-size:.8125rem;font-weight:700;color:var(--gold);text-transform:uppercase;letter-spacing:2px;margin-bottom:.5rem}
.lp-portfolio-section{padding:4rem 0;background:var(--gray-50)}
.lp-gallery-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.lp-gallery-item{position:relative;border-radius:10px;overflow:hidden;aspect-ratio:4/3;cursor:pointer}
.lp-gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.lp-gallery-item:hover img{transform:scale(1.05)}
.lp-gallery-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 50%);display:flex;align-items:flex-end;padding:1rem;opacity:0;transition:opacity .3s}
.lp-gallery-item:hover .lp-gallery-overlay{opacity:1}
.lp-gallery-overlay span{color:var(--white);font-weight:600;font-size:.9375rem}
.lp-why-section{padding:4rem 0;background:var(--white)}
.lp-advantages-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.lp-advantage-card{background:var(--gray-50);border-radius:12px;padding:2rem;border:1px solid var(--gray-200);transition:all .3s}
.lp-advantage-card:hover{border-color:var(--gold);box-shadow:0 4px 20px rgba(235,162,61,.1);transform:translateY(-2px)}
.lp-advantage-icon{width:3.5rem;height:3.5rem;border-radius:10px;background:rgba(235,162,61,.08);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.lp-advantage-card h3{font-size:1.125rem;margin-bottom:.5rem;color:var(--dark-blue)}
.lp-advantage-card p{color:var(--gray-600);font-size:.875rem;line-height:1.7}
.lp-reviews-section{padding:4rem 0;background:var(--gray-50)}
.lp-reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.lp-review-card{background:var(--white);border-radius:12px;padding:1.75rem;box-shadow:0 1px 3px rgba(0,0,0,.06);border:1px solid var(--gray-200);display:flex;flex-direction:column}
.lp-review-stars{color:var(--gold);font-size:1.125rem;letter-spacing:2px;margin-bottom:.75rem}
.lp-review-text{color:var(--gray-700);font-size:.9375rem;line-height:1.7;flex:1;margin-bottom:1.25rem}
.lp-review-footer{display:flex;align-items:center;gap:.75rem;border-top:1px solid var(--gray-100);padding-top:1rem}
.lp-review-avatar{width:2.5rem;height:2.5rem;border-radius:50%;background:linear-gradient(135deg,var(--gold),#d4922e);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.875rem;flex-shrink:0}
.lp-review-name{font-weight:600;font-size:.875rem;color:var(--dark-blue)}
.lp-review-meta{font-size:.75rem;color:var(--gray-500)}
.lp-final-cta{padding:4rem 0;background:linear-gradient(135deg,var(--dark-blue),#1a2d3d)}
.lp-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem}
.lp-cta-content h2{color:var(--white);margin-bottom:.5rem}
.lp-cta-content p{color:rgba(255,255,255,.7);max-width:480px}
.lp-cta-actions{display:flex;gap:1rem;flex-shrink:0}
.lp-cta-phone{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold);color:var(--dark-blue);padding:.875rem 1.5rem;border-radius:var(--radius);font-weight:700;font-size:1rem;text-decoration:none;transition:all .3s}
.lp-cta-phone:hover{background:#f0c674;transform:translateY(-1px)}
.lp-cta-form{display:inline-flex;align-items:center;gap:.5rem;border:2px solid rgba(255,255,255,.3);color:var(--white);padding:.875rem 1.5rem;border-radius:var(--radius);font-weight:600;text-decoration:none;transition:all .3s}
.lp-cta-form:hover{border-color:var(--white);background:rgba(255,255,255,.05)}
.lp-mobile-sticky{display:none;position:fixed;bottom:0;left:0;right:0;z-index:999;background:var(--white);border-top:1px solid var(--gray-200);padding:.75rem 1rem;gap:.75rem;box-shadow:0 -4px 12px rgba(0,0,0,.1)}
.lp-sticky-call{display:flex;align-items:center;justify-content:center;gap:.5rem;flex:1;background:var(--dark-blue);color:var(--white);padding:.75rem;border-radius:var(--radius);font-weight:700;font-size:.875rem;text-decoration:none}
.lp-sticky-quote{display:flex;align-items:center;justify-content:center;flex:1;background:var(--gold);color:var(--dark-blue);padding:.75rem;border-radius:var(--radius);font-weight:700;font-size:.875rem;text-decoration:none}
@media(max-width:1023px){
.lp-hero-inner{grid-template-columns:1fr;gap:2rem}
.lp-hero-content{padding:1rem 0 0;text-align:center}
.lp-hero h1{font-size:2rem}
.lp-subtitle{margin-left:auto;margin-right:auto}
.lp-trust-pills{align-items:center}
.lp-phone-cta{display:none}
.lp-gallery-strip{grid-template-columns:repeat(2,1fr)}
.lp-advantages-grid{grid-template-columns:1fr}
.lp-reviews-grid{grid-template-columns:1fr}
.lp-cta-inner{flex-direction:column;text-align:center}
.lp-cta-actions{flex-direction:column;width:100%;max-width:360px}
.lp-cta-phone,.lp-cta-form{justify-content:center}
.lp-mobile-sticky{display:flex}
}
@media(max-width:480px){
.lp-hero{min-height:auto;padding:1.5rem 0}
.lp-hero h1{font-size:1.625rem}
.lp-form-row{grid-template-columns:1fr}
.lp-form-card{padding:1.5rem}
.lp-stats-grid{gap:1.25rem}
.lp-stat-number{font-size:1.375rem}
.lp-stat-divider{display:none}
.lp-gallery-strip{grid-template-columns:1fr 1fr;gap:.5rem}
}

.thank-you-page{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:3rem 1rem}
.thank-you-card{max-width:600px}
.thank-you-icon{width:5rem;height:5rem;border-radius:50%;background:rgba(34,197,94,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.thank-you-icon svg{width:2.5rem;height:2.5rem;color:#22c55e}
.thank-you-card h1{margin-bottom:1rem}
.thank-you-card p{color:var(--gray-600);margin-bottom:1.5rem}

.privacy-page,.terms-page{max-width:800px;margin:0 auto;padding:3rem 1rem}
.privacy-page h1,.terms-page h1{margin-bottom:2rem}
.privacy-page h2,.terms-page h2{margin:2rem 0 1rem;font-size:1.5rem}
.privacy-page p,.terms-page p{color:var(--gray-600);line-height:1.8;margin-bottom:1rem}
.privacy-page ul,.terms-page ul{list-style:disc;padding-left:1.5rem;margin-bottom:1rem}
.privacy-page li,.terms-page li{color:var(--gray-600);margin-bottom:.5rem}

.not-found{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:3rem 1rem}
.not-found h1{font-size:6rem;color:var(--gold);margin-bottom:1rem}
.not-found h2{margin-bottom:1rem}
.not-found p{color:var(--gray-600);margin-bottom:2rem}

.why-cera-grid{display:grid;grid-template-columns:1fr;gap:2rem;max-width:900px;margin:0 auto}
@media(min-width:768px){.why-cera-grid{grid-template-columns:repeat(3,1fr)}}
.why-cera-item{text-align:center}
.why-cera-item .icon{width:4rem;height:4rem;border-radius:50%;background:rgba(235,162,61,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.why-cera-item .icon svg{width:2rem;height:2rem;color:var(--gold)}
.why-cera-item h3{margin-bottom:.5rem}
.why-cera-item p{color:var(--gray-600);font-size:.875rem}

.hgtv-badge{display:inline-flex;align-items:center;gap:.75rem;background:rgba(255,255,255,.1);backdrop-filter:blur(4px);padding:.75rem 1.25rem;border-radius:var(--radius);margin-bottom:1.5rem;border:1px solid rgba(255,255,255,.15)}
.hgtv-badge img{height:2rem;width:auto}
.hgtv-badge span{color:var(--white);font-size:.875rem;font-weight:500}

.trust-logos{padding:2rem 0;text-align:center}
.trust-logos img{max-width:600px;width:100%;margin:0 auto;opacity:.85}

.about-story{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
@media(min-width:768px){.about-story{grid-template-columns:1fr 1fr}}
.about-story img{border-radius:var(--radius);box-shadow:var(--shadow-lg)}

.max-w-4xl{max-width:56rem;margin-left:auto;margin-right:auto}
.max-w-2xl{max-width:42rem;margin-left:auto;margin-right:auto}
.gap-6{gap:1.5rem}

.service-areas-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.service-areas-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.service-areas-grid{grid-template-columns:repeat(3,1fr)}}
.area-card{display:block;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--gray-200);transition:.3s}
.area-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.area-card .card-img{aspect-ratio:16/9}
.area-card .card-body{padding:1.25rem}
.area-card h3{margin-bottom:.5rem}
.area-card p{color:var(--gray-600);font-size:.875rem}

.inline-cta{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.5rem;margin:2rem 0;text-align:center}
.inline-cta h3{font-size:1.125rem;margin-bottom:.5rem}
.inline-cta p{color:var(--gray-600);font-size:.875rem;margin-bottom:1rem}

.related-section{border-top:1px solid var(--gray-200);padding-top:2rem;margin-top:3rem}
.related-section h3{margin-bottom:1rem}
.related-links{display:flex;flex-wrap:wrap;gap:.75rem}
.related-links a{display:inline-flex;align-items:center;gap:.375rem;padding:.5rem 1rem;border-radius:9999px;font-size:.875rem;font-weight:500;background:var(--gray-100);color:var(--gray-700);border:1px solid var(--gray-200);transition:.2s}
.related-links a:hover{background:rgba(235,162,61,.1);color:var(--gold);border-color:var(--gold)}

.quote-form-area{display:flex;min-height:100vh;background:var(--dark-blue)}
.quote-sidebar{flex:0 0 40%;padding:3rem;display:flex;flex-direction:column;justify-content:center;color:var(--white)}
.quote-sidebar-inner{max-width:360px}
.quote-sidebar h1{font-size:2rem;margin-bottom:.5rem;color:var(--white)}
.quote-sidebar p{color:var(--gray-300);margin-bottom:1.5rem}
.quote-sidebar-stats{display:flex;gap:1.5rem;margin-bottom:1.5rem}
.quote-sidebar-stats div{color:var(--white)}
.quote-sidebar-stats strong{font-family:var(--ff-heading);font-size:1.25rem;display:block;color:var(--gold)}
.quote-sidebar-badges{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.5rem;font-size:.875rem;color:var(--gray-300)}
.quote-sidebar-badges div{display:flex;align-items:center;gap:.5rem}
.quote-sidebar-review{border-top:1px solid rgba(255,255,255,.15);padding-top:1.25rem;margin-top:1rem}
.quote-sidebar-review .stars{color:var(--gold);font-size:1.125rem;margin-bottom:.5rem}
.quote-sidebar-review p{color:var(--gray-300);font-size:.875rem;font-style:italic}
.quote-sidebar-review .reviewer{color:var(--gray-400);font-size:.75rem;margin-top:.5rem}
.quote-form-container{flex:1;display:flex;align-items:center;justify-content:center;padding:2rem}
@media(max-width:767px){.quote-form-area{flex-direction:column}.quote-sidebar{padding:2rem;flex:none}.quote-form-container{padding:1.5rem}}


.error-page{text-align:center;padding:5rem 1.5rem;min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center}
.error-page h1{font-size:5rem;color:var(--gold);margin-bottom:.5rem}
.error-page h2{margin-bottom:1rem}
.error-page p{color:var(--gray-600);margin-bottom:2rem;max-width:500px}

.check-list{list-style:none;display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem}
.check-list li{display:flex;align-items:flex-start;gap:.5rem;font-size:.9375rem;color:var(--gray-700)}
.check-list li svg{flex-shrink:0;margin-top:2px}

.service-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem}
.service-tags a{display:inline-flex;align-items:center;gap:.375rem;padding:.5rem 1rem;border-radius:9999px;font-size:.875rem;font-weight:500;background:var(--gray-100);color:var(--gray-700);border:1px solid var(--gray-200);transition:.2s}
.service-tags a:hover{background:rgba(235,162,61,.1);color:var(--gold);border-color:var(--gold)}

.neighborhood-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin-bottom:2rem}
@media(min-width:768px){.neighborhood-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.neighborhood-grid{grid-template-columns:repeat(4,1fr)}}
.neighborhood-grid span{display:flex;align-items:center;gap:.375rem;font-size:.875rem;color:var(--gray-600)}
.neighborhood-grid span svg{flex-shrink:0;color:var(--gold)}

.option-list{display:flex;flex-direction:column;gap:.75rem}
.form-input{width:100%;padding:.625rem .875rem;border:1px solid var(--gray-300);border-radius:var(--radius);font-size:.9375rem;font-family:var(--ff-body);transition:.2s}
.form-input:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(235,162,61,.15)}
.error-card{background:var(--white);border-radius:var(--radius);padding:3rem;box-shadow:var(--shadow-lg);max-width:500px;width:100%}
