*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:       #C0392B;
  --light-blue:#4A9BD4;
  --dark:      #111111;
  --mid:       #666666;
  --rule:      #E0E0E0;
  --bg-off:    #F7F7F7;
  --nav-h:     60px;
  --emerg-h:   36px;
  --top-h:     96px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #fff; color: var(--dark); overflow-x: hidden; }

/* EMERGENCY BAR */
.emergency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: #C0392B; color: #fff;
  padding: 0 16px; text-align: center;
  font-size: .82rem; display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 36px; white-space: nowrap; overflow: hidden;
}
.emergency-bar a { color: #fff; font-weight: 700; text-decoration: underline; }
.emergency-bar a:hover { opacity: .85; }
.emerg-full { display: inline; }
.emerg-short { display: none; }
@media (max-width: 500px) { .emerg-full { display: none; } .emerg-short { display: inline; } }

/* NAV */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: #fff;
  border-bottom: 2px solid var(--rule);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 900; letter-spacing: .04em;
  color: var(--dark); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center;
}
.nav-logo .h { color: var(--red); }
.nav-logo .c { color: var(--light-blue); }
.logo-sub {
  font-size: .6rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--mid);
  margin-left: 8px; line-height: 1.25;
  display: inline-flex; flex-direction: column; justify-content: center;
  border-left: 2px solid var(--rule); padding-left: 8px;
}
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a,
.nav-menu > li > button {
  display: flex; align-items: center; gap: 4px;
  padding: 0 12px; height: var(--nav-h);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; background: none; border: none; cursor: pointer;
  white-space: nowrap; transition: color .15s; font-family: 'Barlow', sans-serif;
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover { color: var(--dark); }
.nav-menu > li.open > button { color: var(--red); }
.chev {
  display: inline-block; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s; flex-shrink: 0;
}
.nav-menu > li.open .chev { transform: rotate(225deg) translateY(-2px); }
.dropdown {
  display: none; position: absolute; top: calc(var(--nav-h) + 2px); left: 0;
  background: #fff; border: 1px solid var(--rule); border-top: 3px solid var(--red);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10); min-width: 210px; z-index: 300;
}
.nav-menu > li.open .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 18px;
  font-size: .84rem; font-weight: 500; color: var(--mid); text-decoration: none;
  transition: background .1s, color .1s; white-space: nowrap;
}
.dropdown a:hover { background: var(--bg-off); color: var(--red); }
.dropdown hr { border: none; border-top: 1px solid var(--rule); margin: 3px 0; }
.sub-trigger { position: relative; }
.sub-trigger > a { display: flex !important; justify-content: space-between; align-items: center; }
.sub-chev {
  display: inline-block; width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(-45deg); flex-shrink: 0; margin-left: 10px;
}
.sub-dropdown {
  display: none; position: absolute; left: 100%; top: 0;
  background: #fff; border: 1px solid var(--rule); border-top: 3px solid var(--red);
  box-shadow: 4px 8px 20px rgba(0,0,0,0.09); min-width: 170px; z-index: 400;
}
.sub-trigger:hover .sub-dropdown { display: block; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call {
  border: 2px solid var(--red); color: var(--red);
  padding: 7px 16px; font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; white-space: nowrap; transition: background .2s, color .2s;
}
.nav-call:hover { background: var(--red); color: #fff; }
.nav-cta {
  background: var(--red); color: #fff; padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; white-space: nowrap; transition: background .2s;
}
.nav-cta:hover { background: #a93226; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

/* MOBILE DRAWER */
.mobile-menu {
  display: none; position: fixed; top: var(--top-h); left: 0; right: 0; bottom: 0;
  background: #fff; overflow-y: auto; z-index: 150; padding-bottom: 40px;
  border-top: 1px solid var(--rule);
}
.mobile-menu.open { display: block; }
.mob-item { border-bottom: 1px solid var(--rule); }
.mob-link, .mob-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; font-size: 1rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--dark); text-decoration: none;
  background: none; border: none; width: 100%; cursor: pointer; font-family: 'Barlow', sans-serif;
}
.mob-toggle.open .chev { transform: rotate(225deg) translateY(-2px); }
.mob-sub { display: none; background: var(--bg-off); }
.mob-sub.open { display: block; }
.mob-sub a {
  display: block; padding: 13px 24px 13px 36px;
  font-size: .9rem; color: var(--mid); text-decoration: none;
  border-top: 1px solid var(--rule);
}
.mob-sub a:hover { color: var(--red); }
.mob-sub-head {
  padding: 10px 24px 4px 36px; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  border-top: 1px solid var(--rule);
}
.mob-actions { padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }

/* PAGE HERO (interior pages) */
.page-hero {
  padding: calc(var(--top-h) + 56px) 32px 56px;
  background: var(--dark);
  text-align: center;
}
.page-hero .eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900;
  text-transform: uppercase; color: #fff; line-height: 1; margin-bottom: 12px;
}
.page-hero h1 .accent { color: var(--red); }
.page-hero h1 .accent-blue { color: var(--light-blue); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 24px; }
.page-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BREADCRUMB */
.breadcrumb {
  padding: 12px 32px; background: var(--bg-off);
  border-bottom: 1px solid var(--rule);
  font-size: .76rem; color: var(--mid);
  display: flex; gap: 6px; align-items: center;
  max-width: 100%;
}
.breadcrumb a { color: var(--mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: .4; }

/* CONTENT SECTIONS */
.content-wrap { max-width: 1100px; margin: 0 auto; padding: 64px 32px; }
.content-wrap.narrow { max-width: 780px; }
.section-label { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; text-transform: uppercase; color: var(--dark); line-height: 1.05; margin-bottom: 24px; }
.section-intro { font-size: 1rem; line-height: 1.8; color: var(--mid); margin-bottom: 40px; max-width: 680px; }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--bg-off); border: 1px solid var(--rule);
  border-top: 3px solid var(--red); padding: 28px 24px; border-radius: 2px;
}
.card.blue-top { border-top-color: var(--light-blue); }
.card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px;
}
.card p { font-size: .88rem; line-height: 1.7; color: var(--mid); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }

/* TWO-COL LAYOUT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col.reverse { }
.prose h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 12px; margin-top: 28px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: .95rem; line-height: 1.8; color: var(--mid); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 20px; }
.prose ul li { font-size: .92rem; line-height: 1.7; color: var(--mid); margin-bottom: 4px; }

/* CHECKLIST */
.checklist { list-style: none; margin: 0 0 20px; padding: 0; }
.checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .92rem; line-height: 1.6; color: var(--mid);
  padding: 8px 0; border-bottom: 1px solid var(--rule);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 900;
  color: var(--rule); line-height: 1; flex-shrink: 0; width: 48px; text-align: right;
}
.step-body h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 4px;
}
.step-body p { font-size: .88rem; line-height: 1.7; color: var(--mid); }

/* FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-weight: 600; font-size: .95rem; color: var(--dark);
  background: none; border: none; width: 100%; text-align: left; font-family: 'Barlow', sans-serif;
  gap: 16px;
}
.faq-q:hover { color: var(--red); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .2s; color: var(--red); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; font-size: .9rem; line-height: 1.8; color: var(--mid); max-width: 680px; }
.faq-item.open .faq-a { display: block; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 36px; }
.testi-card {
  background: var(--bg-off); border: 1px solid var(--rule);
  border-top: 3px solid var(--red); padding: 28px 24px;
  border-radius: 2px; display: flex; flex-direction: column; gap: 14px;
}
.testi-card--pro { border-top-color: var(--light-blue); }
.testi-stars { color: #f0a500; font-size: 1.1rem; letter-spacing: 2px; }
.testi-quote { font-size: .9rem; line-height: 1.7; color: var(--mid); flex: 1; font-style: italic; }
.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }
.testi-author { border-top: 1px solid var(--rule); padding-top: 12px; }
.testi-name { font-weight: 700; font-size: .88rem; color: var(--dark); }
.testi-source { font-size: .75rem; color: var(--mid); margin-top: 2px; }

/* FINANCING TABLE */
.fin-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.fin-table th { background: var(--dark); color: #fff; padding: 12px 16px; text-align: left; font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.fin-table td { padding: 12px 16px; border-bottom: 1px solid var(--rule); font-size: .88rem; color: var(--mid); }
.fin-table tr:last-child td { border-bottom: none; }
.fin-table tr:nth-child(even) td { background: var(--bg-off); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border: 1px solid var(--rule); border-radius: 2px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.blog-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; line-height: 1.1; }
.blog-card p { font-size: .85rem; line-height: 1.6; color: var(--mid); flex: 1; }
.blog-card-footer { padding: 14px 20px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; background: var(--bg-off); }
.blog-date { font-size: .74rem; color: var(--mid); }
.blog-read { font-size: .75rem; font-weight: 700; color: var(--red); text-decoration: none; letter-spacing: .06em; text-transform: uppercase; }
.blog-img { height: 160px; background: var(--bg-off); overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.contact-form-wrap { background: var(--bg-off); border: 1px solid var(--rule); border-top: 3px solid var(--red); padding: 32px 28px; border-radius: 2px; }
.contact-form-wrap h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  background: #fff; border: 1px solid var(--rule);
  border-radius: 2px; color: var(--dark);
  font-family: 'Barlow', sans-serif; font-size: .88rem;
  outline: none; transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-sidebar .info-block { margin-bottom: 28px; }
.contact-sidebar .info-block h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; border-bottom: 2px solid var(--rule); padding-bottom: 6px; }
.contact-sidebar .info-block p, .contact-sidebar .info-block a { font-size: .9rem; color: var(--mid); line-height: 1.7; text-decoration: none; display: block; }
.contact-sidebar .info-block a:hover { color: var(--red); }
.contact-sidebar .info-block strong { color: var(--dark); }

/* CTA BAND */
.cta-band { background: var(--dark); color: #fff; text-align: center; padding: 72px 32px; }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900; text-transform: uppercase; line-height: 1; margin-bottom: 10px; }
.cta-band h2 span { color: var(--red); }
.cta-band p { font-size: .95rem; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.cta-phone { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem, 7vw, 3.2rem); font-weight: 900; color: #fff; text-decoration: none; display: block; margin-bottom: 24px; transition: color .2s; }
.cta-phone:hover { color: var(--red); }

/* BUTTONS */
.btn-primary {
  background: var(--red); color: #fff; padding: 13px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; display: inline-block;
  transition: background .2s; text-align: center; border: none; cursor: pointer;
}
.btn-primary:hover { background: #a93226; }
.btn-outline {
  border: 2px solid var(--dark); color: var(--dark); padding: 12px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; display: inline-block;
  transition: background .2s; text-align: center;
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--red); color: #fff; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; transition: background .2s;
}
.btn-submit:hover { background: #a93226; }

/* FOOTER */
footer {
  background: #fff; border-top: 2px solid var(--rule);
  padding: 28px 32px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900; letter-spacing: .04em; }
.footer-logo .h { color: var(--red); }
.footer-logo .c { color: var(--light-blue); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: .76rem; color: var(--mid); text-decoration: none; }
.footer-links a:hover { color: var(--red); }
.footer-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .75rem; color: var(--mid); width: 100%; justify-content: center; }
footer small { font-size: .72rem; color: #bbb; width: 100%; text-align: center; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 16px; }
  .nav-call { display: none; }
  .nav-cta { display: none; }
  .logo-sub { display: none; }
  .nav-logo { font-size: 1.1rem; }
  .emergency-bar { font-size: .75rem; height: auto; min-height: 36px; }
  .content-wrap { padding: 40px 16px; }
  .breadcrumb { padding: 10px 16px; }
  .page-hero { padding: calc(var(--top-h) + 32px) 16px 40px; }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  footer { padding: 24px 16px; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-meta { flex-direction: column; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ═══════════════════════════════════════════════
   INDEX PAGE — HERO & HOME-SPECIFIC STYLES
═══════════════════════════════════════════════ */

/* HERO */
.hero-bg {
  position: relative;
  background: url('/JShaw/pictures/JS1.jpg') center center / cover no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); pointer-events: none;
}
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 420px;
  align-items: center; gap: 48px;
  padding: calc(var(--top-h) + 48px) 64px 64px;
  max-width: 1200px; margin: 0 auto;
}
.hero-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .93; letter-spacing: -.01em; text-transform: uppercase; color: #fff;
}
.hero h1 .heat { color: var(--red); }
.hero h1 .cool { color: var(--light-blue); }
.hero-tagline {
  margin-top: 14px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); font-style: italic;
}
.hero-sub {
  margin-top: 16px; font-size: .97rem; line-height: 1.7;
  color: rgba(255,255,255,0.7); max-width: 460px;
}
.hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: #fff; padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; display: inline-block;
  transition: background .2s; text-align: center;
}
.btn-primary:hover { background: #a93226; }
.btn-outline {
  border: 2px solid #fff; color: #fff; padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; display: inline-block;
  transition: background .2s; text-align: center;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* REQUEST SERVICE FORM */
.hero-form {
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px; border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.hero-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 900; text-transform: uppercase;
  color: #fff; text-align: center; margin-bottom: 20px; letter-spacing: .04em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-row.full { grid-template-columns: 1fr; }
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: .85rem;
  outline: none; transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.hero-form select { color: rgba(255,255,255,0.6); cursor: pointer; }
.hero-form select option { background: #222; color: #fff; }
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus { border-color: var(--red); }
.hero-form textarea { resize: none; height: 80px; margin-bottom: 10px; }
.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--red); flex-shrink: 0; }
.form-check label { font-size: .8rem; color: rgba(255,255,255,0.55); }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; transition: background .2s;
}
.btn-submit:hover { background: #a93226; }

/* TRUST BAR */
.trust {
  background: var(--dark); padding: 18px 24px;
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); padding: 6px 18px;
}
.trust-item strong { color: #fff; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* SERVICES GRID */
.services-wrap { background: var(--bg-off); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
section { padding: 64px 32px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; text-transform: uppercase; color: var(--dark); line-height: 1.05; margin-bottom: 36px; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--rule); border: 1px solid var(--rule); }
.service-card {
  position: relative; text-decoration: none; color: #fff; display: block;
  min-height: 280px; overflow: hidden; transition: transform .2s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card:hover .sc-overlay { opacity: .75; }
.sc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; transition: transform .3s;
}
.service-card:hover .sc-bg { transform: scale(1.04); }
.sc-overlay { position: absolute; inset: 0; transition: opacity .2s; }
.service-card-inner {
  position: relative; z-index: 1; padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center; min-height: 280px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.service-card p { font-size: .84rem; line-height: 1.6; color: rgba(255,255,255,0.88); margin-bottom: 14px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.service-link {
  display: inline-block; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 1px;
}

/* FINANCING STRIP */
.financing-strip { background: var(--dark); padding: 48px 64px; }
.financing-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.financing-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.financing-text p { font-size: .9rem; color: rgba(255,255,255,0.6); max-width: 480px; }

/* SERVICE AREA */
.area-wrap { background: var(--bg-off); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.area-grid { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.city-list span {
  background: #fff; border: 1px solid var(--rule);
  padding: 6px 14px; border-radius: 20px;
  font-size: .82rem; font-weight: 600; color: var(--dark);
}
.area-note { font-size: .82rem; color: var(--mid); font-style: italic; }
.area-badge-col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.northland-badge { text-align: center; }
.northland-badge p { font-size: .72rem; color: var(--mid); margin-top: 10px; }

/* SOCIAL BANNER */
.social-banner {
  position: relative; overflow: hidden;
  background: url('/JShaw/pictures/JS2.jpg') center 30% / cover no-repeat;
  min-height: 420px; display: flex; align-items: center;
}
.social-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.65) 60%, rgba(17,17,17,0.3) 100%);
}
.social-content { position: relative; z-index: 1; padding: 64px; max-width: 600px; }
.social-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; text-transform: uppercase;
  color: #fff; line-height: 1; margin-bottom: 16px;
}
.social-sub { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 480px; }
.social-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.badge {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.btn-fb {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1877F2; color: #fff; padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: background .2s;
}
.btn-fb:hover { background: #0d65d9; }

/* TESTIMONIALS (home page versions) */
.testi-wrap { background: #fff; border-top: 1px solid var(--rule); }
.testi-more { text-align: center; }
.btn-outline-dark {
  display: inline-block; border: 2px solid var(--dark); color: var(--dark);
  padding: 12px 28px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: background .2s;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* HOME PAGE RESPONSIVE ADDITIONS */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: calc(var(--top-h) + 32px) 20px 40px; gap: 32px; }
  .hero-left { text-align: center; }
  .hero-actions { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: calc(var(--top-h) + 24px) 16px 32px; gap: 24px; }
  .hero-left { text-align: center; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; max-width: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-form { border-radius: 0; }
  .trust { padding: 12px 8px; }
  .trust-item { padding: 4px 8px; font-size: .68rem; }
  .financing-strip { padding: 36px 16px; }
  .financing-inner { flex-direction: column; text-align: center; }
  .financing-inner .btn-primary { width: 100%; }
  .area-grid { grid-template-columns: 1fr; gap: 24px; }
  .area-badge-col { display: none; }
  .social-overlay { background: rgba(10,10,10,0.82) !important; }
  .social-content { padding: 36px 20px; }
  .social-content h2 { font-size: 1.9rem; }
  .btn-fb { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .service-card-inner { min-height: 220px; }
  section { padding: 48px 16px; }
}