/* Green Howe Plumbing. Deep green for the name, copper for the trade. */
:root {
  --green: #1f5f3f;
  --green-deep: #143f2b;
  --green-soft: #e6efe9;
  --copper: #b87333;
  --copper-deep: #8f5623;
  --copper-soft: #f3e4d3;
  --ink: #1b1f1d;
  --ink-soft: #4a524d;
  --line: #d9ded9;
  --paper: #ffffff;
  --paper-alt: #f6f4ef;
  --danger: #b3261e;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(20, 63, 43, 0.08);
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --wrap: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--green);
}
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}
h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}
h3 {
  font-size: 1.2rem;
}
p {
  margin: 0 0 1em;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}
.muted {
  color: var(--ink-soft);
}
.small {
  font-size: 0.875rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
}
.link {
  font-weight: 600;
}
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus {
  left: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-copper {
  background: var(--copper);
  color: #fff;
}
.btn-copper:hover {
  background: var(--copper-deep);
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-deep);
}
.btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-soft);
}
.ico {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}
.link-btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--green);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  min-height: 68px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text b {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-text span:last-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  font-weight: 700;
}
.site-nav {
  /* Small screens: a second, scrollable row under the brand + call button. */
  display: flex;
  order: 3;
  width: 100%;
  gap: 1.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  font-size: 0.95rem;
}
.site-nav::-webkit-scrollbar {
  display: none;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--copper);
}
.header-cta {
  margin-left: auto;
}
.hide-sm {
  display: none;
}
.show-sm {
  display: inline;
}
@media (min-width: 820px) {
  .header-row {
    flex-wrap: nowrap;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-nav {
    order: 0;
    width: auto;
    margin-left: auto;
    gap: 1.4rem;
    overflow: visible;
    font-size: 1rem;
  }
  .header-cta {
    margin-left: 0;
  }
  .hide-sm {
    display: inline;
  }
  .show-sm {
    display: none;
  }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--green-soft), #fff 70%);
  padding: 3.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
}
.hero h1 {
  color: var(--green-deep);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.trust-card {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-self: center;
}
.trust-card li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-card b {
  font-size: 1.6rem;
  color: var(--copper);
  line-height: 1.1;
}
.trust-card span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
@media (min-width: 900px) {
  .hero {
    padding: 5rem 0 4.5rem;
  }
  .hero-grid {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}
.section-alt {
  background: var(--paper-alt);
}
.section-head {
  margin-bottom: 2rem;
}
.section-head h2 {
  margin-bottom: 0.25rem;
}
.page-head {
  background: linear-gradient(180deg, var(--green-soft), #fff);
  padding: 3rem 0 2rem;
}
.page-head h1 {
  color: var(--green-deep);
}

/* Service cards */
.cards {
  display: grid;
  gap: 1rem;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.15s ease, transform 0.15s ease,
    border-color 0.15s ease;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--copper);
}
.card p {
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}
.card-icon svg {
  width: 30px;
  height: 30px;
}
.card-more {
  color: var(--copper);
  font-weight: 700;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Copper band */
.band {
  padding: 3.5rem 0;
}
.band-copper {
  background: linear-gradient(135deg, var(--copper-deep), var(--copper));
  color: #fff;
}
.band-copper .eyebrow {
  color: var(--copper-soft);
}
.band-copper h2 {
  color: #fff;
}
.band-copper p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
}
.band-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .band-grid {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
}
.check {
  width: 1.3em;
  height: 1.3em;
  flex: none;
  color: var(--copper);
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  margin-top: 0.15em;
}
.band-copper .check {
  color: var(--copper-deep);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.steps p {
  margin: 0;
  color: var(--ink-soft);
}
.step-num {
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}
@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service area */
.area-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .area-grid {
    grid-template-columns: 2fr 3fr;
    align-items: start;
  }
}
.towns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
}
.towns li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--line);
}
.towns .more a {
  font-weight: 700;
}
@media (min-width: 640px) {
  .towns {
    grid-template-columns: repeat(3, 1fr);
  }
  .towns-full {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Services page */
.service-grid {
  display: grid;
  gap: 2rem;
}
.service-grid h2 {
  margin-top: 0.75rem;
}
@media (min-width: 900px) {
  .service-grid {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}
.prose {
  max-width: 70ch;
}
.prose h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    align-items: start;
  }
}
.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.contact-list .ico {
  color: var(--copper);
  margin-top: 0.25em;
  width: 1.25em;
  height: 1.25em;
}
.contact-list a {
  font-weight: 600;
}

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-grid .field {
  margin-bottom: 0;
}
.field label {
  font-weight: 600;
  font-size: 0.95rem;
}
.field .hint {
  color: var(--ink-soft);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(31, 95, 63, 0.25);
  border-color: var(--green);
}
.field textarea {
  resize: vertical;
  min-height: 6rem;
}
.form-grid + .field {
  margin-top: 1rem;
}
.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--danger);
}
.error {
  color: var(--danger);
  font-size: 0.875rem;
  margin: 0;
}
.notice {
  background: var(--copper-soft);
  border-left: 4px solid var(--copper);
  padding: 0.75rem 1rem;
  border-radius: 6px;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}
.form-sent {
  border-color: var(--green);
  background: var(--green-soft);
}
.form-sent h3 {
  color: var(--green-deep);
}

/* Leads table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.leads {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
}
.leads th,
.leads td {
  text-align: left;
  vertical-align: top;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
}
.leads th {
  background: var(--paper-alt);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.leads .msg {
  min-width: 18rem;
  white-space: pre-wrap;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer a {
  color: #fff;
}
.site-footer h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.site-footer .muted {
  color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 820px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.brand-footer {
  color: #fff;
  margin-bottom: 0.75rem;
}
.brand-footer .brand-text b {
  font-size: 1.05rem;
}
address {
  font-style: normal;
  line-height: 1.7;
}
.hours {
  margin: 0;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
}
.hours dt,
.hours dd {
  margin: 0;
}
.hours dd {
  color: #fff;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer-links a {
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
}
