/* Alpine Arborists — orange & blue theme */

:root {
  --orange: #e85d04;
  --orange-dark: #c44d00;
  --orange-light: #fff4ec;
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --blue-light: #e8f1fb;
  --text: #1a2332;
  --text-muted: #5a6578;
  --white: #ffffff;
  --border: #d8e0ea;
  --shadow: 0 8px 30px rgba(13, 71, 161, 0.1);
  --radius: 0;
  --max-width: 1140px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--orange);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: #000;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--blue-light);
}

.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark p {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-alt .section-header {
  max-width: 900px;
  margin-bottom: 3rem;
}

.section-header-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-alt .section-header h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin-bottom: 1rem;
  color: #000;
}

.section-alt .section-header p {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.6;
}

/* Why customers choose us — video */

.why-choose-video-section .section-header h2 {
  color: #000;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

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

.btn-secondary {
  background: var(--blue);
  color: var(--white);
}

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

.btn-phone {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.text-link {
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* Header */

.site-header {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo-link img {
  width: auto;
  max-height: 72px;
}

.site-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.has-dropdown.is-open > .nav-trigger {
  color: var(--orange);
}

.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--white);
  margin-top: 2px;
  transition: transform 0.2s, border-top-color 0.2s;
}

.nav-trigger:hover .nav-chevron,
.nav-trigger:focus-visible .nav-chevron,
.has-dropdown.is-open > .nav-trigger .nav-chevron {
  border-top-color: var(--orange);
}

.has-dropdown.is-open > .nav-trigger .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 200;
  padding: 0;
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown.is-open > .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  border-bottom: 1px solid var(--border);
}

.nav-dropdown li:last-child {
  border-bottom: none;
}

.nav-dropdown a {
  display: block;
  padding: 0.85rem 1.1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta .btn {
  text-decoration: none;
  white-space: nowrap;
}

.btn-nav-phone {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-nav-phone:hover {
  background: var(--orange);
  color: var(--white);
}

/* Hero with video */

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.82) 0%,
    rgba(232, 93, 4, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  text-align: center;
  max-width: 820px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero-badge-featured {
  width: auto;
  height: clamp(130px, 20vw, 200px);
  max-width: 280px;
  object-fit: contain;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.hero-badges-row img {
  width: auto;
  height: clamp(72px, 11vw, 110px);
  max-width: 200px;
  object-fit: contain;
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  max-width: 720px;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

a.service-card:hover {
  color: inherit;
}

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

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  object-fit: cover;
}

.service-card-body {
  flex: 1;
  padding: 1.25rem 1.25rem 1rem;
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.services-cta-wrap {
  margin-top: 2rem;
  text-align: center;
}

/* Split layouts */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.rounded-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* Google-style reviews */

.reviews-section {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.google-g {
  width: auto;
  height: clamp(72px, 10vw, 110px);
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.reviews-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.1);
}

.reviews-count-badge .stars {
  font-size: 0.9rem;
}

.reviews-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}

.stars {
  margin: 0;
  color: #fbbc04;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  line-height: 1;
}

.reviews-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 3rem;
  --reviews-visible: 3;
  --reviews-gap: 1.25rem;
}

.reviews-viewport {
  overflow: hidden;
  container-type: inline-size;
}

.google-reviews-track {
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 0.35s ease;
}

.google-review {
  flex: 0 0 calc((100cqw - (var(--reviews-gap) * (var(--reviews-visible) - 1))) / var(--reviews-visible));
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.1);
}

.review-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-text {
  margin: 0;
  color: #3c4043;
  font-size: 0.95rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.google-review.is-expanded .review-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-read-more {
  margin-top: 0.65rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--blue-dark);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-read-more:hover {
  color: var(--orange);
}

.review-read-more[hidden] {
  display: none;
}

.reviews-cta-wrap {
  margin-top: 2rem;
  text-align: center;
}

.btn-reviews {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: background 0.2s;
}

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

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #dadce0;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.reviews-nav:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.reviews-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews-prev {
  left: 0;
}

.reviews-next {
  right: 0;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #bdc1c6;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

.google-review-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.reviewer-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ea4335;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-avatar.avatar-blue {
  background: #4285f4;
}

.reviewer-avatar.avatar-green {
  background: #34a853;
}

.reviewer-avatar.avatar-purple {
  background: #9c27b0;
}

.reviewer-meta p {
  margin: 0;
}

.reviewer-name {
  font-weight: 700;
  color: #202124;
  font-size: 0.95rem;
}

.review-source {
  margin: 0 0 0.65rem;
  color: #70757a;
  font-size: 0.8rem;
}

.google-review .stars {
  margin-bottom: 0.65rem;
}

@media (max-width: 768px) {
  .reviews-carousel {
    --reviews-visible: 1;
    padding: 0 2.75rem;
  }

  .reviews-nav {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* CTA banner */

.cta-banner {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-logos img {
  width: auto;
  height: 90px;
  max-width: 160px;
  object-fit: contain;
}

/* Page hero (inner pages) */

.page-hero {
  background: var(--orange);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero .hero-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.page-hero .btn-primary {
  background: #111;
  color: var(--white);
}

.page-hero .btn-primary:hover {
  background: #000;
  color: var(--white);
}

.page-hero-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

/* Winter services pages — blue primary accents only on these pages */

body.winter-services .page-hero {
  background: var(--blue);
}

body.winter-services .page-hero .btn-primary {
  background: #111;
  color: var(--white);
}

body.winter-services .page-hero .btn-primary:hover {
  background: #000;
  color: var(--white);
}

body.winter-services main .btn-primary {
  background: var(--blue);
  color: var(--white);
}

body.winter-services main .btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

body.winter-services main .section-eyebrow {
  color: var(--blue);
}

body.winter-services .service-check-list li::before,
body.winter-services .service-steps li::before,
body.winter-services .service-area-list li::before {
  background: var(--blue);
}

body.winter-services .service-check-list a:hover {
  color: var(--blue);
}

/* Service pages */

.service-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  line-height: 1.5;
}

.service-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.service-steps {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}

.service-steps li {
  position: relative;
  counter-increment: service-step;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-steps li::before {
  content: counter(service-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-steps strong {
  color: #000;
}

.service-area-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.service-area-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.service-area-actions {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.service-area-heading {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.service-area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
}

.service-area-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-weight: 600;
}

.service-area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.service-area-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-check-list a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.service-check-list a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .service-area-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* About page */

.cert-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.cert-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
}

.cert-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--orange);
}

.cert-row {
  margin: 0 auto;
  max-width: 800px;
}

/* Credentials section (homepage) */

.credentials-section {
  background: #111111;
  color: var(--white);
  padding: 4.5rem 0;
}

.section-divider-orange {
  width: 100vw;
  height: 10px;
  margin-left: calc(50% - 50vw);
  background: var(--orange);
}

.section-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credentials-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.credentials-header h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

.credentials-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  line-height: 1.65;
}

.credential-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.credential-doc-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.credential-doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.credential-doc-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
}

.credential-doc-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.credential-doc-link {
  margin-top: auto;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credential-doc-card:hover .credential-doc-link {
  color: var(--orange-dark);
}

.credentials-certs {
  margin-top: 0;
}

.credentials-subheading {
  margin: 0 0 1.25rem;
  color: var(--white);
  font-size: 1.35rem;
  text-align: left;
}

.credentials-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.credential-cert-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.credential-cert-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.badge-check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.credential-cert-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 110px;
}

.credential-cert-visual img {
  display: block;
  max-height: 110px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 900px) {
  .credential-docs-grid {
    grid-template-columns: 1fr;
  }

  .credentials-certs-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-details li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-details strong {
  color: var(--text);
}

.contact-form-wrap {
  background: var(--white);
  padding: 0;
  border: none;
  scroll-margin-top: 5rem;
}

.contact-form-wrap .estimate-form .btn {
  background: #000;
  color: var(--white);
}

.contact-form-wrap .estimate-form .btn:hover {
  background: #222;
  color: var(--white);
}

.contact-info .section-eyebrow {
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #000;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.contact-form button {
  width: 100%;
  border: none;
  font: inherit;
}

/* Estimate form (homepage footer) */

.footer-estimate {
  background: var(--white);
  color: var(--text);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 5rem;
}

.footer-estimate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.footer-estimate-form-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-estimate-form-wrap h2 {
  margin: 0 0 1.25rem;
  color: #000;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.footer-estimate-info {
  color: #000;
}

body.page-contact .footer-estimate {
  display: none;
}

.footer-estimate-info h2 {
  margin: 0 0 1.25rem;
  color: #000;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.footer-choose-photo {
  display: block;
  width: 100%;
  max-height: 280px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.footer-estimate-form-wrap .estimate-form {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-choose-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.footer-choose-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
  color: #000;
}

.footer-choose-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.footer-estimate-contact {
  margin-bottom: 1.5rem;
}

.footer-estimate-info .footer-phone,
.footer-estimate-info .footer-email {
  font-size: 1.1rem;
  color: #000;
}

.footer-estimate-info .footer-phone:hover,
.footer-estimate-info .footer-email:hover {
  color: var(--orange);
}

.footer-estimate-info .footer-social a {
  color: #000;
}

.footer-estimate-info .footer-social a:hover {
  color: var(--orange);
}

.estimate-section {
  background: var(--blue-light);
  color: var(--text);
  padding: 4rem 0 5rem;
  scroll-margin-top: 5rem;
}

.estimate-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.estimate-section > .container > h2,
.estimate-layout > h2 {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #000;
}

.estimate-layout .estimate-form {
  width: 100%;
  text-align: left;
}

.estimate-intro {
  text-align: center;
  width: 100%;
}

.estimate-intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: #000;
}

.estimate-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.estimate-form {
  width: 100%;
  background: var(--orange);
  border: none;
  padding: 1.5rem;
  box-shadow: none;
}

.estimate-form-inline {
  background: var(--orange);
  box-shadow: 0 12px 40px rgba(13, 71, 161, 0.12);
}

.estimate-form-inline label {
  color: var(--white);
}

.estimate-form-inline .consent-label {
  color: rgba(255, 255, 255, 0.92);
}

.estimate-form-inline .form-status {
  color: var(--white);
}

.form-row {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  margin-bottom: 1rem;
}

.estimate-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.estimate-form input[type="text"],
.estimate-form input[type="tel"],
.estimate-form input[type="email"],
.estimate-form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
}

.estimate-form select {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231565c0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
  cursor: pointer;
}

.estimate-form input:focus,
.estimate-form select:focus {
  outline: 2px solid var(--white);
  outline-offset: 1px;
  border-color: var(--white);
}

.estimate-section .consent-label,
.estimate-modal-dialog .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.estimate-section .consent-label input,
.estimate-modal-dialog .consent-label input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--white);
}

.estimate-section .form-status,
.estimate-modal-dialog .form-status {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.estimate-section .form-status.is-success,
.estimate-modal-dialog .form-status.is-success {
  color: #e8ffe8;
}

.estimate-section .form-status.is-error,
.estimate-modal-dialog .form-status.is-error {
  color: #ffe8e8;
}

.footer-estimate-form-wrap .estimate-form .btn {
  background: #000;
  color: var(--white);
  margin-top: auto;
}

.footer-estimate-form-wrap .estimate-form .btn:hover {
  background: #222;
  color: var(--white);
}

.estimate-form .btn {
  width: 100%;
  border: none;
  font: inherit;
  background: var(--blue);
  color: var(--white);
}

.estimate-form .btn:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* Estimate modal */

body.modal-open {
  overflow: hidden;
}

.estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.estimate-modal[hidden] {
  display: none;
}

.estimate-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(4px);
}

.estimate-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(92vh, 900px);
  overflow-y: auto;
  background: var(--orange);
  border: none;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.estimate-modal-dialog h2 {
  margin: 0 0 0.5rem;
  padding-right: 2rem;
  color: var(--white);
  text-align: left;
}

.estimate-modal-dialog .estimate-sub {
  margin: 0 0 1.5rem;
  max-width: none;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.estimate-modal-dialog .estimate-form {
  margin-top: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.estimate-modal-dialog .estimate-form label {
  color: var(--white);
}

.estimate-modal-dialog .form-status {
  color: var(--white);
}

.estimate-modal-dialog .estimate-form .btn {
  background: #111111;
  color: var(--white);
}

.estimate-modal-dialog .estimate-form .btn:hover {
  background: #000000;
  color: var(--white);
}

.estimate-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.estimate-modal-close:hover {
  color: var(--text);
}

/* Thank-you modal (after form submit) */

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.thank-you-modal[hidden] {
  display: none;
}

.thank-you-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(4px);
}

.thank-you-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: var(--white);
  padding: 2.25rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.thank-you-modal-dialog h2 {
  margin: 0 0 0.75rem;
  padding-right: 1.5rem;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.thank-you-modal-dialog p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.thank-you-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.thank-you-modal-close:hover {
  color: var(--orange);
}

body.winter-services .thank-you-modal-close:hover {
  color: var(--blue);
}

@media (max-width: 768px) {
  .estimate-modal {
    padding: 0;
    align-items: stretch;
  }

  .estimate-modal-dialog {
    width: 100%;
    max-height: none;
    min-height: 100%;
    padding: 1.5rem 1.25rem 2rem;
  }
}

.reviews-page-section {
  background: var(--orange-light);
}

.reviews-page-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.reviews-page-intro h2 {
  margin: 0 0 0.75rem;
}

.reviews-page-intro p {
  margin: 0;
  color: var(--text-muted);
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.reviews-page-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 4px 18px rgba(60, 64, 67, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reviews-page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.16);
}

.reviews-page-bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .reviews-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-page-grid {
    grid-template-columns: 1fr;
  }
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
}

.sitemap-col h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--text);
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list li + li {
  margin-top: 0.55rem;
}

.sitemap-list a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.sitemap-list a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

/* Footer */

.site-footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  margin: 1rem 0;
  max-width: 320px;
}

.footer-phone,
.footer-email {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--orange-light);
}

.footer-google-badge {
  display: block;
  width: auto;
  height: 100px;
  max-width: 140px;
  margin-top: 1rem;
  object-fit: contain;
}

.footer-links h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-bottom-start {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--orange);
}

/* Legal pages */

.legal-page-hero {
  padding-bottom: 2rem;
  text-align: center;
}

.legal-page-hero h1 {
  text-align: center;
}

.legal-page-hero .legal-page-updated {
  margin: 0.75rem auto 0;
  max-width: 640px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.legal-page-section {
  padding-top: 2.5rem;
}

.legal-page-content {
  max-width: 760px;
}

.legal-notice {
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
}

.legal-notice p:last-child {
  margin-bottom: 0;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  text-transform: none;
  letter-spacing: normal;
}

.legal-block p,
.legal-block li {
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-block ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.legal-block li + li {
  margin-top: 0.5rem;
}

.legal-block a {
  color: var(--orange-dark);
}

.legal-block a:hover {
  text-decoration: underline;
}

/* Mobile nav */

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    min-width: min(320px, calc(100vw - 2rem));
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

  .site-nav.is-open .nav-list {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    border: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 0 0.25rem;
    border-radius: 0;
  }

  .has-dropdown:hover > .nav-dropdown {
    display: none;
  }

  .has-dropdown.is-open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    padding: 0.7rem 1rem;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    margin: 0.25rem 0 0;
  }

  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .footer-estimate-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 60vh;
  }

  .section {
    padding: 3rem 0;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-banner-actions .btn {
    width: 100%;
  }

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