:root {
  --green: #123b35;
  --green-deep: #092723;
  --red: #bd4134;
  --ice: #dcebed;
  --blue: #397084;
  --white: #ffffff;
  --paper: #f5f7f5;
  --ink: #152d2c;
  --line: #c9d7d5;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green);
}
.skip:focus {
  top: 12px;
}

.site-header {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  padding: 15px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.identity {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--green);
  text-decoration: none;
  text-transform: uppercase;
}
.identity > span:last-child {
  line-height: 0.95;
}
.identity strong,
.identity small {
  display: block;
}
.identity strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}
.identity small {
  margin-top: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}
.peak-mark {
  position: relative;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  border: 4px solid var(--green);
  box-shadow: inset 0 0 0 3px var(--white);
}
.peak-mark::before,
.peak-mark::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 44px;
  height: 27px;
  background: var(--ice);
  transform: rotate(45deg);
}
.peak-mark::before {
  left: -11px;
}
.peak-mark::after {
  right: -19px;
  background: var(--blue);
}
.peak-mark i {
  position: absolute;
  z-index: 2;
  right: 8px;
  top: 13px;
  width: 13px;
  height: 13px;
  background: var(--red);
  border-radius: 50%;
}
.peak-mark b {
  position: absolute;
  z-index: 3;
  left: 17px;
  top: 17px;
  font-size: 15px;
}
nav {
  display: flex;
  gap: 30px;
}
nav a {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover {
  color: var(--red);
}
.header-phone {
  min-width: 238px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--green);
  text-align: right;
  text-decoration: none;
  border-right: 7px solid var(--red);
}
.header-phone small,
.header-phone strong {
  display: block;
}
.header-phone small {
  margin-bottom: 4px;
  color: var(--ice);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.header-phone strong {
  font-size: 21px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-screen {
  position: absolute;
  inset: 0;
  background: rgba(9, 39, 35, 0.64);
}
.hero-screen::before {
  content: "";
  position: absolute;
  inset: 0 45% 0 0;
  background: rgba(9, 39, 35, 0.54);
  border-right: 6px solid rgba(220, 235, 237, 0.7);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 88vw);
  margin-left: 84px;
  padding: 58px 0 92px;
}
.location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--ice);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.location span {
  width: 32px;
  height: 3px;
  background: var(--red);
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68.4px;
  line-height: 0.95;
}
.hero-copy > p {
  max-width: 620px;
  margin: 27px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.hero-phone {
  min-width: 310px;
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 19px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  text-decoration: none;
}
.hero-phone small,
.hero-phone strong {
  display: block;
}
.hero-phone small {
  color: #ffe0dc;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-phone strong {
  margin-top: 4px;
  font-size: 24px;
}
.hero-phone > span {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 28px;
}
.hero-phone:hover {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
}
.hero-link {
  display: inline-block;
  margin-left: 20px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ice);
}
.hero-metrics {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  color: var(--green);
  background: var(--white);
  border-top: 8px solid var(--red);
}
.hero-metrics div {
  min-height: 105px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}
.hero-metrics b,
.hero-metrics span {
  display: block;
}
.hero-metrics b {
  margin-bottom: 7px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 19px;
}
.hero-metrics span {
  font-size: 12px;
  font-weight: 700;
}

.kicker {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}
.kicker.light {
  color: var(--ice);
}
.opening {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  padding: 115px 84px;
  background: var(--white);
}
.opening h2,
.service-content h2,
.season-heading h2,
.standard-title h2,
.faq-aside h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56.4px;
  line-height: 1;
}
.opening > div:last-child {
  align-self: end;
}
.opening > div:last-child p {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.75;
}
.opening > div:last-child a {
  display: inline-flex;
  gap: 15px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid var(--red);
}
.opening a span {
  color: var(--red);
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 790px;
  background: var(--ice);
}
.service-photo {
  position: relative;
  min-height: 660px;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(430px, 82%);
  padding: 27px 30px;
  color: var(--white);
  background: var(--green);
  border-top: 7px solid var(--red);
}
.photo-caption span,
.photo-caption b {
  display: block;
}
.photo-caption span {
  margin-bottom: 8px;
  color: var(--ice);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.photo-caption b {
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.25;
}
.service-content {
  align-self: center;
  padding: 70px 72px;
}
.service-content h2 {
  margin-bottom: 32px;
}
.service-rows {
  border-top: 1px solid #a9c2c1;
}
.service-rows article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid #a9c2c1;
}
.service-rows article > span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 22px;
}
.service-rows h3 {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 22px;
}
.service-rows p {
  margin: 0;
  line-height: 1.55;
}

.season {
  padding: 110px 84px;
  color: var(--white);
  background: var(--green-deep);
}
.season-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 25px 80px;
  max-width: 1160px;
  margin-bottom: 52px;
}
.season-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.season-heading h2 {
  color: var(--white);
}
.season-heading > p:last-child {
  margin: 5px 0 0;
  color: #c7dbd8;
  font-size: 18px;
  line-height: 1.7;
}
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.season-grid article {
  min-height: 340px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.season-grid article::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 60px;
  background: var(--ice);
  border-radius: 50%;
  box-shadow: 18px 0 0 var(--blue);
}
.season-grid article.spring::before {
  background: var(--red);
  box-shadow: 18px 0 0 var(--ice);
}
.season-grid article.year::before {
  background: var(--blue);
  box-shadow: 18px 0 0 var(--red);
}
.season-grid article > span {
  color: var(--ice);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.season-grid h3 {
  margin: 11px 0 16px;
  font-family: Georgia, serif;
  font-size: 29px;
}
.season-grid p {
  margin: 0;
  color: #c7dbd8;
  line-height: 1.65;
}

.standard {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding: 110px 84px;
  background: var(--white);
}
.standard-list {
  border-top: 2px solid var(--green);
}
.standard-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.standard-list article > b {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 25px;
}
.standard-list h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 24px;
}
.standard-list p {
  margin: 0;
  line-height: 1.55;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 110px 84px;
  color: var(--white);
  background: var(--blue);
}
.faq-aside h2 {
  color: var(--white);
}
.faq-aside > p:not(.kicker) {
  font-size: 17px;
  line-height: 1.7;
}
.faq-aside > a {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-size: 27px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 4px solid var(--red);
}
.faq-list {
  border-top: 2px solid var(--white);
}
details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  position: absolute;
  top: 19px;
  right: 8px;
  color: var(--ice);
  font-size: 29px;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  margin: 0;
  padding: 0 48px 25px 0;
  color: #e3eef0;
  line-height: 1.7;
}

.final-call {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 70px;
  padding: 70px 84px;
  color: var(--green);
  background: var(--ice);
  border-bottom: 12px solid var(--red);
}
.final-call > span {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.final-call h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 62.4px;
  line-height: 1;
}
.final-call a {
  min-width: 350px;
  padding: 22px 25px;
  color: var(--white);
  background: var(--green);
  text-align: center;
  text-decoration: none;
}
.final-call small,
.final-call strong {
  display: block;
}
.final-call small {
  margin-bottom: 7px;
  color: var(--ice);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.final-call strong {
  font-size: 29px;
}

footer {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 48px 84px;
  color: #bad0cc;
  background: #061e1b;
}
.footer-identity {
  color: var(--white);
}
footer p {
  margin: 0;
  line-height: 1.55;
}
footer > a:not(.identity) {
  color: var(--ice);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}
footer > small {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.mobile-call {
  display: none;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  nav {
    display: none;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    width: 250px;
  }
  .hero-metrics div {
    min-height: 80px;
  }
  .opening {
    gap: 45px;
  }
  .services,
  .standard,
  .faq {
    grid-template-columns: 1fr;
  }
  .service-photo {
    min-height: 580px;
  }
  .standard,
  .faq {
    gap: 40px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 66px;
  }
  .site-header {
    min-height: 84px;
    padding: 11px 18px;
  }
  .peak-mark {
    width: 51px;
    height: 51px;
    flex-basis: 51px;
  }
  .peak-mark b {
    left: 13px;
    top: 13px;
  }
  .identity strong {
    font-size: 22px;
  }
  .header-phone {
    display: none;
  }
  .hero {
    height: calc(100svh - 150px);
    min-height: 620px;
    max-height: 694px;
    align-items: flex-end;
  }
  .hero > img {
    object-position: 40% center;
  }
  .hero-screen {
    background: rgba(9, 39, 35, 0.7);
  }
  .hero-screen::before {
    display: none;
  }
  .hero-copy {
    width: auto;
    margin: 0;
    padding: 24px 20px 108px;
  }
  .location {
    margin-bottom: 13px;
  }
  .hero h1 {
    font-size: clamp(40px, 11.2vw, 44px);
  }
  .hero-copy > p {
    margin: 18px 0;
    font-size: 15px;
    line-height: 1.45;
  }
  .hero-phone {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
  }
  .hero-link {
    display: none;
  }
  .hero-metrics {
    right: 0;
    width: calc(100% - 20px);
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-metrics div {
    min-height: 96px;
    padding: 14px 10px;
  }
  .hero-metrics b {
    font-size: 16px;
  }
  .hero-metrics span {
    font-size: 10px;
  }
  .opening,
  .season-heading {
    grid-template-columns: 1fr;
  }
  .opening {
    gap: 32px;
    padding: 78px 20px;
  }
  .opening h2,
  .service-content h2,
  .season-heading h2,
  .standard-title h2,
  .faq-aside h2 {
    font-size: 44px;
  }
  .service-photo {
    min-height: 450px;
  }
  .service-content {
    padding: 68px 20px;
  }
  .season {
    padding: 78px 20px;
  }
  .season-heading {
    gap: 23px;
  }
  .season-heading .kicker {
    grid-column: auto;
  }
  .season-grid {
    grid-template-columns: 1fr;
  }
  .season-grid article {
    min-height: 0;
  }
  .season-grid article::before {
    margin-bottom: 42px;
  }
  .standard,
  .faq {
    padding: 78px 20px;
  }
  .standard-list article {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }
  .final-call {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 52px 20px;
  }
  .final-call > span {
    grid-column: auto;
  }
  .final-call h2 {
    font-size: 49px;
  }
  .final-call a {
    min-width: 0;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }
  footer > small {
    grid-column: auto;
  }
  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    background: var(--red);
    text-decoration: none;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.18);
  }
  .mobile-call span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .mobile-call strong {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.h1-location {
  display: block;
  margin-top: 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Audit-depth addition: practical homeowner guidance without unsupported claims. */
.service-field-guide {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: color-mix(in srgb, currentColor 4%, transparent);
}
.service-field-guide .guide-shell {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.service-field-guide .guide-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.72;
}
.service-field-guide h2 {
  max-width: 18ch;
  margin: 0.65rem 0 1rem;
  font-size: 3.4rem;
  line-height: 1.03;
  letter-spacing: 0;
}
.service-field-guide .guide-intro {
  max-width: 72ch;
  font-size: 1.08rem;
  line-height: 1.75;
}
.service-field-guide .guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin-top: 2.5rem;
}
.service-field-guide article {
  padding-top: 1.15rem;
  border-top: 2px solid currentColor;
}
.service-field-guide article h3 {
  margin: 0 0 0.55rem;
  font-size: 1.22rem;
  letter-spacing: 0;
}
.service-field-guide article p,
.service-field-guide .guide-local p,
.service-field-guide .guide-call p {
  line-height: 1.7;
}
.service-field-guide .guide-lower {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}
.service-field-guide .guide-local,
.service-field-guide .guide-call {
  padding: 1.4rem;
  border: 1px solid currentColor;
  border-radius: 6px;
}
.service-field-guide .guide-call a {
  display: inline-flex;
  margin-top: 0.75rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 720px) {
  .service-field-guide .guide-shell {
    width: min(100% - 28px, 1120px);
  }
  .service-field-guide .guide-grid,
  .service-field-guide .guide-lower {
    grid-template-columns: 1fr;
  }
  .service-field-guide h2 {
    font-size: 2.25rem;
  }
  .service-field-guide {
    padding: 3.5rem 0 6.5rem;
  }
}

/* Contextual service image treatment */
.season {
  background-image:
    linear-gradient(105deg, rgba(18, 61, 59, 0.95), rgba(18, 61, 59, 0.72)),
    url("/__site-assets/plumberparkerco.com/images/service-background.jpg?v=2&cfv=assetfix-20260513d-1787847221852");
  background-size: cover;
  background-position: center;
}
.season-grid article {
  background: rgba(10, 44, 42, 0.62);
  backdrop-filter: blur(2px);
}

/* Final mobile conversion guard: compact type, complete hero, clear fixed call. */
@media (min-width: 721px) and (max-height: 950px) {
  .hero {
    min-height: calc(100svh - 108px);
  }
}
@media (max-width: 720px) {
  .hero {
    height: auto;
    min-height: 560px;
    max-height: none;
  }
  .hero-copy {
    padding: 24px 20px 112px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1;
  }
  .opening h2,
  .service-content h2,
  .season-heading h2,
  .standard-title h2,
  .faq-aside h2,
  .service-field-guide h2,
  .final-call h2 {
    font-size: 40px;
    line-height: 1.04;
  }
}
@media (max-width: 380px) {
  .hero h1,
  .opening h2,
  .service-content h2,
  .season-heading h2,
  .standard-title h2,
  .faq-aside h2,
  .service-field-guide h2,
  .final-call h2 {
    font-size: 38px;
  }
}
/* 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;
  }
}
