/* Barlow Condensed — self-hosted (600 SemiBold, 700 Bold) */
@font-face {
  font-family: 'Barlow Condensed';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../assets/Barlow-Condensed/BarlowCondensed-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../assets/Barlow-Condensed/BarlowCondensed-Bold.ttf') format('truetype');
}

/* =============================================================
   Grier's Quality Heating & Air — Main Stylesheet
   Order: tokens → reset → layout → buttons → accessibility →
          cookie → header → hero → index sections → inner pages →
          about → faq → services → contact → quote form → footer →
          404 → utilities → breakpoints
   Mobile-first breakpoints: 480px, 768px, 860px, 1060px.
============================================================= */

/* =====================
   1. Design tokens
===================== */
:root {
  --navy:         #0d1b2a;
  --navy-mid:     #1b2d42;
  --orange:       #f05a28;
  --orange-light: #ff7a47;
  --white:        #ffffff;
  --gray-light:   #f4f5f7;
  --gray-mid:     #9aa5b1;
  --gray-dark:    #4a5568;
  --text:         #1a202c;
  --green:        #22c55e;
  --red:          #ef4444;
  --radius:       6px;
}

/* =====================
   2. Reset / base
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-underline-offset: 2px; }

/* =====================
   3. Layout primitives
===================== */
.section         { padding: 80px 24px; }
.section-inner   { max-width: 1100px; margin: 0 auto; }
.section-label   {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--orange); text-transform: uppercase; margin-bottom: 12px;
}
.section-title   {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.05; margin-bottom: 18px;
}
.section-sub     {
  font-size: 17px; color: var(--gray-dark);
  max-width: 580px; line-height: 1.75; margin-bottom: 48px;
}

/* =====================
   4. Buttons
===================== */
.btn-primary {
  background: var(--orange); color: white;
  padding: 15px 30px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 700; letter-spacing: 0.4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover        { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,90,40,0.45); }
.btn-primary:active       { transform: translateY(0); box-shadow: none; }
.btn-primary:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 3px; }

.btn-secondary {
  background: transparent; color: white;
  padding: 15px 30px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 600;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover        { border-color: white; background: rgba(255,255,255,0.1); }
.btn-secondary:active       { transform: translateY(1px); }
.btn-secondary:focus-visible { outline: 2px solid rgba(255,255,255,0.8); outline-offset: 3px; }

.btn-secondary-outline {
  background: transparent; color: var(--navy);
  padding: 15px 30px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 600;
  text-decoration: none; border: 2px solid var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-secondary-outline:hover        { background: var(--navy); color: white; box-shadow: 0 4px 14px rgba(13,27,42,0.2); }
.btn-secondary-outline:active       { transform: translateY(1px); box-shadow: none; }
.btn-secondary-outline:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.btn-send {
  width: 100%; background: var(--orange); color: white;
  border: none; border-radius: var(--radius);
  padding: 14px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-send:hover        { background: var(--orange-light); box-shadow: 0 4px 16px rgba(240,90,40,0.4); }
.btn-send:active       { transform: translateY(1px); box-shadow: none; }
.btn-send:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 2px; }

/* =====================
   5. Accessibility
===================== */
.skip-link {
  position: absolute; top: 0; left: 0;
  background: var(--orange); color: white;
  padding: 8px 16px; z-index: 10000; font-weight: 600;
  text-decoration: none; transform: translateY(-100%); transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* =====================
   6. Cookie banner
===================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); color: var(--white);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
}
#cookie-banner a { color: var(--orange-light); }
#cookie-banner button {
  background: var(--orange); color: white; border: none;
  border-radius: var(--radius); padding: 8px 18px;
  cursor: pointer; font-family: inherit; font-weight: 600;
  font-size: 13px; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
#cookie-banner button:hover        { background: var(--orange-light); }
#cookie-banner button:active       { transform: translateY(1px); }
#cookie-banner button:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 2px; }

/* =====================
   7. Site header
===================== */
header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  padding: 0 24px;
}
.header-main {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1100px; margin: 0 auto; height: 84px;
}
.logo { text-decoration: none; flex-shrink: 0; line-height: 0; display: block; }
.logo-img { height: 72px; width: auto; display: block; }

/* Desktop nav */
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 8px 13px; border-radius: var(--radius);
  font-weight: 500; font-size: 14px;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
nav a:active { background: rgba(255,255,255,0.18); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.6);
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--navy-mid); min-width: 210px;
  border-radius: var(--radius); padding: 6px 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 16px;
  color: rgba(255,255,255,0.75); font-size: 14px;
  border-radius: 0; background: none;
}
.dropdown-menu a:hover  { background: rgba(255,255,255,0.07); color: white; }
.dropdown-menu a:active { background: rgba(255,255,255,0.14); }

.header-phone {
  color: var(--orange-light) !important; font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 7px;
}
.header-phone svg { flex-shrink: 0; }
.btn-cta-header {
  background: var(--orange); color: var(--white) !important;
  padding: 10px 20px !important; border-radius: var(--radius) !important;
  font-weight: 600 !important; margin-left: 6px; transition: background 0.2s !important;
}
.btn-cta-header:hover        { background: var(--orange-light) !important; }
.btn-cta-header.active-page  {
  background: var(--orange-light) !important;
  outline: 2px solid rgba(255,255,255,0.3); outline-offset: 2px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: 0.3s;
}
.hamburger:hover span { background: rgba(255,255,255,0.7); }
.hamburger:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--navy-mid); padding: 12px 20px 24px;
}
.mobile-nav > a {
  color: var(--white); text-decoration: none;
  padding: 13px 0; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.mobile-nav .mobile-nav-phone { color: var(--orange-light); }
.mobile-nav > a:hover { color: var(--orange-light); }
.mobile-nav .mobile-nav-phone:hover { opacity: 0.8; }
.mobile-dropdown { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-dropdown-toggle {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  width: 100%; background: none; border: none; color: var(--white);
  padding: 13px 0; margin: 0; font-size: 16px; font-weight: 500; cursor: pointer;
  font-family: 'Barlow', sans-serif;
}
.mobile-dropdown-toggle .chevron {
  display: block; flex-shrink: 0;
  transition: transform 0.2s; transform-origin: center;
}
.mobile-dropdown.open .mobile-dropdown-toggle .chevron { transform: rotate(180deg); }
.mobile-dropdown-panel { display: none; flex-direction: column; padding-bottom: 8px; }
.mobile-dropdown.open .mobile-dropdown-panel { display: flex; }
.mobile-dropdown-panel a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 9px 0 9px 14px; font-size: 14px;
}
.mobile-dropdown-panel a:hover  { color: var(--white); }
.mobile-dropdown-panel a:active { color: var(--orange-light); }
.mobile-dropdown-toggle:hover   { color: var(--orange-light); }
.mobile-nav.open { display: flex; }

/* =====================
   8. Hero (index)
===================== */
.hero {
  position: relative; overflow: hidden; min-height: 620px;
  display: flex; align-items: center;
  background-image: url('https://images.pexels.com/photos/5463575/pexels-photo-5463575.jpeg?auto=compress&cs=tinysrgb&w=1800&h=1000&fit=crop');
  background-size: cover; background-position: center 40%;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 90% 110% at 55% 50%, transparent 38%, rgba(13,27,42,0.55) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1260px; margin: 0 auto; width: 100%;
  padding: 72px 48px 88px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}
.hero-content { flex: 0 0 auto; max-width: 400px; }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 700;
  color: var(--white); line-height: 1.0; margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.95), 0 1px 8px rgba(0,0,0,0.85), 0 6px 60px rgba(0,0,0,0.8);
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  color: #ffffff; font-size: 21px;
  margin-bottom: 36px; max-width: 380px; line-height: 1.6;
  text-shadow: 0 1px 20px rgba(0,0,0,0.9), 0 2px 40px rgba(0,0,0,0.8);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.hero-ctas a { width: 100%; justify-content: center; }

/* Hero form card */
.hero-form-card {
  flex: 0 0 390px;
  background: rgba(10,22,38,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--orange);
  border-radius: 10px; padding: 32px 28px 28px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}
.hero-form-card .form-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--orange);
  margin-bottom: 24px; line-height: 1.2;
}
.hero-form-card .form-heading span { color: var(--orange); }
.hero-form-card .form-group       { margin-bottom: 14px; }
.hero-form-card .form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75); margin-bottom: 6px;
}
.hero-form-card .form-group input,
.hero-form-card .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 11px 14px;
  font-family: inherit; font-size: 14px;
  color: var(--white); outline: none; transition: border-color 0.2s;
}
.hero-form-card .form-group input::placeholder,
.hero-form-card .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.hero-form-card .form-group input:focus,
.hero-form-card .form-group textarea:focus  { border-color: var(--orange); }
.hero-form-card .form-group textarea { resize: none; }
.form-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 18px; line-height: 1.5;
}
.form-check input[type="checkbox"] {
  margin-top: 2px; flex-shrink: 0; accent-color: var(--orange);
}
.form-check a { color: var(--orange-light); }

/* =====================
   9. Services strip (index)
===================== */
.services-strip {
  background: var(--gray-light); padding: 36px 24px;
  border-top: 3px solid var(--orange);
}
.services-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px;
}
.service-pill {
  background: white; border-radius: var(--radius);
  padding: 18px 16px; text-align: center;
  font-weight: 600; font-size: 14px; color: var(--navy);
  border: 1px solid #e2e8f0; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.service-pill:hover  { border-color: var(--orange); color: var(--orange); box-shadow: 0 6px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.service-pill:active { transform: translateY(0); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.sp-icon-wrap {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.service-pill:hover .sp-icon-wrap { background: rgba(240,90,40,0.1); }
.sp-icon-wrap svg { display: block; }

/* =====================
   10. Why choose us (index)
===================== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px;
}
.why-card {
  background: var(--gray-light); border-radius: 10px;
  padding: 32px 26px; border-left: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.wc-icon-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(240,90,40,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.wc-icon-wrap svg { display: block; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: var(--gray-dark); line-height: 1.65; }

/* =====================
   11. CTA inline (index)
===================== */
.cta-inline { text-align: center; padding: 28px 24px; }
.cta-inline p { font-size: 15px; color: var(--gray-dark); }
.cta-inline a { color: var(--orange); font-weight: 600; text-decoration: none; }
.cta-inline a:hover { text-decoration: underline; }

/* =====================
   12. Testimonials (index)
===================== */
.testimonials { background: var(--gray-light); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.testi-card {
  background: white; border-radius: 10px;
  padding: 30px 26px; border: 1px solid #e2e8f0; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.testi-stars   { color: #f5a623; font-size: 17px; margin-bottom: 14px; }
.testi-text    { font-size: 15px; color: var(--gray-dark); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author  { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-location{ font-size: 12px; color: var(--gray-mid); margin-top: 2px; }
.testi-badge   {
  position: absolute; top: 22px; right: 22px;
  background: #4285f4; color: white;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 3px;
}

/* =====================
   13. Service area (index + contact)
===================== */
.service-area         { padding: 80px 24px; }
.service-area-inner   {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.area-map-placeholder {
  background: #e8f0fe; border-radius: 12px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: #4a5568; font-size: 14px; border: 2px dashed #b0bec5;
  text-align: center; padding: 24px;
}
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tag  {
  background: var(--gray-light); padding: 7px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600; color: var(--navy); border: 1px solid #e2e8f0;
}

/* =====================
   14. Page hero (inner pages)
===================== */
.page-hero {
  background: var(--navy); padding: 64px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,45,66,0.6) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  color: white; margin-bottom: 14px; line-height: 1.05;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; }

/* =====================
   15. About page
===================== */
.about-section { padding: 80px 24px; }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-placeholder {
  background: var(--gray-light); border-radius: 12px; aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed #cbd5e0; color: var(--gray-dark); text-align: center;
  padding: 24px; font-size: 14px;
}
.about-text { font-size: 16px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 16px; }

/* Credentials bar */
.credentials-bar { background: var(--gray-light); padding: 48px 24px; border-top: 3px solid var(--orange); }
.creds-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px;
}
.cred-item { text-align: center; padding: 28px 16px; }
.cred-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(240,90,40,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.cred-icon-wrap svg { display: block; }
.cred-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cred-desc  { font-size: 13px; color: var(--gray-dark); line-height: 1.5; }

/* Team */
.team-section { padding: 80px 24px; }
.team-inner   { max-width: 1100px; margin: 0 auto; }
.team-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 44px; }
.team-card    { background: var(--gray-light); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.team-img     { background: #c8d6e5; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; color: var(--navy-mid); }
.team-img svg { display: block; }
.team-info    { padding: 22px; }
.team-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-info p  { font-size: 13px; color: var(--gray-dark); line-height: 1.65; }

/* About CTA */
.about-cta { padding: 80px 24px; text-align: center; background: var(--gray-light); }
.about-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.about-cta p { font-size: 17px; color: var(--gray-dark); margin-bottom: 32px; }

/* =====================
   16. FAQ (about page)
===================== */
.faq-section { background: var(--navy); padding: 80px 24px; }
.faq-inner   { max-width: 800px; margin: 0 auto; }
.faq-section .section-title { color: white; }
.faq-section .section-label { color: var(--orange-light); }
.faq-list    { margin-top: 44px; }
.faq-item    { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 600;
  color: white; transition: color 0.2s;
}
.faq-question:hover        { color: var(--orange-light); }
.faq-question:active       { color: var(--orange); }
.faq-question:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.faq-arrow { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.75; }
.faq-answer-inner { padding: 0 0 20px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* =====================
   17. Services page
===================== */
.svc-intro { padding: 64px 24px 0; }
.svc-intro-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px;
  padding-bottom: 48px; border-bottom: 1px solid #e2e8f0;
}
.svc-jump {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--gray-light); border: 1px solid #e2e8f0;
  border-radius: var(--radius); padding: 20px 16px; text-align: center;
  font-weight: 600; font-size: 14px; color: var(--navy);
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.svc-jump:hover  { border-color: var(--orange); color: var(--orange); background: white; box-shadow: 0 6px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.svc-jump:active { transform: translateY(0); box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.svc-jump-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.svc-jump:hover .svc-jump-icon { background: rgba(240,90,40,0.08); }
.svc-jump-icon svg { display: block; }

/* Service detail sections */
.svc-detail { padding: 80px 24px; }
.svc-detail:nth-child(even) { background: var(--gray-light); }
.svc-detail-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.svc-detail-inner.reverse > *:first-child { order: 2; }
.svc-detail-inner.reverse > *:last-child  { order: 1; }

.svc-img-placeholder {
  background: var(--navy-mid); border-radius: 12px; aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 14px; text-align: center; padding: 24px;
  border: 2px dashed rgba(255,255,255,0.15);
}
.svc-icon-lg {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(240,90,40,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.svc-icon-lg svg { display: block; }
.svc-includes {
  list-style: none; margin-top: 24px; margin-bottom: 32px;
}
.svc-includes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--gray-dark); padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
}
.svc-includes li:last-child { border-bottom: none; }
.svc-includes li::before {
  content: '';
  flex-shrink: 0; margin-top: 6px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}

/* Emergency CTA band */
.emergency-band {
  background: var(--orange); padding: 56px 24px; text-align: center;
}
.emergency-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: white; margin-bottom: 12px;
}
.emergency-band p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }
.emergency-band a.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--orange);
  padding: 16px 36px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.emergency-band a.btn-white:hover { background: var(--navy); color: white; }

/* =====================
   18. Contact page
===================== */
.contact-layout {
  max-width: 1100px; margin: 0 auto; padding: 72px 24px 80px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}
.contact-info-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px;
}
.contact-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(240,90,40,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { display: block; }
.contact-item-body { flex: 1; }
.contact-item-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 4px;
}
.contact-item-value { font-size: 16px; color: var(--navy); font-weight: 600; }
.contact-item-sub   { font-size: 13px; color: var(--gray-dark); margin-top: 2px; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 5px 0; font-size: 14px; color: var(--gray-dark); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 130px; }

.emergency-strip {
  background: var(--orange); border-radius: var(--radius);
  padding: 20px 22px; margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
}
.emergency-strip-icon { flex-shrink: 0; color: white; }
.emergency-strip-icon svg { display: block; }
.emergency-strip p { color: white; font-size: 14px; line-height: 1.5; }
.emergency-strip a { color: white; font-weight: 700; text-decoration: underline; }

/* Contact form card */
.contact-form-card {
  background: var(--gray-light); border-radius: 12px;
  padding: 40px 36px; border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-form-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.contact-form-card p.sub { font-size: 14px; color: var(--gray-dark); margin-bottom: 28px; }

/* =====================
   19. General forms
===================== */
.form-group            { margin-bottom: 20px; }
.form-group label,
label                  {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
label .req { color: var(--orange); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e2e8f0; border-radius: var(--radius);
  font-family: inherit; font-size: 15px;
  color: var(--text); background: white;
  transition: border-color 0.2s; appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,90,40,0.12);
}
input:invalid:not(:placeholder-shown) { border-color: var(--red); }
textarea { resize: vertical; min-height: 100px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa5b1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }

/* Optin / consent checkboxes */
.optin-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.optin-row input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--orange); flex-shrink: 0;
}
.optin-row label { font-size: 13px; color: var(--gray-dark); font-weight: 400; }

/* Privacy note */
.privacy-note {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px;
  padding: 14px 16px; font-size: 13px; color: #166534; margin-bottom: 8px;
  display: flex; align-items: flex-start; gap: 8px;
}
.privacy-note svg { flex-shrink: 0; margin-top: 1px; }
.privacy-note a { color: #166534; }

/* Form status message */
.form-status {
  margin-top: 10px; font-size: 14px; color: var(--gray-dark);
  min-height: 1.4em;
}
.form-status.success { color: var(--green); font-weight: 600; }
.form-status.error   { color: var(--red); }

/* =====================
   20. Quote form (quote.html)
===================== */
.page-wrap {
  max-width: 1000px; margin: 0 auto; padding: 48px 20px 80px;
  display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start;
}
.page--gray { background: var(--gray-light); }
.page--gray .btn-cta-header,
.page--gray a.btn-footer-quote { display: none; }

/* Progress bar */
.progress-bar {
  background: white; border-radius: 10px; padding: 20px 24px;
  margin-bottom: 28px; border: 1px solid #e2e8f0;
}
.steps { display: flex; align-items: center; }
.step  { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 16px;
  left: calc(50% + 16px); right: calc(-50% + 16px);
  height: 2px; background: #e2e8f0; z-index: 0;
}
.step:not(:last-child).done::after { background: var(--green); }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; background: white;
  position: relative; z-index: 1; color: var(--gray-mid); transition: all 0.3s;
}
.step.active .step-dot { border-color: var(--orange); background: var(--orange); color: white; }
.step.done   .step-dot { border-color: var(--green);  background: var(--green);  color: white; }
.step-label  { font-size: 11px; font-weight: 600; color: var(--gray-mid); margin-top: 6px; text-align: center; }
.step.active .step-label { color: var(--orange); }
.step.done   .step-label { color: var(--green); }

/* Form card */
.form-card     { background: white; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.form-step     { display: none; padding: 32px; }
.form-step.active { display: block; }
.form-step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-step-sub   { font-size: 14px; color: var(--gray-dark); margin-bottom: 28px; }

/* Tile selectors */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.tile-label {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 16px 10px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  cursor: pointer; text-align: center; font-size: 13px; font-weight: 600;
  color: var(--gray-dark); transition: all 0.2s;
}
.tile-label:hover        { border-color: var(--orange); color: var(--navy); }
.tile-label:active       { transform: scale(0.97); }
.tile-label:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.tile-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.tile-label:has(input:checked) { border-color: var(--orange); background: rgba(240,90,40,0.06); color: var(--orange); }
.tile-icon { display: flex; align-items: center; justify-content: center; }
.tile-icon svg { display: block; }

/* Urgency selector */
.urgency-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.urgency-label {
  padding: 14px 8px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  cursor: pointer; text-align: center; font-size: 13px; font-weight: 600;
  color: var(--gray-dark); transition: all 0.2s;
}
.urgency-label:hover        { border-color: var(--orange); color: var(--navy); }
.urgency-label:active       { transform: scale(0.97); }
.urgency-label:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.urgency-label:has(input:checked) { border-color: var(--orange); background: rgba(240,90,40,0.06); color: var(--orange); }
.urgency-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.urgency-icon  { display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.urgency-icon svg { display: block; }

/* File upload */
.file-upload-area {
  border: 2px dashed #cbd5e0; border-radius: 8px;
  padding: 28px 24px; text-align: center; cursor: pointer;
  transition: border-color 0.2s; color: var(--gray-dark); font-size: 14px;
}
.file-upload-area:hover { border-color: var(--orange); }
.file-upload-area input { display: none; }

/* Form nav (prev/next) */
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 32px; border-top: 1px solid #f0f0f0; background: var(--gray-light);
}
.btn-back {
  background: none; border: 1.5px solid #cbd5e0;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--gray-dark); cursor: pointer; transition: all 0.2s;
}
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-next {
  background: var(--orange); color: white; border: none;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.btn-next:hover   { background: var(--orange-light); }
.btn-next:active  { transform: translateY(1px); }
.btn-back:active  { transform: translateY(1px); }
.btn-next:focus-visible,
.btn-back:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Success state */
.success-screen { display: none; padding: 48px 32px; text-align: center; }
.success-screen.active { display: block; }
.success-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.success-screen h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.success-screen p { font-size: 16px; color: var(--gray-dark); max-width: 480px; margin: 0 auto 16px; line-height: 1.7; }

/* Sidebar */
.sidebar-box {
  background: white; border-radius: 10px; border: 1px solid #e2e8f0;
  padding: 24px; margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.sidebar-box h3 {
  font-size: 15px; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0;
}
.sidebar-call-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--orange); color: white; text-decoration: none;
  padding: 14px 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 17px; margin-bottom: 10px; transition: background 0.2s;
}
.sidebar-call-btn:hover        { background: var(--orange-light); }
.sidebar-call-btn:active       { transform: translateY(1px); }
.sidebar-call-btn:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 2px; }
.sidebar-call-btn svg  { flex-shrink: 0; }
.trust-list { list-style: none; }
.trust-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--gray-dark);
  padding: 6px 0; border-bottom: 1px solid #f5f5f5;
}
.trust-list li:last-child { border-bottom: none; }
.trust-check { color: var(--green); font-weight: 700; font-size: 15px; }
.review-stars { color: #f5a623; font-size: 18px; margin-bottom: 8px; }
.review-text  { font-size: 13px; color: var(--gray-dark); font-style: italic; line-height: 1.6; margin-bottom: 8px; }
.review-name  { font-size: 12px; font-weight: 700; color: var(--navy); }

/* =====================
   21. Footer — full
===================== */
footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-main {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 24px 44px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px;
}
.footer-logo { display: block; margin-bottom: 14px; text-decoration: none; line-height: 0; opacity: 1; transition: opacity 0.2s; }
.footer-logo:hover { opacity: 0.85; }
.footer-logo:active { opacity: 0.7; }
.footer-logo-img { width: 170px; display: block; }
.footer-desc  { font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.footer-social{ display: flex; gap: 10px; }
.social-btn   {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; font-size: 12px; font-weight: 700; transition: background 0.2s;
}
.social-btn:hover        { background: var(--orange); }
.social-btn:active       { transform: scale(0.92); }
.social-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.footer-col h4 {
  color: white; font-size: 14px; font-weight: 700;
  margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 14px; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover  { color: var(--orange-light); }
.footer-col a:active { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.footer-contact-icon { color: var(--orange); margin-top: 1px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover  { color: var(--orange-light); }
.footer-contact-item a:active { color: var(--orange); }

/* Footer — minimal (quote page) */
.footer-min {
  max-width: 1100px; margin: 0 auto;
  padding: 36px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center;
}
.footer-min .footer-logo { margin-bottom: 0; }
.footer-min .footer-logo-img { width: 150px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; padding: 4px 12px; transition: color 0.2s; }
.footer-links a:hover  { color: var(--orange-light); }
.footer-links a:active { color: var(--orange); }

/* Footer quote button */
a.btn-footer-quote {
  background: transparent; color: rgba(255,255,255,0.65) !important;
  padding: 6px 14px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center;
  text-decoration: none !important; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
a.btn-footer-quote:hover        { border-color: var(--orange-light); color: var(--orange-light) !important; }
a.btn-footer-quote:active       { transform: translateY(1px); }
a.btn-footer-quote:focus-visible { outline: 2px solid var(--orange-light); outline-offset: 2px; }
.footer-bottom-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; max-width: 1100px; margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover  { color: var(--orange-light); }
.footer-bottom a:active { color: var(--orange); }

/* =====================
   22. Prose page (privacy policy, etc.)
===================== */
.prose-page { background: var(--navy); min-height: calc(100vh - 130px); }
.prose-page-inner {
  max-width: 720px; margin: 0 auto;
  padding: 64px 24px 80px;
  color: rgba(255,255,255,0.8);
}
.prose-page-inner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.prose-meta { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 36px; }
.prose-page-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  margin: 36px 0 10px; letter-spacing: 0.3px;
}
.prose-page-inner p  { margin-bottom: 14px; line-height: 1.75; font-size: 15px; }
.prose-page-inner ul { margin: 0 0 14px 20px; }
.prose-page-inner li { margin-bottom: 6px; line-height: 1.7; font-size: 15px; }
.prose-page-inner a  { color: var(--orange-light); }
.prose-page-inner a:hover { text-decoration: underline; }

/* =====================
   23. 404 page
===================== */
.error-page {
  min-height: calc(100vh - 84px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 24px; text-align: center;
}
.error-page .error-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 15vw, 140px); font-weight: 700;
  color: var(--gray-light); line-height: 1; margin-bottom: 0;
}
.error-page h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 42px); font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.error-page p { font-size: 17px; color: var(--gray-dark); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.error-page-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* =====================
   23a. Form success cards (contact-form.js)
===================== */
.form-success-card {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 48px 24px; min-height: 280px;
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(34,197,94,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; margin-bottom: 12px;
}
.form-success-card p {
  font-size: 15px; line-height: 1.7; margin-bottom: 24px; max-width: 280px;
}
.hero-form-card .form-success-card h3   { color: var(--white); }
.hero-form-card .form-success-card p    { color: rgba(255,255,255,0.65); }
.contact-form-card .form-success-card h3 { color: var(--navy); }
.contact-form-card .form-success-card p  { color: var(--gray-dark); }
.form-success-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white; text-decoration: none;
  padding: 12px 22px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; transition: background 0.2s;
}
.form-success-call:hover        { background: var(--orange-light); }
.form-success-call:active       { transform: translateY(1px); }
.form-success-call:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 2px; }

/* =====================
   24. Utilities
===================== */
.text-orange  { color: var(--orange); }
.text-center  { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden-seo {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.field-honeypot { display: none !important; }

/* =====================
   25. Responsive
===================== */
@media (max-width: 1060px) {
  .hero-inner    { padding: 60px 32px 72px; gap: 32px; }
  .hero-form-card{ flex: 0 0 360px; }
}

@media (max-width: 860px) {
  .hero-inner    { flex-direction: column; align-items: center; padding: 44px 24px 60px; }
  .hero-content  { max-width: 100%; text-align: center; }
  .hero-form-card{ flex: 0 0 auto; width: 100%; max-width: 480px; }
  .hero          { min-height: auto; }
  .hero h1       { font-size: clamp(46px, 12vw, 64px); }
  .hero-content  { padding: 16px 0 24px; }
  .svc-detail-inner       { grid-template-columns: 1fr; }
  .svc-detail-inner.reverse > *:first-child { order: unset; }
  .svc-detail-inner.reverse > *:last-child  { order: unset; }
  .svc-img-placeholder    { display: none; }
}

@media (max-width: 768px) {
  nav                  { display: none; }
  .hamburger           { display: flex; }
  .section             { padding: 56px 20px; }
  .footer-main         { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .service-area-inner  { grid-template-columns: 1fr; }
  .area-map-placeholder{ display: none; }
  #cookie-banner       { flex-direction: column; text-align: center; }
  .about-inner         { grid-template-columns: 1fr; }
  .about-img-placeholder { display: none; }
  .contact-layout      { grid-template-columns: 1fr; }
  .page-wrap           { grid-template-columns: 1fr; padding: 24px 16px 60px; }
  .sidebar             { order: -1; }
  .sidebar-box:not(:first-child) { display: none; }
  .field-row           { grid-template-columns: 1fr; }
  .form-step           { padding: 20px; }
  .form-nav            { padding: 16px 20px; }
  .contact-form-card   { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .footer-main  { grid-template-columns: 1fr; }
  .hero-ctas    { flex-direction: column; }
  .hero-ctas a  { text-align: center; justify-content: center; }
  .error-page-links { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
