:root {
  --primary: #cc2828;
  --accent-green: #cc2828;
  --accent-green-dark: #a82020;
  --accent-green-light: #fceaea;
  --accent-tan: #5c5c5c;
  --accent-tan-light: #f0f0f0;
  --text: #111111;
  --text-muted: #555;
  --bg: #ffffff;
  --bg-accent: #f7f7f7;
  --bg-dark: #141414;
  --border: #e0e0e0;
  --destructive: #cc2828;
  --yellow: #d4a843;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }
@media (min-width: 1440px) { .container { padding: 0 4rem; } }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-size: 0.9375rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  max-width: 100%;
  box-sizing: border-box;
}
.btn-primary { background: var(--accent-green); color: #fff; border-color: var(--accent-green); box-shadow: 0 4px 14px rgba(204,40,40,.3); }
.btn-primary:hover { background: var(--accent-green-dark); border-color: var(--accent-green-dark); box-shadow: 0 6px 20px rgba(204,40,40,.4); transform: translateY(-1px); }
.btn-dark { background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); }
.btn-dark:hover { background: #333; border-color: #333; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { background: var(--bg-accent); border-color: #ccc; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn-secondary { background: var(--bg-accent); color: var(--text); border-color: var(--bg-accent); }
.btn-secondary:hover { background: #eaeae6; }
.btn-accent { background: var(--accent-tan); color: #fff; border-color: var(--accent-tan); }
.btn-accent:hover { background: #a68455; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

.section-dark { background: var(--bg-dark); color: #fff; }
.section-accent { background: var(--bg-accent); }
.section-green { background: var(--accent-green); color: #fff; }

.narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
.mid { max-width: 1080px; margin-left: auto; margin-right: auto; }

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-3px); border-color: var(--primary); }
.card-flat { border: none; background: transparent; }
.card-flat:hover { box-shadow: none; transform: none; border-color: transparent; }

.text-green { color: var(--accent-green); }
.text-tan { color: var(--accent-tan); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }
@media (min-width: 768px) { .text-3xl { font-size: 2.25rem; } }
.text-4xl { font-size: 2.5rem; }
@media (min-width: 768px) { .text-4xl { font-size: 2.75rem; } }
.text-5xl { font-size: 3.25rem; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-relaxed { line-height: 1.75; }
.leading-snug { line-height: 1.35; }
.leading-tight { line-height: 1.2; }

.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-green { background: var(--accent-green-light); color: var(--accent-green); }
.badge-green-solid { background: var(--accent-green); color: #fff; }
.badge-tan { background: var(--accent-tan-light); color: var(--accent-tan); }
.badge-dark { background: rgba(255,255,255,.15); color: #fff; }

.icon-circle {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle-green { background: var(--accent-green); color: #fff; }
.icon-circle-green-light { background: var(--accent-green-light); color: var(--accent-green); }
.icon-circle-tan { background: var(--accent-tan-light); color: var(--accent-tan); }
.icon-circle-dark { background: #2a2a2a; color: #fff; }
.icon-circle-destructive { background: #fde8e8; color: var(--destructive); }
.icon-circle-sm { width: 3rem; height: 3rem; }
.icon-circle-lg { width: 5.5rem; height: 5.5rem; }

.star { color: var(--yellow); fill: var(--yellow); }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 0.5rem;
  font-size: 0.9375rem; font-family: inherit;
  background: #fff; color: var(--text);
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(78,107,47,.1);
}
.form-textarea { min-height: 120px; resize: vertical; }

.brand-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0;
}
.brand-bar a { color: #fff; font-weight: 700; }
.brand-bar a:hover { text-decoration: underline; }
.brand-bar .brand-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.brand-bar .brand-bar-right { display: flex; align-items: center; gap: 1.25rem; }
.brand-bar .brand-bar-right a { display: inline-flex; align-items: center; gap: 0.35rem; }
@media (max-width: 639px) {
  .brand-bar .brand-bar-left { display: none; }
  .brand-bar .brand-bar-inner { justify-content: center; }
}

#site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.98);
}
.header {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--primary);
  position: relative;
}
.header-inner-desktop {
  padding: 0 1.5rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 0;
  transition: color 0.15s, border-color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.nav-link:hover, .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }

.dropdown { position: relative; display: flex; align-items: stretch; }
.dropdown .nav-link, .dropdown .nav-link:hover, .dropdown .nav-link.active { border-bottom-color: transparent; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  padding-top: 0.5rem; opacity: 0; visibility: hidden;
  transition: all 0.2s;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-content {
  background: #fff; border: 1px solid var(--border);
  border-radius: 0 0 0.5rem 0.5rem; box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 0.5rem 0; min-width: 240px;
  border-top: 3px solid var(--primary);
}
.dropdown-item {
  display: block; padding: 0.75rem 1.25rem;
  font-size: 0.875rem; color: var(--text-muted);
  font-weight: 500;
  transition: all 0.1s;
}
.dropdown-item:hover { background: var(--bg-accent); color: var(--text); padding-left: 1.5rem; }
.dropdown-item.active { color: var(--primary); font-weight: 700; }

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 2px solid var(--primary);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 300;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }
.mobile-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.1rem 1rem 0.5rem;
}
.mobile-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 1rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}
.mobile-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  line-height: 1.3;
  transition: background 0.15s, color 0.15s;
}
.mobile-service-link svg { flex-shrink: 0; display: block; color: var(--primary); stroke: var(--primary); }
.mobile-service-link:last-child { grid-column: 1 / -1; border-right: none; border-bottom: none; }
.mobile-service-link:nth-child(even) { border-right: none; }
.mobile-service-link:hover { background: var(--bg-accent); color: var(--primary); }
.mobile-service-link.active { color: var(--primary); font-weight: 700; background: var(--bg-accent); }
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-row:hover { background: var(--bg-accent); }
.mobile-nav-row.active { color: var(--primary); }
.mobile-toggle-icon { transition: transform 0.2s; }
#mobile-toggle[aria-expanded="true"] .mobile-toggle-icon { transform: rotate(90deg); }

.footer a:hover { opacity: 1; }
.footer-cols { grid-template-columns: 1fr !important; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(3, 1fr) !important; } }
.accordion-trigger {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  font-size: 1.0625rem; font-weight: 600; background: none;
  border: none; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  color: var(--text); font-family: inherit;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--bg-accent); }
.accordion-trigger svg { transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.accordion-trigger.open svg { transform: rotate(180deg); }
.accordion-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted); line-height: 1.8;
  display: none; font-size: 0.9375rem;
}
.accordion-content.open { display: block; }

.table-wrapper { border: 1px solid var(--border); border-radius: 0.75rem; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
th, td { padding: 1.125rem 1.25rem; }
th { font-weight: 600; }
thead tr { border-bottom: 2px solid var(--border); background: var(--bg-accent); }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }

.hero-page {
  padding: 5rem 0;
  background: var(--bg-dark); color: #fff;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.hero-page::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 0;
}
.hero-page > * { position: relative; z-index: 1; }
@media (min-width: 768px) { .hero-page { padding: 6rem 0; } }
@media (min-width: 1024px) { .hero-page { padding: 7rem 0; } }

.hero-home {
  padding: 5rem 0;
  background: var(--bg-dark); color: #fff;
  position: relative; overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.58) 50%, rgba(0,0,0,.4) 100%);
  z-index: 0;
}
@media (min-width: 768px) { .hero-home { padding: 6rem 0; } }
@media (min-width: 1024px) { .hero-home { padding: 8rem 0 7rem; } }

.breadcrumb { font-size: 0.875rem; opacity: 0.6; margin-bottom: 1rem; }
.breadcrumb a { opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
}
@media (min-width: 768px) { .process-step { gap: 2rem; } }
.process-step .step-content { flex: 1; }
.process-step h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .process-step h3 { font-size: 1.375rem; } }
.process-step p { color: var(--text-muted); line-height: 1.75; }

.commitment-card {
  text-align: center; padding: 2rem 1.5rem;
}
.commitment-card .icon-circle { margin: 0 auto 1.25rem; }
.commitment-card h3 { font-size: 1.125rem; font-weight: 900; margin-bottom: 0.5rem; }
.commitment-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.commitment-card-v2 {
  text-align: center;
  padding: 1.5rem 1rem;
}
.commitment-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.commitment-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.commitment-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.75rem;
}
.review-card .review-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.review-card .review-text { color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.review-card .review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-card .review-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
  background: var(--accent-green-light); color: var(--accent-green);
}
.review-card .review-name { font-weight: 600; font-size: 0.875rem; }
.review-card .review-location { font-size: 0.8125rem; color: var(--text-muted); }

.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-list li svg { margin-top: 0.2rem; flex-shrink: 0; color: var(--accent-green); }

.divider { height: 1px; background: var(--border); margin: 0; border: none; }

@media (min-width: 640px) {
  .sm-flex-row { flex-direction: row; }
  .sm-w-auto { width: auto; }
}
@media (min-width: 768px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .lg-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-5-2 { grid-template-columns: 3fr 2fr; }
  .lg-flex { display: flex; }
  .lg-hide { display: none; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 1023px) {
  .desktop-only { display: none !important; }
}
@media (min-width: 1024px) {
  .mobile-only { display: none !important; }
}

.blog-content h2 { font-size: 1.375rem; font-weight: 700; color: var(--text); margin-top: 2.5rem; margin-bottom: 1rem; }
.blog-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1rem; }
.blog-content strong { color: var(--text); }
.blog-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-content li { color: var(--text-muted); margin-bottom: 0.375rem; font-size: 1rem; line-height: 1.7; }

.text-primary { color: var(--accent-green); }

.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 3.5rem; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.section-heading.text-left::after,
.section-heading-left::after {
  left: 0;
  transform: none;
}

.card-accent-top {
  border-top: 3px solid var(--primary);
}

.badge-green {
  background: var(--accent-green-light);
  color: var(--accent-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.icon-circle-green {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(204,40,40,.25);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}

.section-green {
  background: var(--accent-green);
  color: #fff;
  position: relative;
}

.service-pill {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0.5rem;
  color: #fff; font-weight: 700; font-size: 0.9375rem;
  transition: all 0.25s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.service-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204,40,40,.3);
}

.review-card {
  border-left: 3px solid var(--primary);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s;
}
.accordion-item:hover {
  border-color: var(--primary);
}

.cta-banner {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 { font-weight: 900; }
.cta-banner .btn { background: #fff; color: var(--primary); border-color: #fff; }
.cta-banner .btn:hover { background: #f0f0f0; }

.warranty-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.warranty-logo-text {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--primary);
  line-height: 1;
}

.warranty-banner {
  background: var(--accent-tan-light);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.warranty-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.warranty-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 1rem 1rem;
  border-radius: 0.75rem;
  min-width: 100px;
}
.warranty-badge span {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.warranty-banner-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.warranty-banner-text strong {
  color: var(--text);
}
@media (max-width: 639px) {
  .warranty-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .warranty-badge {
    margin: 0 auto;
  }
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
}
.about-value-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about-approach-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.about-approach-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .house-diagram-mid { grid-template-columns: 1fr !important; }
  .house-diagram-mid > div { border-right: none !important; }
}

.footer {
  background: var(--bg-dark);
  color: #fff;
  border-top: 3px solid var(--primary);
}

/* ── Global smooth scroll ──────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Scroll-reveal ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── Header shadow on scroll ───────────────────────────────────────── */
#site-header { transition: box-shadow 0.3s ease; }
#site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.10); }

/* ── Refined button easing ─────────────────────────────────────────── */
.btn {
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary:active { box-shadow: 0 2px 8px rgba(204,40,40,.3); }

/* ── Refined card hover ────────────────────────────────────────────── */
.card {
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.11); transform: translateY(-4px); }

/* ── Dropdown: slide down on open ─────────────────────────────────── */
.dropdown-menu {
  transform: translateY(-6px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.2s;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* ── Nav link refined easing ───────────────────────────────────────── */
.nav-link {
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Dropdown item: no layout jump, just bg + color shift ─────────── */
.dropdown-item {
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Service pill refined ──────────────────────────────────────────── */
.service-pill {
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Accordion item refined ────────────────────────────────────────── */
.accordion-item {
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.accordion-trigger { transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
.accordion-trigger svg { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* ── Review card hover ─────────────────────────────────────────────── */
.review-card {
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); transform: translateY(-3px); }

/* ── Image hover zoom ──────────────────────────────────────────────── */
.img-hover-zoom { overflow: hidden; border-radius: inherit; }
.img-hover-zoom img {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.img-hover-zoom:hover img { transform: scale(1.04); }

/* ── Footer link transition ────────────────────────────────────────── */
.footer a {
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Hero entrance fade-up ─────────────────────────────────────────── */
.hero-home .container, .hero-page .container {
  animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ── Form input refined focus ──────────────────────────────────────── */
.form-input, .form-textarea, .form-select {
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Brand bar links ───────────────────────────────────────────────── */
.brand-bar a { transition: opacity 0.2s ease; }
.brand-bar a:hover { opacity: 0.75; text-decoration: none; }

/* ── Respect reduced motion preference ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-home .container, .hero-page .container {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Google Rating Badge ────────────────────────────────────────────── */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.google-rating-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.google-rating-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.google-rating-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.google-rating-text strong {
  font-weight: 700;
  color: #fff;
}
