/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--light-gray);
}

body > main,
body > #MainContent,
body .site-main {
  flex: 0 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: 0.04em;
}

/* ===== COLOR VARIABLES ===== */
:root {
  --red: #C0392B;
  --red-dark: #A93226;
  --dark: #231F20;
  --dark-overlay: rgba(35, 31, 32, 0.85);
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --gray-border: #ccc;
  --text-dark: #333;
  --text-light: #999;
  --floating-widget-gap: 12px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-bar-links>a,
.top-bar-dropdown>a {
  color: var(--white);
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s;
  text-decoration: none;
}

.top-bar-links>a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-dropdown:first-of-type>a {
  border-left: none;
}

.top-bar-links>a:hover,
.top-bar-dropdown>a:hover {
  color: var(--red);
  text-decoration: underline;
}

/* Top bar dropdowns */
.top-bar-dropdown {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-dropdown>a {
  border-right: none;
}

.top-bar-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.3s ease;
  z-index: 2001;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 6px;
  scrollbar-width: thin;
  scrollbar-color: #b5b5b5 #f1f1f1;
}

.top-bar-dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.top-bar-dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.top-bar-dropdown-menu::-webkit-scrollbar-thumb {
  background: #b5b5b5;
  border-radius: 8px;
}

.top-bar-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #9a9a9a;
}

.top-bar-dropdown:hover .top-bar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-bar-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.top-bar-dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--red);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}

.price-match {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  animation: flashText 2s ease-in-out infinite;
}

@keyframes flashText {

  0%,
  100% {
    opacity: 1;
    color: var(--red);
  }

  50% {
    opacity: 1;
    color: #ffcc00;
  }
}

.top-bar .phone-link {
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.logo-icon {
  width: auto;
  height: 80px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--red);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin-left: 6px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.nav-list>li {
  position: relative;
}

.nav-list>li>a {
  display: block;
  padding: 20px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--dark);
  transition: color 0.3s, background 0.3s;
}

.nav-list>li>a:hover,
.nav-list>li:hover>a {
  color: var(--red);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-list>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
  transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover {
  background: var(--light-gray);
  color: var(--red);
}

.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

/* CTA nav buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
  flex-shrink: 0;
}

.nav-cta .btn-estimate {
  display: inline-block;
  padding: 10px 22px;
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

.nav-cta .btn-estimate:hover {
  background: var(--red-dark) !important;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.search-btn:hover {
  color: var(--red);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--light-gray);
  z-index: 2000;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-overlay.open {
  transform: translateY(0);
}

.search-overlay-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  position: relative;
  text-align: center;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.search-close:hover {
  color: var(--red);
}

.search-overlay-heading {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.search-box {
  background: var(--dark);
  padding: 50px 40px;
}

.search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.search-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  border: none;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
}

.search-input::placeholder {
  color: #999;
}

.search-submit {
  padding: 16px 30px;
  background: transparent;
  border: none;
  color: #888;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
}

.search-submit:hover {
  color: var(--red);
}

/* Search results */
.search-results {
  margin-top: 20px;
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
}

.results-count {
  color: #ccc;
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-align: center;
}

.search-result-item {
  display: block;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.search-result-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.9rem;
}

.search-result-item span {
  font-size: 0.82rem;
  color: #ccc;
  line-height: 1.5;
}

.search-result-item mark {
  background: var(--red);
  color: var(--white);
  padding: 1px 3px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(35, 31, 32, 0.7) 0%, rgba(35, 31, 32, 0.3) 60%, rgba(35, 31, 32, 0.1) 100%);
}

/* Red diagonal accent — wide enough for copy + two CTAs on one row */
.hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.85) 0%, rgba(169, 50, 38, 0.7) 50%, rgba(192, 57, 43, 0.4) 100%);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  z-index: 1;
}

.hero-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.06) 10px,
      rgba(0, 0, 0, 0.06) 20px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 40px;
}

.hero:has(.hero-accent) {
  background-position: 72% center;
}

.hero:has(.hero-accent) .hero-content {
  box-sizing: border-box;
  min-width: 0;
  max-width: min(780px, calc(52% * 0.88 - 48px));
}

.hero:has(.hero-accent) .hero-buttons {
  flex-wrap: nowrap;
  align-items: center;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .hero:has(.hero-accent) .hero-buttons .btn-red,
  .hero:has(.hero-accent) .hero-buttons .btn-outline-white {
    padding: 12px 18px;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
  }
}

@media (max-width: 820px) and (min-width: 769px) {
  .hero:has(.hero-accent) .hero-buttons {
    flex-wrap: wrap;
  }
}

.hero:has(.hero-accent) .hero-tagline {
  max-width: 100%;
}

.hero-roof-icon {
  margin-bottom: 16px;
}

.roof-accent-image {
  display: inline-block;
  height: auto;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-heading {
  font-size: 2.5rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.hero-subheading {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.hero-tagline {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-see-recent-work{
  padding: 14px 30px;
  border: 2px solid #000000;
  color:#000000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;

}

.btn-see-recent-work:hover {
  background: var(--white);
  color: var(--dark);
}


.btn-outline-white {
  padding: 14px 30px;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-red {
  padding: 14px 30px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border: 2px solid var(--red);
  transition: all 0.3s;
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-red:visited,
.btn-red:focus,
.btn-red:active {
  color: var(--white);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: currentColor;
}

.section-eyebrow--center {
  justify-content: center;
}

.section-eyebrow--light {
  color: var(--white);
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== PROBLEM SELECTOR ===== */
.problem-selector {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.problem-selector h2,
.inspection-process h2,
.proof-copy h2 {
  font-size: 2.2rem;
  color: var(--dark);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 24px;
  background: var(--light-gray);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: 18px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 57, 43, 0.34);
  box-shadow: 0 16px 32px rgba(35, 31, 32, 0.08);
}

.problem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.12);
  color: var(--red);
  font-size: 1.5rem;
}

.problem-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.problem-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 80px 0;
  background: var(--light-gray);
}

.services-overview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-text .roof-icon {
  color: var(--red);
  font-size: 3rem;
  margin-bottom: 16px;
}

.services-title {
  font-size: 2.6rem;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.services-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.services-text .service-list {
  margin: 16px 0 20px;
  padding-left: 0;
}

.services-text .service-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.services-text .service-list li::before {
  content: '•';
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.services-text .service-list li a {
  color: var(--red);
  font-weight: 600;
  transition: color 0.2s;
}

.services-text .service-list li a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.services-cta-copy {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 3px solid rgba(192, 57, 43, 0.2);
  font-weight: 600;
}

.services-image-wrap {
  position: relative;
}

.services-image-frame {
  position: relative;
}

.services-image-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: var(--red);
  z-index: 0;
  transform: rotate(2deg);
}

.services-image-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.services-image-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.services-image-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.services-image-wrap > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.services-slider-pause {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.services-slider-pause:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #fff;
}

.services-slider-description {
  margin: 20px 0 0;
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #333;
}

/* ===== FEATURED SERVICES ===== */
.featured-services {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.section-icon {
  color: var(--red);
  font-size: 3rem;
  margin-bottom: 10px;
}

.featured-services h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--light-gray);
  border: 1px solid var(--gray-border);
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid--expanded {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border: 1px solid var(--gray-border);
  transition: all 0.3s;
  background: var(--white);
  cursor: pointer;
  min-height: 180px;
}

.service-card:hover {
  background: var(--red);
  transform: none;
  box-shadow: none;
}

.service-card:hover .icon svg path,
.service-card:hover .icon svg circle,
.service-card:hover .icon svg ellipse,
.service-card:hover .icon svg line,
.service-card:hover .icon svg polyline,
.service-card:hover .icon svg polygon,
.service-card:hover .icon svg rect {
  fill: var(--white);
  stroke: var(--white);
}

.service-card:hover .icon svg path[fill="none"] {
  fill: none;
}

.service-card .icon {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 16px;
}

.site-inline-icon {
  display: block;
}

.service-card .icon,
.value-prop .prop-icon,
.floating-bar a .bar-icon,
.check-icon,
.faq-question .toggle-icon,
.booking-widget__summary-icon,
.booking-widget__success-badge,
.booking-widget__info-icon,
.booking-widget__primary-action-icon,
.booking-widget__quick-action-icon,
.help-chat-panel__action-icon,
.booking-widget__option-check,
.contact-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.service-card .icon svg,
.floating-bar a .bar-icon svg,
.check-icon svg,
.faq-question .toggle-icon svg,
.booking-widget__primary-action-icon svg,
.booking-widget__quick-action-icon svg,
.help-chat-panel__action-icon svg,
.booking-widget__option-check svg,
.contact-detail-icon svg {
  width: 1em;
  height: 1em;
}

.about-pillar-card .icon svg {
  width: 28px;
  height: 28px;
}

.value-prop .prop-icon svg {
  width: 22px;
  height: 22px;
}

.booking-widget__summary-icon svg {
  width: 16px;
  height: 16px;
}

.booking-widget__info-icon svg {
  width: 18px;
  height: 18px;
}

.booking-widget__success-badge svg {
  width: 26px;
  height: 26px;
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

.service-card__copy {
  margin-top: 10px;
  max-width: 260px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666;
  text-align: center;
}

.service-card:hover .service-card__copy {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== INSPECTION PROCESS ===== */
.inspection-process {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.inspection-step {
  padding: 30px 24px;
  background: var(--light-gray);
  border-radius: 20px;
  text-align: left;
}

.inspection-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.inspection-step h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.inspection-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

/* ===== PROOF SECTION ===== */
.proof-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f6f3f3 100%);
}

.proof-section .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.proof-copy p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.proof-list {
  margin: 22px 0 28px;
}

.proof-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

.proof-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.proof-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.proof-panel {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 36px rgba(35, 31, 32, 0.08);
}

.proof-panel img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.proof-panel__body {
  padding: 22px;
}

.proof-panel__label {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-panel h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.proof-panel__body p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

/* ===== AREAS SERVED ===== */
.areas-served {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}

.areas-served .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.areas-map {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.areas-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.areas-info h2,
.areas-info h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.areas-info>p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  margin-bottom: 28px;
}

.areas-list li {
  font-size: 0.9rem;
  position: relative;
  padding-left: 16px;
}

.areas-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* ===== COMMITMENT / WHY CHOOSE US ===== */
.commitment {
  padding: 80px 0;
  background: var(--light-gray);
}

.commitment .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.commitment-text h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.commitment-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

.commitment-text ul {
  margin: 16px 0;
}

.commitment-text ul li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #555;
}

.commitment-text ul li::before {
  content: '•';
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.commitment-text ul li strong {
  color: var(--dark);
}

.commitment-text .cta-text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 3px solid var(--red);
  text-align: center;
  font-size: 0.95rem;
}

.commitment-text .cta-text a {
  color: var(--red);
  font-weight: 700;
}

/* Value Props */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.value-prop {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-prop .prop-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.value-prop h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-prop p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666;
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 45%, var(--dark) 100%);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.2;
}

.cta-band p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-band .btn-outline-white {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.cta-band .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 31, 32, 0.75);
}

.testimonials .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.testimonial-header {
  color: var(--white);
}

.testimonial-header h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.testimonial-header p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.testimonial-header .btn-red {
  display: inline-block;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--dark);
  padding: 40px;
  color: var(--white);
}

.stars {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .author::before {
  content: '– ';
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ===== CONTACT & FAQ ===== */
.contact-faq {
  padding: 80px 0;
  background: var(--white);
}

.contact-faq .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--dark);
  padding: 50px 40px;
  color: var(--white);
}

.contact-form-wrap .roof-icon {
  color: var(--red);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 8px;
}

.contact-form-wrap h2 {
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.contact-form-wrap>p {
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 30px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.contact-detail {
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.contact-detail__label {
  display: block;
  margin-bottom: 8px;
  color: #bbb;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span:last-child {
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid var(--gray-border);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin: 16px 0;
  line-height: 1.5;
}

.form-disclaimer a {
  color: #bbb;
  text-decoration: underline;
}

.contact-form__status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

.contact-form__status.is-success {
  background: #eef8f0;
  color: #215f33;
  border: 1px solid #b9dec0;
}

.contact-form__status.is-error {
  background: #fff2f1;
  color: #9b2f25;
  border: 1px solid #efc3bf;
}

.btn-submit {
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 14px 40px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--red-dark);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* FAQ */
.faq-section .roof-icon {
  color: var(--red);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.faq-section h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-section h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.faq-section>p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 8px;
  background: var(--light-gray);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #eee;
}

.faq-question .toggle-icon {
  color: var(--red);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question .toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

.btn-view-faqs {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: background 0.3s;
}

.btn-view-faqs:hover {
  background: var(--red-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--dark);
  background-image: repeating-linear-gradient(
    -36deg,
    transparent,
    transparent 14px,
    rgba(192, 57, 43, 0.07) 14px,
    rgba(192, 57, 43, 0.07) 15px
  );
  color: var(--white);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col p {
  font-size: 0.88rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: capitalize;
}

.footer-col--location {
  text-align: center;
}

.footer-col--location h4 {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-col--location .footer-hours-heading {
  margin-top: 22px;
  margin-bottom: 10px;
}

.footer-col--location .footer-address,
.footer-col--location .footer-hours-line {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 6px;
}

.footer-col--location .footer-hours-line strong {
  font-weight: 700;
  color: var(--white);
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-logo .logo-icon {
  margin-bottom: -4px;
}

.footer-logo-image {
  height: 100px;
  width: auto;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.12em;
}

.footer-logo-text span {
  color: var(--red);
}

.footer-label {
  font-weight: 700;
  color: var(--white) !important;
  font-size: 0.9rem !important;
  margin-bottom: 6px !important;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  transition: color 0.3s;
}

.footer-phone:hover {
  color: #ff5555;
}

.footer-email {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  color: #ccc;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--red);
}

/* Footer Nav */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav li a {
  color: #ccc;
  font-size: 0.88rem;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-nav li a:hover {
  color: var(--red);
}

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  color: var(--white);
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--red);
}

.footer-payments-title {
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 3px 5px;
}

.footer-bottom {
  font-size: 0.78rem;
  color: #888;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.post-navigation .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.post-navigation a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.resource-date {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.archive-intro {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

.posts-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin: 0 4px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(152, 20, 28, 0.18);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.posts-pagination .page-numbers.current,
.posts-pagination .page-numbers:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-bottom a {
  color: #aaa;
  margin-left: 12px;
  transition: color 0.3s;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--red);
}

/* ===== FLOATING ACTION BAR ===== */
.floating-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 1001;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.floating-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
  gap: 4px;
}

.floating-bar a:hover {
  background: var(--red-dark);
}

.floating-bar a.is-book-open,
.floating-bar a.is-call-open,
.floating-bar a.is-email-open,
.floating-bar a.is-text-open,
.floating-bar a.is-chat-open {
  background: var(--red-dark);
}

.floating-bar a .bar-icon {
  font-size: 1.2rem;
}

/* ===== HELP WIDGET ===== */
.help-center-widget {
  display: block;
  position: fixed;
  left: 12px;
  bottom: 72px;
  width: min(290px, calc(100vw - 24px));
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: var(--dark);
  padding: 14px 18px 12px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1002;
}

.help-center-widget::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateX(-50%) rotate(45deg);
}

.help-center-widget.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.help-center-widget-title {
  margin: 0 28px 6px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.help-center-widget-copy {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
}

.help-center-widget-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
  line-height: 1;
}

.help-center-widget-close:hover {
  color: var(--red);
}

.help-chat-panel {
  position: fixed;
  left: 12px;
  bottom: 72px;
  width: min(332px, calc(100vw - 24px));
  max-height: calc(100vh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1003;
}

.help-chat-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.help-chat-panel__shell {
  display: flex;
  flex-direction: column;
  min-height: min(500px, calc(100vh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px)));
  min-height: min(500px, calc(100dvh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px)));
  max-height: calc(100vh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  background: var(--white);
  border: 1px solid #ebd1cf;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.help-chat-panel__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #efe2e0;
  background: #fffefe;
}

.help-chat-panel__logo {
  width: 110px;
}

.help-chat-panel__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.help-chat-panel__control {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f1f1f3;
  color: #666;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.help-chat-panel__control:hover {
  background: #f7d8d5;
  color: var(--red);
}

.help-chat-panel__body {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  background: linear-gradient(180deg, #f8f6f6 0%, #fffdfd 18%, #fff 100%);
}

.help-chat-panel__thread {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
}

.help-chat-panel__message {
  max-width: 92%;
}

.help-chat-panel__message--assistant {
  justify-self: start;
}

.help-chat-panel__message--user {
  justify-self: end;
  text-align: right;
}

.help-chat-panel__bubble {
  display: inline-block;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.help-chat-panel__message--assistant .help-chat-panel__bubble {
  background: #f0f1f4;
  color: #222;
}

.help-chat-panel__message--user .help-chat-panel__bubble {
  background: #fde5e0;
  color: var(--dark);
}

.help-chat-panel__timestamp {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #8d8d95;
}

.help-chat-panel__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.help-chat-panel__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: #fbe2de;
  color: #d04d45;
  padding: 10px 14px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.help-chat-panel__action:hover {
  background: #f8d1cb;
  transform: translateY(-1px);
}

.help-chat-panel__action--primary {
  background: #f7d7d1;
}

.help-chat-panel__action-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.help-chat-panel__notice {
  position: relative;
  padding: 12px 30px 12px 14px;
  border: 1px solid #efd2cf;
  border-radius: 12px;
  background: var(--white);
  font-size: 0.75rem;
  line-height: 1.55;
  color: #555;
}

.help-chat-panel__notice p + p {
  margin-top: 6px;
}

.help-chat-panel__notice a {
  color: var(--red);
  text-decoration: underline;
}

.help-chat-panel__notice-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.help-chat-panel__composer {
  padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #efe2e0;
  background: var(--white);
  flex-shrink: 0;
}

.help-chat-panel__label {
  padding-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.help-chat-panel__composer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
  margin-top: 10px;
}

.help-chat-panel__input {
  min-height: 46px;
  border: 1px solid #e4c8c5;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fffdfd;
}

.help-chat-panel__input:focus {
  outline: 2px solid rgba(192, 57, 43, 0.18);
  border-color: var(--red);
}

.help-chat-panel__submit {
  border: 1px solid #e4c8c5;
  border-radius: 10px;
  background: #f2f2f2;
  color: #b2b2b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.help-chat-panel__submit svg {
  width: 18px;
  height: 18px;
}

.help-chat-panel__submit:not(:disabled) {
  background: #fff3f1;
  color: var(--red);
  border-color: #f0b9b4;
}

.help-chat-panel__submit:not(:disabled):hover {
  background: #fde3df;
}

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  position: fixed;
  right: 12px;
  bottom: 72px;
  width: min(680px, calc(100vw - 24px));
  max-height: calc(100vh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1003;
}

.booking-widget.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.booking-widget__shell {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  height: min(760px, calc(100vh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px)));
  height: min(760px, calc(100dvh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px)));
  min-height: min(560px, calc(100vh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px)));
  min-height: min(560px, calc(100dvh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px)));
  max-height: calc(100vh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - var(--floating-widget-gap, 12px));
  background: linear-gradient(180deg, #ffffff 0%, #fff6f5 100%);
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.booking-widget__sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 18px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fff3f2 100%);
  border-right: 1px solid #efc5c2;
}

.booking-widget__brand {
  width: 138px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.booking-widget__brand img {
  width: 100%;
  height: auto;
}

.booking-widget__sidebar-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.75rem;
  line-height: 1.15;
  color: var(--dark);
}

.booking-widget__info-block {
  padding-bottom: 18px;
  border-bottom: 1px solid #efc5c2;
}

.booking-widget__business-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.booking-widget__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #444;
  margin-bottom: 12px;
}

.booking-widget__info-icon {
  width: 18px;
  flex: 0 0 18px;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.4;
}

.booking-widget__hours-label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.booking-widget__hours-line {
  display: block;
  margin-bottom: 4px;
}

.booking-widget__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.booking-widget__topbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 14px 0;
  flex-shrink: 0;
}

.booking-widget__top-action {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #d9dbdf;
  color: #666;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-widget__top-action:hover {
  background: #c5c8ce;
  color: var(--dark);
}

.booking-widget__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.booking-widget__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 6px 18px 28px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.booking-widget__body::-webkit-scrollbar {
  width: 8px;
}

.booking-widget__body::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 999px;
}

.booking-widget__header {
  margin-bottom: 20px;
}

.booking-widget__logo {
  width: 88px;
  margin-bottom: 14px;
}

.booking-widget__title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 14px;
}

.booking-widget__subtitle {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.booking-widget__section-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.booking-widget__launcher-grid {
  display: grid;
  gap: 8px;
}

.booking-widget__primary-action,
.booking-widget__quick-action {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-widget__primary-action {
  padding: 16px 18px;
  background: #df2c1f;
}

.booking-widget__primary-action:hover,
.booking-widget__quick-action:hover,
.booking-widget__footer-button:hover {
  transform: translateY(-1px);
}

.booking-widget__primary-action-icon,
.booking-widget__quick-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.booking-widget__primary-action-text,
.booking-widget__quick-action-text {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-widget__secondary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.booking-widget__quick-action {
  padding: 14px 16px;
  background: #9f160f;
}

.booking-widget__chat-label {
  display: block;
  margin: 14px 0 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-widget__chat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 12px;
  border: 1px solid #df2c1f;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.booking-widget__chat-row:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.booking-widget__chat-row:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.16);
  transform: translateY(-1px);
}

.booking-widget__chat-input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 0.92rem;
  cursor: inherit;
}

.booking-widget__chat-input:focus {
  outline: none;
}

.booking-widget__chat-submit {
  width: 38px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #ececec;
  color: #bbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}

.booking-widget__chat-submit svg {
  width: 18px;
  height: 18px;
}

.booking-widget__option-list {
  border: 1px solid #d6d9df;
  border-radius: 4px;
  background: rgba(255, 247, 246, 0.96);
  max-height: 300px;
  overflow-y: auto;
}

.booking-widget__option-list::-webkit-scrollbar {
  width: 8px;
}

.booking-widget__option-list::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 999px;
}

.booking-widget__option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border: 0;
  border-bottom: 1px solid #d8dde3;
  background: transparent;
  color: #3d3d3d;
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
}

.booking-widget__option:last-child {
  border-bottom: 0;
}

.booking-widget__option.is-selected {
  background: #df2c1f;
  color: var(--white);
  font-weight: 700;
}

.booking-widget__option-check {
  font-size: 1rem;
  color: inherit;
}

.booking-widget__choice-row {
  display: grid;
  gap: 1px;
  border: 1px solid #d6d9df;
  border-radius: 4px;
  overflow: hidden;
  background: #d8dde3;
  margin-bottom: 18px;
}

.booking-widget__choice {
  padding: 10px 16px;
  border: 0;
  background: #fff8f7;
  color: #444;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.booking-widget__choice.is-selected {
  background: #df2c1f;
  color: var(--white);
  font-weight: 700;
}

.booking-widget__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-widget__field-grid--spaced {
  margin-top: 16px;
}

.booking-widget__field {
  margin-bottom: 16px;
}

.booking-widget__field--full {
  grid-column: 1 / -1;
}

.booking-widget__input-wrap {
  position: relative;
}

.booking-widget__input,
.booking-widget__textarea {
  width: 100%;
  border: 1px solid #adb6c2;
  border-radius: 6px;
  background: #fff;
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

.booking-widget__input {
  padding: 12px 14px;
  min-height: 46px;
}

.booking-widget__select {
  appearance: none;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 8px),
    calc(100% - 13px) calc(1em + 8px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 42px;
}

.booking-widget__textarea {
  min-height: 94px;
  padding: 12px 14px;
  resize: vertical;
}

.booking-widget__input:focus,
.booking-widget__textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.12);
}

.booking-widget__clear {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #555;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.booking-widget__suggestions {
  margin-top: 10px;
  border: 1px solid #d8dde3;
  border-radius: 4px;
  background: rgba(255, 247, 246, 0.96);
  max-height: 208px;
  overflow-y: auto;
}

.booking-widget__suggestion {
  width: 100%;
  display: block;
  padding: 11px 14px;
  border: 0;
  border-bottom: 1px solid #d8dde3;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.booking-widget__suggestion:last-child {
  border-bottom: 0;
}

.booking-widget__suggestion-line {
  display: block;
  font-size: 0.94rem;
  color: #3c3c3c;
}

.booking-widget__suggestion-meta {
  display: block;
  font-size: 0.88rem;
  color: #666;
}

.booking-widget__caption {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: #777;
}

.booking-widget__counter {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  text-align: right;
  color: #8a8a8a;
}

.booking-widget__legal {
  font-size: 0.74rem;
  line-height: 1.55;
  color: #777;
}

.booking-widget__legal a {
  color: var(--red);
  text-decoration: underline;
}

.booking-widget__tabs {
  display: flex;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8dde3;
  margin-bottom: 14px;
}

.booking-widget__tab {
  border: 0;
  background: transparent;
  color: #666;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0 0 8px;
  cursor: pointer;
}

.booking-widget__tab.is-selected {
  color: var(--dark);
  box-shadow: inset 0 -2px 0 0 #df2c1f;
}

.booking-widget__date-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(74px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.booking-widget__date-card {
  border: 1px solid #d6d9df;
  border-radius: 6px;
  background: #fff;
  padding: 11px 8px;
  text-align: center;
  cursor: pointer;
}

.booking-widget__date-card.is-selected {
  border-color: #df2c1f;
  color: var(--dark);
}

.booking-widget__date-card-day {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.booking-widget__date-card-date {
  display: block;
  font-size: 0.84rem;
  color: #777;
  margin-top: 4px;
}

.booking-widget__time-group {
  margin-bottom: 18px;
}

.booking-widget__time-heading {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.booking-widget__time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booking-widget__time {
  min-height: 36px;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  background: #fff;
  color: #444;
  font-size: 0.95rem;
  cursor: pointer;
}

.booking-widget__time.is-selected {
  background: #df2c1f;
  border-color: #df2c1f;
  color: var(--white);
  font-weight: 700;
}

.booking-widget__summary-card {
  border: 1px solid #d8dde3;
  border-radius: 6px;
  background: #fff;
  padding: 16px 16px 6px;
}

.booking-widget__summary-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.booking-widget__summary-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555;
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.booking-widget__summary-icon {
  width: 16px;
  flex: 0 0 16px;
  text-align: center;
  color: var(--dark);
}

.booking-widget__summary-address strong {
  display: block;
  color: #444;
}

.booking-widget__action-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.booking-widget__action-button {
  width: 100%;
  min-height: 44px;
}

.booking-widget__action-button--secondary {
  background: #fff;
  border: 1px solid #df2c1f;
  color: #df2c1f;
}

.booking-widget__action-button--secondary:hover {
  background: #fff6f5;
}

.booking-widget__live-call-button {
  width: 100%;
  display: inline-flex;
  text-decoration: none;
}

.booking-widget__success {
  display: grid;
  gap: 16px;
}

.booking-widget__success-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.12);
  color: var(--red);
  font-size: 1.5rem;
}

.booking-widget__lottie-pilot {
  width: 64px;
  height: 64px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-widget__lottie-pilot .booking-widget__success-badge {
  width: 64px;
  height: 64px;
}

.lottie-pilot__canvas {
  position: absolute;
  inset: 0;
}

.lottie-pilot__canvas svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-widget__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
  padding: 12px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #efc5c2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 243, 242, 0.94) 100%);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.booking-widget__footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.booking-widget__footer-button--ghost {
  background: transparent;
  color: var(--dark);
  min-width: auto;
  padding: 0;
}

.booking-widget__footer-button--primary {
  background: #df2c1f;
  color: var(--white);
  padding: 10px 18px;
}

.booking-widget__footer-button--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.booking-widget__footer-button--primary:not(:disabled):hover {
  background: #c42218;
}

.booking-widget__footer-button--ghost:hover {
  color: var(--red);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  top: 80px;
  right: -60px;
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1001;
  transition: right 0.4s ease, background 0.3s;
  writing-mode: horizontal-tb;
}

.back-to-top.visible {
  right: 0;
}

.back-to-top:hover {
  background: var(--red-dark);
}

/* ===== GET ESTIMATE BUTTON ===== */
.get-estimate-btn {
  display: none;
  letter-spacing: 0.05em;
}

.get-estimate-btn:hover {
  background: var(--red-dark);
}

/* ===== SVG ROOF ICON ===== */
.roof-icon-svg {
  fill: var(--red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-section .container,
  .commitment .container {
    grid-template-columns: 1fr;
  }

  .inspection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-faq .container {
    grid-template-columns: 1fr;
  }

  .testimonials .container {
    grid-template-columns: 1fr;
  }

  .areas-served .container {
    grid-template-columns: 1fr;
  }

  .proof-panels {
    grid-template-columns: 1fr 1fr;
  }

  .services-image-wrap {
    max-width: 600px;
  }

  .booking-widget {
    width: min(620px, calc(100vw - 24px));
  }

  .booking-widget__shell {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {

  .top-bar {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    padding: 0 14px;
    gap: 10px;
  }

  .logo {
    padding: 8px 0;
  }

  .logo-icon {
    height: 60px !important;
    width: auto;
  }

  .nav-list,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-accent {
    width: 100%;
    clip-path: none;
    background: linear-gradient(180deg, rgba(192, 57, 43, 0.78) 0%, rgba(169, 50, 38, 0.64) 48%, rgba(35, 31, 32, 0.46) 100%);
  }

  .hero-content {
    max-width: 100%;
    padding: 44px 24px 52px;
  }

  .hero:has(.hero-accent) {
    background-position: center;
  }

  .hero:has(.hero-accent) .hero-content {
    max-width: 100%;
  }

  .hero-heading {
    font-size: clamp(2.15rem, 8.8vw, 3.2rem);
    max-width: 8ch;
    margin-bottom: 12px;
  }

  .hero-subheading {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 22ch;
  }

  .hero-tagline {
    max-width: 34ch;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .services-title,
  .problem-selector h2,
  .inspection-process h2,
  .proof-copy h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid,
  .inspection-grid,
  .proof-panels,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-bar {
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .floating-bar a {
    flex: none;
    min-width: 0;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    font-size: 0.65rem;
  }

  .floating-bar a .bar-icon {
    font-size: 1rem;
  }

  .help-chat-panel {
    left: 8px;
    right: 8px;
    width: auto;
  }

  .help-chat-panel__shell {
    min-height: min(520px, calc(100vh - var(--floating-widget-bottom, 72px) - 12px));
    min-height: min(520px, calc(100dvh - var(--floating-widget-bottom, 72px) - 12px));
    max-height: calc(100vh - var(--floating-widget-bottom, 72px) - 12px);
    max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - 12px);
    border-radius: 16px 16px 0 0;
  }

  .help-chat-panel__thread {
    padding: 14px 12px;
    gap: 12px;
  }

  .help-chat-panel__message {
    max-width: 100%;
  }

  .help-chat-panel__action {
    width: 100%;
    justify-content: flex-start;
  }

  .help-chat-panel__composer {
    padding: 0 12px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top,
  .get-estimate-btn {
    display: none;
  }

  .booking-widget {
    left: 8px;
    right: 8px;
    width: auto;
  }

  .booking-widget__shell {
    grid-template-columns: 1fr;
    height: min(760px, calc(100vh - var(--floating-widget-bottom, 72px) - 12px));
    height: min(760px, calc(100dvh - var(--floating-widget-bottom, 72px) - 12px));
    min-height: min(610px, calc(100vh - var(--floating-widget-bottom, 72px) - 12px));
    min-height: min(610px, calc(100dvh - var(--floating-widget-bottom, 72px) - 12px));
    max-height: calc(100vh - var(--floating-widget-bottom, 72px) - 12px);
    max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - 12px);
  }

  .booking-widget__sidebar {
    display: none;
  }

  .booking-widget__body {
    padding: 6px 12px 22px;
  }

  .booking-widget__topbar {
    padding: 10px 12px 0;
  }

  .booking-widget__header {
    margin-bottom: 16px;
  }

  .booking-widget__logo {
    width: 72px;
    margin-bottom: 12px;
  }

  .booking-widget__title {
    font-size: 1.7rem;
    line-height: 1.02;
  }

  .booking-widget__primary-action {
    padding: 14px 16px;
  }

  .booking-widget__quick-action {
    padding: 12px 14px;
  }

  .booking-widget__footer {
    padding: 12px 12px calc(14px + env(safe-area-inset-bottom, 0px));
  }

  .booking-widget__field-grid {
    grid-template-columns: 1fr;
  }

  .booking-widget__action-pair {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 68px;
    padding: 0 12px;
  }

  .logo-icon {
    height: 50px !important;
  }

  .hero-content {
    padding: 36px 18px 44px;
  }

  .hero-kicker {
    font-size: 0.68rem;
  }

  .hero-heading {
    font-size: clamp(1.9rem, 10.6vw, 2.55rem);
    max-width: 7ch;
    letter-spacing: 0.03em;
  }

  .hero-subheading {
    font-size: 0.92rem;
  }

  .hero-tagline {
    font-size: 0.84rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .problem-card,
  .inspection-step,
  .proof-panel__body {
    padding: 20px 18px;
  }

  .floating-bar a {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    font-size: 0.62rem;
  }

  .contact-form-wrap {
    padding: 30px 20px;
  }

  .help-center-widget {
    left: 8px;
    right: 8px;
    width: auto;
    padding: 12px 16px 10px;
  }

  .help-center-widget-title {
    font-size: 0.9rem;
  }

  .help-center-widget-copy {
    font-size: 0.8rem;
  }

  .help-chat-panel {
    left: 8px;
    right: 8px;
    width: auto;
  }

  .help-chat-panel__shell {
    min-height: min(430px, calc(100vh - var(--floating-widget-bottom, 72px) - 10px));
    min-height: min(430px, calc(100dvh - var(--floating-widget-bottom, 72px) - 10px));
    max-height: calc(100vh - var(--floating-widget-bottom, 72px) - 10px);
    max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - 10px);
    border-radius: 16px 16px 0 0;
  }

  .help-chat-panel__thread {
    padding: 14px;
  }

  .help-chat-panel__action {
    width: 100%;
    justify-content: flex-start;
  }

  .booking-widget {
    left: 8px;
    right: 8px;
    bottom: 66px;
  }

  .booking-widget__shell {
    height: calc(100vh - var(--floating-widget-bottom, 72px) - 10px);
    height: calc(100dvh - var(--floating-widget-bottom, 72px) - 10px);
    min-height: min(560px, calc(100vh - var(--floating-widget-bottom, 72px) - 10px));
    min-height: min(560px, calc(100dvh - var(--floating-widget-bottom, 72px) - 10px));
    max-height: calc(100vh - var(--floating-widget-bottom, 72px) - 10px);
    max-height: calc(100dvh - var(--floating-widget-bottom, 72px) - 10px);
    border-radius: 14px 14px 0 0;
  }

  .booking-widget__title {
    font-size: 1.35rem;
  }

  .booking-widget__body {
    padding: 4px 10px 20px;
  }

  .booking-widget__topbar {
    padding: 10px 10px 0;
  }

  .booking-widget__subtitle,
  .booking-widget__section-label,
  .booking-widget__option,
  .booking-widget__choice,
  .booking-widget__input,
  .booking-widget__textarea,
  .booking-widget__summary-item,
  .booking-widget__time {
    font-size: 0.9rem;
  }

  .booking-widget__notice {
    padding: 10px 28px 10px 12px;
    font-size: 0.73rem;
  }

  .booking-widget__legal {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .booking-widget__option-list {
    max-height: 220px;
  }

  .booking-widget__suggestions {
    max-height: 160px;
  }

  .booking-widget__date-strip {
    grid-auto-columns: minmax(68px, 1fr);
  }

  .booking-widget__secondary-actions {
    grid-template-columns: 1fr;
  }

  .booking-widget__footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 8px;
    padding: 10px 10px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .booking-widget__footer-button {
    width: 100%;
    min-width: 108px;
    min-height: 42px;
  }

  .booking-widget__footer-button--ghost {
    justify-content: flex-start;
  }
}

/* Mobile nav open state */
.main-nav.open .nav-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: calc(100vh - 72px);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
}

.main-nav.open .nav-list>li {
  position: relative;
}

.main-nav.open .nav-list>li>a {
  padding: 14px 52px 14px 20px;
  border-bottom: 1px solid #eee;
}

.main-nav.open .submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 49px;
  border-left: 1px solid #eee;
  background: transparent;
}

.main-nav.open .dropdown {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  border-top: none;
  box-shadow: none;
  background: #f8f8f8;
}

.main-nav.open li.open-submenu>a {
  color: var(--red);
}

.main-nav.open li.open-submenu>.submenu-toggle {
  color: var(--red);
}

.main-nav.open li.open-submenu>.dropdown {
  display: block;
}

.main-nav.open .dropdown li a {
  padding: 10px 28px;
  border-bottom: 1px solid #e8e8e8;
}
