:root {
  --ink: #082d3e;
  --ink-deep: #041e2b;
  --aqua: #21b8a6;
  --aqua-soft: #dff7f3;
  --orange: #f35b32;
  --paper: #f7faf9;
  --white: #ffffff;
  --line: #c7d7d8;
  --text: #173b47;
}

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

.utility {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 60px;
  color: var(--ink-deep);
  background: var(--aqua);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.utility p {
  margin: 0;
}
.utility a {
  text-decoration: none;
}
.site-header {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 36px;
  padding: 16px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}
.logo > span:last-child {
  max-width: 220px;
  line-height: 1.05;
}
.logo strong {
  display: block;
  font-size: 25px;
}
.logo-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 5px solid var(--ink);
  border-radius: 50%;
}
.logo-mark::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 10px;
  top: 10px;
  border: 5px solid var(--aqua);
  border-top-color: transparent;
  border-radius: 50%;
}
.logo-mark i {
  position: absolute;
  width: 16px;
  height: 5px;
  right: -10px;
  top: 19px;
  background: var(--orange);
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover {
  color: var(--orange);
}
.header-call {
  padding: 15px 19px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.header-call:hover {
  color: var(--orange);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 30, 43, 0.78);
}
.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  border-right: 10px solid rgba(33, 184, 166, 0.66);
  transform: skewX(-9deg);
  transform-origin: bottom;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 88vw);
  margin-left: 84px;
  padding: 60px 0 96px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 4px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}
.eyebrow.dark {
  color: var(--orange);
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 74.4px;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}
.hero-lede {
  max-width: 610px;
  margin: 28px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.primary,
.secondary {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid var(--white);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}
.primary {
  gap: 14px;
  color: var(--ink-deep);
  background: var(--aqua);
  border-color: var(--aqua);
}
.primary span {
  font-size: 11px;
}
.primary strong {
  font-size: 21px;
}
.secondary {
  color: var(--white);
  background: transparent;
  font-size: 12px;
}
.primary:hover {
  background: var(--white);
  border-color: var(--white);
}
.secondary:hover {
  color: var(--ink);
  background: var(--white);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-points li::before {
  content: "+";
  margin-right: 8px;
  color: var(--aqua);
  font-size: 19px;
}
.urgent-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(470px, 43vw);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 25px 40px;
  color: var(--ink-deep);
  background: var(--aqua);
  border-left: 10px solid var(--orange);
}
.urgent-note b {
  font-size: 18px;
  text-transform: uppercase;
}
.urgent-note span {
  line-height: 1.45;
}

.problem-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--ink);
}
.problem-strip span {
  padding: 21px 14px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.problem-strip span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: var(--orange);
}

.services {
  padding: 110px 84px;
  background: var(--white);
}
.section-title {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 20px 70px;
  max-width: 1120px;
  margin-bottom: 56px;
}
.section-title .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.02;
}
.section-title > p:last-child {
  margin: 7px 0 0;
  font-size: 18px;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1260px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 280px;
  display: flex;
  gap: 22px;
  padding: 34px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card.featured {
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--ink);
}
.service-number {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}
.service-card p {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}
.service-card.featured h3 {
  color: var(--white);
  font-size: 39px;
}
.service-card div > span {
  display: block;
  line-height: 1.6;
}

.method {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 720px;
  color: var(--ink);
  background: var(--aqua-soft);
}
.method-photo {
  position: relative;
  height: 720px;
  min-height: 620px;
  overflow: hidden;
}
.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(390px, 80%);
  padding: 25px 30px;
  color: var(--white);
  background: var(--ink);
  border-top: 7px solid var(--orange);
}
.photo-label span,
.photo-label strong {
  display: block;
}
.photo-label span {
  margin-bottom: 7px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.method-copy {
  align-self: center;
  padding: 70px 72px;
}
.method-copy h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50.4px;
  line-height: 1;
}
.method-copy > p {
  font-size: 18px;
  line-height: 1.7;
}
.method-copy ol {
  margin: 32px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #a9cdca;
}
.method-copy li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid #a9cdca;
}
.method-copy li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}
.method-copy b,
.method-copy small {
  display: block;
}
.method-copy b {
  margin-bottom: 4px;
  color: var(--ink);
}
.method-copy small {
  font-size: 14px;
  line-height: 1.45;
}
.text-call {
  display: inline-flex;
  gap: 15px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid var(--orange);
}
.text-call span {
  color: var(--orange);
}

.local-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 90px 84px;
  color: var(--white);
  background: var(--ink-deep);
}
.local-band h2 {
  max-width: 660px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.04;
}
.local-band > div:last-child > p {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
}
.local-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.local-facts span {
  padding: 20px 20px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.local-facts b {
  display: block;
  margin-bottom: 6px;
  color: var(--aqua);
  font-size: 16px;
  text-transform: uppercase;
}

.questions {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  padding: 110px 84px;
  background: var(--white);
}
.question-intro h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 50.4px;
  line-height: 1;
}
.question-intro > a {
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
}
.faq-list {
  border-top: 2px solid var(--ink);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 800;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  position: absolute;
  right: 8px;
  top: 20px;
  color: var(--orange);
  font-size: 28px;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  max-width: 720px;
  margin: 0;
  padding: 0 40px 24px 0;
  line-height: 1.7;
}

.final-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 68px 84px;
  color: var(--ink-deep);
  background: var(--aqua);
  border-bottom: 10px solid var(--orange);
}
.final-call p {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.final-call h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 48px;
}
.final-call a {
  min-width: 330px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  text-decoration: none;
}
.final-call small,
.final-call strong {
  display: block;
}
.final-call small {
  margin-bottom: 7px;
  color: var(--aqua);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.final-call strong {
  font-size: 26px;
}

footer {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 42px 84px;
  color: #bed0d5;
  background: #031721;
}
.footer-logo {
  color: var(--white);
}
footer p {
  margin: 0;
  line-height: 1.5;
}
footer > a:not(.logo) {
  color: var(--aqua);
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}
footer small {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
}
.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  nav {
    display: none;
  }
  .hero-shade::after {
    inset-right: 28%;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method,
  .questions {
    grid-template-columns: 1fr;
  }
  .method-photo {
    height: 540px;
    min-height: 540px;
  }
  .questions {
    gap: 40px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 66px;
  }
  .utility {
    justify-content: center;
    text-align: center;
  }
  .utility p {
    display: none;
  }
  .site-header {
    min-height: 78px;
    padding: 12px 18px;
  }
  .logo {
    font-size: 12px;
  }
  .logo strong {
    font-size: 18px;
  }
  .logo-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .logo-mark::before {
    left: 7px;
    top: 7px;
  }
  .header-call {
    display: none;
  }
  .hero {
    min-height: 650px;
    align-items: flex-end;
  }
  .hero > img {
    object-position: 62% center;
  }
  .hero-shade {
    background: rgba(4, 30, 43, 0.78);
  }
  .hero-shade::after {
    display: none;
  }
  .hero-copy {
    width: auto;
    margin: 0;
    padding: 42px 20px 128px;
  }
  .hero h1 {
    font-size: 54.6px;
  }
  .hero-lede {
    font-size: 17px;
  }
  .primary,
  .secondary {
    width: 100%;
  }
  .secondary,
  .hero-points {
    display: none;
  }
  .primary {
    flex-direction: column;
    gap: 3px;
  }
  .hero-points {
    gap: 9px 15px;
  }
  .urgent-note {
    width: 100%;
    min-height: 112px;
    padding: 22px 20px;
    border-left: 0;
    border-top: 7px solid var(--orange);
  }
  .problem-strip {
    grid-template-columns: 1fr 1fr;
  }
  .problem-strip span:last-child {
    grid-column: 1 / -1;
  }
  .services,
  .questions {
    padding: 76px 20px;
  }
  .section-title {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-title .eyebrow {
    grid-column: auto;
  }
  .section-title h2,
  .method-copy h2,
  .question-intro h2 {
    font-size: 43px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card.featured {
    min-height: 0;
    padding: 28px 24px;
  }
  .service-card.featured h3 {
    font-size: 31px;
  }
  .method-photo {
    height: 430px;
    min-height: 430px;
  }
  .method-copy {
    padding: 64px 20px;
  }
  .local-band {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 70px 20px;
  }
  .local-facts {
    grid-template-columns: 1fr;
  }
  .questions {
    gap: 32px;
  }
  .final-call {
    align-items: stretch;
    flex-direction: column;
    padding: 54px 20px;
  }
  .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: 13px;
    color: var(--white);
    background: var(--orange);
    text-decoration: none;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.18);
  }
  .mobile-call span {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .mobile-call strong {
    font-size: 20px;
  }
}

@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 photography: active drain clearing */
.services {
  background-image:
    linear-gradient(95deg, rgba(10, 42, 46, 0.94), rgba(10, 42, 46, 0.72)),
    url("/__site-assets/draincleaningchandleraz.com/images/chandler-drain-floor-bg.jpg?v=2&cfv=assetfix-20260513d-1787857292324");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.services .section-title h2 {
  color: #fff;
}
.services .service-card:not(.featured),
.services .service-card:not(.featured) div > span {
  color: var(--ink);
}
.services .section-title > p {
  color: #d8ebea;
}
.services .service-card {
  background: rgba(255, 255, 255, 0.95);
}
.services .service-card.featured {
  background: rgba(231, 91, 45, 0.96);
}

/* Final mobile fold and type guard. */
@media (max-width: 720px) {
  .hero {
    min-height: 540px;
  }
  .hero-copy {
    padding: 24px 20px 118px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1;
  }
  .hero-actions {
    display: none;
  }
  .section-title h2,
  .method-copy h2,
  .question-intro h2,
  .local-band h2,
  .final-call h2,
  .service-field-guide h2 {
    font-size: 40px;
    line-height: 1.03;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 380px) {
  .hero h1,
  .section-title h2,
  .method-copy h2,
  .question-intro h2,
  .local-band h2,
  .final-call h2,
  .service-field-guide 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;
  }
}
