:root {
  --ink: #161616;
  --charcoal: #202020;
  --muted: #66645f;
  --paper: #f5f1e8;
  --warm: #ebe5da;
  --white: #ffffff;
  --line: rgba(22, 22, 22, 0.14);
  --green: #05a85c;
  --blue: #067cc1;
  --orange: #f47a21;
  --gold: #f5b142;
  --logo-radius: 14px;
  --shadow: 0 24px 70px rgba(22, 22, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 clamp(18px, 4vw, 48px);
}

.site-header {
  align-items: center;
  background: rgba(245, 241, 232, 0.92);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 8px clamp(18px, 4vw, 48px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  border-radius: var(--logo-radius);
  height: 96px;
  object-fit: contain;
  width: 96px;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  justify-content: center;
}

nav a,
.nav-cta {
  font-size: 0.92rem;
  font-weight: 850;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  border-radius: 5px;
  color: var(--white);
  padding: 12px 16px;
}

.hero {
  color: var(--white);
  min-height: calc(100vh - 87px);
  overflow: hidden;
  padding: clamp(70px, 8vw, 104px) 0;
  position: relative;
}

.hero-image {
  background-image: url("assets/relentless-industries-hero.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.94), rgba(10, 10, 9, 0.72) 48%, rgba(10, 10, 9, 0.2)),
    linear-gradient(0deg, rgba(10, 10, 9, 0.72), rgba(10, 10, 9, 0.08) 45%);
  inset: 0;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 80px);
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 430px);
  min-height: 640px;
  position: relative;
  z-index: 2;
}

.hero-centered {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-centered .hero-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 980px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 6.3vw, 5.9rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 26px;
  max-width: 980px;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 5.1rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.hero-line {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  font-weight: 650;
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button,
button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 950;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.button:hover,
button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.mission-line {
  border-top: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  margin-bottom: 0;
  max-width: 620px;
  padding-top: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 24px;
}

.hero-logo {
  border-radius: var(--logo-radius);
  height: 150px;
  margin: 0 auto 18px;
  object-fit: contain;
  width: 150px;
}

.division-choice {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 112px 1fr;
  margin-top: 14px;
  min-height: 128px;
  padding: 16px;
}

.division-choice:hover {
  border-color: currentColor;
}

.roofing-choice {
  color: var(--green);
}

.plumbing-choice {
  color: var(--blue);
}

.division-choice img {
  margin: auto;
  max-height: 92px;
  object-fit: contain;
}

.division-choice strong,
.division-choice small {
  display: block;
}

.division-choice strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.15;
}

.division-choice small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 7px;
}

.proof-band {
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  padding-bottom: 26px;
  padding-top: 26px;
}

.proof-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  padding: 8px 24px;
}

.proof-grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 1rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 5px;
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-white {
  background: var(--white);
}

#divisions {
  background: #121312;
  color: var(--white);
}

#divisions .section-heading {
  max-width: 960px;
}

#divisions h2 {
  color: var(--white);
}

.intro-section {
  background: var(--paper);
}

.problems-section {
  background: var(--paper);
}

.division-problems {
  border-top: 1px solid rgba(22, 22, 22, 0.08);
}

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

.problems-grid article {
  background: var(--white);
  border: 1px solid rgba(22, 22, 22, 0.08);
  min-height: 280px;
  padding: 28px;
}

.problems-grid span {
  color: var(--green);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.problems-grid h3 {
  max-width: 340px;
}

.problems-grid p {
  color: var(--muted);
  font-weight: 650;
}

.plumbing-problems .problems-grid span {
  color: var(--blue);
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 74px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
}

.rich-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.section-heading {
  margin-bottom: 42px;
  max-width: 820px;
}

.section-heading.wide {
  max-width: 980px;
}

.division-cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.division-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #191a18;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

.division-card::before {
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.roofing-card::before {
  background: var(--green);
}

.plumbing-card::before {
  background: var(--blue);
}

.division-logo-stage {
  align-items: center;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 64%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  min-height: 250px;
  padding: 24px;
}

.division-card img {
  border-radius: var(--logo-radius);
  height: 210px;
  object-fit: contain;
  object-position: center;
  width: min(100%, 520px);
}

.plumbing-card img {
  width: min(100%, 500px);
}

.division-card h3 {
  color: var(--white);
}

.division-card p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.division-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}

.division-card li {
  align-items: start;
  display: grid;
  font-weight: 850;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.division-card li {
  color: rgba(255, 255, 255, 0.86);
}

.division-card li::before {
  content: "\2713";
  font-weight: 950;
}

.roofing-card li::before {
  color: var(--green);
}

.plumbing-card li::before {
  color: var(--blue);
}

.division-card .button {
  margin-top: auto;
  width: 100%;
}

.service-solutions .division-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-solutions .division-card {
  min-height: 0;
}

.button-green {
  background: var(--green);
  color: var(--white);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
}

.mid-cta {
  background: var(--ink);
  color: var(--white);
  padding: clamp(52px, 6vw, 78px) 0;
}

.mid-cta-inner {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
}

.mid-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  font-weight: 700;
  max-width: 780px;
}

.mid-cta-list {
  display: grid;
  gap: 10px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.mid-cta-list li {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  padding-left: 20px;
  position: relative;
}

.mid-cta-list li::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.65em;
  width: 7px;
}

.mid-cta strong {
  color: var(--gold);
  display: block;
  font-size: 1.12rem;
}

.mid-cta h2 {
  font-size: clamp(2rem, 3.7vw, 4rem);
  max-width: 920px;
}

.mid-cta .button {
  min-width: 220px;
}

.work-section {
  background: var(--warm);
}

.project-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.project-card {
  background: var(--ink);
  border-radius: 10px;
  color: var(--white);
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.project-large {
  grid-row: span 2;
  min-height: 704px;
}

.project-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.project-card::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08) 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.project-card figcaption {
  bottom: 0;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.project-card strong,
.project-card span {
  display: block;
}

.project-card strong {
  font-size: 1.3rem;
}

.project-card span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  margin-top: 7px;
}

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

.process-grid article {
  background: var(--paper);
  min-height: 300px;
  padding: 28px;
}

.process-grid span {
  color: var(--green);
  display: block;
  font-size: 0.9rem;
  font-weight: 950;
  margin-bottom: 60px;
}

.process-grid p {
  color: var(--muted);
  font-weight: 650;
}

.testimonial-strip {
  background: var(--ink);
  color: var(--white);
  padding: clamp(72px, 8vw, 110px) 0;
}

.testimonial-layout {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: clamp(26px, 4vw, 44px);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  font-weight: 750;
}

.testimonial-card strong {
  color: var(--gold);
}

.service-area-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.service-area-list li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 850;
}

.contact-section {
  background: var(--paper);
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(36px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.78fr);
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 650;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  font-weight: 850;
  padding: 16px;
}

form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
}

.hidden-field {
  display: none;
}

label {
  font-size: 0.86rem;
  font-weight: 900;
}

input,
textarea,
select {
  background: #f4f0e8;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

button {
  background: var(--orange);
  color: var(--white);
  margin-top: 8px;
  width: 100%;
}

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 44px 0 28px;
}

.footer-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 44px;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  padding-bottom: 34px;
}

.footer img {
  background: var(--paper);
  border-radius: var(--logo-radius);
  height: 168px;
  margin-bottom: 16px;
  object-fit: contain;
  width: 168px;
}

.footer h3 {
  margin-bottom: 14px;
}

.footer p,
.footer a,
.footer span,
.copyright {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 0.95rem;
  font-weight: 650;
}

.footer a {
  margin-bottom: 9px;
}

.footer a:hover {
  color: var(--white);
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-links a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin: 0;
}

.social-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.social-icon img {
  background: transparent;
  border-radius: 0;
  display: block;
  height: 18px;
  margin: 0;
  object-fit: contain;
  width: 18px;
}

.mobile-sticky-cta {
  display: none;
}

.thank-you-main {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34)),
    url("assets/relentless-industries-hero.png") center / cover;
  color: var(--white);
  display: flex;
  min-height: calc(100vh - 113px);
  padding: clamp(70px, 10vw, 130px) 0;
}

.thank-you-panel {
  max-width: 760px;
}

.thank-you-panel h1 {
  color: var(--white);
  margin-bottom: 18px;
}

.thank-you-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  font-weight: 700;
  max-width: 620px;
}

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

.copyright {
  margin: 24px 0 0;
  text-align: center;
}

.division-header {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
}

.division-header img {
  height: 132px;
  object-fit: contain;
  width: 132px;
}

.division-header nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
}

.division-header a {
  color: var(--muted);
  font-weight: 800;
}

.division-header a:hover,
.division-header a[aria-current="page"] {
  color: var(--ink);
}

.service-hero {
  background: var(--paper);
  padding: clamp(72px, 10vw, 126px) 0;
}

.service-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-inner img {
  margin-bottom: 30px;
  max-height: 170px;
  object-fit: contain;
}

.plumbing-service .service-inner img {
  max-height: 132px;
}

.kicker {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 850;
  line-height: 1;
  margin-bottom: 22px;
  max-width: 900px;
}

.roofing-service h1 {
  color: var(--green);
}

.plumbing-service h1 {
  color: var(--blue);
}

.service-hero p:not(.kicker) {
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 650;
  max-width: 720px;
}

.service-button {
  margin-top: 20px;
  max-width: 310px;
}

.service-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.service-grid h2 {
  margin-bottom: 18px;
}

.service-grid p {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 650;
}

.service-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 28px;
}

.service-list li {
  align-items: start;
  display: grid;
  font-weight: 800;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.service-list li::before {
  content: "\2713";
  font-weight: 900;
}

.roofing-list li::before {
  color: var(--green);
}

.plumbing-list li::before {
  color: var(--blue);
}

.small-footer {
  padding: 24px 0;
}

.small-footer .copyright {
  margin-top: 0;
}

.blue-eye {
  color: var(--blue);
}

.plumbing-page-hero {
  color: var(--white);
  overflow: hidden;
  padding: clamp(76px, 9vw, 122px) 0;
  position: relative;
}

.plumbing-hero-image {
  background-image: url("assets/plumbing-page-hero.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.plumbing-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 12, 15, 0.94), rgba(7, 12, 15, 0.74) 52%, rgba(7, 12, 15, 0.2)),
    linear-gradient(0deg, rgba(7, 12, 15, 0.56), rgba(7, 12, 15, 0.12));
  inset: 0;
  position: absolute;
}

.plumbing-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  min-height: 650px;
  position: relative;
  z-index: 2;
}

.plumbing-hero-copy > img {
  border-radius: var(--logo-radius);
  height: 230px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
  width: min(100%, 520px);
}

.plumbing-hero-copy h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  max-width: 980px;
}

.plumbing-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 700;
  max-width: 730px;
}

.plumbing-quick-card {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 30px;
}

.plumbing-quick-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.05;
  margin-bottom: 22px;
}

.plumbing-quick-card ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.plumbing-quick-card li {
  align-items: start;
  display: grid;
  font-weight: 850;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.plumbing-quick-card li::before,
.plumbing-feature-list li::before {
  color: var(--blue);
  content: "\2713";
  font-weight: 950;
}

.plumbing-tiles span,
.plumbing-process span {
  color: var(--blue);
}

.plumbing-feature {
  background: var(--warm);
}

.plumbing-feature-grid figure {
  background: var(--ink);
}

.plumbing-cta {
  background: var(--ink);
  color: var(--white);
  padding: clamp(68px, 8vw, 104px) 0;
}

.plumbing-cta h2 {
  margin-bottom: 18px;
}

.plumbing-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  font-weight: 700;
  max-width: 720px;
}

.roofing-page-hero {
  color: var(--white);
  overflow: hidden;
  padding: clamp(76px, 9vw, 122px) 0;
  position: relative;
}

.roofing-hero-image {
  background-image: url("assets/project-field.jpg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.roofing-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.92), rgba(9, 10, 9, 0.68) 52%, rgba(9, 10, 9, 0.22)),
    linear-gradient(0deg, rgba(9, 10, 9, 0.55), rgba(9, 10, 9, 0.16));
  inset: 0;
  position: absolute;
}

.roofing-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  min-height: 650px;
  position: relative;
  z-index: 2;
}

.roofing-hero-copy > img {
  border-radius: var(--logo-radius);
  height: 230px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
  width: min(100%, 560px);
}

.roofing-hero-copy h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 920px;
}

.roofing-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 700;
  max-width: 730px;
}

.roofing-quick-card {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 30px;
}

.roofing-quick-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.05;
  margin-bottom: 22px;
}

.roofing-quick-card ul,
.feature-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.roofing-quick-card li,
.feature-list li {
  align-items: start;
  display: grid;
  font-weight: 850;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.roofing-quick-card li::before,
.feature-list li::before {
  color: var(--green);
  content: "\2713";
  font-weight: 950;
}

.roofing-proof .proof-grid strong {
  color: var(--white);
}

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

.service-tile-grid article {
  background: var(--paper);
  min-height: 320px;
  padding: 30px;
}

.service-tile-grid span {
  color: var(--green);
  display: block;
  font-size: 0.86rem;
  font-weight: 950;
  margin-bottom: 54px;
}

.service-tile-grid p {
  color: var(--muted);
  font-weight: 650;
}

.roofing-feature {
  background: var(--warm);
}

.feature-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 1fr);
}

.feature-grid figure {
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 590px;
  overflow: hidden;
  position: relative;
}

.feature-grid figure img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.feature-grid p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.feature-list {
  margin-top: 28px;
}

.roofing-process article {
  background: var(--paper);
}

.roofing-cta {
  background: var(--ink);
  color: var(--white);
  padding: clamp(68px, 8vw, 104px) 0;
}

.roofing-cta-inner {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.roofing-cta h2 {
  margin-bottom: 18px;
}

.roofing-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  font-weight: 700;
  max-width: 720px;
}

.roofing-cta .button {
  min-width: 240px;
}

@media (max-width: 900px) {
  .site-header,
  .hero-grid,
  .proof-grid,
  .split,
  .problems-grid,
  .division-cards,
  .mid-cta-inner,
  .project-grid,
  .process-grid,
  .testimonial-layout,
  .contact-layout,
  .footer-grid,
  .service-grid,
  .roofing-hero-grid,
  .plumbing-hero-grid,
  .service-tile-grid,
  .feature-grid,
  .roofing-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-solutions .division-cards,
  .mid-cta-list,
  .service-area-list {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: start;
  }

  .nav-cta {
    justify-self: start;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-card {
    max-width: 520px;
  }

  .proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    padding: 18px 0;
  }

  .proof-grid div:first-child {
    border-top: 0;
  }

  .project-large,
  .project-card,
  .feature-grid figure {
    min-height: 360px;
  }

  .division-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .division-header nav {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    position: relative;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .hero {
    padding-top: 64px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .division-choice {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .division-card img {
    width: 100%;
  }

  .roofing-hero-copy > img {
    object-position: center;
    width: 100%;
  }

  .plumbing-hero-copy > img {
    object-position: center;
    width: 100%;
  }

  .mobile-sticky-cta {
    background: rgba(22, 22, 22, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    bottom: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 10px 14px 14px;
    position: fixed;
    right: 0;
    z-index: 50;
  }

  .mobile-sticky-cta a {
    align-items: center;
    border-radius: 6px;
    color: var(--white);
    display: inline-flex;
    font-weight: 950;
    justify-content: center;
    min-height: 48px;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .mobile-sticky-cta a:last-child {
    background: var(--green);
  }
}
