:root {
  --black: #0a0a0b;
  --black-soft: #171717;
  --orange: #ff9f2f;
  --orange-dark: #df7d12;
  --cream: #fff8ef;
  --paper: #ffffff;
  --mist: #f7f4ef;
  --line: #e8dfd3;
  --muted: #68645f;
  --shadow: 0 20px 60px rgba(10, 10, 11, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(232, 223, 211, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 226px;
}

.brand-mark {
  display: block;
  width: 54px;
  height: 42px;
  flex: 0 0 54px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #2a2927;
  font-size: 0.94rem;
  font-weight: 850;
}

.site-nav a {
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--black);
}

.button,
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}

.primary,
.header-call {
  color: var(--black);
  background: var(--orange);
  box-shadow: 0 12px 32px rgba(255, 159, 47, 0.34);
}

.secondary {
  color: var(--black);
  background: var(--paper);
}

.secondary.dark {
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vw, 64px) clamp(16px, 6vw, 72px);
  color: var(--paper);
  background: var(--black);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: var(--black);
}

.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.78) 37%, rgba(5, 5, 6, 0.42) 56%, rgba(5, 5, 6, 0.08) 82%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.36), rgba(5, 5, 6, 0.02));
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(28px, 5vw, 64px);
  row-gap: 18px;
  align-items: start;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

.hero-copy-block {
  grid-column: 1;
}

.hero-accent {
  color: var(--orange);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 5.6vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.hero-card {
  grid-column: 1;
  grid-row: 2;
  width: min(690px, 100%);
  margin-top: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 239, 0.5));
  color: var(--black);
  box-shadow: 0 24px 70px rgba(10, 10, 11, 0.24);
  backdrop-filter: blur(24px) saturate(1.12);
  animation: cardIn 760ms ease both 160ms;
}

.hero-card-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(210px, 1fr);
  gap: 4px 12px;
  align-items: end;
  margin-bottom: 10px;
}

.hero-card-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.hero-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  line-height: 1.1;
}

.hero-card-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.32;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.lead-form label {
  display: grid;
  gap: 5px;
  color: #2b2926;
  font-size: 0.78rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(216, 198, 174, 0.76);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.lead-form label:first-child {
  grid-column: span 2;
}

.lead-form label:nth-of-type(2) {
  grid-column: span 2;
}

.form-button {
  grid-column: span 2;
  width: 100%;
  min-height: 40px;
}

.form-result {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--orange-dark);
  font-weight: 850;
}

.form-result:empty {
  display: none;
}

.estimate-card {
  padding: 14px;
  border: 1px solid rgba(255, 159, 47, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: 0 12px 32px rgba(10, 10, 11, 0.1);
}

.estimate-card span,
.estimate-card strong {
  display: block;
}

.estimate-card span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-card strong {
  margin-top: 2px;
  color: var(--black);
  font-size: 1.55rem;
  line-height: 1.05;
}

.estimate-card p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.estimate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.estimate-actions a {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 7px;
  font-weight: 950;
}

.estimate-call {
  color: var(--black);
  background: var(--orange);
}

.estimate-sms {
  color: var(--black);
  background: var(--paper);
}

.stats-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(56px, 7vw, 92px) clamp(16px, 6vw, 72px);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 159, 47, 0.18), transparent 26%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 54%, #fff4e4 100%);
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232, 223, 211, 0.72);
  border-radius: 22px;
  pointer-events: none;
}

.stats-intro,
.stats-grid {
  position: relative;
  z-index: 1;
}

.stats-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.stats-intro h2 {
  max-width: 420px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.stats-intro p:not(.eyebrow) {
  max-width: 390px;
  color: var(--muted);
  font-size: 1.04rem;
}

.dispatch-card {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(232, 223, 211, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(10, 10, 11, 0.08);
  backdrop-filter: blur(18px);
}

.dispatch-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.dispatch-card-head strong {
  font-size: 1rem;
}

.dispatch-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 159, 47, 0.16);
}

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

.dispatch-steps span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--black);
  background: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

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

.stats-grid article {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(232, 223, 211, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(10, 10, 11, 0.07);
}

.stats-grid article::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 47, 0.22), rgba(255, 159, 47, 0));
}

.stats-grid .metric-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  min-width: 0;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--black);
  background: rgba(255, 159, 47, 0.18);
}

.stats-grid .metric-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid strong,
.stats-grid span {
  position: relative;
  z-index: 1;
  display: block;
}

.stats-grid .metric-label {
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid strong {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  line-height: 0.95;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 820;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(16px, 6vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.5fr);
  gap: 30px;
  align-items: end;
  max-width: 1220px;
  margin: 0 auto 30px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid,
.why-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.services-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 860px;
  background: #f8f6f1;
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-section::before {
  z-index: 0;
  background-image: url("assets/services/services-background.png");
  background-repeat: no-repeat;
  background-position: right -360px center;
  background-size: auto 100%;
  transform-origin: right center;
  transform: scale(1.035);
  animation: servicesBackgroundDrift 13s ease-in-out infinite alternate;
}

.services-section::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.99) 52%, rgba(255, 255, 255, 0.76) 68%, rgba(255, 255, 255, 0.1) 86%),
    linear-gradient(0deg, rgba(10, 10, 11, 0.08), rgba(10, 10, 11, 0));
}

.services-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
}

.services-heading {
  grid-template-columns: 1fr;
  max-width: 590px;
  margin: 0 0 28px;
}

.services-title-block {
  display: contents;
}

.services-section .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0;
}

.service-card,
.why-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(10, 10, 11, 0.03);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 159, 47, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 47, 0.14), rgba(255, 159, 47, 0));
}

.service-card h3,
.service-card p,
.why-card strong,
.why-card p {
  position: relative;
  z-index: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 217, 185, 0.9);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(10, 10, 11, 0.08);
  object-fit: cover;
}

.service-card p,
.why-card p,
.brands-section .section-heading p,
.contact-copy p,
.legal-card li,
.site-footer p {
  color: var(--muted);
}

.why-section {
  background: var(--paper);
}

.why-layout {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 22px;
}

.why-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 2px;
  background: var(--orange);
}

.why-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border: 1px solid rgba(239, 217, 185, 0.9);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(10, 10, 11, 0.08);
  object-fit: cover;
}

.why-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1220px;
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
}

.price-strip div {
  padding: 18px;
  background: var(--black-soft);
  color: var(--paper);
}

.price-strip span,
.price-strip strong {
  display: block;
}

.price-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.price-strip strong {
  margin-top: 4px;
  color: var(--orange);
  font-size: 1.12rem;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 9vw, 116px) 0 clamp(64px, 9vw, 116px) clamp(16px, 6vw, 72px);
  background: var(--cream);
}

.reviews-copy h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.35rem);
  line-height: 0.98;
}

.reviews-copy p {
  max-width: 360px;
  color: var(--muted);
  font-size: 1.05rem;
}

.review-marquee {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 96px;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), rgba(255, 248, 239, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream), rgba(255, 248, 239, 0));
}

.review-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviewMarquee 30s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-track figure {
  width: min(390px, 78vw);
  min-height: 210px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(232, 223, 211, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(10, 10, 11, 0.08);
}

.stars {
  margin-bottom: 20px;
  color: var(--orange);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.review-track blockquote {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 850;
}

.review-track figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.brands-section {
  background: var(--paper);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  max-width: 1220px;
  margin: 0 auto;
}

.brand-grid span {
  display: grid;
  grid-template-rows: 40px auto;
  gap: 8px;
  place-items: center;
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--black);
  padding: 14px 10px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.brand-grid img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 430px);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(58px, 8vw, 104px) clamp(16px, 6vw, 72px);
  color: var(--paper);
  background: var(--black);
}

.contact-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.legal-card {
  padding: 24px;
  color: var(--black);
}

.contact-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 159, 47, 0.14), transparent 34%),
    var(--paper);
}

.contact-panel-top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-panel-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--black);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 159, 47, 0.28);
}

.contact-panel-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-panel-top span:not(.contact-panel-icon) {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.contact-panel-top strong {
  display: block;
  color: var(--black);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.05;
}

.contact-start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--black);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(255, 159, 47, 0.24);
  font-size: 0.98rem;
  font-weight: 950;
}

.contact-panel-section + .contact-panel-section {
  margin-top: 24px;
}

.contact-panel h3 {
  margin-bottom: 12px;
}

.contact-checklist {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 28px;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--black);
  background: var(--cream);
  font-size: 0.86rem;
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 48px clamp(16px, 6vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.66);
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

.footer-logo {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.footer-phone {
  display: inline-block;
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 950;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 40px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h3 {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 750;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin: 0;
}

.mobile-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(10, 10, 11, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 50px rgba(10, 10, 11, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 7px;
  font-weight: 950;
}

.sticky-call {
  color: var(--black);
  background: var(--orange);
}

.sticky-quote {
  color: var(--black);
  background: var(--mist);
}

.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: min(360px, calc(100vw - 28px));
  pointer-events: none;
}

.chatbot-toggle,
.chatbot-panel {
  pointer-events: auto;
}

.chatbot-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--black);
  box-shadow: 0 16px 42px rgba(10, 10, 11, 0.28);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.chatbot-toggle::before {
  content: "?";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  color: var(--black);
  background: var(--orange);
  font-weight: 950;
}

.chatbot-widget:not(.is-open) .chatbot-toggle {
  animation: chatTogglePulse 2.6s ease-in-out infinite;
}

.chatbot-widget:not(.is-open) .chatbot-toggle::before {
  animation: chatTogglePing 2.6s ease-in-out infinite;
}

.chatbot-panel {
  display: none;
  overflow: hidden;
  margin-bottom: 10px;
  transform-origin: top right;
  border: 1px solid rgba(10, 10, 11, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(10, 10, 11, 0.24);
}

.chatbot-panel.is-open {
  display: block;
  animation: chatPop 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  color: var(--paper);
  background: var(--black);
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  gap: 8px;
  max-height: 230px;
  overflow: auto;
  padding: 14px;
  background: var(--cream);
}

.bot-message,
.user-message {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.92rem;
}

.bot-message {
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line);
}

.user-message {
  justify-self: end;
  color: var(--black);
  background: var(--orange);
}

.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 13px 14px;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: chatTypingBounce 1.3s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.16s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.32s;
}

.chatbot-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.chatbot-options button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px;
  color: var(--black);
  background: var(--paper);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
}

.chatbot-options button:hover {
  border-color: #d1c1ac;
  background: var(--cream);
}

.chatbot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 12px;
}

.chatbot-actions a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 7px;
  font-weight: 950;
}

.chatbot-actions a:first-child {
  color: var(--black);
  background: var(--orange);
}

.chatbot-actions a:last-child {
  color: var(--black);
  background: var(--mist);
}

.hero-copy-block {
  animation: heroIn 700ms ease both;
}

.button,
.service-card,
.why-card,
.brand-grid span,
.stats-grid article,
.dispatch-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.service-card:hover,
.why-card:hover,
.brand-grid span:hover,
.stats-grid article:hover,
.dispatch-card:hover {
  transform: translateY(-2px);
}

.service-card:hover,
.why-card:hover,
.brand-grid span:hover,
.stats-grid article:hover,
.dispatch-card:hover {
  border-color: #d3c0a5;
  box-shadow: 0 16px 36px rgba(10, 10, 11, 0.09);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatPop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes chatTogglePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 42px rgba(10, 10, 11, 0.28), 0 0 0 0 rgba(255, 159, 47, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 42px rgba(10, 10, 11, 0.28), 0 0 0 12px rgba(255, 159, 47, 0);
  }
}

@keyframes chatTogglePing {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes chatTypingBounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-5px);
    opacity: 0.9;
  }
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes servicesBackgroundDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.05) translate3d(18px, 6px, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    position: relative;
    z-index: 2;
  }

  .site-nav,
  .header-call {
    grid-column: 1 / -1;
    display: none;
  }

  .site-nav.is-open,
  .header-call.is-open {
    display: flex;
  }

  .site-nav.is-open {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 8px;
  }

  .header-call.is-open {
    width: max-content;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .hero-media img {
    object-position: 66% center;
    opacity: 1;
  }

  .hero-layout,
  .stats-section,
  .section-heading,
  .service-grid,
  .why-layout,
  .price-strip,
  .contact-section,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .services-section {
    min-height: auto;
  }

  .services-section::before {
    background-position: 78% center;
    background-size: cover;
    opacity: 0.44;
  }

  .services-section::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 64%, rgba(255, 255, 255, 0.74) 100%),
      linear-gradient(0deg, rgba(10, 10, 11, 0.08), rgba(10, 10, 11, 0));
  }

  .services-heading {
    max-width: 590px;
  }

  .services-section .service-grid {
    max-width: 640px;
  }

  .reviews-section {
    padding-right: 0;
  }

  .reviews-copy {
    padding-right: clamp(16px, 6vw, 72px);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    position: sticky;
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    gap: 9px;
    padding-right: 58px;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 3;
    transform: translateY(-50%);
  }

  .brand-mark {
    width: 48px;
    height: 38px;
    flex-basis: 48px;
  }

  .brand small,
  .site-nav {
    font-size: 0.86rem;
  }

  /* Rebuilt mobile hero: tall photo, headline + lead + CTA sit over its lower area */
  .hero {
    position: relative;
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding: 0 0 22px;
    align-items: stretch;
    background: var(--black);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 520px;
    background: #eceef0;
  }

  .hero-media picture {
    position: relative;
    inset: auto;
    display: block;
    height: 100%;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 80%;
    opacity: 1;
  }

  /* keep the technician clear up top, dissolve the lower half into black for text */
  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        96deg,
        rgba(8, 8, 9, 0.82) 0%,
        rgba(8, 8, 9, 0.52) 32%,
        rgba(8, 8, 9, 0.14) 56%,
        rgba(8, 8, 9, 0) 74%
      ),
      linear-gradient(
        180deg,
        rgba(10, 10, 11, 0) 0%,
        rgba(10, 10, 11, 0) 40%,
        rgba(10, 10, 11, 0.5) 64%,
        rgba(10, 10, 11, 0.9) 84%,
        var(--black) 100%
      );
    pointer-events: none;
  }

  .hero-overlay {
    display: none;
  }

  .hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 0;
    margin-top: -390px;
    flex-direction: column;
    gap: 14px;
    padding: 0 16px;
  }

  .hero-copy-block h1,
  .hero-lead {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  }

  .hero-copy-block h1 .hero-accent {
    color: var(--orange);
  }

  h1 {
    max-width: 8.6ch;
    margin-bottom: 12px;
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }

  .hero-lead {
    max-width: 23rem;
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 18px 0 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
  }

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

  .stats-grid article {
    min-height: 0;
    padding: 16px 14px;
  }

  .stats-grid .metric-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .stats-grid .metric-icon svg {
    width: 20px;
    height: 20px;
  }

  .stats-grid .metric-label {
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

  .stats-grid strong {
    margin-bottom: 6px;
    font-size: 1.85rem;
  }

  .stats-grid span {
    font-size: 0.9rem;
  }

  .hero-card {
    width: 100%;
    padding: 13px;
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(12, 12, 13, 0.78), rgba(22, 20, 18, 0.64));
    color: var(--paper);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px) saturate(1.12);
  }

  .hero-card-head {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 10px;
  }

  .hero-card h2 {
    color: var(--paper);
    font-size: 1.12rem;
  }

  .hero-card-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
  }

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lead-form label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 42px;
    background: rgba(255, 255, 255, 0.92);
  }

  .lead-form label:first-child,
  .lead-form label:nth-of-type(2) {
    grid-column: 1 / -1;
  }

  .form-button {
    grid-column: 1 / -1;
    min-height: 42px;
  }

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

  .section,
  .stats-section,
  .contact-section {
    padding: 50px 14px;
  }

  /* drop the decorative frame on mobile — it didn't line up with the cards */
  .stats-section::before {
    display: none;
  }

  .stats-intro h2 {
    max-width: none;
  }

  .stats-intro p:not(.eyebrow) {
    max-width: none;
  }

  .services-section {
    padding-top: 0;
    padding-bottom: 58px;
  }

  /* photo becomes a wide establishing band at the top of the section */
  .services-section::before {
    inset: 0 0 auto 0;
    height: 280px;
    background-position: 84% 26%;
    background-size: cover;
    opacity: 1;
    transform: none;
    animation: none;
  }

  /* dissolve the band into the light section background before the cards start */
  .services-section::after {
    inset: 0 0 auto 0;
    height: 280px;
    background: linear-gradient(
      180deg,
      rgba(248, 246, 241, 0) 0%,
      rgba(248, 246, 241, 0) 62%,
      rgba(248, 246, 241, 0.75) 84%,
      #f8f6f1 100%
    );
  }

  /* heading sits over the empty left side of the photo, level with the technician */
  .services-title-block {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    width: 56%;
    height: 280px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 8px 0 14px;
    background: linear-gradient(
      90deg,
      rgba(248, 246, 241, 0.9) 0%,
      rgba(248, 246, 241, 0.72) 62%,
      rgba(248, 246, 241, 0) 100%
    );
  }

  .services-title-block .eyebrow {
    margin-bottom: 8px;
  }

  .services-title-block h2 {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.14;
  }

  .services-content {
    padding-top: 280px;
  }

  .services-content .services-heading {
    margin-bottom: 22px;
  }

  .services-section .service-grid {
    max-width: none;
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-panel-top {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .contact-panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .contact-panel-icon svg {
    width: 23px;
    height: 23px;
  }

  .reviews-section {
    padding: 50px 0 50px 14px;
  }

  .reviews-copy {
    padding-right: 14px;
  }

  .service-card,
  .why-card {
    min-height: 0;
    padding: 19px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  .why-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

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

  .brand-grid span {
    grid-template-rows: 30px auto;
    gap: 6px;
    min-height: 78px;
    padding: 10px 6px;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .brand-grid img {
    width: 40px;
    height: 30px;
  }

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

  .footer-nav {
    max-width: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .chatbot-widget {
    right: 12px;
    bottom: 12px;
    left: auto;
    width: auto;
  }

  .chatbot-widget:not(.is-open) {
    top: 76px;
    bottom: auto;
  }

  .mobile-sticky-cta.is-visible + .chatbot-widget {
    top: auto;
    bottom: 86px;
  }

  .chatbot-widget.is-open {
    top: auto;
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .chatbot-toggle {
    width: 46px;
    min-height: 46px;
    padding: 0 14px;
  }

  .chatbot-widget:not(.is-open) .chatbot-toggle {
    width: 46px;
    padding: 0;
  }

  .chatbot-widget.is-open .chatbot-toggle {
    width: max-content;
    padding: 0 14px;
  }

  .chatbot-widget:not(.is-open) .chatbot-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .chatbot-widget:not(.is-open) .chatbot-toggle::before {
    margin-right: 0;
  }

  .chatbot-panel {
    margin-bottom: 8px;
  }

  .chatbot-messages {
    max-height: 190px;
  }

  .chatbot-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  .hero {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .hero-media {
    height: 460px;
  }

  .hero-layout {
    min-height: 0;
    margin-top: -300px;
    gap: 12px;
  }

  h1 {
    margin-bottom: 8px;
    font-size: clamp(2.28rem, 12.2vw, 3rem);
  }

  .hero-lead {
    max-width: 22rem;
    font-size: 0.93rem;
    line-height: 1.33;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 10px;
  }

  .hero-card {
    padding: 12px;
  }

  .hero-card-head {
    margin-bottom: 8px;
  }

  .hero-card h2 {
    font-size: 1.04rem;
  }

  .hero-card-head p:not(.eyebrow) {
    font-size: 0.78rem;
  }

  .lead-form {
    gap: 7px;
  }

  .lead-form label {
    font-size: 0.74rem;
  }

  .lead-form input,
  .lead-form select,
  .form-button {
    min-height: 39px;
  }
}

/* Larger phones (iPhone Plus / Pro Max ~430-440px) crop the hero photo taller,
   so pull the framing down a bit to keep the technician's head fully in view. */
@media (min-width: 410px) and (max-width: 640px) {
  .hero-media img {
    object-position: 60% 64%;
  }
}

/* Desktop: ease the hero copy and form away from the far-left edge toward center */
@media (min-width: 981px) {
  .hero-copy-block,
  .hero-card {
    margin-left: clamp(0px, 6vw, 110px);
  }
}
