/* Crestline Remodeling - Complete Stylesheet */
:root {
  --navy: #1B2A4A;
  --navy-light: #243558;
  --navy-dark: #111E36;
  --brass: #C9A84C;
  --brass-light: #D4B96A;
  --brass-dark: #A88A3A;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-50: #FAFAF8;
  --gray-100: #F0EDE7;
  --gray-200: #E0DCD3;
  --gray-300: #C8C3B8;
  --gray-500: #8A8478;
  --gray-700: #4A4640;
  --gray-900: #1A1A18;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.08);
  --shadow-md: 0 4px 12px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 30px rgba(27,42,74,0.12);
  --shadow-xl: 0 20px 60px rgba(27,42,74,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

*, *::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(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brass); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; }
.text-center { text-align: center; }

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon svg { width: 32px; height: 32px; color: var(--brass); }
.logo-text { font-family: var(--font-heading); font-size: 1.25rem; color: var(--navy); }

.main-nav ul { display: flex; list-style: none; gap: 8px; }
.main-nav a {
  display: block; padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius); transition: all var(--transition);
}
.main-nav a:hover { color: var(--navy); background: var(--gray-100); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; font-size: 0.875rem;
  border-radius: 6px; color: var(--gray-700);
}
.dropdown a:hover { background: var(--gray-100); color: var(--navy); }
.dropdown .view-all { border-top: 1px solid var(--gray-200); margin-top: 4px; padding-top: 12px; color: var(--brass); font-weight: 600; }
.dropdown .view-all svg { vertical-align: middle; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 6px; font-weight: 600;
  font-size: 0.9rem; color: var(--navy); white-space: nowrap;
}
.header-phone svg { color: var(--brass); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 600; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); text-decoration: none;
  line-height: 1.4;
}
.btn svg { flex-shrink: 0; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--brass); color: var(--white); border-color: var(--brass);
}
.btn-primary:hover { background: var(--brass-dark); border-color: var(--brass-dark); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.9rem; color: var(--brass);
}
.link-arrow:hover { color: var(--brass-dark); }
.link-arrow svg { transition: transform var(--transition); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 2px; background: var(--navy);
  transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.88) 0%, rgba(27,42,74,0.70) 50%, rgba(27,42,74,0.55) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4); border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--brass-light);
  margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900;
  line-height: 1.1; margin-bottom: 20px; color: var(--white);
}
.hero p { font-size: 1.15rem; line-height: 1.7; margin-bottom: 32px; color: rgba(255,255,255,0.85); }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat strong {
  display: block; font-family: var(--font-heading); font-size: 2rem;
  color: var(--brass-light);
}
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* Page Hero */
.page-hero {
  position: relative; padding: 160px 0 80px; text-align: center;
  color: var(--white); overflow: hidden;
}
.page-hero-sm { padding: 140px 0 60px; }
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero .hero-overlay,
.page-hero-sm .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.75) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 900;
  margin-bottom: 12px; color: var(--white);
}
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

/* ─── Sections ─── */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt { background: var(--gray-50); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light .section-label { color: var(--brass-light); }
.section-label {
  display: block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--brass);
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.section-header p { font-size: 1.05rem; color: var(--gray-500); }
.section-cta { text-align: center; margin-top: 40px; }

/* Services Grid */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px;
}
.services-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.service-card:hover { border-color: var(--brass); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon { color: var(--brass); margin-bottom: 16px; }
.service-icon svg { width: 48px; height: 48px; }
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 16px; }

/* Before / After */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ba-pair { text-align: center; }
.ba-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  margin-bottom: 4px; aspect-ratio: 4/3;
}
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; top: 12px; left: 12px; padding: 4px 12px;
  background: var(--navy); color: var(--brass); font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; border-radius: 4px;
  letter-spacing: 1px;
}
.ba-caption { margin-top: 8px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.ba-caption strong { color: var(--white); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; }
.testimonial-card blockquote {
  font-size: 1rem; line-height: 1.7; color: var(--gray-700);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--gray-500); }

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust-item svg { width: 48px; height: 48px; color: var(--brass); margin: 0 auto 16px; display: block; }
.trust-item h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.trust-item p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* CTA Section */
.cta-section { background: var(--gray-50); }
.cta-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta-text h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--navy); margin-bottom: 16px; }
.cta-text p { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 24px; }
.cta-checklist { list-style: none; }
.cta-checklist li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.95rem; color: var(--gray-700); }

/* Contact Form */
.contact-form { background: var(--white); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--gray-900); transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; }
.about-text h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--navy); margin: 32px 0 16px; }
.about-text p { margin-bottom: 16px; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-stat-box {
  display: flex; gap: 24px; justify-content: center; padding: 24px;
  background: var(--navy); border-radius: var(--radius); margin-top: -40px;
  position: relative; z-index: 2; margin-left: 24px; margin-right: 24px;
}
.about-stat { text-align: center; color: var(--white); }
.about-stat strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--brass); }
.about-stat span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); }

.check-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.95rem; }
.check-list li svg { flex-shrink: 0; margin-top: 2px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step { text-align: center; }
.process-num {
  display: inline-block; font-family: var(--font-heading); font-size: 2.5rem;
  color: var(--brass); margin-bottom: 12px;
}
.process-step h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.contact-details { margin-top: 32px; }
.contact-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-200); }
.contact-item svg { color: var(--brass); flex-shrink: 0; margin-top: 4px; }
.contact-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.contact-item span { display: block; font-size: 0.9rem; color: var(--gray-500); }
.contact-item a { color: var(--navy); font-weight: 500; }
.contact-form-wrap h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--navy); margin-bottom: 24px; }

/* Gallery */
.gallery-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 20px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 50px; font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: all var(--transition);
  color: var(--gray-700);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(27,42,74,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); }
.gallery-overlay span { font-size: 0.8rem; color: var(--brass-light); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: none; border: none; color: var(--white);
  font-size: 2.5rem; cursor: pointer; padding: 16px; z-index: 10;
  transition: color var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--brass); }
.lightbox-close { top: 16px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.blog-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-category {
  position: absolute; top: 12px; left: 12px; padding: 4px 12px;
  background: var(--navy); color: var(--brass); font-size: 0.7rem;
  font-weight: 700; text-transform: uppercase; border-radius: 4px;
  letter-spacing: 1px;
}
.blog-card-body { padding: 24px; }
.blog-date { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 8px; display: block; }
.blog-card-body h2, .blog-card-body h3 {
  font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy);
  margin-bottom: 12px; line-height: 1.3;
}
.blog-card-body h3 { font-size: 1.1rem; }
.blog-card-body p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 16px; }
.blog-card-sm .blog-card-body { padding: 16px; }

.blog-category-badge {
  display: inline-block; padding: 6px 16px; background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4); border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; color: var(--brass-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.blog-meta { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 8px; }

.blog-article .blog-content { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); }
.blog-content h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--navy); margin: 40px 0 16px; }
.blog-content h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy); margin: 32px 0 12px; }
.blog-content p { margin-bottom: 20px; }
.blog-content ul, .blog-content ol { margin: 16px 0 24px 24px; }
.blog-content li { margin-bottom: 8px; }
.blog-content img { border-radius: var(--radius); margin: 24px 0; }
.blog-content a { color: var(--brass-dark); font-weight: 600; text-decoration: underline; }
.blog-content .btn { text-decoration: none; }

/* Service Pages */
.service-intro .lead { font-size: 1.15rem; line-height: 1.8; color: var(--gray-700); max-width: 800px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.feature-card {
  background: var(--white); padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.feature-check { margin-bottom: 12px; }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.two-col p { margin-bottom: 20px; }

.service-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-gallery-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.service-gallery-img img { width: 100%; height: 100%; object-fit: cover; }

.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-item { text-align: center; }
.process-item .process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(201,168,76,0.15); color: var(--brass);
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px;
}
.process-item p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

.related-card {
  background: var(--white); padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); text-align: center;
}
.related-card .service-icon { margin-bottom: 12px; }
.related-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.related-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 12px; }

/* Area Pages */
.area-intro h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--navy); margin-bottom: 20px; }
.area-intro p { margin-bottom: 16px; }
.area-meta { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.area-meta span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--gray-500); }
.area-meta svg { color: var(--brass); }

.area-service-card {
  background: var(--white); padding: 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.area-service-card:hover { border-color: var(--brass); box-shadow: var(--shadow-sm); }
.area-service-card .service-icon { margin-bottom: 12px; }
.area-service-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; }
.area-service-card h3 a { color: var(--navy); }
.area-service-card h3 a:hover { color: var(--brass); }
.area-service-card p { font-size: 0.9rem; color: var(--gray-500); }

.nearby-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.nearby-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; color: var(--brass-light);
  transition: all var(--transition);
}
.nearby-link:hover { background: var(--brass); color: var(--navy); }

.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ─── Footer ─── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon svg { width: 28px; height: 28px; color: var(--brass); }
.footer-logo .logo-text { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 1.1rem; color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--brass); }
.footer-contact { margin-top: 20px; }
.footer-contact a, .footer-contact span {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.footer-contact a:hover { color: var(--brass); }
.footer-contact svg { color: var(--brass); flex-shrink: 0; }
.trust-badges-footer { margin-top: 20px; }
.trust-badges-footer .badge {
  display: flex; align-items: center; gap: 6px; font-size: 0.8rem;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.trust-badges-footer .badge svg { width: 16px; height: 16px; }
.footer-bottom {
  text-align: center; padding: 24px 0; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-stats { gap: 24px; }
  .ba-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-wrapper { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .blog-grid.three-col { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid.three-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .main-nav.active {
    display: block; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg); padding: 16px;
  }
  .main-nav.active ul { flex-direction: column; gap: 4px; }
  .main-nav.active .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 16px;
    display: none;
  }
  .main-nav.active .has-dropdown.open .dropdown { display: block; }
  .header-cta.mobile-show {
    display: flex; flex-direction: column; gap: 8px; padding: 16px;
    border-top: 1px solid var(--gray-200);
  }

  .hero { min-height: 80vh; padding: 100px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat { flex: 0 0 calc(50% - 10px); }
  .page-hero h1 { font-size: 2rem; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid.three-col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid.three-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 4px; }
  .filter-btn { padding: 8px 14px; font-size: 0.8rem; }
}
