@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700;800&family=Oswald:wght@600;700&family=Yellowtail&display=swap");

:root {
  --deep-navy: #0B1D2B;
  --teal: #0FA6A6;
  --vintage-orange: #F15A24;
  --cream: #F4E9D6;
  --steel-gray: #6B7280;
  --graphite: #111111;

  --ink: var(--graphite);
  --ink-soft: var(--steel-gray);
  --paper: var(--cream);
  --white: #ffffff;
  --navy: var(--deep-navy);
  --red: var(--vintage-orange);
  --red-dark: var(--graphite);
  --copper: var(--vintage-orange);
  --line: rgba(107, 114, 128, 0.32);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.16);
  --max: 1160px;
  --font-headline: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-subhead: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-accent: "Brush Script MT", "Yellowtail", "Segoe Script", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: rgba(18, 35, 59, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  line-height: 1.15;
  min-width: 0;
}

.brand strong {
  font-family: var(--font-subhead);
  font-size: 1rem;
  font-weight: 600;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-accent);
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-subhead);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--cream);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-subhead);
  font-weight: 700;
  white-space: nowrap;
}

.header-call:hover,
.btn.primary:hover,
.quick-strip a:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
}

.hero {
  min-height: calc(88vh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy);
  background:
    linear-gradient(90deg, rgba(11, 29, 43, 0.97) 0%, rgba(11, 29, 43, 0.93) 42%, rgba(11, 29, 43, 0.8) 72%, rgba(11, 29, 43, 0.32) 100%),
    url("assets/throwback-plumbing-hero-v2.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--copper), var(--teal));
  z-index: -1;
}

.subpage-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  position: relative;
  color: var(--white);
  background-color: var(--navy);
  background:
    linear-gradient(90deg, rgba(11, 29, 43, 0.96) 0%, rgba(11, 29, 43, 0.88) 42%, rgba(11, 29, 43, 0.48) 70%, rgba(11, 29, 43, 0.12) 100%),
    url("assets/throwback-plumbing-hero-v2.webp") center / cover no-repeat;
}

.subpage-hero-copy {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 70px 0;
}

.subpage-hero-copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-subhead);
  font-size: 0.88rem;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 44px);
  width: min(940px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 58px 0 64px;
}

.hero-logo {
  flex: 0 0 auto;
  width: min(320px, 78vw);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.hero-text {
  flex: 1 1 340px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-subhead);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cream);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 11.5em;
  font-family: var(--font-headline);
  font-size: 3.65rem;
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  max-width: 12em;
  font-family: var(--font-headline);
  font-size: 2.45rem;
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-subhead);
  font-size: 1.12rem;
  font-weight: 600;
}

.hero-text > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-subhead);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: var(--red);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn.secondary.dark {
  color: var(--navy);
  border-color: rgba(18, 35, 59, 0.28);
  background: rgba(18, 35, 59, 0.04);
}

.btn.secondary.dark:hover {
  background: rgba(18, 35, 59, 0.1);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.trust-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-subhead);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(var(--max), calc(100% - 36px));
  margin: -24px auto 0;
  padding: 20px 24px;
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-strip div {
  display: grid;
  gap: 4px;
}

.quick-strip strong {
  font-family: var(--font-subhead);
  font-weight: 600;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.86);
}

.quick-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:last-child,
.area-copy p,
.promise-copy p,
.contact-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.section-heading.narrow {
  display: block;
  max-width: 720px;
}

.service-grid,
.county-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.county-grid article,
.promise-list article,
.process-grid article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 236px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.service-card span {
  color: var(--red);
  font-family: var(--font-subhead);
  font-weight: 600;
}

.service-card p,
.county-grid p,
.promise-list p,
.process-grid p,
.faq-list p {
  margin: 0;
  color: var(--ink-soft);
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.card-link:hover {
  color: var(--red-dark);
}

.mini-link {
  align-self: end;
  color: var(--red-dark);
  font-family: var(--font-subhead);
  font-weight: 600;
  text-decoration: none;
}

.mini-link:hover {
  text-decoration: underline;
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.content-panel,
.side-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.content-panel h2,
.side-panel h2 {
  max-width: 15em;
}

.content-panel p,
.side-panel p {
  color: var(--ink-soft);
}

.check-list,
.community-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.community-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before,
.community-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
}

.link-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.link-stack a,
.link-grid a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-subhead);
  text-decoration: none;
  font-weight: 600;
}

.link-stack a:hover,
.link-grid a:hover {
  border-color: var(--copper);
  color: var(--red-dark);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.page-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card-grid h2 {
  max-width: none;
  font-size: 1.2rem;
}

.compact {
  padding-top: 40px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(22, 32, 51, 0.1);
}

.cta-band h2 {
  max-width: 13em;
}

.cta-band .hero-actions {
  margin-top: 0;
  flex: 0 0 auto;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 44px;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding-inline: clamp(24px, 5vw, 58px);
}

.trust-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.trust-grid li {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 48px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-family: var(--font-subhead);
  font-weight: 800;
}

.trust-grid li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--red-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.promise-copy p {
  margin-top: 18px;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.promise-list article {
  min-height: 166px;
  padding: 22px;
}

.promise-list h3 {
  margin-bottom: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.process-grid article {
  min-height: 220px;
  padding: 22px;
}

.process-grid span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 10px;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(300px, 1.24fr);
  gap: 40px;
  align-items: start;
}

.area-copy p {
  margin-top: 18px;
}

.county-grid {
  grid-template-columns: 1fr;
}

.county-grid.page-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.county-grid article {
  min-height: 132px;
  padding: 22px;
  border-left: 6px solid var(--copper);
}

.county-grid h3 {
  margin-bottom: 8px;
}

.county-grid .mini-link {
  display: inline-block;
  margin-top: 14px;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-subhead);
  font-weight: 600;
}

.faq-list p {
  margin-top: 12px;
}

.faq-list a {
  color: var(--red-dark);
  font-weight: 800;
}

.contact-section {
  padding-top: 40px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1.16fr);
  gap: 34px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-methods a {
  color: var(--white);
  font-size: 1.08rem;
  font-family: var(--font-subhead);
  font-weight: 600;
  text-decoration: none;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-subhead);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  font-size: 0.88rem;
  font-family: var(--font-subhead);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(244, 233, 214, 0.45);
  border-color: var(--cream);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--cream);
}

.legal-page {
  max-width: 860px;
}

.legal-page h1 {
  color: var(--navy);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.legal-page p {
  margin-top: 16px;
}

.legal-page a {
  color: var(--red-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(280px, 1.25fr) minmax(250px, 0.85fr);
  gap: 28px;
  align-items: start;
  padding: 30px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: var(--graphite);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-accent);
  font-size: 1.08rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links {
  align-content: start;
}

.footer-details {
  display: grid;
  gap: 14px;
}

.footer-details strong {
  display: block;
  margin-bottom: 4px;
}

.footer-contact {
  justify-content: flex-end;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    padding: 24px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-open .site-nav {
    display: grid;
    gap: 14px;
  }

  .nav-open .header-call {
    display: inline-flex;
    position: fixed;
    left: 24px;
    right: 24px;
    top: 304px;
  }

  .hero {
    min-height: 78vh;
    background:
      linear-gradient(90deg, rgba(11, 29, 43, 0.97) 0%, rgba(11, 29, 43, 0.91) 52%, rgba(11, 29, 43, 0.48) 100%),
      url("assets/throwback-plumbing-hero-v2.webp") 58% center / cover no-repeat;
  }

  .subpage-hero {
    min-height: 460px;
    background:
      linear-gradient(90deg, rgba(11, 29, 43, 0.97) 0%, rgba(11, 29, 43, 0.91) 56%, rgba(11, 29, 43, 0.52) 100%),
      url("assets/throwback-plumbing-hero-v2.webp") 58% center / cover no-repeat;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading,
  .promise-section,
  .trust-section,
  .area-section,
  .contact-panel,
  .subpage-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .promise-list,
  .trust-grid,
  .page-card-grid,
  .county-grid.page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    display: grid;
  }

  .cta-band .hero-actions {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    inset: 72px 0 auto;
  }

  .nav-open .header-call {
    top: 300px;
  }

  .hero {
    min-height: 76vh;
    background:
      linear-gradient(180deg, rgba(11, 29, 43, 0.76) 0%, rgba(11, 29, 43, 0.94) 42%, rgba(11, 29, 43, 0.99) 100%),
      url("assets/throwback-plumbing-hero-v2.webp") 66% center / cover no-repeat;
  }

  .subpage-hero {
    background:
      linear-gradient(180deg, rgba(11, 29, 43, 0.72) 0%, rgba(11, 29, 43, 0.94) 48%, rgba(11, 29, 43, 0.99) 100%),
      url("assets/throwback-plumbing-hero-v2.webp") 66% center / cover no-repeat;
  }

  .hero-copy {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 42px 0 56px;
  }

  .subpage-hero-copy {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 52px 0;
  }

  .hero-logo {
    width: min(300px, 82vw);
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-text > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .trust-list {
    display: grid;
  }

  .btn,
  .quick-strip a {
    width: 100%;
  }

  .quick-strip {
    display: grid;
    margin-top: -18px;
    padding: 18px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }

  .service-grid,
  .promise-list,
  .trust-grid,
  .process-grid,
  .contact-form,
  .page-card-grid,
  .county-grid.page-card-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    position: fixed;
    z-index: 40;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--red-dark);
    border: 2px solid var(--cream);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(11, 29, 43, 0.34);
    font-family: var(--font-subhead);
    font-weight: 900;
    text-decoration: none;
  }

  .service-card,
  .promise-list article,
  .process-grid article {
    min-height: 0;
  }
}
