:root {
  --ink: #102c2c;
  --teal: #0c5a56;
  --mint: #d9eee8;
  --sand: #f5f0e7;
  --white: #fff;
  --copper: #9c4d26;
  --line: #cbd8d4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: #183332;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.top {
  height: 32px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  font-size: 11px;
}
.top a {
  text-decoration: none;
  font-weight: 800;
}
header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
}
.brand > span {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 23px;
  font-weight: 900;
}
.brand strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
}
.brand small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #526d69;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 12px 17px;
  border-radius: 4px;
}
.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071c1b;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #071c1bf4 0,
    #071c1bd7 41%,
    #071c1b2e 68%,
    transparent
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  color: #fff;
}
.hero-inner > * {
  max-width: 650px;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: #9dd8cc;
  margin: 0;
}
.eyebrow.dark {
  color: var(--teal);
}
h1 {
  font-size: clamp(45px, 6.1vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 15px 0 22px;
  max-width: 760px;
}
.lead {
  font-size: 19px;
  max-width: 590px;
}
.phone-cta {
  display: inline-flex;
  flex-direction: column;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 4px;
  margin-top: 15px;
  box-shadow: 0 9px 24px #0004;
}
.phone-cta span {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
}
.phone-cta strong {
  font-size: 27px;
}
.micro-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
  font-size: 12px;
}
.micro-proof li:before {
  content: "✓";
  color: #8ce1cf;
  margin-right: 6px;
}
.urgent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  background: var(--mint);
  border-bottom: 1px solid #abcac3;
}
.urgent > div {
  display: flex;
  gap: 18px;
  align-items: center;
}
.urgent b {
  color: var(--ink);
}
.urgent span {
  font-size: 14px;
}
.urgent > a {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 800;
}
.problem-section,
.objections,
.faq {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
}
.section-head {
  max-width: 760px;
  margin-bottom: 35px;
}
.section-head h2,
.response h2,
.local h2,
.faq h2 {
  font-size: clamp(36px, 4.7vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink);
  margin: 10px 0 15px;
}
.section-head > p:last-child {
  font-size: 17px;
}
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problems > a {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 8px 25px #0c5a560f;
  transition:
    transform 0.15s,
    border-color 0.15s;
}
.problems > a:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
}
.problems span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-weight: 800;
}
.problems h3 {
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
}
.problems b {
  display: block;
  color: var(--teal);
  font-size: 13px;
  margin-top: 18px;
}
.response {
  padding: 85px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  background: var(--sand);
}
.response figure {
  margin: 0;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 16px 40px #102c2c1c;
}
.response figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
}
.response figcaption {
  padding: 10px 4px 2px;
  font-size: 12px;
  color: #58716d;
}
.response ol {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.response li {
  display: flex;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px solid #c9d5d1;
}
.response li:last-child {
  border-bottom: 1px solid #c9d5d1;
}
.response li > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: none;
}
.response li b {
  color: var(--ink);
}
.response li p {
  margin: 2px 0;
  font-size: 14px;
}
.text-link {
  color: var(--teal);
  font-weight: 800;
}
.objections {
  background: #fff;
}
.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.objection-grid article {
  padding: 25px;
  border-left: 4px solid var(--copper);
  background: #fbfaf7;
}
.objection-grid h3 {
  font-size: 21px;
  color: var(--ink);
}
.local {
  padding: 70px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  background: var(--teal);
  color: #fff;
}
.local h2 {
  color: #fff;
  margin-bottom: 0;
}
.local > p {
  font-size: 18px;
  margin: auto;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  background: #f8fbfa;
}
.faq > div:first-child > a {
  font-size: 20px;
  color: var(--teal);
  font-weight: 800;
}
.faq details {
  padding: 18px 4px;
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}
.final {
  text-align: center;
  padding: 75px 20px;
  background: var(--ink);
  color: #fff;
}
.final > p {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #9dd8cc;
}
.final h2 {
  font-size: clamp(42px, 6vw, 70px);
  margin: 8px;
}
.final .phone-cta {
  background: var(--copper);
}
footer {
  background: #071c1b;
  color: #fff;
  padding: 45px max(24px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer a {
  text-decoration: none;
}
.footer-brand {
  font-weight: 800;
}
.mobile-call {
  display: none;
}
.service-hero {
  padding: 75px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 55px;
  align-items: center;
  background: var(--ink);
  color: #fff;
}
.service-hero h1 {
  font-size: clamp(43px, 5.5vw, 70px);
  margin: 12px 0 20px;
}
.service-hero > div > p:not(.eyebrow) {
  font-size: 18px;
}
.service-hero figure {
  margin: 0;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}
.service-hero figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-hero figcaption {
  color: #58716d;
  padding: 9px 3px 0;
  font-size: 11px;
}
.service-content {
  padding: 80px max(24px, calc((100% - 1080px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
}
.service-content h2 {
  font-size: 37px;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 35px;
}
.signal-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.signal-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.call-panel {
  height: max-content;
  padding: 25px;
  background: var(--mint);
  border-radius: 6px;
}
.call-panel h2 {
  margin-top: 5px;
}
.call-panel ul {
  padding-left: 20px;
}
.call-panel .phone-cta {
  width: 100%;
  align-items: center;
  text-align: center;
}
.related {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 35px;
}
.related a {
  color: var(--teal);
  font-weight: 800;
}
@media (max-width: 850px) {
  body {
    padding-bottom: 68px;
  }
  .top {
    display: none;
  }
  header {
    height: 74px;
    padding: 0 14px;
  }
  .brand > span {
    width: 42px;
    height: 42px;
  }
  .brand strong {
    font-size: 15px;
  }
  .brand small {
    font-size: 9px;
  }
  nav > a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    padding: 9px 11px;
  }
  .hero {
    min-height: 700px;
    align-items: flex-end;
  }
  .hero > img {
    object-position: 68% center;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #071c1bfc 0,
      #071c1be9 58%,
      #071c1b21 88%
    );
  }
  .hero-inner {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .lead {
    font-size: 16px;
  }
  .urgent {
    display: block;
    padding: 18px;
  }
  .urgent > div {
    display: block;
  }
  .urgent span {
    display: block;
    margin: 5px 0 12px;
  }
  .urgent > a {
    display: block;
    text-align: center;
  }
  .problem-section,
  .objections,
  .faq,
  .response,
  .local,
  .service-hero,
  .service-content {
    padding: 65px 18px;
    grid-template-columns: 1fr;
  }
  .problems,
  .objection-grid {
    grid-template-columns: 1fr;
  }
  .response,
  .local,
  .faq,
  .service-hero,
  .service-content {
    gap: 38px;
  }
  .final {
    padding: 60px 18px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--copper);
    color: #fff;
    padding: 8px 12px;
  }
  .mobile-call a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .mobile-call span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
  }
  .mobile-call strong {
    font-size: 20px;
  }
}

/* Desert-water finish: a polished, tactile layer unique to Queen Creek. */
body * {
  letter-spacing: 0;
}
body {
  background: #fbf8f1;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 79px,
    #0c5a5608 80px
  );
}
main {
  overflow: hidden;
}
header {
  background: #fffdf9ed;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px #102c2c0a;
}
.brand > span {
  position: relative;
  border-radius: 3px 18px 3px 18px;
  box-shadow: 5px 5px 0 #d9eee8;
  transform: rotate(-2deg);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.brand:hover > span {
  transform: rotate(2deg) translateY(-2px);
  box-shadow: 7px 7px 0 #e8c8b6;
}
nav a:not(.nav-cta) {
  position: relative;
}
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--copper);
  transition: right 180ms ease;
}
nav a:not(.nav-cta):hover::after {
  right: 0;
}
.nav-cta,
.phone-cta,
.urgent > a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.nav-cta:hover,
.phone-cta:hover,
.urgent > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px #102c2c2b;
}
.hero {
  min-height: 680px;
  isolation: isolate;
  border-bottom: 7px solid var(--copper);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 22px;
  border: 1px solid #ffffff35;
  border-radius: 2px 34px 2px 34px;
  pointer-events: none;
}
.hero-inner {
  padding-left: 34px;
}
.hero-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 7px;
  height: 106px;
  background: var(--copper);
  box-shadow: 0 118px 0 #9dd8cc;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 5px 26px #0008;
}
.phone-cta {
  border-radius: 3px 18px 3px 18px;
  border: 1px solid #ffd7c5;
  box-shadow:
    7px 7px 0 #071c1b,
    0 14px 34px #0005;
}
.phone-cta::after {
  content: "Call  →";
  position: absolute;
  right: 16px;
  top: 15px;
  font-size: 10px;
  font-weight: 900;
  opacity: 0.78;
}
.phone-cta {
  position: relative;
  min-width: 248px;
}
.micro-proof li {
  padding: 7px 10px;
  border: 1px solid #ffffff35;
  background: #071c1b66;
}
.urgent {
  position: relative;
  border-top: 1px solid #fff;
  background-color: var(--mint);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 13px,
    #0c5a5609 14px,
    #0c5a5609 15px
  );
}
.urgent::before {
  content: "01";
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--teal);
  font-weight: 800;
}
.section-head h2,
.response h2,
.local h2,
.faq h2,
.service-content h2,
.call-panel h2,
.final h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}
.problem-section,
.objections,
.faq {
  position: relative;
}
.problem-section::before,
.faq::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 12px;
  top: 50px;
  right: max(24px, calc((100% - 1180px) / 2));
  background: repeating-linear-gradient(
    90deg,
    var(--copper) 0 8px,
    transparent 8px 14px
  );
}
.problems {
  counter-reset: queen-service;
}
.problems > a {
  counter-increment: queen-service;
  position: relative;
  overflow: hidden;
  background: #fffefb;
  border: 1px solid #b8cbc5;
  border-radius: 3px 26px 3px 26px;
  box-shadow: 0 14px 30px #102c2c0d;
}
.problems > a::after {
  content: "0" counter(queen-service);
  position: absolute;
  right: 14px;
  bottom: -14px;
  color: #0c5a5610;
  font:
    900 66px/1 Georgia,
    serif;
}
.problems > a:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: var(--copper);
  box-shadow: 0 24px 45px #102c2c1a;
}
.problems > a:nth-child(even):hover {
  transform: translateY(-8px) rotate(0.5deg);
}
.problems span {
  border-radius: 2px 12px 2px 12px;
  box-shadow: 3px 3px 0 var(--mint);
}
.response figure,
.service-hero figure {
  position: relative;
  border-radius: 2px 34px 2px 34px;
  box-shadow:
    14px 14px 0 var(--mint),
    20px 20px 0 var(--teal);
}
.response figure::before,
.service-hero figure::before {
  content: "+";
  position: absolute;
  z-index: 2;
  right: -12px;
  top: -20px;
  color: var(--copper);
  font:
    700 42px/1 Georgia,
    serif;
}
.response figure img,
.service-hero figure img {
  border-radius: inherit;
}
.response li > span {
  border-radius: 50% 50% 8px 50%;
  box-shadow: 3px 3px 0 #b9dcd4;
}
.objection-grid article {
  border-top: 4px solid var(--copper);
  background: #fff;
  box-shadow: 0 12px 25px #102c2c0b;
}
.local {
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 31px,
    #ffffff0d 32px
  );
}
.faq details {
  background: #fff;
  border: 1px solid #d9e3df;
  margin-bottom: 10px;
  padding: 0 18px;
  border-radius: 3px 14px 3px 14px;
}
.faq summary {
  position: relative;
  padding-right: 38px;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--copper);
  font:
    700 25px/1 Georgia,
    serif;
}
.faq details[open] summary::after {
  content: "−";
}
.final {
  position: relative;
  border-top: 7px solid var(--copper);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 34px,
    #ffffff0d 35px
  );
}
.service-hero {
  background-color: #f6f1e8;
  color: var(--ink);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 64px,
    #0c5a5608 65px
  );
}
.service-hero .eyebrow {
  color: var(--teal);
}
.service-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}
.signal-list li::marker {
  color: var(--copper);
}
.call-panel {
  border-radius: 3px 26px 3px 26px;
  border: 1px solid #b6cfc8;
  box-shadow: 10px 10px 0 var(--mint);
}
.related a {
  border-bottom: 2px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}
.related a:hover {
  color: var(--copper);
  border-color: var(--copper);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-inner {
    animation: queen-rise 650ms ease both;
  }
  @keyframes queen-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 850px) {
  .hero {
    min-height: 660px;
  }
  .hero::before {
    inset: 12px;
  }
  .hero-inner {
    padding-left: 18px;
  }
  .hero-inner::before {
    width: 4px;
    height: 72px;
    box-shadow: 0 82px 0 #9dd8cc;
  }
  .urgent::before,
  .problem-section::before,
  .faq::before {
    display: none;
  }
  .problems > a,
  .faq details,
  .call-panel {
    border-radius: 3px 16px 3px 16px;
  }
  .response figure,
  .service-hero figure {
    box-shadow:
      7px 7px 0 var(--mint),
      11px 11px 0 var(--teal);
  }
}
