:root {
  --ink: #12212b;
  --muted: #5d6b73;
  --line: #d8e0e2;
  --paper: #fbfaf6;
  --white: #ffffff;
  --blue: #176b87;
  --blue-dark: #0d3f52;
  --green: #5d8f62;
  --coral: #d96f4c;
  --gold: #d6a545;
  --shadow: 0 22px 60px rgba(18, 33, 43, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active,
.site-header.inner-header {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 12px 34px rgba(18, 33, 43, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.78;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 15px;
  color: var(--white);
  background: var(--coral);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
}

.page-hero {
  padding: 150px clamp(18px, 6vw, 82px) clamp(70px, 9vw, 120px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(13, 63, 82, 0.96), rgba(23, 107, 135, 0.88)),
    url("one-call-service-pro-hero.png") center / cover;
}

.page-hero h1,
.page-hero p {
  max-width: 820px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 35, 48, 0.9) 0%, rgba(13, 35, 48, 0.68) 38%, rgba(13, 35, 48, 0.28) 72%),
    linear-gradient(0deg, rgba(13, 35, 48, 0.76) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 82px) 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 28px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.proof-strip span {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.service-band,
.split-section,
.coverage,
.pro-section,
.request-section {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:last-child,
.split-section p,
.coverage-copy p,
.pro-panel p,
.request-copy p {
  color: var(--muted);
  line-height: 1.75;
}

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

.detail-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.detail-grid article,
.partner-grid article {
  min-height: 290px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 33, 43, 0.07);
}

.detail-grid h2,
.partner-grid h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.detail-grid p,
.partner-grid p,
.detail-grid li {
  color: var(--muted);
  line-height: 1.7;
}

.detail-grid ul {
  padding-left: 20px;
}

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(18, 33, 43, 0.06);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--green);
}

.service-card:nth-child(3) .service-icon {
  background: var(--coral);
}

.service-card:nth-child(4) .service-icon {
  background: var(--gold);
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f8f7;
}

.step span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background: var(--blue-dark);
}

.coverage .eyebrow {
  color: #f1c76f;
}

.coverage-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.stat-grid div {
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-grid strong {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.stat-grid span {
  font-weight: 800;
}

.pro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pro-panel,
.pro-list {
  border-radius: 8px;
}

.pro-panel {
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background: var(--green);
}

.pro-panel .eyebrow {
  color: #ffe08c;
}

.pro-panel p {
  color: rgba(255, 255, 255, 0.84);
}

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

.pro-list span {
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18, 33, 43, 0.07);
  font-size: 1.1rem;
  font-weight: 900;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #eef3f0;
}

.interior-split {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.quote-section {
  padding: clamp(60px, 8vw, 110px) clamp(18px, 8vw, 120px);
  color: var(--white);
  background: var(--green);
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 4.2rem);
  line-height: 1.08;
  font-weight: 900;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.contact-page-section {
  padding-top: clamp(60px, 8vw, 100px);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.request-form label:nth-child(4),
.request-form .button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c9d3d6;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #10202a;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .section-heading,
  .split-section,
  .coverage,
  .pro-section,
  .request-section,
  .detail-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .hero {
    min-height: 92vh;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    margin-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

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

  .service-grid,
  .stat-grid,
  .pro-list,
  .request-form {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}
