/*
Theme Name: Big Easy Windows
Theme URI: https://bigeasywindows.com
Author: Big Easy Windows
Description: Custom theme for Big Easy Windows - The honest, local window contractor for New Orleans.
Version: 1.0.0
Text Domain: bigeasywindows
*/

:root {
  --color-navy: #0E2A47;
  --color-gold: #E8A33D;
  --color-teal: #15689A;
  --color-teal-dark: #0F4E78;
  --color-white: #F6F9FC;
  --color-gray-100: #E8EFF5;
  --color-gray-500: #5E7184;
  --color-charcoal: #1B2733;
  --color-success: #4CAF50;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;
  --space-10: 64px;
  --space-12: 96px;
  --container-max: 1400px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--color-navy);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  z-index: 10000;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  color: white;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  color: var(--color-navy);
}
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
h4 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 600; }
p { margin: 0 0 var(--space-4); }
.lead { font-size: 18px; color: var(--color-gray-500); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-4); }
@media (min-width: 768px) { .container { padding: 0 var(--space-6); } }
.section { padding: var(--space-8) 0; }
@media (min-width: 768px) { .section { padding: var(--space-10) 0; } }
@media (min-width: 1024px) { .section { padding: 72px 0; } }
.problem-section { padding-bottom: 48px; }
.bew-promises-section { padding-top: 56px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-8); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--color-teal); color: white; }
.btn-primary:hover { background: var(--color-teal-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(21,104,154,0.3); color: white; }
.btn-secondary { background: transparent; color: var(--color-navy); border: 2px solid var(--color-navy); }
.btn-secondary:hover { background: var(--color-navy); color: white; }
.btn-phone { background: var(--color-teal); color: white; border-radius: 50px; box-shadow: 0 4px 20px rgba(21,104,154,0.4); }
.btn-lg { font-size: 18px; padding: var(--space-5) var(--space-8); }

.site-header { position: sticky; top: 0; z-index: 1000; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) 0; gap: var(--space-4); }
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { height: 52px; width: auto; }
.site-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 24px; color: var(--color-navy); text-decoration: none; }
.site-logo-text span { color: var(--color-teal); }
.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: flex; align-items: center; gap: 20px; } }
@media (min-width: 1200px) { .main-nav { gap: 28px; } }
.main-nav a { font-weight: 500; font-size: 14px; color: var(--color-charcoal); }
@media (min-width: 1200px) { .main-nav a { font-size: 15px; } }
.main-nav a:hover { color: var(--color-teal); }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 3px; }
.nav-dropdown-toggle::after { content: "\25BE"; font-size: 10px; line-height: 1; display: inline-block; vertical-align: middle; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 200px; background: white; border-radius: var(--border-radius); box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 8px 0; opacity: 0; visibility: hidden; transition: all 0.2s; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 14px; color: var(--color-charcoal); }
.nav-dropdown-menu a:hover { background: var(--color-gray-100); color: var(--color-teal); }
.header-cta { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.header-phone { display: none; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--color-navy); white-space: nowrap; }
@media (min-width: 768px) { .header-phone { display: flex; } }
.mobile-menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--color-navy); }

/* Mobile nav active state */
.main-nav.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 8px 0; gap: 0; z-index: 200; }
.main-nav.active > a, .main-nav.active > .nav-dropdown > .nav-dropdown-toggle { display: block; padding: 12px 20px; border-bottom: 1px solid var(--color-gray-100); font-size: 15px; }
.main-nav.active .nav-dropdown-menu { position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible; padding: 0 0 4px 0; min-width: auto; border-radius: 0; display: none; }
.main-nav.active .nav-dropdown.open .nav-dropdown-menu { display: block; }
.main-nav.active .nav-dropdown-menu a { padding: 10px 36px; font-size: 14px; border-bottom: 1px solid var(--color-gray-100); }
.main-nav.active .nav-dropdown-toggle::after { content: " \25BE"; float: right; }
.main-nav.active .nav-dropdown.open .nav-dropdown-toggle::after { content: " \25B4"; }

.hero { position: relative; min-height: 85vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--color-navy), #2a3f5f); overflow: hidden; }
.hero-background { position: absolute; inset: 0; z-index: 1; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,42,71,0.85), rgba(14,42,71,0.7)); z-index: 2; }

/* Video Background Hero */
.hero-video { background: var(--color-navy); position: relative; }
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-video .hero-overlay { background: rgba(0,0,0,0.3); z-index: 2; } /* lighter overlay to see video */
.hero-video .hero-content { z-index: 3; }
@media (prefers-reduced-motion: reduce) { .hero-video-bg { display: none; } .hero-video { background: linear-gradient(135deg, var(--color-navy), #2a3f5f); } }
.hero-content { position: relative; z-index: 3; max-width: 700px; color: white; }
.hero h1 { color: white; margin-bottom: var(--space-5); }
.hero h1 span { color: var(--color-gold); }
.hero-subtitle { font-size: clamp(16px, 2vw, 20px); margin-bottom: var(--space-6); opacity: 0.9; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; opacity: 0.9; }
.trust-item svg { color: var(--color-gold); }

.problem-section { background: var(--color-gray-100); }
.problem-grid { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
.problem-card { display: flex; gap: var(--space-4); padding: var(--space-5); background: white; border-radius: var(--border-radius-lg); }
.problem-icon { flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(220,38,38,0.1); border-radius: var(--border-radius); color: #DC2626; }
.problem-card h3 { margin-bottom: 8px; }
.problem-card p { color: var(--color-gray-500); margin: 0; font-size: 15px; }

.proof-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); margin-bottom: var(--space-8); }
@media (min-width: 768px) { .proof-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: var(--space-5); }
.stat-number { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 48px); font-weight: 800; color: var(--color-navy); line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--color-teal); }
.stat-label { font-size: 14px; color: var(--color-gray-500); font-weight: 500; }

.testimonial-featured { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-6); display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .testimonial-featured { grid-template-columns: auto 1fr; align-items: center; } }
.testimonial-image, .testimonial-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.testimonial-content blockquote { font-size: 18px; line-height: 1.7; margin: 0 0 var(--space-4); }
.testimonial-name { font-family: var(--font-heading); font-weight: 600; color: var(--color-navy); }
.testimonial-location { font-size: 14px; color: var(--color-gray-500); }
.testimonial-rating { display: flex; gap: 2px; color: var(--color-gold); margin-bottom: 12px; }

.solution-section { background: var(--color-navy); color: white; }
.solution-section .section-header h2 { color: white; }
.solution-section .section-header p { color: rgba(255,255,255,0.8); }
.process-grid { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { text-align: center; padding: var(--space-5); }
.process-number { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); background: var(--color-teal); border-radius: 50%; font-family: var(--font-heading); font-weight: 800; font-size: 24px; }
.process-step h4 { color: white; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0; }

.services-grid { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: white; border-radius: var(--border-radius-lg); transition: all 0.2s; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.service-image { position: relative; height: 200px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-content { padding: var(--space-5); }
.service-card h4 { margin-bottom: 12px; }
.service-card p { color: var(--color-gray-500); font-size: 15px; margin-bottom: var(--space-4); }
.service-card a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.service-card-link { display: block; color: inherit; text-decoration: none; }
.service-card-link:hover { color: inherit; }
.service-learn-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--color-teal); }

/* Before/After Section */
.before-after-section { background: var(--color-gray-100); }
.before-after-grid { display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .before-after-grid { grid-template-columns: repeat(2, 1fr); } }
.before-after-card { background: white; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.before-after-images { display: grid; grid-template-columns: 1fr 1fr; }
.before-image, .after-image { position: relative; height: 200px; overflow: hidden; }
.before-image img, .after-image img { width: 100%; height: 100%; object-fit: cover; }
.before-after-label { position: absolute; bottom: 12px; left: 12px; background: var(--color-navy); color: white; padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.after-image .before-after-label { background: var(--color-teal); }
.before-after-content { padding: var(--space-5); }
.before-after-content h4 { margin-bottom: 8px; }
.before-after-content p { color: var(--color-gray-500); font-size: 15px; margin: 0; }

.action-wrapper { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) { .action-wrapper { grid-template-columns: 1fr 1fr; align-items: center; } }
.action-content p { color: var(--color-gray-500); font-size: 18px; margin-bottom: var(--space-5); }
.action-features { list-style: none; padding: 0; margin: 0 0 var(--space-6); }
.action-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-weight: 500; }
.action-features li svg { flex-shrink: 0; color: var(--color-teal); }
.action-phone { display: flex; align-items: center; gap: 12px; }
.action-phone-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--color-teal); border-radius: 50%; color: white; }
.action-phone-text span { display: block; font-size: 14px; color: var(--color-gray-500); }
.action-phone-text a { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--color-navy); }

/* Call CTA button + stats band (fills left-column dead space) */
.action-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.action-call-btn:hover { background: var(--color-teal-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(21,104,154,0.3); }
.action-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.action-stat {
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: var(--border-radius-lg);
  padding: 18px 20px;
  text-align: center;
}
.action-stat-num { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--color-navy); line-height: 1; }
.action-stat-label { font-size: 13px; color: var(--color-gray-500); margin-top: 6px; }

.action-form { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-6); }
.action-form h3 { margin-bottom: var(--space-5); }

/* Team Section */
.team-section { background: #fff; color: var(--color-charcoal); border-top: 1px solid var(--color-gray-100); }
.team-wrapper { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 1024px) { .team-wrapper { grid-template-columns: 1fr 1fr; } }
.team-image { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 16px 40px rgba(14,42,71,0.18); }
.team-image img { width: 100%; height: auto; display: block; }

/* ── TEAM CAROUSEL (Brian / Jose / Corey) ────────────────────────────────── */
.team-carousel { position: relative; width: 100%; max-width: 440px; margin: 0 auto; }
.team-slides {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(14,42,71,0.18);
  aspect-ratio: 4/5;
  background: var(--color-gray-100);
}
.team-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.team-slide.is-active { opacity: 1; visibility: visible; }
.team-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 24px 22px;
  background: linear-gradient(to top, rgba(8,16,34,0.92) 0%, rgba(8,16,34,0.55) 55%, transparent 100%);
}
.team-slide-name { font-family: var(--font-heading); font-weight: 800; font-size: 21px; color: #fff; line-height: 1.2; }
.team-slide-role { font-size: 14px; color: var(--color-gold); font-weight: 600; margin-top: 3px; }
.team-dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.team-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: var(--color-gray-200, #d6dde5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.team-dot:hover { background: var(--color-gray-500); }
.team-dot.is-active { background: var(--color-teal); transform: scale(1.25); }
.team-content h2 { color: var(--color-navy); }
.team-content .lead { color: var(--color-gray-500); }
.team-content p { color: var(--color-gray-500); margin-bottom: var(--space-5); }
.team-stats { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.team-stat { text-align: center; }
.team-stat-number { display: block; font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--color-gold); }
.team-stat-label { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.form-group { margin-bottom: var(--space-4); }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: var(--space-4); font-family: var(--font-body); font-size: 16px; border: 2px solid var(--color-gray-100); border-radius: var(--border-radius); background: white; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-teal); }
.form-group textarea { min-height: 120px; resize: vertical; }

.site-footer { background: var(--color-navy); color: white; padding: var(--space-10) 0 var(--space-6); }
.footer-grid { display: grid; gap: var(--space-8); margin-bottom: var(--space-8); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; } }
.footer-brand p { color: rgba(255,255,255,0.7); margin-top: var(--space-4); font-size: 15px; }
.footer-column h3 { color: white; font-size: 16px; margin-bottom: var(--space-4); }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { color: rgba(255,255,255,0.7); font-size: 15px; }
.footer-column a:hover { color: var(--color-gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: var(--space-4); color: rgba(255,255,255,0.7); font-size: 15px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--color-gold); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: white; transition: background 0.2s; }
.footer-social a:hover { background: var(--color-gold); }
.footer-social svg { flex-shrink: 0; }
.footer-bottom { padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); }
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-legal a:hover { color: white; }

.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; padding: 12px 88px 12px var(--space-4); background: white; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); display: flex; gap: 10px; }
/* 88px right padding reserves the bottom-right corner for the GHL chat bubble (58px + inset)
   so it never overlaps the Call/Get-Quote buttons. The chat widget lives in shadow DOM and
   can't be repositioned from theme CSS, so we clear space for it instead. */
@media (min-width: 768px) { .mobile-sticky-cta { display: none; } }
.mobile-sticky-cta .btn { flex: 1; min-width: 0; justify-content: center; padding-left: 12px; padding-right: 12px; font-size: 15px; }

/* ── STATS BAR ───────────────────────────────────────────────────────────── */
.bew-stats-bar { background: #fff; border-bottom: 1px solid #e4eaf0; }
.bew-stats-inner { max-width: 1160px; margin: 0 auto; padding: 0 5%; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 8px; }
.bew-stat { padding: 22px 16px; text-align: center; flex: 1 1 120px; }
.bew-stat-num { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--color-navy); line-height: 1; }
.bew-stat-label { font-size: 13px; color: var(--color-gray-500); margin-top: 4px; }
.bew-stat-div { width: 1px; height: 44px; background: #dde4ed; flex-shrink: 0; }
@media (max-width: 600px) { .bew-stat-div { display: none; } .bew-stat { flex: 1 1 45%; } }

/* ── EYEBROWS ────────────────────────────────────────────────────────────── */
.bew-eyebrow { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-teal); background: rgba(21,104,154,0.1); padding: 4px 14px; border-radius: 20px; margin-bottom: 14px; }
.bew-eyebrow-light { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); padding: 4px 14px; border-radius: 20px; margin-bottom: 14px; }

/* ── THE BIG EASY WAY (promises) ─────────────────────────────────────────── */
.bew-promises-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 768px) { .bew-promises-grid { grid-template-columns: 1fr; } }
.bew-promise-card { background: #fff; border: 1px solid #e4eaf0; border-radius: 12px; padding: 32px 28px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.bew-promise-card:hover { box-shadow: 0 8px 32px rgba(14,42,71,0.1); transform: translateY(-3px); }
.bew-promise-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: var(--color-navy); border-radius: 50%; color: var(--color-gold); margin-bottom: 20px; }
.bew-promise-card h3 { font-size: 18px; color: var(--color-navy); margin-bottom: 12px; }
.bew-promise-card p { font-size: 15px; color: var(--color-gray-500); line-height: 1.6; margin: 0; }

/* ── WINDOW TYPES GRID ───────────────────────────────────────────────────── */
.bew-types-section { background: var(--color-navy); }
.bew-types-section .section-header { max-width: 860px; }
.bew-types-section .section-header h2 { color: #fff; }
.bew-types-section .section-header .lead { color: rgba(255,255,255,0.7); }
.bew-types-section .bew-eyebrow { background: rgba(232,163,61,0.15); color: var(--color-gold); }
.bew-types-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
@media (min-width: 1024px) { .bew-types-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .bew-types-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .bew-types-grid { grid-template-columns: 1fr; } }
.bew-type-card { display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 24px 20px; text-decoration: none; color: #fff; transition: background 0.2s, border-color 0.2s, transform 0.2s; min-height: 120px; }
.bew-type-card:hover { background: rgba(232,163,61,0.15); border-color: var(--color-gold); transform: translateY(-2px); color: #fff; }
.bew-type-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 8px; }
.bew-type-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; flex-grow: 1; }
.bew-type-cta { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 14px; transition: color 0.2s; }
.bew-type-card:hover .bew-type-cta { color: var(--color-gold); }
.bew-types-note { text-align: center; margin-top: 28px; color: rgba(255,255,255,0.6); font-size: 14px; }
.bew-types-note a { color: var(--color-gold); }

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */
.bew-cta-banner { position: relative; padding: 80px 5%; overflow: hidden; }
.bew-cta-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
.bew-cta-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,42,71,0.88), rgba(14,42,71,0.78)); z-index: 2; }
.bew-cta-banner-inner { position: relative; z-index: 3; max-width: 700px; margin: 0 auto; text-align: center; color: #fff; }
.bew-cta-eyebrow { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 16px; }
.bew-cta-banner-inner h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 16px; }
.bew-cta-banner-inner h2 em { color: var(--color-gold); font-style: normal; }
.bew-cta-banner-inner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.bew-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.bew-cta-phone-btn { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; padding: 14px 24px; border-radius: 8px; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.bew-cta-phone-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ── REVIEW RATING HEADER ────────────────────────────────────────────────── */
.bew-review-rating { margin-top: 16px; display: flex; align-items: center; gap: 10px; justify-content: center; }
.bew-stars { color: var(--color-gold); font-size: 20px; letter-spacing: 2px; }
.bew-rating-meta { font-size: 14px; color: var(--color-gray-500); }

/* ── REVIEW CARDS ────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }
.bew-review-card { background: #fff; border: 1px solid #e4eaf0; border-radius: 10px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.bew-review-stars { display: flex; gap: 3px; color: var(--color-gold); }
.bew-review-text { font-size: 14px; line-height: 1.65; color: var(--color-charcoal); flex-grow: 1; margin: 0; }
.bew-reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.bew-reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--color-navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bew-reviewer-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--color-gray-100); }
.bew-reviewer-name { font-weight: 700; font-size: 14px; color: var(--color-navy); }
.bew-reviewer-city { font-size: 12px; color: var(--color-gray-500); margin-top: 2px; }

/* ── SERVICE AREAS ───────────────────────────────────────────────────────── */
.bew-areas-section { background: var(--color-navy); padding: 72px 5%; }
.bew-areas-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .bew-areas-inner { grid-template-columns: 1fr; } }
.bew-areas-left .bew-eyebrow { background: rgba(232,163,61,0.15); color: var(--color-gold); }
.bew-areas-left h2 { color: #fff; font-size: clamp(22px, 3vw, 34px); margin-bottom: 16px; }
.bew-areas-left p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.65; }
.bew-areas-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bew-area-chip { display: inline-block; padding: 9px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.bew-area-chip:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-navy); }

/* ── BLOG CARD DATE ──────────────────────────────────────────────────────── */
.blog-card-date { font-size: 12px; color: var(--color-gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

/* Blog Section */
.blog-section { background: var(--color-gray-100); }
.blog-grid { display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: white; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-card-body { padding: var(--space-6); }
.blog-card-title { font-size: 18px; margin-bottom: var(--space-3); line-height: 1.4; }
.blog-card-title a { color: var(--color-navy); }
.blog-card-title a:hover { color: var(--color-teal); }
.blog-card-excerpt { color: var(--color-gray-500); font-size: 14px; line-height: 1.6; margin-bottom: var(--space-4); }
.blog-read-more { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: 14px; color: var(--color-teal); }
.blog-read-more:hover { color: var(--color-navy); }

/* Instagram Section */
.instagram-section { background: #fff; padding: 72px 0; }
.instagram-header { text-align: center; margin-bottom: var(--space-6); }
.instagram-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 8px; font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--color-navy); }
.instagram-logo svg { color: #E1306C; }
.instagram-logo a { color: var(--color-navy); }
.instagram-logo a:hover { color: #E1306C; }
.instagram-header p { color: var(--color-gray-500); margin: 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .instagram-grid { grid-template-columns: repeat(6, 1fr); } }
.instagram-tile { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; border-radius: 10px; display: block; }
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.instagram-tile:hover img { transform: scale(1.06); }
.instagram-tile-overlay { position: absolute; inset: 0; background: rgba(14,42,71,0.55); display: flex; align-items: center; justify-content: center; color: white; opacity: 0; transition: opacity 0.3s; }
.instagram-tile:hover .instagram-tile-overlay { opacity: 1; }

/* Service Page Styles */
.service-hero { position: relative; padding: var(--space-12) 0 var(--space-10); background-color: var(--color-navy); background-size: cover; background-position: center; text-align: center; }
.service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,42,71,0.6) 0%, rgba(14,42,71,0.75) 100%); }
.service-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; color: white; }
.service-hero-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-5); background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--color-gold); }
.service-hero h1 { color: white; margin-bottom: var(--space-4); }
.service-hero-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 14px; }
.service-hero-meta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.service-hero-meta svg { color: var(--color-gold); }
.service-hero-subtitle { font-size: 18px; opacity: 0.9; margin-bottom: var(--space-6); }
.service-hero .hero-cta { justify-content: center; }
.service-hero .hero-trust { justify-content: center; gap: var(--space-5) var(--space-6); }
.service-hero .trust-item { font-weight: 500; }

.service-intro-grid { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) { .service-intro-grid { grid-template-columns: 2fr 1fr; } }
.service-intro-content h2 { margin-top: var(--space-6); }
.service-intro-content h2:first-child { margin-top: 0; }
.service-intro-content ul { padding-left: 24px; margin-bottom: var(--space-5); }
.service-intro-content li { margin-bottom: 8px; }

.quick-contact-card { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-5); text-align: center; position: sticky; top: 100px; }
.quick-contact-card h4 { margin-bottom: 8px; }
.quick-contact-card p { color: var(--color-gray-500); font-size: 14px; margin-bottom: var(--space-4); }

.benefits-section { background: var(--color-gray-100); }
.benefits-grid { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-card { background: white; border-radius: var(--border-radius-lg); padding: var(--space-5); text-align: center; }
.benefit-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); background: rgba(21,104,154,0.1); border-radius: 50%; color: var(--color-teal); }
.benefit-card h4 { margin-bottom: 8px; font-size: 18px; }
.benefit-card p { color: var(--color-gray-500); font-size: 14px; margin: 0; }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--color-gray-100); border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.faq-item:hover { box-shadow: 0 6px 22px rgba(14,42,71,0.07); }
.faq-item.open { border-color: rgba(21,104,154,0.55); box-shadow: 0 10px 30px rgba(14,42,71,0.10); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: var(--color-navy); transition: color 0.2s; }
.faq-item.open .faq-question, .faq-question:hover { color: var(--color-teal); }
.faq-question svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-teal); background: rgba(21,104,154,0.12); border-radius: 50%; padding: 7px; box-sizing: content-box; transition: transform 0.25s ease, background 0.2s, color 0.2s; }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); background: var(--color-teal); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 2px 24px 22px; color: var(--color-gray-500); line-height: 1.75; margin: 0; }
.faq-item.open .faq-answer { max-height: 600px; }

.service-areas-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px var(--space-6); max-width: 600px; margin: 0 auto; }
@media (min-width: 768px) { .service-areas-grid { grid-template-columns: repeat(4, 1fr); max-width: 900px; } }
.service-areas-grid li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, var(--color-navy), #2a3f5f); padding: var(--space-12) 0; text-align: center; color: white; }
.page-hero h1 { color: white; margin-bottom: var(--space-4); }
.page-hero-subtitle { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.page-hero-simple { padding: var(--space-10) 0; }

/* About Page */
.about-grid { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-content h2 { margin-top: var(--space-6); }
.about-content h2:first-child { margin-top: 0; }
.about-promises { list-style: none; padding: 0; margin: var(--space-5) 0; }
.about-promises li { padding: var(--space-4) 0; border-bottom: 1px solid var(--color-gray-100); }
.about-image-placeholder { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-12); text-align: center; color: var(--color-gray-500); }
.about-image-placeholder span { display: block; margin-top: var(--space-4); font-size: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.stat-card { background: white; border-radius: var(--border-radius-lg); padding: var(--space-5); text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.stat-card .stat-number { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--color-navy); }
.stat-card .stat-label { font-size: 14px; color: var(--color-gray-500); margin-top: 4px; }

/* Values Grid */
.values-grid { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: white; border-radius: var(--border-radius-lg); padding: var(--space-6); text-align: center; }
.value-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); background: var(--color-navy); border-radius: 50%; color: var(--color-gold); }
.value-card h3 { margin-bottom: var(--space-3); }
.value-card p { color: var(--color-gray-500); margin: 0; }

/* Contact Page */
.contact-grid { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-methods { margin: var(--space-6) 0; }
.contact-method { display: flex; gap: var(--space-4); padding: var(--space-5) 0; border-bottom: 1px solid var(--color-gray-100); }
.contact-method-icon { flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--color-teal); border-radius: 50%; color: white; }
.contact-method-content h3 { margin-bottom: 4px; font-size: 18px; }
.contact-method-content a { font-size: 18px; font-weight: 600; }
.contact-method-content p { font-size: 14px; color: var(--color-gray-500); margin: 4px 0 0; }
.contact-promises { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-5); }
.contact-promises h3 { margin-bottom: var(--space-4); }
.contact-promises ul { list-style: none; padding: 0; margin: 0; }
.contact-promises li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--color-charcoal); }
.contact-promises li svg { color: var(--color-teal); flex-shrink: 0; }
.contact-form-card { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-6); }
.contact-form-card h3 { margin-bottom: var(--space-5); }
.form-row { display: grid; gap: var(--space-4); }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.checkbox-label { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--color-gray-500); cursor: pointer; }
.checkbox-label input { margin-top: 3px; }

/* Service Areas Page */
.areas-grid { display: grid; gap: var(--space-5); }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
.area-card { display: block; background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-5); text-decoration: none; transition: all 0.2s; }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); background: white; }
.area-card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--color-navy); border-radius: 50%; color: var(--color-gold); margin-bottom: var(--space-4); }
.area-card h3 { color: var(--color-navy); margin-bottom: 8px; font-size: 20px; }
.area-card p { color: var(--color-gray-500); font-size: 14px; margin-bottom: var(--space-4); }
.area-card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-teal); font-weight: 600; font-size: 14px; }
.other-areas { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4); }
.other-area-link { padding: 12px 24px; background: white; border-radius: 50px; color: var(--color-navy); font-weight: 500; text-decoration: none; transition: all 0.2s; }
.other-area-link:hover { background: var(--color-navy); color: white; }

/* Legal Page */
.legal-content { max-width: none; margin: 0; }
.legal-content > *:first-child { margin-top: 0; }
.legal-content h2 { margin-top: var(--space-8); font-size: 24px; }
.legal-content h3 { margin-top: var(--space-6); font-size: 20px; }
.legal-content p, .legal-content ul, .legal-content ol { margin-bottom: var(--space-4); }
.legal-content ul, .legal-content ol { padding-left: 24px; }
.legal-content li { margin-bottom: 8px; }

/* ── BLOG SINGLE POST ─────────────────────────────────────────────────────── */
.page-hero-sm { padding: var(--space-10) 0 var(--space-8); }
.post-hero-inner { max-width: 780px; margin: 0 auto; }
.post-hero-inner h1 { font-size: clamp(26px, 4vw, 44px); }

.post-layout { display: grid; gap: var(--space-10); }
@media (min-width: 1024px) { .post-layout { grid-template-columns: 1fr 320px; } }

.post-content { min-width: 0; }
.post-content h2 { font-size: clamp(20px, 2.5vw, 26px); margin-top: var(--space-8); margin-bottom: var(--space-3); color: var(--color-navy); }
.post-content h2:first-child { margin-top: 0; }
.post-content h3 { font-size: 20px; margin-top: var(--space-6); margin-bottom: var(--space-3); color: var(--color-navy); }
.post-content p { font-size: 16px; line-height: 1.75; color: var(--color-charcoal); margin-bottom: var(--space-5); }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: var(--space-5); }
.post-content li { font-size: 16px; line-height: 1.75; color: var(--color-charcoal); margin-bottom: 8px; }
.post-content strong { color: var(--color-navy); font-weight: 600; }

/* In-body content images — match live placement (respect WP alignment classes) */
.post-content img { max-width: 100%; height: auto; border-radius: var(--border-radius); }
.post-content figure { margin: 0 0 var(--space-5); max-width: 100%; }
.post-content figure img { display: block; }
.post-content figcaption, .post-content .wp-caption-text { font-size: 13px; line-height: 1.5; color: var(--color-charcoal); opacity: .8; margin-top: 8px; text-align: center; }
/* Float right: text wraps beside the image, as on the live site */
.post-content .alignright, .post-content figure.alignright, .post-content img.alignright {
    float: right; margin: 6px 0 var(--space-4) var(--space-5); max-width: 50%; height: auto;
}
/* Float left */
.post-content .alignleft, .post-content figure.alignleft, .post-content img.alignleft {
    float: left; margin: 6px var(--space-5) var(--space-4) 0; max-width: 50%; height: auto;
}
/* Centered + none */
.post-content .aligncenter, .post-content figure.aligncenter {
    display: block; margin-left: auto; margin-right: auto; margin-bottom: var(--space-5);
}
.post-content img.aligncenter { display: block; margin: 0 auto var(--space-5); }
.post-content .alignnone, .post-content img.alignnone { display: block; margin: 0 0 var(--space-5); }
/* Clear floats so they never bleed past the article */
.post-content::after { content: ""; display: block; clear: both; }

/* Imported "Table of Contents" — compact two-column card (removes the dead right gutter) */
.post-content .bew-toc-title { margin-top: 0; margin-bottom: var(--space-4); }
.post-content ol.bew-toc, .post-content ul.bew-toc {
    background: var(--color-gray-100);
    border-left: 4px solid var(--color-teal);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    margin: 0 0 var(--space-10);
}
.post-content ol.bew-toc > li, .post-content ul.bew-toc > li {
    break-inside: avoid; -webkit-column-break-inside: avoid;
    margin-bottom: 10px;
}
.post-content ol.bew-toc > li:last-child, .post-content ul.bew-toc > li:last-child { margin-bottom: 0; }
.post-content ol.bew-toc ul { margin: 8px 0 0; }
@media (min-width: 768px) {
    .post-content ol.bew-toc, .post-content ul.bew-toc { columns: 2; column-gap: var(--space-8); }
}
/* Mobile: stop floats, go full-width */
@media (max-width: 600px) {
    .post-content .alignright, .post-content .alignleft,
    .post-content figure.alignright, .post-content figure.alignleft,
    .post-content img.alignright, .post-content img.alignleft {
        float: none; display: block; max-width: 100%; margin: 0 0 var(--space-5);
    }
}

.post-cta-strip { display: flex; align-items: center; gap: 12px; background: var(--color-gray-100); border-left: 4px solid var(--color-teal); border-radius: var(--border-radius); padding: var(--space-4) var(--space-5); margin-top: var(--space-8); font-size: 15px; color: var(--color-charcoal); }
.post-cta-strip svg { flex-shrink: 0; color: var(--color-teal); }
.post-cta-strip a { color: var(--color-teal); font-weight: 600; }
.post-cta-strip a:hover { color: var(--color-navy); }

.post-sidebar { display: flex; flex-direction: column; gap: var(--space-5); }
.post-sidebar-card { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-5); }
.post-sidebar-card:first-child { position: sticky; top: 100px; }

/* ── Trust Bar ─────────────────────────────────────────────────────────────── */
.bew-trust-bar { background: var(--color-navy); border-bottom: 2px solid var(--color-teal); padding: 14px 0; }
.bew-trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
.bew-trust-badge { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; font-weight: 500; }
.bew-trust-badge svg { color: var(--color-teal); flex-shrink: 0; }
@media (max-width: 600px) {
    .bew-trust-bar-inner { gap: 16px; justify-content: flex-start; padding: 0 16px; }
    .bew-trust-badge { font-size: 13px; }
}

/* ── Related Pages Grid ────────────────────────────────────────────────────── */
.bew-related-section { background: var(--color-gray-100); }
.bew-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 32px; }
.bew-related-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--color-gray-200); border-radius: var(--border-radius-lg); padding: 20px; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.bew-related-card:hover { border-color: var(--color-teal); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.bew-related-icon { width: 48px; height: 48px; background: var(--color-teal-light, #e6f7f5); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-teal); }
.bew-related-body { flex: 1; min-width: 0; }
.bew-related-body h4 { font-size: 15px; font-weight: 600; color: var(--color-navy); margin: 0 0 4px; line-height: 1.3; }
.bew-related-body p { font-size: 13px; color: var(--color-gray-600); margin: 0; line-height: 1.4; }
.bew-related-arrow { color: var(--color-teal); flex-shrink: 0; }
.bew-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--color-teal); margin-bottom: 8px; }
@media (max-width: 768px) {
    .bew-related-grid { grid-template-columns: 1fr; }
}
.post-sidebar-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--color-navy); }
.post-sidebar-card p { font-size: 14px; color: var(--color-gray-500); margin-bottom: var(--space-4); line-height: 1.6; }
.sidebar-service-links { list-style: none; padding: 0; margin: 0; }
.sidebar-service-links li { border-bottom: 1px solid rgba(0,0,0,0.06); }
.sidebar-service-links li:last-child { border-bottom: none; }
.sidebar-service-links a { display: block; padding: 9px 0; font-size: 14px; font-weight: 500; color: var(--color-navy); text-decoration: none; transition: color 0.15s; }
.sidebar-service-links a:hover { color: var(--color-teal); }
.post-sidebar-trust { background: var(--color-navy); color: white; }
.post-sidebar-trust p { color: rgba(255,255,255,0.85); font-style: italic; font-size: 14px; margin-bottom: 8px; }
.post-trust-rating { display: flex; gap: 2px; margin-bottom: 10px; color: var(--color-gold); }
.post-trust-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }

.blog-pagination { margin-top: var(--space-8); display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: 8px; }
.blog-pagination .page-numbers { padding: 8px 14px; border-radius: var(--border-radius); background: white; color: var(--color-navy); font-weight: 500; font-size: 14px; text-decoration: none; transition: all 0.15s; }
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers.current { background: var(--color-navy); color: white; }

/* ── SERVICES HUB PAGE ───────────────────────────────────────────────────── */
.hub-services-grid { display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .hub-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hub-services-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-service-card { display: flex; flex-direction: column; background: white; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.hub-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.hub-service-img { aspect-ratio: 16/9; overflow: hidden; }
.hub-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.hub-service-card:hover .hub-service-img img { transform: scale(1.04); }
.hub-service-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.hub-service-body h3 { font-size: 20px; color: var(--color-navy); margin-bottom: var(--space-2); }
.hub-service-body p { font-size: 14px; color: var(--color-gray-500); line-height: 1.65; flex: 1; margin-bottom: var(--space-4); }
.hub-service-link { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--color-teal); }
.hub-service-card:hover .hub-service-link { color: var(--color-navy); }

/* ── WINDOW TYPES HUB PAGE ───────────────────────────────────────────────── */
.wt-intro-grid { display: grid; gap: var(--space-10); align-items: center; }
@media (min-width: 1024px) { .wt-intro-grid { grid-template-columns: 1fr 1fr; } }

.wt-grid { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .wt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wt-grid { grid-template-columns: repeat(5, 1fr); } }
.wt-card { display: flex; flex-direction: column; background: white; border-radius: var(--border-radius-lg); padding: var(--space-5); text-decoration: none; border: 1px solid transparent; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.wt-card:hover { border-color: var(--color-teal); box-shadow: 0 4px 20px rgba(21,104,154,0.12); transform: translateY(-3px); }
.wt-card-number { font-size: 12px; font-weight: 700; color: var(--color-teal); letter-spacing: 0.08em; margin-bottom: var(--space-3); }
.wt-card-title { font-size: 17px; font-weight: 700; color: var(--color-navy); margin-bottom: var(--space-2); line-height: 1.3; }
.wt-card-desc { font-size: 13px; color: var(--color-gray-500); line-height: 1.6; flex: 1; margin-bottom: var(--space-4); }
.wt-card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--color-teal); }
.wt-card:hover .wt-card-link { color: var(--color-navy); }

.wt-guidance-grid { display: grid; gap: var(--space-5); margin-top: var(--space-8); }
@media (min-width: 768px) { .wt-guidance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wt-guidance-grid { grid-template-columns: repeat(4, 1fr); } }
.wt-guidance-card { background: var(--color-gray-100); border-radius: var(--border-radius-lg); padding: var(--space-5); }
.wt-guidance-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(21,104,154,0.1); border-radius: 50%; color: var(--color-teal); margin-bottom: var(--space-3); }
.wt-guidance-card h3 { font-size: 16px; color: var(--color-navy); margin-bottom: 8px; }
.wt-guidance-card p { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   v2.0 DESIGN UPGRADES, Big Easy Windows
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── WINDOW TYPE CARDS, PHOTO OVERLAY ──────────────────────────────────── */
.bew-type-card {
  position: relative;
  min-height: 210px;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
  padding: 0;
  border: none;
  border-radius: 10px;
}
.bew-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,16,34,0.95) 0%, rgba(8,16,34,0.6) 55%, rgba(8,16,34,0.2) 100%);
  z-index: 1;
  transition: background 0.35s;
}
.bew-type-card:hover::before {
  background: linear-gradient(to top, rgba(8,16,34,0.98) 0%, rgba(21,104,154,0.45) 60%, rgba(8,16,34,0.3) 100%);
}
.bew-type-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 210px;
  padding: 22px 20px 20px;
}
.bew-type-card .bew-type-tag { margin-bottom: 6px; font-size: 10px; }
.bew-type-card .bew-type-name { font-size: 21px; line-height: 1.2; }
.bew-type-card .bew-type-cta { font-size: 13px; margin-top: 10px; opacity: 0.65; transition: opacity 0.2s, color 0.2s; }
.bew-type-card:hover { background-color: transparent !important; border-color: transparent; transform: translateY(-4px); }
.bew-type-card:hover .bew-type-cta { opacity: 1; color: var(--color-gold); }

/* ── SERVICE PAGE, FULL SIDEBAR LAYOUT ─────────────────────────────────── */
.bew-page-wrap { background: var(--color-gray-100); padding: 56px 0; }
.bew-page-single {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 768px) { .bew-page-single { padding: 0 var(--space-4); } }

.bew-page-main { display: flex; flex-direction: column; gap: 40px; }

/* Sidebar CTA Card */
.bew-sbar-cta {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,42,71,0.10);
  border: 1px solid #e2e8f0;
}
.bew-sbar-cta-head {
  background: var(--color-navy);
  padding: 20px 22px 18px;
}
.bew-sbar-cta-head h4 { color: #fff; margin: 0 0 4px; font-size: 18px; }
.bew-sbar-cta-head p  { color: rgba(255,255,255,0.72); font-size: 13px; margin: 0; }
.bew-sbar-cta-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; }
.bew-sbar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  padding: 13px 18px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background 0.2s;
}
.bew-sbar-phone:hover { background: var(--color-teal-dark); color: #fff; }
.bew-sbar-quote-link {
  display: block;
  text-align: center;
  background: transparent;
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.bew-sbar-quote-link:hover { background: var(--color-navy); color: #fff; }
.bew-sbar-divider { border: none; border-top: 1px solid #f0f4f8; margin: 4px 0; }
.bew-sbar-hours { font-size: 13px; color: var(--color-gray-500); text-align: center; }

/* Sidebar Services List */
.bew-sbar-services {
  background: #fff;
  border-radius: var(--border-radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(14,42,71,0.06);
}
.bew-sbar-services-head {
  padding: 14px 22px;
  background: var(--color-gray-100);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}
.bew-sbar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  border-bottom: 1px solid #f0f4f8;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.bew-sbar-service-link:last-child { border-bottom: none; }
.bew-sbar-service-link:hover { background: rgba(21,104,154,0.06); color: var(--color-teal); }
.bew-sbar-service-link svg { flex-shrink: 0; color: var(--color-teal); opacity: 0.5; transition: opacity 0.15s; }
.bew-sbar-service-link:hover svg { opacity: 1; }

/* Sidebar Trust Badge */
.bew-sbar-trust {
  background: var(--color-gold);
  border-radius: var(--border-radius-lg);
  padding: 20px 22px;
  text-align: center;
}
.bew-sbar-trust-stars { font-size: 18px; letter-spacing: 3px; color: var(--color-navy); margin-bottom: 6px; }
.bew-sbar-trust-label { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--color-navy); margin: 0 0 2px; }
.bew-sbar-trust-sub { font-size: 12px; color: rgba(14,42,71,0.7); margin: 0; }

/* Inner section cards (inside .bew-page-main) */
.bew-inner-card { background: #fff; border-radius: var(--border-radius-lg); padding: var(--space-6); box-shadow: 0 2px 10px rgba(14,42,71,0.06); }
.bew-inner-card .service-intro-content ul { padding-left: 22px; margin-bottom: var(--space-5); }
.bew-inner-card .service-intro-content li { margin-bottom: 8px; font-size: 15px; }
.bew-inner-card .section-header { text-align: left; margin-left: 0; max-width: none; }
.bew-inner-card .section-header h2 { font-size: clamp(22px, 3vw, 30px); }

/* Benefits grid, full width, 4 columns */
.bew-inner-card .benefits-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .bew-inner-card .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bew-inner-card .benefits-grid { grid-template-columns: 1fr; } }
.bew-inner-card .benefits-section { background: transparent; padding: 0; }

/* Process inside sidebar layout */
.bew-inner-card .solution-section { background: transparent; padding: 0; }
.bew-inner-card .solution-section .section-header h2 { color: var(--color-navy); }
.bew-inner-card .solution-section .lead { color: var(--color-gray-500); }
.bew-inner-card .process-grid { gap: 16px; }
.bew-inner-card .process-step { background: var(--color-gray-100); border-radius: var(--border-radius); padding: 20px; }
.bew-inner-card .process-number { background: var(--color-navy); color: #fff; }

/* ── ABOUT PAGE, PHOTO BANNER ───────────────────────────────────────────── */
.about-photo-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-photo-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.about-photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,42,71,0.92) 40%, rgba(14,42,71,0.65) 100%);
  z-index: 1;
}
.about-photo-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
  color: #fff;
}
.about-photo-banner-content .bew-eyebrow-light {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
  display: block;
}
.about-photo-banner-content h1 { color: #fff; margin-bottom: 14px; max-width: 620px; }
.about-photo-banner-content p  { font-size: 18px; color: rgba(255,255,255,0.82); margin: 0 0 28px; max-width: 500px; }
.about-banner-badges { display: flex; flex-wrap: wrap; gap: 24px; }
.about-banner-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.88); font-weight: 500; }
.about-banner-badge svg { color: var(--color-gold); flex-shrink: 0; }

/* ── HOMEPAGE GALLERY, MOSAIC ───────────────────────────────────────────── */
.bew-gallery-section { padding: 80px 0; background: var(--color-gray-100); }
.bew-gallery-header { text-align: center; margin-bottom: 48px; }
.bew-gallery-header .bew-eyebrow { display: inline-block; background: rgba(21,104,154,0.1); color: var(--color-teal); }
.bew-gallery-header h2 { margin-bottom: 12px; }
.bew-gallery-header p { color: var(--color-gray-500); max-width: 560px; margin: 0 auto; }
.bew-gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 900px) {
  .bew-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
}
@media (max-width: 560px) {
  .bew-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 210px);
  }
}
.bew-gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.bew-gallery-tile--featured { grid-row: 1 / 3; }
@media (max-width: 900px) { .bew-gallery-tile--featured { grid-row: auto; } }
.bew-gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.bew-gallery-tile:hover img { transform: scale(1.07); }
.bew-gallery-tile-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,42,71,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.bew-gallery-tile:hover .bew-gallery-tile-cap { opacity: 1; }
.bew-gallery-tile-label {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  transform: translateY(6px);
  transition: transform 0.35s;
}
.bew-gallery-tile:hover .bew-gallery-tile-label { transform: translateY(0); }
.bew-gallery-cta { text-align: center; margin-top: 40px; }

/* ── BLOG CARDS, FEATURED IMAGE ─────────────────────────────────────────── */
.blog-card-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

/* ── SINGLE POST HERO (featured image banner) ────────────────────────────── */
.post-hero { padding: 88px 0; }
.post-hero .post-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.post-hero .post-hero-meta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 16px; }
.post-hero .post-hero-meta svg { color: var(--color-gold); }
.post-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
.post-hero .service-hero-subtitle { max-width: 680px; margin: 0 auto; }

/* ── BEFORE/AFTER, UPGRADED ─────────────────────────────────────────────── */
.before-after-section { background: white; }
.before-after-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .before-after-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .before-after-grid { grid-template-columns: 1fr; } }
.before-after-card { box-shadow: 0 4px 20px rgba(14,42,71,0.08); transition: transform 0.25s, box-shadow 0.25s; }
.before-after-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(14,42,71,0.14); }
.before-image, .after-image { position: relative; overflow: hidden; }
.before-image img, .after-image img { width: 100%; height: 180px; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE PAGE, CLEAN OPEN SECTIONS (no card boxes)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Wider containers, eliminates dead space on wide monitors (1920px+) */
.section > .container,
.bew-areas-section .container,
.bew-cta-banner-inner,
.bew-stats-inner { max-width: 1600px; }

/* Wider containers for all inner page sections */
.bew-sp-intro > .container,
.bew-sp-process > .container,
.bew-sp-why > .container,
.bew-sp-related > .container,
.bew-sp-reviews > .container,
.bew-sp-faq > .container { max-width: 1600px; }

/* Section 1, Intro */
.bew-sp-intro { background: #fff; padding: 72px 0; }

/* Section 2, Process (navy) */
.bew-sp-process { background: var(--color-navy); padding: 72px 0; }
.bew-sp-process .section-header h2 { color: #fff; }
.bew-sp-process .bew-eyebrow-light { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 10px; display: block; }
.bew-sp-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 48px; }
@media (max-width: 900px) { .bew-sp-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .bew-sp-steps { grid-template-columns: 1fr; } }
.bew-sp-step { padding: 28px 24px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius-lg); }
.bew-sp-step-num { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--color-gold); opacity: 0.8; margin-bottom: 12px; line-height: 1; }
.bew-sp-step h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.bew-sp-step p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65; margin: 0; }
.bew-sp-process-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Section 3, Why (gray) */
.bew-sp-why { background: var(--color-gray-100); padding: 72px 0; }
.bew-sp-benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 900px) { .bew-sp-benefits { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .bew-sp-benefits { grid-template-columns: 1fr; } }
/* City "Window Services" grid: 6 cards -> 3 cols x 2 rows, no orphan dead space */
.bew-city-services .bew-sp-benefits { grid-template-columns: repeat(3,1fr); max-width: 1140px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .bew-city-services .bew-sp-benefits { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .bew-city-services .bew-sp-benefits { grid-template-columns: 1fr; } }
.bew-sp-benefit { background: #fff; border-radius: var(--border-radius-lg); padding: 28px 24px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.bew-sp-benefit:hover { box-shadow: 0 8px 28px rgba(14,42,71,0.1); transform: translateY(-3px); }
.bew-sp-benefit-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; background: rgba(21,104,154,0.1); border-radius: 50%; color: var(--color-teal); }
.bew-sp-benefit h3 { font-size: 17px; margin-bottom: 8px; }
.bew-sp-benefit p { color: var(--color-gray-500); font-size: 14px; margin: 0; line-height: 1.6; }

/* Section 4, Related (dark navy, overlay image cards) */
.bew-sp-related { background: var(--color-navy); padding: 72px 0; }
.bew-sp-related .section-header { margin-bottom: 40px; }
.bew-sp-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1140px; margin: 0 auto; }
@media (max-width: 900px) { .bew-sp-related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .bew-sp-related-grid { grid-template-columns: 1fr; } }

/* "Cities We Serve" — background image + navy overlay so it reads distinct from the flat-navy areas band below */
.bew-sp-related.bew-cities-served {
    background-image: linear-gradient(rgba(14,42,71,0.58), rgba(14,42,71,0.70)), url('https://images.pexels.com/photos/6379409/pexels-photo-6379409.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* "Cities We Serve" — compact city cards: city name primary, service secondary */
.bew-cities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; max-width: 1180px; margin: 36px auto 0; }
.bew-city-card { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid transparent; border-radius: 12px; padding: 15px 16px; text-decoration: none; transition: transform 0.18s ease, box-shadow 0.2s, border-color 0.2s; }
.bew-city-card:hover { transform: translateY(-3px); border-color: var(--color-teal); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.bew-city-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(21,104,154,0.12); border-radius: 10px; color: var(--color-teal); transition: background 0.2s, color 0.2s; }
.bew-city-card:hover .bew-city-icon { background: var(--color-teal); color: #fff; }
.bew-city-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.bew-city-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--color-navy); }
.bew-city-svc { font-size: 12px; color: var(--color-gray-500); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bew-city-arrow { margin-left: auto; padding-left: 6px; color: var(--color-teal); font-size: 18px; font-weight: 700; opacity: 0.65; transition: transform 0.18s ease, opacity 0.2s; }
.bew-city-card:hover .bew-city-arrow { transform: translateX(3px); opacity: 1; }
@media (max-width: 1024px) { .bew-cities-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px)  { .bew-cities-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .bew-cities-grid { grid-template-columns: 1fr; } }
.bew-sp-rel-card { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; min-height: 200px; display: flex; align-items: flex-end; text-decoration: none; background-size: cover; background-position: center; transition: transform 0.25s; }
.bew-sp-rel-card:hover { transform: translateY(-4px); }
.bew-sp-rel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,34,0.95) 0%, rgba(8,16,34,0.5) 55%, rgba(8,16,34,0.15) 100%); transition: background 0.3s; }
.bew-sp-rel-card:hover .bew-sp-rel-overlay { background: linear-gradient(to top, rgba(8,16,34,0.98) 0%, rgba(21,104,154,0.35) 60%, rgba(8,16,34,0.2) 100%); }
.bew-sp-rel-body { position: relative; z-index: 2; padding: 20px 18px; width: 100%; }
.bew-sp-rel-body h3 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.bew-sp-rel-body p { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0 0 10px; line-height: 1.45; }
.bew-sp-rel-cta { font-size: 12px; font-weight: 700; color: var(--color-gold); letter-spacing: 0.04em; }

/* Section 5, Reviews (white) */
.bew-sp-reviews { background: #fff; padding: 72px 0; }

/* Section 6, FAQ (gray) */
.bew-sp-faq { background: var(--color-gray-100); padding: 72px 0; }
.bew-sp-faq .faq-list { max-width: 820px; margin: 0 auto; }

/* ── INNER PAGE, INTRO WITH IMAGE ──────────────────────────────────────── */
.bew-intro-layout {
  display: grid;
  grid-template-columns: 1fr 45%;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .bew-intro-layout { grid-template-columns: 1fr; } }
.bew-intro-text h2 { font-size: clamp(20px, 2.5vw, 26px); margin-top: var(--space-6); }
.bew-intro-text h2:first-child { margin-top: 0; }
.bew-intro-text p { font-size: 15px; line-height: 1.75; color: var(--color-charcoal); }
.bew-intro-text ul { padding-left: 22px; margin-bottom: var(--space-5); }
.bew-intro-text li { font-size: 15px; line-height: 1.75; margin-bottom: 8px; }
.bew-intro-img { position: sticky; top: 110px; }
.bew-intro-img img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  aspect-ratio: 3/2;
  min-height: 420px;
  display: block;
  box-shadow: 0 12px 40px rgba(14,42,71,0.18);
}
.bew-intro-img-caption {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-gray-500);
  font-weight: 500;
}
.bew-intro-img-caption svg { color: var(--color-teal); flex-shrink: 0; }
@media (max-width: 900px) { .bew-intro-img { position: static; } }

/* ── SIDEBAR, CONVERSION CARD (replaces old 3-card design) ─────────────── */
.bew-sbar-conv {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.bew-sbar-conv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bew-sbar-conv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,16,34,0.97) 0%, rgba(8,16,34,0.75) 55%, rgba(8,16,34,0.35) 100%);
  z-index: 1;
}
.bew-sbar-conv-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  color: #fff;
  width: 100%;
}
.bew-sbar-conv-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 10px;
}
.bew-sbar-conv-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.bew-sbar-conv-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin: 0 0 20px;
}
.bew-sbar-conv-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 18px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 10px;
}
.bew-sbar-conv-btn:hover { background: var(--color-teal-dark); color: #fff; }
.bew-sbar-conv-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.bew-sbar-conv-phone:hover { color: var(--color-gold); }

/* Sidebar Trust Strip */
.bew-sbar-strip {
  background: #fff;
  border-radius: var(--border-radius-lg);
  border: 1px solid #e2e8f0;
  padding: 18px 20px;
}
.bew-sbar-strip-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f4f8;
}
.bew-sbar-strip-stars { font-size: 18px; color: var(--color-gold); letter-spacing: 2px; }
.bew-sbar-strip-score { font-family: var(--font-heading); font-weight: 800; font-size: 17px; color: var(--color-navy); line-height: 1; }
.bew-sbar-strip-count { font-size: 12px; color: var(--color-gray-500); margin-top: 2px; }
.bew-sbar-strip-badges { display: flex; flex-direction: column; gap: 8px; }
.bew-sbar-strip-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-navy);
}
.bew-sbar-strip-badge svg { color: var(--color-teal); flex-shrink: 0; }

/* ── CONTACT FORM 7, STYLING (tight, no dead space) ─────────────────────── */
.wpcf7 { width: 100%; }
.wpcf7 .bew-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
@media (max-width: 560px) { .wpcf7 .bew-form-row { grid-template-columns: 1fr; gap: 10px; } }
.wpcf7 .bew-form-field { margin-bottom: 10px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d1d9e0;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-charcoal);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin: 0;
  display: block;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { outline: none; border-color: var(--color-teal); box-shadow: 0 0 0 3px rgba(21,104,154,0.12); }
.wpcf7 textarea { min-height: 84px; resize: vertical; }
.wpcf7 .wpcf7-acceptance { font-size: 12.5px; color: var(--color-gray-500); }
.wpcf7 .wpcf7-list-item { margin: 0; }
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label { line-height: 1.4; }
.wpcf7 .wpcf7-acceptance input { margin-right: 7px; accent-color: var(--color-teal); }
.wpcf7 .bew-form-consent { margin-top: 2px; margin-bottom: 14px; }
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.2s;
  margin: 0;
}
.wpcf7 input[type="submit"]:hover { background: var(--color-teal-dark); }
.wpcf7 .wpcf7-not-valid-tip { color: #e53e3e; font-size: 12px; margin-top: 4px; display: block; }
.wpcf7 .wpcf7-response-output { margin: 14px 0 0; padding: 12px 16px; border-radius: var(--border-radius); font-size: 14px; }
.wpcf7 .wpcf7-mail-sent-ok { background: #f0fff4; border: 1px solid #68d391; color: #276749; }
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng { background: #fff5f5; border: 1px solid #fc8181; color: #c53030; }
.wpcf7 span.wpcf7-form-control-wrap { display: block; }

/* Action section, align content to top (kills left-column dead space) */
.action-wrapper { align-items: start; }
.action-section .action-form { align-self: start; }

/* ── PROBLEM CARDS, UPGRADED ────────────────────────────────────────────── */
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 2px 10px rgba(14,42,71,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.problem-card:hover { box-shadow: 0 8px 24px rgba(14,42,71,0.12); transform: translateY(-2px); }
.problem-icon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(232,163,61,0.12); border-radius: 50%; color: var(--color-gold); }
.problem-card h3 { margin-bottom: 4px; font-size: 17px; }
.problem-card p  { margin: 0; font-size: 14px; color: var(--color-gray-500); }

/* ═══════════════════════════════════════════════════════════════════════════
   v2.1 HOMEPAGE REDESIGN, section CTAs, services tiles, process steps
   ═══════════════════════════════════════════════════════════════════════════ */

/* Outline-light button (for dark/navy sections) */
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* Nav dropdown "View All" link */
.nav-dropdown-viewall { font-weight: 700 !important; color: var(--color-teal) !important; border-top: 1px solid var(--color-gray-100); margin-top: 4px; }

/* Shared centered section CTA row */
.bew-section-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 44px; }

/* ── OUR SERVICES, ICON TILES (distinct from photo window-type cards) ────── */
.bew-services-section { background: var(--color-white); }
.bew-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
@media (max-width: 900px) { .bew-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bew-services-grid { grid-template-columns: 1fr; } }
.bew-service-tile {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: var(--border-radius-lg);
  padding: 26px 24px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.bew-service-tile:hover { border-color: var(--color-teal); box-shadow: 0 10px 30px rgba(14,42,71,0.10); transform: translateY(-3px); }
.bew-service-tile-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-gold);
  border-radius: 14px;
  transition: background 0.2s, color 0.2s;
}
.bew-service-tile:hover .bew-service-tile-icon { background: var(--color-teal); color: #fff; }
.bew-service-tile-body h3 { font-size: 18px; color: var(--color-navy); margin: 2px 0 7px; }
.bew-service-tile-body p { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; margin: 0 0 12px; }
.bew-service-tile-link { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--color-teal); }
.bew-service-tile:hover .bew-service-tile-link { gap: 9px; }

/* ── HOW IT WORKS, CONNECTED PROCESS STEPS (navy) ───────────────────────── */
.bew-process-section { background: var(--color-navy); padding: 80px 0; }
.bew-process-section .section-header h2 { color: #fff; }
.bew-process-section .bew-eyebrow-light { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 12px; }
.bew-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 900px) { .bew-process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; } }
@media (max-width: 520px) { .bew-process-steps { grid-template-columns: 1fr; } }
/* connector line behind the step tops on desktop */
.bew-process-steps::before {
  content: '';
  position: absolute;
  top: 33px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(232,163,61,0.5) 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 900px) { .bew-process-steps::before { display: none; } }
.bew-process-step { position: relative; z-index: 1; }
.bew-process-step-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bew-process-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}
.bew-process-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232,163,61,0.4);
  border-radius: 50%;
  color: var(--color-gold);
  flex-shrink: 0;
}
.bew-process-step h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.bew-process-step p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.65; margin: 0; }
.bew-process-section .bew-section-cta { margin-top: 52px; }

/* SECTION DISTINCTION (visual audit 2026-06-09) */
/* Benefits cards get a resting border + soft shadow so the band reads as its own section on the gray bg */
.bew-sp-benefit { border: 1px solid rgba(14,42,71,0.08); box-shadow: 0 2px 10px rgba(14,42,71,0.05); }
/* Stop the dark CTA -> service-areas -> footer stack from merging into one block */
.bew-areas-section { border-top: 1px solid rgba(255,255,255,0.10); }
.site-footer { border-top: 4px solid var(--color-gold); }

/* Hero banners: lighter overlay (above) lets the photo show; text-shadow keeps copy legible */
.service-hero h1,
.service-hero-subtitle,
.service-hero-eyebrow,
.service-hero .trust-item { text-shadow: 0 1px 14px rgba(0,0,0,0.55); }

/* Quote-form reassurance line (above the form, all pages) */
.action-form-trust { display:flex; align-items:center; gap:6px; font-size:12.5px; color:var(--color-gray-500); margin:0 0 14px; line-height:1.4; }
.action-form-trust svg { color:var(--color-teal); flex-shrink:0; }

/* Hero trust row: keep all 4 badges on ONE line on desktop (wraps on mobile) */
@media (min-width: 768px) {
  .service-hero .hero-trust { flex-wrap: nowrap; gap: 14px 18px; }
  .service-hero .trust-item { font-size: 13px; white-space: nowrap; }
}

/* ===== GHL lead forms (added 2026-06-11) ===== */
/* Inline "Contact US" form (FS8...) — eager iframe in a height-capped scroll card.
   GHL iframes blank out when lazy-loaded, so it must load eager; the card caps height. */
.bew-ghl-form { height: 720px; max-height: 82vh; overflow-y: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; background: #fff; }
.bew-ghl-form iframe { width: 100%; height: 1240px; border: none; display: block; border-radius: 8px; background: transparent; }
.bew-ghl-form::-webkit-scrollbar { width: 8px; }
.bew-ghl-form::-webkit-scrollbar-track { background: var(--color-gray-100); border-radius: 8px; }
.bew-ghl-form::-webkit-scrollbar-thumb { background: var(--color-teal); border-radius: 8px; }
.bew-ghl-form::-webkit-scrollbar-thumb:hover { background: var(--color-teal-dark); }
@media (max-width: 600px) {
  /* On mobile, let the page scroll the whole form (no cramped inner scroll) */
  .bew-ghl-form { height: auto; max-height: none; overflow: visible; }
  .bew-ghl-form iframe { height: 1340px; }
}

/* Popup "Free Estimate" modal (z3g...) — opened by any [data-lead-modal] trigger */
.bew-modal { position: fixed; inset: 0; z-index: 99998; display: none; }
.bew-modal.is-open { display: block; }
.bew-modal-backdrop { position: absolute; inset: 0; background: rgba(14,42,71,0.62); backdrop-filter: blur(2px); }
.bew-modal-box { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 760px; max-width: 94vw; height: 90vh; max-height: 880px; background: #fff;
  border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); overflow: hidden; display: flex; flex-direction: column; }
/* GHL form needs breathing room so its left edge isn't clipped; small inset + white gutter */
.bew-modal-body { padding: 0 6px 6px; }
.bew-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--color-gray-100); flex-shrink: 0; }
.bew-modal-head h3 { margin: 0; font-size: 18px; color: var(--color-navy); }
.bew-modal-close { background: none; border: none; font-size: 30px; line-height: 1; color: var(--color-gray-500); cursor: pointer; padding: 0 4px; transition: color 0.2s; }
.bew-modal-close:hover { color: var(--color-navy); }
.bew-modal-body { flex: 1 1 auto; overflow: hidden; }
.bew-modal-body iframe { width: 100%; height: 100%; border: none; display: block; }

/* Inner-page quote section: popup CTA (instead of an eager embedded form) */
.action-form-popup { display: flex; flex-direction: column; gap: 14px; padding: 12px 0 4px; }
.action-form-popup .btn { width: 100%; }
.action-form-popup-note { font-size: 13px; color: var(--color-gray-500); margin: 0; text-align: center; line-height: 1.5; }
.action-form-popup-note a { color: var(--color-teal); font-weight: 600; }
