@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --navy: #101d2f;
  --navy2: #182b46;
  --red: #e4342c;
  --red2: #ba231d;
  --cream: #f7f4ee;
  --gold: #f2bd49;
  --white: #fff;
  --ink: #142033;
  --muted: #5d6877;
  --line: #dce1e6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px;
  background: #fff;
}
.skip:focus {
  left: 0;
}
.alert-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.alert-bar a {
  color: #fff;
  text-underline-offset: 3px;
}
.site-header {
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: max-content;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50% 50% 50% 8px;
  font: 800 22px Manrope;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font: 800 18px Manrope;
}
.brand small {
  margin-top: 2px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
nav a:hover {
  color: var(--red);
}
.header-call {
  min-width: 210px;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  text-align: center;
  text-decoration: none;
  border-bottom: 4px solid var(--red);
}
.header-call small,
.header-call strong {
  display: block;
}
.header-call small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header-call strong {
  margin-top: 3px;
  font-size: 18px;
}
.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  background: var(--cream);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px max(42px, calc((100vw - 1240px) / 2));
}
.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.red {
  color: var(--red);
}
h1,
h2,
h3 {
  font-family: Manrope, Arial, sans-serif;
}
h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 5.3vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero-lead {
  max-width: 650px;
  margin: 24px 0;
  color: #3e4a59;
  font-size: 18px;
  line-height: 1.62;
}
.primary-call {
  width: max-content;
  min-width: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 20px;
  color: #fff;
  background: var(--red);
  text-decoration: none;
  box-shadow: 0 6px 0 var(--red2);
}
.primary-call span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.primary-call strong {
  font-size: 21px;
}
.primary-call:hover {
  background: var(--red2);
}
.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.hero-list li {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  font-weight: 700;
}
.hero-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.hero-photo {
  position: relative;
  margin: 0;
  min-height: 640px;
  overflow: hidden;
  background: var(--navy);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 29, 47, 0.25), transparent 45%);
}
.photo-note {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  padding: 18px 22px;
  color: #fff;
  background: var(--navy);
}
.photo-note b,
.photo-note span {
  display: block;
}
.photo-note span {
  margin-top: 5px;
  color: #cfd8e5;
  font-size: 11px;
  text-transform: uppercase;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: -2px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16, 29, 47, 0.08);
}
.trust-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-strip div:last-child {
  border: 0;
}
.trust-strip b,
.trust-strip span {
  display: block;
}
.trust-strip b {
  color: var(--red);
  font: 800 15px Manrope;
}
.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.section {
  padding: 92px max(28px, calc((100vw - 1240px) / 2));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-heading h2,
.why h2,
.urgent h2,
.local h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.section-heading > p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.services {
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--cream);
  border-top: 5px solid var(--navy);
}
.service-grid article:nth-child(2),
.service-grid article:nth-child(5) {
  border-color: var(--red);
}
.service-grid article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}
.service-grid h3 {
  margin: 26px 0 10px;
  font-size: 23px;
}
.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.service-grid a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}
.why {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--navy);
  color: #fff;
}
.why-photo {
  min-height: 800px;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-copy {
  align-self: center;
  padding: 70px max(36px, calc((100vw - 1240px) / 2)) 70px 70px;
}
.why-copy > p:not(.eyebrow) {
  color: #c9d2df;
  line-height: 1.65;
}
.why-list {
  margin: 32px 0;
}
.why-list article {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.why-list b {
  font: 800 18px Manrope;
}
.why-list p {
  margin: 8px 0 0;
  color: #c9d2df;
  line-height: 1.55;
}
.primary-call.compact {
  min-width: 300px;
}
.urgent {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 72px max(28px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--red);
}
.urgent ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.urgent li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 17px;
  background: rgba(255, 255, 255, 0.1);
}
.urgent li b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff;
  border-radius: 50%;
}
.urgent li span {
  font-size: 14px;
  line-height: 1.5;
}
.process {
  background: var(--cream);
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.steps article {
  min-height: 300px;
  padding: 30px;
  background: #fff;
}
.steps article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 800;
}
.steps h3 {
  margin: 48px 0 12px;
  font-size: 21px;
}
.steps p {
  color: var(--muted);
  line-height: 1.6;
}
.local {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  padding: 92px max(28px, calc((100vw - 1240px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 29, 47, 0.96), rgba(16, 29, 47, 0.78)),
    url("/__site-assets/furnacerepairparkerco.com/images/parker-heating-service-bg.jpg?cfv=assetfix-20260513d-1788143498167");
  background-size: cover;
  background-position: center;
}
.local-copy > p:not(.eyebrow) {
  color: #d6dde7;
  font-size: 17px;
  line-height: 1.7;
}
.local ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.local li:before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold);
  font-weight: 800;
}
.local-card {
  padding: 38px;
  color: var(--ink);
  background: #fff;
  border-top: 7px solid var(--red);
}
.local-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.local-card h3 {
  margin: 18px 0;
  font-size: 30px;
  line-height: 1.15;
}
.local-card a {
  display: block;
  padding: 16px;
  color: #fff;
  background: var(--red);
  text-align: center;
  font-weight: 800;
  text-decoration: none;
}
.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}
.faq-heading > a {
  display: inline-block;
  margin-top: 16px;
  color: var(--red);
  font-weight: 800;
  text-underline-offset: 4px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  position: relative;
  padding: 23px 45px 23px 0;
  cursor: pointer;
  list-style: none;
  font: 700 17px Manrope;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  position: absolute;
  right: 8px;
  top: 17px;
  color: var(--red);
  font-size: 27px;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  margin: 0;
  padding: 0 45px 23px 0;
  color: var(--muted);
  line-height: 1.65;
}
.final-cta {
  padding: 82px 24px;
  color: #fff;
  background: var(--navy);
  text-align: center;
}
.final-cta p {
  margin: 16px auto;
  max-width: 650px;
  color: #d2dae5;
}
.final-cta .eyebrow {
  color: var(--gold);
}
.final-cta a {
  display: inline-block;
  margin-top: 18px;
  padding: 18px 32px;
  color: #fff;
  background: var(--red);
  font-size: 25px;
  font-weight: 800;
  text-decoration: none;
}
footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 44px max(28px, calc((100vw - 1240px) / 2));
  background: #091321;
  color: #c6cfda;
}
footer .brand {
  color: #fff;
}
footer > a:not(.brand) {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
footer > small {
  grid-column: 1/-1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-call {
  display: none;
}
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .trust-strip {
    margin: 0;
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why {
    grid-template-columns: 1fr;
  }
  .why-photo {
    min-height: 500px;
  }
  .why-copy {
    padding: 60px 28px;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }
  .alert-bar {
    height: 34px;
    font-size: 10px;
  }
  .site-header {
    height: 72px;
    padding: 10px 16px;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
  }
  .brand strong {
    font-size: 15px;
  }
  .header-call {
    display: none;
  }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 30px 20px 26px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1;
  }
  .hero-lead {
    margin: 18px 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .primary-call {
    width: 100%;
    min-width: 0;
    display: block;
    padding: 13px 14px;
    text-align: center;
  }
  .primary-call span,
  .primary-call strong {
    display: block;
  }
  .primary-call strong {
    margin-top: 4px;
    white-space: nowrap;
  }
  .primary-call strong {
    font-size: 18px;
  }
  .hero-list {
    margin-top: 24px;
  }
  .hero-photo {
    min-height: 165px;
    height: 165px;
  }
  .hero-photo img {
    object-position: center 58%;
  }
  .photo-note {
    left: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip div {
    padding: 17px;
  }
  .section {
    padding: 64px 20px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2,
  .why h2,
  .urgent h2,
  .local h2,
  .faq h2,
  .final-cta h2 {
    font-size: 36px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: 0;
  }
  .why-photo {
    min-height: 260px;
    height: 260px;
  }
  .why-copy {
    padding: 50px 20px;
  }
  .urgent {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 20px;
  }
  .urgent ol {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    min-height: 0;
  }
  .steps h3 {
    margin-top: 28px;
  }
  .local {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 64px 20px;
  }
  .local ul {
    grid-template-columns: 1fr;
  }
  .faq {
    gap: 34px;
  }
  .final-cta {
    padding: 64px 20px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }
  .mobile-call {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    background: var(--red);
    text-decoration: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.18);
  }
  .mobile-call span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-call strong {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 38px;
  }
  .section-heading h2,
  .why h2,
  .urgent h2,
  .local h2,
  .faq h2,
  .final-cta h2 {
    font-size: 34px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .primary-call {
    display: grid;
    gap: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* Mobile readability guard: keep long display headings scannable without changing this site's visual identity. */
@media (max-width: 600px) {
  h1 {
    max-width: 100% !important;
    font-size: clamp(36px, 10.25vw, 42px) !important;
    line-height: 1.04 !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2 {
    max-width: 100% !important;
    font-size: clamp(30px, 9vw, 38px) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal;
    word-break: normal;
  }
}
