:root {
  --ink: #202a33;
  --slate: #52606b;
  --roof-blue: #173e7a;
  --roof-blue-dark: #0f2c5d;
  --brick: #b74732;
  --brick-dark: #8e3426;
  --warm-white: #f8f6f1;
  --stone: #e9e4da;
  --white: #fff;
  --line: #d7d2c8;
  --display: "DM Sans", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shell: 1320px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--roof-blue);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #ffb443;
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.utility-bar {
  color: var(--ink);
  background: var(--stone);
  border-bottom: 1px solid rgba(32, 42, 51, 0.12);
  font-size: 13px;
}

.utility-bar__inner,
.utility-bar__details,
.utility-bar p {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  min-height: 40px;
  justify-content: space-between;
}

.utility-bar p {
  gap: 8px;
  margin: 0;
}

.utility-bar svg {
  width: 16px;
}

.utility-bar__details {
  gap: 20px;
}

.utility-bar a {
  color: var(--roof-blue);
  font-weight: 600;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(248, 246, 241, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 25px rgba(32, 42, 51, 0.06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: fit-content;
}

.brand img {
  width: 260px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 38px);
}

.primary-nav a,
.site-footer nav a {
  position: relative;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brick);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--roof-blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.header-call svg {
  width: 20px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

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

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

.button--primary:hover {
  background: var(--brick-dark);
}

.button--secondary {
  color: var(--roof-blue);
  background: transparent;
  border-color: var(--roof-blue);
}

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

.button--header {
  min-height: 48px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 40px));
  overflow: hidden;
  background: var(--stone);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(16, 26, 34, 0.04);
  content: "";
  pointer-events: none;
}

.hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(800px, calc(100vh - 40px));
  align-items: flex-end;
  padding-block: 72px;
}

.hero-card {
  width: min(660px, 52vw);
  padding: clamp(34px, 4.5vw, 64px);
  background: rgba(248, 246, 241, 0.97);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(32, 42, 51, 0.18);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--roof-blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--brick {
  color: var(--brick);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.2vw, 70px);
  line-height: 0.99;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.03;
}

h3 {
  line-height: 1.2;
}

.hero-card__intro {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.65;
}

.hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: grid;
  margin: 28px 0 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.9fr 1.35fr 0.8fr;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-proof svg {
  width: 26px;
  flex: 0 0 26px;
  color: var(--roof-blue);
}

.zip-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.zip-form > div {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
}

.zip-form input,
.form-field input,
.form-field select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9b3a8;
  border-radius: 4px;
}

.zip-form button {
  display: grid;
  color: var(--white);
  background: var(--roof-blue);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  place-items: center;
}

.zip-form button:hover {
  background: var(--roof-blue-dark);
}

.zip-form button svg {
  width: 23px;
}

.section {
  padding-block: clamp(96px, 9vw, 144px);
}

.section-lead {
  max-width: 550px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.65;
}

.trust {
  background: var(--warm-white);
}

.trust__grid {
  display: grid;
  grid-template-columns: 65px minmax(500px, 0.92fr) minmax(420px, 1fr);
  gap: clamp(34px, 4.5vw, 74px);
}

.trust__rail {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--roof-blue);
  flex-direction: column;
  justify-content: space-between;
}

.trust__rail span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.trust__rail svg {
  width: 29px;
  margin-bottom: 10px;
}

.trust__content {
  align-self: center;
}

.trust__content h2 {
  max-width: 680px;
}

.proof-grid {
  display: grid;
  margin: 48px 0 36px;
  grid-template-columns: repeat(2, 1fr);
}

.proof-grid article {
  display: grid;
  min-height: 150px;
  padding: 26px 24px 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  grid-template-columns: 44px 1fr;
}

.proof-grid article:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.proof-grid article:nth-child(n + 3) {
  border-bottom: 0;
}

.proof-grid svg {
  width: 38px;
  color: var(--roof-blue);
}

.proof-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  color: var(--roof-blue);
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-weight: 600;
  text-decoration: none;
}

.text-link::after {
  margin-left: 14px;
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.trust__media {
  min-height: 730px;
  margin: 0;
  overflow: hidden;
}

.trust__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certifications {
  padding-block: clamp(96px, 9vw, 140px);
  background: var(--stone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.certifications__heading {
  display: grid;
  align-items: end;
  margin-bottom: 54px;
  gap: 50px;
  grid-template-columns: 1.2fr 0.8fr;
}

.certifications__heading h2 {
  margin-bottom: 0;
}

.certifications__heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--slate);
  font-size: 18px;
}

.certification-grid {
  display: grid;
  background: var(--warm-white);
  border-top: 1px solid #c9c1b5;
  border-bottom: 1px solid #c9c1b5;
  grid-template-columns: repeat(5, 1fr);
}

.certification-grid article {
  display: flex;
  min-height: 250px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.certification-grid article:last-child {
  border-right: 0;
}

.certification-grid img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  object-position: left center;
  filter: saturate(0.88);
}

.certification-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--brick);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certification-grid h3 {
  margin: 0;
  font-size: 18px;
}

.certification-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 30px;
}

.certification-note p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.services {
  background: var(--stone);
}

.services__heading {
  display: grid;
  align-items: end;
  margin-bottom: 58px;
  gap: 30px;
  grid-template-columns: 1fr 0.8fr;
}

.services__heading h2 {
  margin-bottom: 0;
}

.services__heading .section-lead {
  max-width: 390px;
  margin-bottom: 6px;
  justify-self: end;
}

.services__layout {
  display: grid;
  gap: clamp(45px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.78fr);
}

.featured-service {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.featured-service > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.featured-service > div {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: min(500px, calc(100% - 60px));
  padding: 28px 32px;
  background: rgba(248, 246, 241, 0.97);
  border-radius: 8px;
}

.featured-service h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.featured-service p {
  margin-bottom: 16px;
  color: var(--slate);
}

.featured-service .text-link {
  font-size: 14px;
}

.service-index {
  border-top: 1px solid #bdb6aa;
}

.service-index > a {
  display: grid;
  min-height: 102px;
  align-items: center;
  color: var(--ink);
  border-bottom: 1px solid #c9c2b6;
  gap: 20px;
  grid-template-columns: 94px 1fr 25px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.service-index > a:hover {
  color: var(--roof-blue);
}

.service-index svg {
  width: 24px;
  transition: transform 180ms ease;
}

.service-index a:hover svg {
  transform: translateX(5px);
}

.service-index__thumb {
  width: 94px;
  height: 72px;
  background-image: url("assets/roof-workmanship-detail.png");
  background-position: center;
  background-size: cover;
}

.service-index__thumb--home {
  background-image: url("assets/hero-pittsburgh-home.png");
  background-position: 72% 16%;
}

.service-index__thumb--gutter {
  background-position: 55% 75%;
}

.service-index__thumb--edge {
  background-position: 78% 38%;
}

.service-index__thumb--sky {
  background-position: 38% 15%;
}

.service-index__thumb--chimney {
  background-image: url("assets/hero-pittsburgh-home.png");
  background-position: 91% 10%;
}

.service-index > .service-index__all {
  min-height: 70px;
  color: var(--roof-blue);
  border-bottom: 0;
  grid-template-columns: 1fr;
  font-size: 16px;
}

.process {
  background: var(--warm-white);
}

.process__main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(460px, 0.9fr);
}

.process__media {
  min-height: 760px;
  margin: 0;
}

.process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.process__content {
  display: flex;
  max-width: 720px;
  justify-content: center;
  padding: clamp(70px, 7vw, 120px);
  flex-direction: column;
}

.process__content h2 {
  margin-bottom: 32px;
}

.process-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 108px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 28px;
  grid-template-columns: 76px 1fr;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}

.process-list li:first-child {
  border-top: 1px solid var(--line);
}

.process-list span {
  color: var(--roof-blue);
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.process__content .text-link {
  align-self: flex-start;
}

.process-proof {
  display: grid;
  margin: 0;
  padding: 38px max(48px, calc((100% - var(--shell)) / 2));
  border-top: 1px solid var(--line);
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-proof li {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding-inline: 7%;
  border-right: 1px solid var(--line);
  gap: 18px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.process-proof li:last-child {
  border-right: 0;
}

.process-proof svg {
  width: 44px;
  flex: 0 0 44px;
  color: var(--roof-blue);
}

.testimonials {
  background: #e3e9ef;
  border-top: 1px solid #c9d3dc;
  border-bottom: 1px solid #c9d3dc;
}

.testimonials__heading {
  display: grid;
  align-items: end;
  margin-bottom: 58px;
  gap: 48px;
  grid-template-columns: 1fr 0.75fr;
}

.testimonials__heading h2 {
  margin-bottom: 0;
}

.testimonials__heading .section-lead {
  margin-bottom: 7px;
  justify-self: end;
}

.testimonial-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
}

.testimonial-card {
  display: flex;
  min-height: 470px;
  padding: clamp(32px, 3.5vw, 52px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}

.testimonial-card:first-child {
  border-left: 1px solid var(--line);
}

.testimonial-card--featured {
  color: var(--white);
  background: var(--brick);
  border-color: var(--brick);
}

.testimonial-card__mark {
  height: 80px;
  color: var(--roof-blue);
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
}

.testimonial-card--featured .testimonial-card__mark {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-card blockquote {
  margin: 12px 0 34px;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.testimonial-card--featured blockquote {
  font-size: clamp(28px, 2.45vw, 40px);
}

.testimonial-card footer {
  display: flex;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-direction: column;
}

.testimonial-card--featured footer {
  border-top-color: rgba(255, 255, 255, 0.4);
}

.testimonial-card footer strong {
  font-family: var(--display);
  font-size: 16px;
}

.testimonial-card footer span {
  color: var(--slate);
  font-size: 13px;
}

.testimonial-card--featured footer span {
  color: rgba(255, 255, 255, 0.78);
}

.testimonials__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.testimonials__footer p {
  margin: 0;
  color: var(--slate);
}

.local-proof {
  display: grid;
  min-height: 820px;
  grid-template-columns: 1.12fr 0.88fr;
}

.testimonial,
.service-area {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px);
}

.testimonial {
  color: var(--white);
  background: var(--brick);
}

.testimonial .eyebrow,
.text-link--light {
  color: var(--white);
}

.testimonial blockquote {
  max-width: 760px;
  margin: 50px 0 28px;
  font-family: var(--display);
  font-size: clamp(42px, 4.7vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.testimonial__author {
  margin-bottom: 22px;
}

.testimonial__roofline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  background-color: var(--brick);
  background-image: url("assets/hero-pittsburgh-home.png");
  background-position: center 37%;
  background-size: cover;
  background-blend-mode: multiply;
  clip-path: polygon(0 40%, 20% 10%, 34% 33%, 53% 0, 68% 32%, 82% 16%, 100% 35%, 100% 100%, 0 100%);
  opacity: 0.72;
}

.service-area {
  background: var(--warm-white);
}

.service-area h2 {
  max-width: 600px;
  font-size: clamp(40px, 4vw, 62px);
}

.service-area__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.7fr);
}

.service-area ul {
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area li {
  max-width: 320px;
  padding: 10px 0;
  color: var(--roof-blue);
  border-bottom: 1px solid #9eaabd;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
}

.map-mark {
  position: absolute;
  z-index: 1;
  right: -100px;
  bottom: -45px;
  width: 440px;
  color: #d7cec0;
  opacity: 0.75;
}

.map-mark svg {
  width: 100%;
}

.map-mark circle {
  stroke-dasharray: 3 6;
}

.service-area__note {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin-top: 45px;
  color: var(--slate);
  font-size: 15px;
}

.estimate {
  position: relative;
  min-height: 790px;
  overflow: hidden;
}

.estimate::after {
  position: absolute;
  inset: 0;
  background: rgba(32, 42, 51, 0.1);
  content: "";
}

.estimate__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.estimate__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 790px;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 1fr minmax(500px, 0.82fr);
  padding-block: 70px;
}

.estimate__copy {
  max-width: 650px;
  padding: clamp(36px, 4vw, 56px);
  color: var(--white);
  background: rgba(32, 42, 51, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(32, 42, 51, 0.2);
}

.estimate__copy .eyebrow {
  color: #f3b9ae;
}

.estimate__copy h2 {
  font-size: clamp(54px, 6vw, 92px);
}

.estimate__copy > p:last-child {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.estimate-form {
  padding: clamp(34px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(32, 42, 51, 0.19);
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
}

.field-error {
  display: block;
  min-height: 19px;
  margin-top: 3px;
  color: var(--brick-dark);
  font-size: 12px;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: var(--brick);
}

.form-consent {
  margin: 4px 0 18px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.5;
}

.estimate-form__submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--roof-blue);
  font-size: 14px;
  text-align: center;
}

.estimate-form__phones {
  display: grid;
  align-items: center;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  gap: 14px;
  grid-template-columns: auto 1fr 1fr;
  text-align: center;
}

.estimate-form__phones span {
  color: var(--slate);
  font-size: 13px;
}

.estimate-form__phones a {
  color: var(--roof-blue);
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 54px 0 26px;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
}

.site-footer__main {
  display: grid;
  align-items: center;
  gap: 32px;
  grid-template-columns: 260px 1fr 0.7fr 2fr;
}

.brand--footer img {
  width: 250px;
}

.site-footer address,
.site-footer__main p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 20px;
  color: var(--slate);
  font-size: 12px;
}

.site-footer__legal p {
  margin: 0 0 0 auto;
}

.site-footer nav.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.site-footer nav.site-footer__social a {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--roof-blue);
  background: transparent;
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
  place-items: center;
}

.site-footer nav.site-footer__social a:hover {
  color: var(--white);
  background: var(--roof-blue);
  border-color: var(--roof-blue);
}

.site-footer nav.site-footer__social a:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
}

.site-footer nav.site-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-actions {
  display: none;
}

.primary-nav a[aria-current="page"] {
  color: var(--roof-blue);
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  gap: 9px;
  color: var(--slate);
  font-size: 12px;
}

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

.breadcrumb--light,
.breadcrumb--light a {
  color: rgba(255, 255, 255, 0.78);
}

.interior-hero {
  padding-block: 64px 86px;
  background: var(--stone);
}

.interior-hero__grid {
  display: grid;
  align-items: stretch;
  min-height: 650px;
  gap: clamp(52px, 7vw, 112px);
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
}

.interior-hero__copy {
  display: flex;
  justify-content: center;
  padding-block: 34px;
  flex-direction: column;
}

.interior-hero__copy h1 {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(54px, 5.4vw, 88px);
}

.interior-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.7;
}

.interior-hero__actions {
  display: flex;
  align-items: center;
  margin-top: 18px;
  gap: 28px;
}

.interior-hero__media {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

.interior-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-hero__media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 290px;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(248, 246, 241, 0.95);
  font-size: 12px;
}

.interior-hero--services .interior-hero__media img {
  object-position: 64% center;
}

.fact-band {
  color: var(--white);
  background: var(--roof-blue);
}

.fact-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-band__grid > div {
  display: flex;
  min-height: 145px;
  justify-content: center;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  flex-direction: column;
}

.fact-band__grid > div:last-child {
  border-right: 0;
}

.fact-band strong {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
}

.fact-band span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.story {
  background: var(--warm-white);
}

.story__grid {
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: 0.9fr 1.1fr;
}

.story__heading h2 {
  max-width: 620px;
}

.story__copy {
  max-width: 700px;
}

.story__copy p {
  color: var(--slate);
}

.story__lead {
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.principles {
  background: #e3e9ef;
  border-top: 1px solid #c9d3dc;
  border-bottom: 1px solid #c9d3dc;
}

.principles__heading {
  max-width: 620px;
  margin-bottom: 52px;
}

.principle-grid {
  display: grid;
  border-top: 1px solid #b8c5d0;
  border-bottom: 1px solid #b8c5d0;
  grid-template-columns: repeat(3, 1fr);
}

.principle-grid article {
  min-height: 340px;
  padding: 38px;
  border-right: 1px solid #b8c5d0;
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span,
.catalog-item > span,
.service-steps li > span,
.next-steps li > span {
  color: var(--roof-blue);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.principle-grid h3 {
  max-width: 260px;
  margin: 78px 0 18px;
  font-size: 27px;
}

.principle-grid p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 15px;
}

.about-process {
  padding-block: clamp(96px, 9vw, 144px);
  background: var(--warm-white);
}

.about-process__grid {
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: minmax(420px, 0.95fr) 1.05fr;
}

.about-process figure {
  height: 690px;
  margin: 0;
}

.about-process figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-process__grid > div {
  max-width: 660px;
}

.about-process ol {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.about-process li {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  grid-template-columns: 50px 1fr;
}

.about-process li:first-child {
  border-top: 1px solid var(--line);
}

.about-process li > span {
  color: var(--brick);
  font-family: var(--display);
  font-weight: 700;
}

.about-process li strong {
  font-family: var(--display);
  font-size: 18px;
}

.about-process li p {
  margin: 4px 0 0;
  color: var(--slate);
  font-size: 14px;
}

.community-callout {
  padding-block: 90px;
  color: var(--white);
  background: var(--brick);
}

.community-callout__grid {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1fr 0.8fr;
}

.community-callout .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.community-callout h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.community-callout p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

.button--secondary-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
}

.button--secondary-light:hover {
  color: var(--brick);
  background: var(--white);
}

.page-cta {
  padding-block: clamp(88px, 8vw, 128px);
  background: var(--warm-white);
}

.page-cta--stone {
  background: var(--stone);
}

.page-cta__inner {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.1fr 0.7fr;
}

.page-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.page-cta__inner > div:last-child p {
  max-width: 520px;
  color: var(--slate);
}

.catalog-heading {
  display: grid;
  align-items: end;
  margin-bottom: 58px;
  gap: 50px;
  grid-template-columns: 1fr 0.72fr;
}

.catalog-heading h2 {
  margin-bottom: 0;
}

.catalog-list {
  border-top: 1px solid var(--line);
}

.catalog-item {
  display: grid;
  min-height: 180px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  gap: 34px;
  grid-template-columns: 60px 1fr auto;
}

.catalog-item--featured {
  min-height: 250px;
  color: var(--white);
  background: var(--roof-blue);
  margin-inline: -34px;
  padding-inline: 34px;
  border-bottom: 0;
}

.catalog-item--featured > span,
.catalog-item--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-item h3 {
  margin-bottom: 8px;
  font-size: clamp(25px, 2.4vw, 36px);
}

.catalog-item p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--slate);
}

.catalog-item__label {
  margin-bottom: 8px !important;
  color: #f3b9ae !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-item a {
  color: var(--roof-blue);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.catalog-item--featured a {
  color: var(--white);
}

.system-story {
  padding-block: clamp(96px, 9vw, 144px);
  background: var(--stone);
}

.system-story__grid {
  display: grid;
  align-items: center;
  gap: clamp(58px, 9vw, 140px);
  grid-template-columns: 1.1fr 0.9fr;
}

.system-story figure {
  height: 700px;
  margin: 0;
}

.system-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.system-story__content {
  max-width: 650px;
}

.system-story__content > p:not(.eyebrow) {
  color: var(--slate);
}

.system-parts {
  margin: 38px 0 0;
}

.system-parts div {
  padding: 22px 0;
  border-top: 1px solid #c9c1b5;
}

.system-parts dt {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.system-parts dd {
  margin: 5px 0 0;
  color: var(--slate);
  font-size: 14px;
}

.service-steps {
  background: var(--warm-white);
}

.service-steps > .shell > h2 {
  max-width: 790px;
}

.service-steps ol {
  display: grid;
  margin: 56px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.service-steps li {
  min-height: 300px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.service-steps li:last-child {
  border-right: 0;
}

.service-steps h3 {
  margin: 88px 0 12px;
  font-size: 25px;
}

.service-steps p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.credential-callout {
  padding-block: 90px;
  color: var(--white);
  background: var(--roof-blue);
}

.credential-callout__inner {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1fr 0.8fr;
}

.credential-callout .eyebrow {
  color: #f3b9ae;
}

.credential-callout h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.credential-callout__logos {
  display: grid;
  padding: 28px;
  background: var(--white);
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.credential-callout__logos img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.contact-hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
}

.contact-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(32, 42, 51, 0.5);
  content: "";
}

.contact-hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 830px;
  align-items: center;
  padding-block: 72px;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: 1fr minmax(500px, 0.85fr);
}

.contact-hero__copy {
  max-width: 700px;
  color: var(--white);
}

.contact-hero__copy .eyebrow {
  color: #f3b9ae;
}

.contact-hero__copy h1 {
  font-size: clamp(58px, 6vw, 94px);
}

.contact-hero__copy > p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.contact-direct {
  display: flex;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  gap: 22px;
  flex-wrap: wrap;
}

.contact-direct span {
  width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-direct a {
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.contact-form__heading h2 {
  margin-bottom: 30px;
  font-size: clamp(34px, 3.4vw, 50px);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field textarea {
  width: 100%;
  min-height: 126px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9b3a8;
  border-radius: 4px;
  resize: vertical;
}

.contact-details {
  background: var(--warm-white);
}

.contact-details__heading {
  max-width: 740px;
  margin-bottom: 54px;
}

.contact-detail-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.contact-detail-grid article {
  min-height: 310px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.contact-detail-grid article:last-child {
  border-right: 0;
}

.contact-detail-grid svg {
  width: 42px;
  margin-bottom: 62px;
  color: var(--roof-blue);
}

.contact-detail-grid span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-grid h3 {
  margin: 8px 0;
  font-size: 26px;
}

.contact-detail-grid h3 a,
.contact-detail-grid p a {
  text-decoration: none;
}

.contact-detail-grid p {
  color: var(--slate);
  font-size: 14px;
}

.contact-area {
  padding-block: clamp(96px, 9vw, 140px);
  background: #e3e9ef;
  border-top: 1px solid #c9d3dc;
  border-bottom: 1px solid #c9d3dc;
}

.contact-area__grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-area__grid > div:first-child {
  max-width: 620px;
}

.contact-area__grid p:not(.eyebrow) {
  color: var(--slate);
}

.contact-area__map {
  display: grid;
  min-height: 520px;
  color: #a8b8c8;
  background: rgba(255, 255, 255, 0.46);
  place-items: center;
}

.contact-area__map svg {
  width: min(76%, 480px);
}

.contact-area__map circle {
  stroke-dasharray: 3 6;
}

.next-steps {
  background: var(--warm-white);
}

.next-steps > .shell > h2 {
  max-width: 760px;
}

.next-steps ol {
  display: grid;
  margin: 52px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.next-steps li {
  min-height: 290px;
  padding: 36px;
  border: 1px solid var(--line);
  border-right: 0;
}

.next-steps li:last-child {
  border-right: 1px solid var(--line);
}

.next-steps h3 {
  margin: 76px 0 12px;
  font-size: 24px;
}

.next-steps p {
  color: var(--slate);
  font-size: 14px;
}

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

  .brand img {
    width: 210px;
  }

  .header-call {
    display: none;
  }

  .primary-nav {
    gap: 18px;
  }

  .trust__grid {
    grid-template-columns: 50px 1fr 0.84fr;
    gap: 36px;
  }

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

  .proof-grid article,
  .proof-grid article:nth-child(even),
  .proof-grid article:nth-child(n + 3) {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .certification-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .certification-grid article:nth-child(3n) {
    border-right: 0;
  }

  .certification-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .services__layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .process__content {
    padding: 70px 55px;
  }

  .local-proof {
    min-height: auto;
  }

  .testimonial,
  .service-area {
    padding: 75px 60px 110px;
  }

  .testimonial-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .testimonial-card--featured {
    grid-row: span 2;
  }

  .estimate__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .site-footer__main {
    grid-template-columns: 230px 1fr 0.7fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
  }

  .utility-bar__details span,
  .utility-bar__details a:last-child {
    display: none;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .brand img {
    width: 190px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
    gap: 5px;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: calc(40px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 42px 24px 120px;
    background: var(--warm-white);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 25px;
  }

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero-card {
    width: min(680px, 78vw);
  }

  .trust__grid {
    grid-template-columns: 40px 1fr;
  }

  .trust__media {
    height: 520px;
    min-height: 0;
    grid-column: 2;
  }

  .certifications__heading,
  .testimonials__heading {
    grid-template-columns: 1fr;
  }

  .certifications__heading > p,
  .testimonials__heading .section-lead {
    max-width: 650px;
    justify-self: start;
  }

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

  .certification-grid article,
  .certification-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .certification-grid article:nth-child(even) {
    border-right: 0;
  }

  .certification-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .featured-service {
    min-height: 580px;
  }

  .service-index > a {
    grid-template-columns: 120px 1fr 25px;
  }

  .service-index__thumb {
    width: 120px;
  }

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

  .process__media {
    min-height: 620px;
  }

  .process__content {
    width: min(calc(100% - 48px), var(--shell));
    max-width: none;
    margin-inline: auto;
    padding: 90px 0;
  }

  .process-proof {
    padding-inline: 24px;
  }

  .local-proof {
    grid-template-columns: 1fr;
  }

  .testimonial,
  .service-area {
    min-height: 700px;
  }

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

  .estimate-form {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .utility-bar__inner {
    min-height: 36px;
  }

  .utility-bar p {
    font-size: 11px;
  }

  .utility-bar__details {
    font-size: 11px;
  }

  .header-actions {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 166px;
  }

  .primary-nav {
    top: 108px;
  }

  .hero {
    display: flex;
    min-height: auto;
    background: var(--warm-white);
    flex-direction: column;
  }

  .hero::after {
    display: none;
  }

  .hero__image {
    position: relative;
    height: 48vh;
    min-height: 390px;
    object-position: 62% center;
  }

  .hero__inner {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .hero-card {
    width: 100%;
    padding: 46px 20px 58px;
    border-radius: 0;
    box-shadow: none;
  }

  h1 {
    font-size: clamp(42px, 12vw, 57px);
  }

  h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .hero-card__actions {
    display: grid;
  }

  .hero-proof {
    gap: 16px 12px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof li:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding-block: 82px;
  }

  .trust__grid {
    display: block;
  }

  .trust__rail {
    display: none;
  }

  .trust__content h2 br {
    display: none;
  }

  .proof-grid {
    margin-top: 34px;
  }

  .trust__media {
    height: 400px;
    margin-top: 54px;
  }

  .certifications__heading {
    display: block;
    margin-bottom: 40px;
  }

  .certifications__heading > p {
    margin-top: 24px;
  }

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

  .certification-grid article,
  .certification-grid article:nth-child(3n),
  .certification-grid article:nth-child(even) {
    min-height: 190px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .certification-grid article:first-child {
    border-top: 0;
  }

  .certification-grid img {
    height: 78px;
  }

  .certification-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .services__heading {
    display: block;
    margin-bottom: 40px;
  }

  .services__heading .section-lead {
    max-width: none;
    margin-top: 22px;
  }

  .featured-service {
    min-height: 510px;
  }

  .featured-service > img {
    object-position: 65% center;
  }

  .featured-service > div {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 24px;
  }

  .featured-service h3 {
    font-size: 26px;
  }

  .service-index > a {
    min-height: 90px;
    gap: 14px;
    grid-template-columns: 76px 1fr 22px;
    font-size: 16px;
  }

  .service-index__thumb {
    width: 76px;
    height: 58px;
  }

  .process__media {
    min-height: 470px;
  }

  .process__content {
    width: min(calc(100% - 40px), var(--shell));
    padding: 75px 0;
  }

  .process-list li {
    min-height: 96px;
    gap: 20px;
    grid-template-columns: 62px 1fr;
    font-size: 16px;
  }

  .process-list span {
    font-size: 44px;
  }

  .process-proof {
    display: block;
    padding: 12px 20px 40px;
  }

  .process-proof li {
    min-height: 88px;
    justify-content: flex-start;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-proof li:last-child {
    border-bottom: 0;
  }

  .testimonials__heading {
    display: block;
    margin-bottom: 40px;
  }

  .testimonials__heading .section-lead {
    margin-top: 24px;
  }

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

  .testimonial-card,
  .testimonial-card--featured {
    min-height: 400px;
    border-top: 0;
    border-left: 1px solid var(--line);
    grid-row: auto;
  }

  .testimonial-card:first-child {
    border-top: 1px solid var(--brick);
  }

  .testimonials__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .testimonial,
  .service-area {
    min-height: 650px;
    padding: 75px 20px 110px;
  }

  .testimonial blockquote {
    margin-top: 38px;
    font-size: clamp(39px, 11vw, 52px);
  }

  .testimonial__roofline {
    height: 130px;
  }

  .service-area__content {
    grid-template-columns: 1fr;
  }

  .map-mark {
    right: -160px;
    bottom: -40px;
    width: 380px;
  }

  .estimate {
    min-height: auto;
  }

  .estimate__image {
    height: 100%;
    object-position: 58% center;
  }

  .estimate::after {
    background: rgba(248, 246, 241, 0.56);
  }

  .estimate__inner {
    min-height: 0;
    padding-block: 76px;
  }

  .estimate__copy {
    padding: 34px 24px;
  }

  .estimate__copy h2 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .estimate__copy > p:last-child {
    font-size: 17px;
  }

  .estimate-form {
    padding: 28px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .estimate-form__phones {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 40px;
  }

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

  .brand--footer {
    grid-column: 1 / -1;
  }

  .site-footer nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-footer__legal p {
    width: 100%;
    margin-left: 0;
  }

  .site-footer nav.site-footer__social {
    display: flex;
    grid-column: auto;
    grid-template-columns: none;
    margin-left: auto;
  }

  .mobile-actions {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    background: var(--warm-white);
    border-top: 1px solid var(--line);
    grid-template-columns: 0.8fr 1.2fr;
  }

  .mobile-actions a {
    display: grid;
    color: var(--roof-blue);
    font-family: var(--display);
    font-weight: 700;
    text-decoration: none;
    place-items: center;
  }

  .mobile-actions a:last-child {
    color: var(--white);
    background: var(--brick);
  }
}

@media (max-width: 1100px) {
  .interior-hero__grid {
    grid-template-columns: 0.9fr minmax(430px, 1.1fr);
  }

  .contact-hero__grid {
    grid-template-columns: 0.85fr minmax(470px, 1.15fr);
  }

  .principle-grid article {
    padding: 30px;
  }

  .catalog-item {
    grid-template-columns: 50px 1fr 150px;
  }
}

@media (max-width: 960px) {
  .interior-hero {
    padding-top: 36px;
  }

  .interior-hero__grid,
  .story__grid,
  .about-process__grid,
  .system-story__grid,
  .contact-area__grid {
    grid-template-columns: 1fr;
  }

  .interior-hero__copy {
    min-height: 520px;
  }

  .interior-hero__media {
    min-height: 580px;
  }

  .fact-band__grid,
  .service-steps ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-band__grid > div:nth-child(2),
  .service-steps li:nth-child(2) {
    border-right: 0;
  }

  .fact-band__grid > div:nth-child(n + 3),
  .service-steps li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .story__copy {
    max-width: 760px;
  }

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

  .principle-grid article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid #b8c5d0;
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .principle-grid h3 {
    margin-top: 50px;
  }

  .about-process figure,
  .system-story figure {
    height: 600px;
  }

  .community-callout__grid,
  .page-cta__inner,
  .catalog-heading,
  .credential-callout__inner {
    grid-template-columns: 1fr;
  }

  .catalog-item {
    grid-template-columns: 50px 1fr;
  }

  .catalog-item a {
    grid-column: 2;
  }

  .service-steps li {
    border-bottom: 1px solid var(--line);
  }

  .service-steps li:nth-child(2) {
    border-right: 0;
  }

  .service-steps li:nth-child(n + 3) {
    border-top: 0;
  }

  .contact-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    max-width: none;
  }

  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail-grid article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-detail-grid article:last-child {
    border-bottom: 0;
  }

  .contact-detail-grid svg {
    margin-bottom: 36px;
  }

  .contact-area__map {
    min-height: 440px;
  }

  .next-steps ol {
    grid-template-columns: 1fr;
  }

  .next-steps li,
  .next-steps li:last-child {
    min-height: 230px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .next-steps li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .next-steps h3 {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 34px;
  }

  .interior-hero {
    padding-block: 24px 0;
  }

  .interior-hero__grid {
    width: 100%;
    gap: 0;
  }

  .interior-hero__copy {
    width: min(calc(100% - 40px), var(--shell));
    min-height: 0;
    margin-inline: auto;
    padding: 38px 0 66px;
  }

  .interior-hero__copy h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .interior-hero__copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .interior-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .interior-hero__media {
    min-height: 440px;
  }

  .interior-hero__media figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .fact-band__grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .fact-band__grid > div {
    min-height: 130px;
    padding: 22px 20px;
  }

  .story__grid {
    gap: 34px;
  }

  .story__lead {
    font-size: 25px;
  }

  .principle-grid article {
    min-height: 240px;
    padding: 28px 24px;
  }

  .about-process figure,
  .system-story figure {
    height: 450px;
  }

  .community-callout {
    padding-block: 76px;
  }

  .community-callout__grid,
  .page-cta__inner {
    gap: 32px;
  }

  .catalog-item,
  .catalog-item--featured {
    min-height: 0;
    margin-inline: 0;
    padding: 28px 20px;
    gap: 20px;
    grid-template-columns: 36px 1fr;
  }

  .catalog-item:not(.catalog-item--featured) {
    padding-inline: 0;
  }

  .catalog-item a {
    grid-column: 2;
  }

  .system-story__grid {
    gap: 50px;
  }

  .service-steps ol {
    grid-template-columns: 1fr;
  }

  .service-steps li,
  .service-steps li:nth-child(2),
  .service-steps li:nth-child(n + 3) {
    min-height: 240px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-steps h3 {
    margin-top: 56px;
  }

  .credential-callout__logos {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-hero__grid {
    min-height: 0;
  }

  .contact-hero__grid {
    width: min(calc(100% - 40px), var(--shell));
    padding-block: 60px 76px;
  }

  .contact-hero__copy h1 {
    font-size: clamp(52px, 14vw, 66px);
  }

  .contact-direct {
    flex-direction: column;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-detail-grid article {
    padding: 30px 24px;
  }

  .contact-area__grid {
    gap: 48px;
  }

  .contact-area__map {
    min-height: 340px;
  }

  .next-steps li {
    min-height: 220px;
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
