@font-face {
  font-family: Inter;
  src: url('/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url('/assets/fonts/inter-v20-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Oswald;
  src: url('/assets/fonts/oswald-v57-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
:root {
  --red: #b20d1c;
  --red-dark: #900b17;
  --ink: #161719;
  --muted: #565a5e;
  --paper: #f5f5f2;
  --line: #d8d9d7;
  --radius: 24px;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
summary,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  color: var(--red);
}
p {
  margin: 0 0 1.2em;
}
h1,
h2,
h3,
h4 {
  font-family: Oswald, 'Arial Narrow', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.4em;
  text-wrap: balance;
}
h1,
h2 {
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-size: clamp(2.15rem, 3.8vw, 3.8rem);
}
h3 {
  font-size: 1.7rem;
}
h4 {
  font-size: 1.3rem;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--red);
}
ul,
ol {
  padding-left: 1.4em;
}
li {
  margin-bottom: 0.45em;
}
strong {
  font-weight: 700;
}
.wrap {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding: 100px 0;
}
.eyebrow {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 17px;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.65;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 54px;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.button:hover {
  color: #fff;
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}
.button-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.button-white:hover {
  background: #eee;
  border-color: #eee;
  color: var(--ink);
}
.button-dark {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}
.button-dark:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.text-link {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  display: inline-block;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p,
.section-heading > div + div {
  max-width: 370px;
}
.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid #1254b5;
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: 2px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 12px;
  background: #fff;
  padding: 12px 20px;
  transform: translateY(-150%);
  color: #111;
}
.skip-link:focus {
  transform: none;
}
.utility-bar {
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  padding: 10px 0;
  letter-spacing: 0.01em;
}
.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.utility-bar strong {
  color: #fff;
}
.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 4px #00000012;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 5px;
}
.brand {
  width: 230px;
  flex: none;
}
.brand img {
  width: 100%;
  height: 111px;
  object-fit: contain;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1.3;
  text-decoration: none;
  color: var(--red);
}
.header-phone small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 4px;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 2vw, 32px);
  padding-bottom: 18px;
  padding-top: 3px;
}
.primary-nav > a,
.nav-dropdown > summary {
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 9px 0;
  min-height: 40px;
  list-style: none;
  white-space: nowrap;
}
.nav-dropdown > summary:after {
  content: '+';
  display: inline-block;
  margin-left: 8px;
  font-size: 0.9rem;
}
.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown[open] > summary {
  color: var(--red);
}
.nav-panel {
  position: absolute;
  top: calc(100% - 7px);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 18px 35px #0002;
  min-width: 230px;
  padding: 22px;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-panel a {
  display: block;
  font-size: 0.84rem;
  text-decoration: none;
  padding: 6px 0;
  line-height: 1.5;
}
.nav-panel a:hover {
  text-decoration: underline;
}
.nav-panel p {
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}
.roofing-panel,
.areas-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 35px;
  width: 620px;
  left: max(40px, calc((100% - 1280px)/2 + 160px));
}
.nav-panel .nav-all {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  font-weight: 700;
  color: var(--red);
}
.areas-panel {
  left: auto;
  right: max(40px, calc((100% - 1280px)/2));
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #151719;
  color: #fff;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(10, 14, 18, 0.91) 0%, rgba(10, 14, 18, 0.66) 45%, rgba(10, 14, 18, 0.12) 100%);
}
.hero:after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 800px;
  height: 800px;
  left: -420px;
  bottom: -600px;
  background: repeating-conic-gradient(from 30deg, transparent 0deg 12deg, #ffffff0a 12deg 23deg);
  transform: rotate(-12deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  padding-block: 56px 65px;
  align-items: center;
}
.hero-copy {
  padding-block: 20px;
}
.hero-copy .eyebrow {
  color: #fff;
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-copy .eyebrow:before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #d9192b;
  flex: none;
}
.hero-headline {
  font-family: Oswald, 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 5.7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero-headline span {
  color: #fff;
  border-bottom: 6px solid #c91928;
  padding-bottom: 4px;
}
.hero-description {
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.85;
  margin-block: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero-call {
  font-size: 0.84rem;
  color: #fff;
}
.hero-caption {
  font-size: 0.65rem;
  margin: 40px 0 0;
  color: #d8dcdf;
  letter-spacing: 0.04em;
}
.quote-form {
  background: #fff;
  border-radius: 22px;
  border-top: 8px solid var(--red);
  color: var(--ink);
  padding: 28px 28px 21px;
  box-shadow: 0 20px 45px #0002;
  text-align: center;
}
.quote-form .eyebrow {
  margin-bottom: 8px;
  font-size: 0.65rem;
}
.quote-form h2 {
  font-size: 2.05rem;
  margin-bottom: 8px;
}
.form-intro {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.form-fields {
  text-align: left;
}
.form-fields label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
.form-fields input,
.form-fields select,
.form-fields textarea {
  display: block;
  width: 100%;
  border: 1px solid #a3a6a9;
  border-radius: 5px;
  background: #fff;
  color: #161719;
  font-size: 0.8rem;
  padding: 10px 12px;
  min-height: 43px;
  margin-bottom: 11px;
}
.form-fields input::placeholder,
.form-fields textarea::placeholder {
  color: #656a70;
  opacity: 1;
}
.form-fields textarea {
  resize: vertical;
  min-height: 64px;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}
.form-pair > div {
  min-width: 0;
}
.quote-form .button {
  width: 100%;
  margin-top: 2px;
  font-size: 0.82rem;
}
.form-note {
  font-size: 0.61rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 11px 0;
}
.form-alternative {
  font-size: 0.74rem;
  margin: 0;
}
.form-alternative a {
  font-weight: 700;
  color: var(--red);
}
.honeypot {
  display: none;
}
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid #ddd;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 27px;
}
.trust-strip .wrap > div {
  text-align: center;
  border-right: 1px solid #ccc;
  padding: 4px 20px;
}
.trust-strip .wrap > div:last-child {
  border: 0;
}
.trust-strip strong {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.2;
  display: block;
}
.trust-strip span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 65px;
  align-items: center;
}
.intro-grid h1 {
  font-size: clamp(2.2rem, 3.3vw, 3.2rem);
}
.intro-grid p:not(.lead) {
  font-size: 0.9rem;
  color: #44494d;
}
.intro-grid p a {
  color: var(--red);
  font-weight: 700;
}
.brand-art {
  position: relative;
  background: #111;
  isolation: isolate;
  border-radius: 150px 25px 25px 25px;
  overflow: hidden;
  align-self: stretch;
  min-height: 480px;
  display: flex;
  align-items: center;
  box-shadow: 15px 15px 0 #ececea;
}
.brand-art > img {
  width: 100%;
  height: auto;
}
.art-stamp {
  position: absolute;
  bottom: 35px;
  left: 35px;
  right: 30px;
  color: #fff;
  font-family: Oswald, sans-serif;
  line-height: 1.25;
  text-transform: uppercase;
}
.art-stamp span {
  display: block;
  font-size: 1.4rem;
}
.art-stamp strong {
  font-size: 2.3rem;
  font-weight: 500;
}
.services-section {
  background: var(--paper);
  position: relative;
  border-top: 6px solid var(--red);
  border-radius: 70px 70px 0 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  min-width: 0;
  aspect-ratio: 1.13;
  text-decoration: none;
  color: #fff;
  background: #222;
  isolation: isolate;
  border: 1px solid #25252525;
}
.service-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:after {
  content: '';
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(0deg, #000d, transparent);
  z-index: 0;
}
.service-card-copy {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 1;
}
.service-card h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0;
  max-width: 80%;
}
.round-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  flex: none;
  font-size: 1.4rem;
}
.service-card:hover {
  color: #fff;
}
.service-card:hover > img {
  transform: scale(1.04);
}
.project-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.project-showcase figure {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  isolation: isolate;
}
.project-showcase figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
}
.project-showcase figure:after {
  content: '';
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(0deg, #000c, transparent);
  z-index: -1;
}
.project-showcase .project-feature {
  grid-row: 1/3;
  min-height: 500px;
}
.project-showcase figcaption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 20px;
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  color: #fff;
}
.project-feature figcaption span {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
}
.project-feature figcaption strong {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.25;
  text-transform: uppercase;
}
.process-section {
  background: var(--paper);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.process-grid > div {
  border-top: 1px solid #bcbdbb;
  padding-top: 20px;
}
.process-number {
  font-family: Oswald, sans-serif;
  font-size: 4rem;
  line-height: 1.2;
  color: var(--red);
  display: block;
  margin-bottom: 20px;
}
.process-grid h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.process-grid p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.crew-banner {
  background: var(--ink);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.crew-banner:after {
  content: '';
  position: absolute;
  right: -250px;
  bottom: -500px;
  width: 1000px;
  height: 1000px;
  background: repeating-conic-gradient(from 180deg, transparent 0deg 12deg, #ffffff04 12deg 24deg);
  pointer-events: none;
}
.crew-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.crew-grid > img {
  height: 530px;
  width: 100%;
  object-fit: cover;
  object-position: center 65%;
  border-radius: 25px 100px 25px 25px;
  box-shadow: -14px 14px 0 var(--red);
}
.crew-grid h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.25rem);
}
.crew-grid h2 em {
  color: #ff5967;
}
.crew-grid .eyebrow {
  color: #ff8992;
}
.crew-grid p {
  color: #e0e1e3;
  max-width: 460px;
  font-size: 0.95rem;
}
.reviews-section {
  padding-bottom: 70px;
}
.reviews-widget {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  padding: 16px;
  background: #fff;
}
.reviews-widget iframe {
  border: 0;
  width: 100%;
  min-height: 380px;
  display: block;
}
.widget-fallback {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 12px 0 0;
}
.area-section {
  background: var(--paper);
  border-radius: 70px 70px 0 0;
}
.area-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.area-intro p {
  max-width: 340px;
  font-size: 0.95rem;
}
.area-home {
  border-bottom: 1px solid #bfc1bf;
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.area-home > a {
  font-family: Oswald, sans-serif;
  text-decoration: none;
  font-size: 2rem;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.area-home p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 5px 0 15px;
}
.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.community-links a {
  font-size: 0.78rem;
}
.city-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}
.city-links a {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  text-decoration: none;
  border-bottom: 1px solid #d4d5d2;
  font-size: 0.85rem;
  font-weight: 700;
}
.city-links span {
  color: var(--red);
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.post-card > a > img {
  height: 225px;
  width: 100%;
  object-fit: cover;
}
.post-card-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.post-card .eyebrow {
  font-size: 0.62rem;
  margin-bottom: 10px;
}
.post-card h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.post-card h3 a {
  text-decoration: none;
}
.post-card p {
  font-size: 0.78rem;
  color: var(--muted);
}
.post-card .text-link {
  margin-top: auto;
  font-size: 0.8rem;
}
.faq-section {
  background: var(--paper);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-layout > div > p {
  font-size: 0.9rem;
  max-width: 310px;
}
.faq {
  border-bottom: 1px solid #c6c7c4;
  padding: 18px 0;
}
.faq:first-child {
  border-top: 1px solid #c6c7c4;
}
.faq > summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  list-style: none;
  position: relative;
  padding-right: 35px;
  line-height: 1.5;
}
.faq > summary::-webkit-details-marker {
  display: none;
}
.faq > summary:after {
  content: '+';
  position: absolute;
  right: 3px;
  top: 0;
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}
.faq[open] > summary:after {
  content: '−';
}
.faq p {
  font-size: 0.86rem;
  margin: 18px 0 2px;
  line-height: 1.8;
}
.provider-faq iframe {
  width: 100%;
  border: 0;
  margin-top: 20px;
}
.closing {
  background: var(--red);
  color: #fff;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.closing:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -300px;
  top: -200px;
  width: 1000px;
  height: 1000px;
  background: repeating-conic-gradient(from 270deg, #ffffff07 0deg 15deg, transparent 15deg 30deg);
}
.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.closing .eyebrow {
  color: #fff;
}
.closing h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
}
.closing p {
  font-size: 0.9rem;
  margin: 0;
  color: #fff;
}
.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: none;
}
.closing-phone {
  font-family: Oswald, sans-serif;
  font-size: 2.1rem;
  line-height: 1.3;
  text-decoration: none;
}
.closing-phone:hover {
  color: #fff;
  text-decoration: underline;
}
.closing-actions > span {
  font-size: 0.7rem;
}
.site-footer {
  background: #141517;
  color: #e0e1e3;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr 1.1fr;
  gap: 45px;
}
.footer-brand img {
  width: 260px;
  margin-bottom: 20px;
}
.footer-grid h2 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 23px;
  color: #fff;
}
.footer-grid p,
.footer-grid a,
.footer-grid address {
  font-size: 0.78rem;
  line-height: 1.9;
  color: #d5d7d8;
  font-style: normal;
}
.footer-grid a {
  display: block;
  text-decoration: none;
  padding-block: 3px;
  overflow-wrap: anywhere;
}
.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-grid .footer-phone {
  font-family: Oswald, sans-serif;
  color: #fff;
  font-size: 1.6rem;
}
.footer-bottom {
  border-top: 1px solid #454648;
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 0.66rem;
  color: #b8bbbe;
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
.footer-bottom a:hover {
  color: #fff;
}
.mobile-actions {
  display: none;
}
.breadcrumbs {
  font-size: 0.7rem;
  line-height: 1.5;
  padding-block: 22px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs a {
  text-decoration: none;
}
.inner-hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  isolation: isolate;
  padding: 65px 0 75px;
  overflow: hidden;
}
.inner-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  object-position: center 45%;
}
.inner-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #111e, #1118);
  z-index: -2;
}
.inner-hero .eyebrow {
  color: #fff;
}
.inner-hero h1 {
  max-width: 830px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}
.inner-hero p {
  max-width: 640px;
  font-size: 1rem;
  margin: 20px 0 28px;
  color: #fff;
}
.inner-hero .button {
  margin-right: 20px;
}
.inner-hero .hero-phone {
  color: #fff;
  font-size: 0.9rem;
}
.inner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: start;
}
.prose {
  max-width: 800px;
}
.prose h2 {
  font-size: 2rem;
  margin: 1.7em 0 0.65em;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 1.5rem;
  margin: 1.4em 0 0.6em;
}
.prose p,
.prose li {
  font-size: 0.96rem;
  color: #3f4448;
}
.prose a {
  color: #a10716;
  text-decoration: underline;
}
.prose ul {
  margin: 20px 0 30px;
}
.prose img {
  border-radius: 20px;
  margin-block: 30px;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
.prose > p:first-child {
  font-size: 1.08rem;
  color: var(--ink);
}
.side-card {
  background: var(--paper);
  border-top: 5px solid var(--red);
  padding: 27px;
  border-radius: 16px;
  position: sticky;
  top: 25px;
}
.side-card h2 {
  font-size: 1.8rem;
}
.side-card p,
.side-card li {
  font-size: 0.8rem;
  color: var(--muted);
}
.side-card .button {
  width: 100%;
  font-size: 0.75rem;
  padding-inline: 12px;
}
.side-card > a:not(.button) {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
}
.side-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 20px;
}
.related-section {
  background: var(--paper);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.link-card {
  display: block;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
}
.link-card h3 {
  font-size: 1.3rem;
  margin: 0;
}
.link-card p {
  font-size: 0.8rem;
  margin: 14px 0 0;
  color: var(--muted);
}
.link-card:hover {
  border-color: var(--red);
}
.directory-group {
  margin: 50px 0;
}
.directory-group h2 {
  font-size: 2.5rem;
}
.directory-group > p {
  max-width: 700px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.gallery-grid figure {
  margin: 0;
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
}
.gallery-grid figure img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 17px 20px;
  font-size: 0.8rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: start;
}
.contact-info h2 {
  font-size: 2.5rem;
}
.contact-info > p {
  font-size: 1rem;
}
.contact-list {
  padding: 0;
  list-style: none;
}
.contact-list li {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  margin: 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-list img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-top: 5px;
}
.contact-list strong {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-list a {
  font-size: 1rem;
}
.contact-list p {
  font-size: 0.9rem;
  margin: 0;
}
.contact-info address {
  font-style: normal;
}
.post-heading {
  max-width: 900px;
  margin-inline: auto;
  padding-block: 20px 45px;
  text-align: center;
}
.post-heading h1 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.17;
}
.post-meta {
  font-size: 0.74rem;
  color: var(--muted);
}
.post-hero {
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 55px;
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) 300px;
  gap: 75px;
}
.post-content h2 {
  margin-top: 1.8em;
}
.posts-widget {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.posts-widget iframe {
  width: 100%;
  height: 520px;
  border: 0;
}
.small-page {
  max-width: 820px;
  margin-inline: auto;
}
.small-page h1 {
  font-size: 3rem;
}
.small-page h2 {
  font-size: 1.9rem;
}
.small-page p {
  font-size: 0.95rem;
}
.notice {
  padding: 20px 25px;
  border-left: 4px solid var(--red);
  background: var(--paper);
  font-size: 0.88rem;
}
.success-page {
  text-align: center;
  max-width: 750px;
}
.success-page .button {
  margin: 20px;
}
.error-page {
  text-align: center;
}
.error-page strong {
  font-family: Oswald;
  font-size: 7rem;
  color: var(--red);
  display: block;
}
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.media-split > img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 24px;
}
.media-split h2 {
  font-size: 2.8rem;
}
.media-split p {
  font-size: 0.95rem;
}
.area-service-links {
  margin-top: 35px;
}
.area-service-links h2 {
  font-size: 2rem;
}
.area-service-links ul {
  columns: 2;
  column-gap: 30px;
}
.area-service-links a {
  font-weight: 700;
}
.native-faq {
  margin-top: 40px;
}
.native-faq h2 {
  font-size: 2.1rem;
}
.native-faq .faq p {
  font-size: 0.92rem;
}
@media (min-width: 1450px) {
  .hero-grid {
    gap: 110px;
  }
  .hero-form {
    max-width: 440px;
    justify-self: end;
    width: 100%;
  }
  .hero-headline {
    font-size: 5.3rem;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .primary-nav {
    gap: 17px;
    justify-content: space-between;
  }
  .primary-nav > a,
  .nav-dropdown > summary {
    font-size: 0.79rem;
  }
  .nav-contact {
    display: none;
  }
  .hero-grid {
    gap: 40px;
    grid-template-columns: 1.1fr 1fr;
  }
  .hero-headline {
    font-size: 4rem;
  }
  .hero-copy .eyebrow {
    font-size: 0.62rem;
  }
  .hero-copy .eyebrow:before {
    display: none;
  }
  .header-phone {
    font-size: 1.4rem;
  }
  .intro-grid,
  .crew-grid,
  .area-layout,
  .faq-layout {
    gap: 40px;
  }
  .brand-art {
    min-height: 440px;
  }
  .footer-grid {
    gap: 28px;
  }
  .inner-layout {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 280px;
  }
  .post-layout {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 270px;
  }
  .contact-grid {
    gap: 45px;
  }
  .section {
    padding-block: 75px;
  }
  .service-card h3 {
    font-size: 1.5rem;
  }
  .service-card-copy {
    left: 20px;
    right: 16px;
    bottom: 19px;
  }
}
@media (max-width: 850px) {
  .header-contact .header-phone small {
    display: none;
  }
  .header-contact {
    gap: 15px;
  }
  .header-contact .button {
    font-size: 0.7rem;
    padding: 13px 18px;
  }
  .header-phone {
    font-size: 1.1rem;
  }
  .brand {
    width: 190px;
  }
  .brand img {
    height: 94px;
  }
  .primary-nav {
    gap: 11px;
  }
  .primary-nav > a,
  .nav-dropdown > summary {
    font-size: 0.72rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 25px;
  }
  .hero-headline {
    font-size: 3.4rem;
  }
  .hero-description {
    font-size: 0.86rem;
  }
  .quote-form {
    padding: 24px 19px 18px;
  }
  .quote-form h2 {
    font-size: 1.7rem;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-caption {
    margin-top: 25px;
  }
  .service-grid {
    gap: 18px;
  }
  .service-card {
    aspect-ratio: 0.9;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
  .round-arrow {
    width: 33px;
    height: 33px;
    font-size: 1.1rem;
  }
  .intro-grid {
    gap: 35px;
  }
  .brand-art {
    min-height: 500px;
  }
  .art-stamp strong {
    font-size: 1.8rem;
  }
  .art-stamp {
    left: 22px;
    right: 15px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .post-grid {
    gap: 20px;
  }
  .post-card-copy {
    padding: 18px;
  }
  .post-card h3 {
    font-size: 1.35rem;
  }
  .post-card > a > img {
    height: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .crew-grid > img {
    height: 470px;
  }
  .inner-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }
  .side-card {
    position: static;
    max-width: none;
  }
  .side-card img {
    float: left;
    margin-right: 20px;
  }
  .side-card .button {
    width: auto;
  }
  .side-card > a:not(.button) {
    display: inline-block;
    margin-left: 20px;
  }
  .contact-grid {
    gap: 30px;
  }
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }
  .area-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .area-intro .button {
    padding-inline: 14px;
    font-size: 0.74rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .utility-bar {
    padding: 8px 0;
    font-size: 0.6rem;
  }
  .utility-bar .wrap {
    justify-content: center;
  }
  .utility-bar .wrap > span + span {
    display: none;
  }
  .site-header {
    position: relative;
  }
  .header-top {
    padding-block: 8px;
    gap: 12px;
  }
  .brand {
    width: 176px;
  }
  .brand img {
    height: 86px;
  }
  .header-contact {
    margin-left: auto;
  }
  .header-contact .button {
    display: none;
  }
  .header-phone {
    font-size: 0.82rem;
  }
  .header-phone img {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    border: 1px solid #b8b9bb;
    border-radius: 7px;
    background: #fff;
    padding: 8px 10px;
    font-size: 0.73rem;
    font-weight: 700;
    cursor: pointer;
  }
  .menu-toggle > span:last-child {
    font-size: 1rem;
  }
  .primary-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: 5px 20px;
    gap: 0;
    width: calc(100% - 36px);
  }
  .js .primary-nav:not(.is-open) {
    display: none;
  }
  .primary-nav > a,
  .nav-dropdown > summary {
    font-size: 0.92rem;
    padding: 13px 5px;
    border-bottom: 1px solid #ddd;
    display: block;
    min-height: 48px;
  }
  .nav-dropdown > summary:after {
    float: right;
  }
  .nav-panel,
  .roofing-panel,
  .areas-panel {
    position: static;
    display: block;
    width: auto;
    min-width: 0;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--paper);
    max-height: none;
  }
  .nav-panel > div {
    margin-bottom: 22px;
  }
  .nav-panel a {
    padding-block: 9px;
  }
  .nav-panel p {
    margin-top: 15px;
  }
  .nav-contact {
    display: block;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    padding-block: 45px 45px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.07em;
  }
  .hero-headline {
    font-size: clamp(2.7rem, 10.1vw, 4.7rem);
    line-height: 1.06;
    max-width: 520px;
    margin-bottom: 20px;
  }
  .hero-headline span {
    border-bottom-width: 4px;
  }
  .hero-description {
    font-size: 0.9rem;
    margin: 22px 0;
  }
  .hero-copy br {
    display: initial;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    font-size: 0.76rem;
    padding: 14px 20px;
  }
  .hero-call {
    font-size: 0.75rem;
  }
  .hero-caption {
    font-size: 0.58rem;
    margin-top: 24px;
  }
  .hero-photo {
    height: 650px;
    object-position: 40% 40%;
    opacity: 0.75;
  }
  .hero-shade {
    background: linear-gradient(180deg, #1014188c 0%, #10141875 25%, #151719 55%);
  }
  .hero-form {
    max-width: 480px;
    align-self: center;
    width: 100%;
  }
  .quote-form {
    padding: 26px 24px 20px;
    border-radius: 18px;
  }
  .quote-form h2 {
    font-size: 2.2rem;
  }
  .form-fields input,
  .form-fields textarea,
  .form-fields select {
    font-size: 16px;
    min-height: 46px;
  }
  .form-fields label {
    font-size: 0.72rem;
  }
  .form-pair {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .form-pair input {
    min-width: 0;
  }
  .form-note {
    font-size: 0.66rem;
  }
  .form-intro {
    font-size: 0.87rem;
  }
  .form-alternative {
    font-size: 0.79rem;
  }
  .trust-strip .wrap {
    grid-template-columns: 1fr 1fr;
    padding-block: 10px;
  }
  .trust-strip .wrap > div {
    padding: 18px 8px;
    border-right: none;
  }
  .trust-strip .wrap > div:nth-child(odd) {
    border-right: 1px solid #ccc;
  }
  .trust-strip .wrap > div:nth-child(-n+2) {
    border-bottom: 1px solid #ccc;
  }
  .trust-strip strong {
    font-size: 1.7rem;
  }
  .trust-strip span {
    font-size: 0.64rem;
  }
  .section {
    padding: 58px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-grid h1 {
    font-size: 2.55rem;
  }
  .intro-grid .lead {
    font-size: 1.08rem;
  }
  .intro-grid p:not(.lead) {
    font-size: 0.92rem;
  }
  .brand-art {
    min-height: 375px;
    max-width: 520px;
    width: calc(100% - 10px);
    justify-self: center;
    border-top-left-radius: 100px;
  }
  .brand-art img {
    margin-bottom: 65px;
  }
  .art-stamp {
    bottom: 23px;
    left: 27px;
  }
  .art-stamp strong {
    font-size: 2rem;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p,
  .section-heading > div + div,
  .section-heading > .button,
  .section-heading > .text-link {
    margin-top: 22px;
    max-width: none;
  }
  .section-heading h2 {
    font-size: 2.6rem;
  }
  .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 13px;
  }
  .services-section,
  .area-section {
    border-radius: 35px 35px 0 0;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-card {
    aspect-ratio: 0.82;
    border-radius: 16px;
  }
  .service-card-copy {
    left: 14px;
    right: 12px;
    bottom: 17px;
    gap: 5px;
  }
  .service-card h3 {
    font-size: 1.25rem;
    max-width: 100%;
  }
  .service-card .round-arrow {
    display: none;
  }
  .project-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .project-showcase .project-feature {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 390px;
  }
  .project-showcase figure {
    min-height: 220px;
    border-radius: 16px;
  }
  .project-showcase figcaption {
    font-size: 1.05rem;
    left: 15px;
    right: 10px;
    bottom: 17px;
  }
  .project-feature figcaption strong {
    font-size: 2rem;
  }
  .project-feature figcaption span {
    font-size: 0.62rem;
  }
  .process-grid {
    gap: 25px;
  }
  .process-number {
    font-size: 3.2rem;
    margin-bottom: 15px;
  }
  .process-grid h3 {
    font-size: 1.3rem;
  }
  .process-grid p {
    font-size: 0.82rem;
  }
  .crew-banner {
    padding-block: 55px;
  }
  .crew-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .crew-grid > img {
    height: 400px;
    width: calc(100% - 15px);
    margin-left: 15px;
    object-position: center 63%;
    border-top-right-radius: 85px;
  }
  .crew-grid h2 {
    font-size: 2.8rem;
  }
  .crew-grid p {
    font-size: 0.9rem;
  }
  .area-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .area-intro h2 {
    font-size: 2.65rem;
  }
  .area-intro h2 br:last-of-type {
    display: none;
  }
  .area-intro p {
    max-width: none;
  }
  .area-links {
    padding-top: 5px;
  }
  .city-links {
    gap: 0 22px;
  }
  .city-links a {
    font-size: 0.79rem;
    padding-block: 13px;
  }
  .community-links a {
    padding-block: 3px;
  }
  .post-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .post-card > a > img {
    height: 230px;
  }
  .post-card-copy {
    padding: 23px;
  }
  .post-card h3 {
    font-size: 1.65rem;
  }
  .post-card p {
    font-size: 0.85rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-layout h2 {
    font-size: 2.7rem;
  }
  .faq-layout > div > p {
    max-width: none;
  }
  .faq summary {
    font-size: 0.9rem;
  }
  .faq p {
    font-size: 0.85rem;
  }
  .closing {
    padding-block: 48px;
  }
  .closing-inner {
    display: block;
  }
  .closing h2 {
    font-size: 2.65rem;
  }
  .closing p {
    font-size: 0.85rem;
  }
  .closing-actions {
    align-items: flex-start;
    gap: 13px;
    margin-top: 28px;
  }
  .closing-phone {
    font-size: 2rem;
  }
  .closing-actions > span {
    font-size: 0.7rem;
  }
  .site-footer {
    padding-top: 40px;
    padding-bottom: 90px;
  }
  .footer-grid {
    gap: 30px 25px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 240px;
  }
  .footer-brand p {
    max-width: 400px;
  }
  .footer-grid h2 {
    font-size: 0.82rem;
    margin-bottom: 15px;
  }
  .footer-grid a,
  .footer-grid p {
    font-size: 0.77rem;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    font-size: 0.64rem;
  }
  .footer-bottom > div {
    margin-top: 15px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    box-shadow: 0 -3px 18px #0002;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-actions a {
    font-size: 0.8rem;
    font-weight: 700;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--ink);
  }
  .mobile-actions a + a {
    background: var(--red);
    color: #fff;
    gap: 15px;
  }
  .inner-hero {
    padding-block: 45px 50px;
  }
  .inner-hero h1 {
    font-size: 2.7rem;
  }
  .inner-hero p {
    font-size: 0.93rem;
    line-height: 1.7;
  }
  .inner-hero .button {
    margin-bottom: 15px;
    font-size: 0.8rem;
  }
  .inner-hero .hero-phone {
    display: block;
    font-size: 0.82rem;
  }
  .breadcrumbs {
    padding-block: 18px;
    font-size: 0.65rem;
  }
  .inner-layout {
    gap: 35px;
  }
  .prose h2 {
    font-size: 1.85rem;
  }
  .prose p,
  .prose li {
    font-size: 0.91rem;
  }
  .prose > p:first-child {
    font-size: 1rem;
  }
  .side-card > a:not(.button) {
    display: block;
    margin-left: 0;
  }
  .side-card .button {
    width: 100%;
  }
  .side-card img {
    float: none;
    margin-right: 0;
  }
  .link-grid {
    grid-template-columns: 1fr;
  }
  .link-card {
    padding: 20px;
  }
  .directory-group h2 {
    font-size: 2rem;
  }
  .gallery-grid {
    gap: 16px;
  }
  .gallery-grid figure {
    border-radius: 14px;
  }
  .gallery-grid figcaption {
    font-size: 0.7rem;
    padding: 13px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info h2 {
    font-size: 2.1rem;
  }
  .post-heading {
    padding-block: 10px 30px;
    text-align: left;
  }
  .post-heading h1 {
    font-size: 2.6rem;
  }
  .post-meta {
    font-size: 0.68rem;
  }
  .post-hero {
    border-radius: 15px;
    margin-bottom: 30px;
    max-height: 380px;
    min-height: 220px;
  }
  .post-layout {
    gap: 35px;
  }
  .posts-widget iframe {
    height: 600px;
  }
  .media-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .media-split > img {
    max-height: 450px;
  }
  .media-split h2 {
    font-size: 2.4rem;
  }
  .area-service-links ul {
    columns: 1;
  }
  .small-page h1 {
    font-size: 2.5rem;
  }
  .small-page h2 {
    font-size: 1.8rem;
  }
  .small-page p {
    font-size: 0.9rem;
  }
  html {
    scroll-padding-top: 15px;
  }
}
@media (max-width: 370px) {
  .header-phone {
    display: none;
  }
  .hero-headline {
    font-size: 2.8rem;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    aspect-ratio: 1.15;
  }
  .service-card h3 {
    font-size: 1.7rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .city-links {
    grid-template-columns: 1fr;
  }
  .hero-copy .eyebrow {
    font-size: 0.55rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none!important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .utility-bar,
  .mobile-actions,
  .closing,
  .site-footer,
  .side-card,
  .hero-form {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  .section {
    padding: 20px 0;
  }
  .prose {
    max-width: none;
  }
  body {
    font-size: 12pt;
  }
  .inner-hero {
    color: #000;
    background: #fff;
  }
  .inner-hero > img,
  .inner-hero:after {
    display: none;
  }
  .inner-hero p,
  .inner-hero .eyebrow {
    color: #000;
  }
  .inner-layout,
  .post-layout {
    display: block;
  }
  a {
    text-decoration: underline;
  }
}
.text-widget {
  position: fixed;
  z-index: 45;
  right: 25px;
  bottom: 24px;
  width: 340px;
  max-width: calc(100vw - 36px);
  pointer-events: none;
}
.text-launcher {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}
.text-launcher-label {
  background: #fff;
  padding: 11px 16px;
  border: 1px solid #ddd;
  border-radius: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 5px 20px #0002;
}
.text-launcher-icon {
  width: 62px;
  height: 62px;
  border: 3px solid #fff;
  box-shadow: 0 5px 20px #0003;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
}
.text-panel {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 15px 50px #0004;
  margin-bottom: 14px;
  pointer-events: auto;
  max-height: calc(100dvh - 130px);
  overflow-y: auto;
}
.text-panel[hidden] {
  display: none;
}
.text-panel-header {
  background: #18191b;
  padding: 15px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid var(--red);
}
.text-panel-header img {
  width: 138px;
  height: auto;
}
.text-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #666;
  color: #fff;
  background: transparent;
  border-radius: 50%;
  font-size: 1.5rem;
}
.text-panel-body {
  padding: 23px;
}
.text-panel-body .eyebrow {
  font-size: 0.59rem;
  margin-bottom: 8px;
}
.text-panel-body h2 {
  font-size: 1.75rem;
}
.text-panel-body p {
  font-size: 0.79rem;
  line-height: 1.65;
  margin: 10px 0 16px;
}
.text-panel-body label {
  display: block;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: 5px;
}
.text-panel-body textarea {
  width: 100%;
  font-size: 0.83rem;
  min-height: 78px;
  border: 1px solid #a6a6a6;
  border-radius: 7px;
  padding: 10px;
  resize: vertical;
  display: block;
  margin-bottom: 14px;
}
.text-panel-body .button {
  width: 100%;
  min-height: 48px;
  font-size: 0.76rem;
  padding: 12px 15px;
}
.text-note {
  display: block;
  font-size: 0.63rem;
  color: var(--muted);
  text-align: center;
  margin-top: 9px;
}
.text-launcher[aria-expanded=true] .text-launcher-label {
  display: none;
}
.reveal-pending {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}
.reveal-pending.reveal-side {
  transform: translate3d(-24px, 8px, 0);
}
.reveal-ready {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-pending {
    opacity: 1;
    transform: none !important;
  }
}
@media (max-width: 700px) {
  .text-widget {
    right: 15px;
    bottom: calc(70px + env(safe-area-inset-bottom));
    width: 315px;
  }
  .text-launcher-icon {
    width: 52px;
    height: 52px;
  }
  .text-launcher-label {
    font-size: 0.66rem;
    padding: 9px 11px;
  }
  .text-panel {
    max-height: calc(100dvh - 205px);
  }
  .text-panel-body textarea {
    font-size: 16px;
  }
  .text-panel-header {
    padding: 10px 18px;
  }
  .text-panel-header img {
    width: 125px;
  }
  .text-panel-body {
    padding: 19px;
  }
  .reveal-pending.reveal-side {
    transform: translate3d(0, 18px, 0);
  }
}
@media print {
  .text-widget {
    display: none;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}
.menu-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 19px;
}
.menu-bars > span {
  height: 2px;
  width: 19px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-dropdown[open] > summary:after {
  content: "−";
}
.menu-toggle {
  width: 44px;
  justify-content: center;
}
.button {
  gap: 0;
}
/* Photography-led brand composition: actual company vehicles and crew. */
.intro-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 65%, #f4f2ee 100%);
}
.intro-photos {
  position: relative;
  min-height: 555px;
  isolation: isolate;
  align-self: center;
  width: 100%;
}
.intro-photos:before {
  content: '';
  position: absolute;
  inset: 45px -20px 85px 50px;
  border: 2px solid #b20d1c;
  border-radius: 30px;
  transform: rotate(5deg);
  z-index: -1;
}
.intro-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 91%;
  height: 340px;
  border: 7px solid #fff;
  border-radius: 27px;
  box-shadow: 0 14px 40px #1b1b1b18;
  overflow: hidden;
}
.intro-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.intro-photo-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 53%;
  height: 280px;
  border: 7px solid #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 14px 40px #1b1b1b20;
}
.intro-photo-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.experience-mark {
  position: absolute;
  bottom: 40px;
  right: 10px;
  text-align: center;
  transform: rotate(-3deg);
  padding: 20px 23px;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.experience-mark strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  color: var(--red);
  font-size: 5.8rem;
  line-height: 1;
}
.experience-mark strong span {
  font-size: 3.2rem;
  vertical-align: top;
}
.experience-mark > span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media (max-width: 1000px) and (min-width: 701px) {
  .intro-photos {
    min-height: 560px;
  }
  .intro-photo-main {
    height: 310px;
    width: 100%;
  }
  .intro-photo-detail {
    width: 65%;
    height: 270px;
  }
  .experience-mark {
    right: -10px;
    bottom: 5px;
    transform: none;
    padding: 10px 8px;
    background: #fff;
  }
  .experience-mark strong {
    font-size: 3.7rem;
  }
  .experience-mark strong span {
    font-size: 2rem;
  }
  .experience-mark > span {
    font-size: 0.6rem;
  }
}
@media (max-width: 700px) {
  .intro-photos {
    min-height: 480px;
    max-width: 500px;
    margin-inline: auto;
  }
  .intro-photo-main {
    height: 295px;
    width: 93%;
  }
  .intro-photo-detail {
    height: 245px;
    width: 55%;
  }
  .intro-photos:before {
    inset: 40px 0 65px 35px;
  }
  .experience-mark {
    bottom: 20px;
    right: 0;
    padding: 16px 10px;
  }
  .experience-mark strong {
    font-size: 4.3rem;
  }
  .experience-mark strong span {
    font-size: 2.3rem;
  }
  .experience-mark > span {
    font-size: 0.66rem;
  }
}
/* Navigation: grouped desktop menus and spacious mobile accordions. */
.primary-nav > a,
.nav-dropdown > summary {
  position: relative;
}
.primary-nav > a:before,
.nav-dropdown > summary:before {
  content: '';
  position: absolute;
  height: 3px;
  bottom: 1px;
  left: 0;
  right: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s;
}
.primary-nav > a:hover:before,
.nav-dropdown[open] > summary:before {
  transform: scaleX(1);
}
.nav-dropdown > summary:after {
  font-family: Inter, sans-serif;
  color: var(--red);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1;
}
.nav-panel {
  border-top-width: 3px;
  padding: 25px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 18px 40px #14171926;
  animation: nav-enter 0.18s ease-out;
}
.nav-panel p {
  color: #6a6a6a;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  padding-bottom: 11px;
  border-bottom: 1px solid #e0e0dd;
}
.nav-panel a {
  border-radius: 5px;
  font-size: 0.84rem;
  padding: 8px 9px;
  margin-inline: -9px;
  transition: background 0.15s, color 0.15s;
}
.nav-panel a:hover {
  background: #f8efef;
  text-decoration: none;
  color: var(--red);
}
.roofing-panel {
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 16px 30px;
  width: min(930px, calc(100vw - 70px));
  left: 50%;
  transform: translateX(-50%);
}
.nav-panel .nav-all {
  margin: 0;
  border-radius: 0;
  font-size: 0.78rem;
  padding: 17px 0 0;
}
.nav-panel .nav-all:hover {
  background: transparent;
  text-decoration: underline;
}
.nav-panel .nav-spotlight {
  margin: 0;
  grid-column: 3;
  grid-row: 1;
  position: relative;
  isolation: isolate;
  padding: 95px 18px 18px;
  overflow: hidden;
  border-radius: 12px;
  background: #18191b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 235px;
}
.nav-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.65;
}
.nav-spotlight:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #131719ed, transparent);
  z-index: -1;
}
.nav-panel .nav-spotlight:hover {
  background: #18191b;
  color: #fff;
}
.nav-spotlight > span {
  font-size: 0.63rem;
  font-weight: 400;
}
.nav-spotlight > strong {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  margin: 6px 0 10px;
}
.nav-spotlight > small {
  font-size: 0.64rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.areas-panel {
  width: 640px;
  gap: 15px 35px;
}
.areas-panel a {
  padding-block: 6px;
}
.nav-dropdown:not(.nav-wide) {
  position: relative;
}
.nav-dropdown:not(.nav-wide) .nav-panel {
  top: calc(100% + 17px);
  left: -22px;
  min-width: 260px;
}
.nav-dropdown:not(.nav-wide) .nav-panel:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  top: -22px;
}
.nav-dropdown:not(.nav-wide) .nav-panel a {
  padding-block: 11px;
}
.nav-dropdown[open] > summary {
  color: var(--red);
}
@keyframes nav-enter {
  from {
    opacity: 0;
    margin-top: 7px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  .primary-nav {
    border-top: 1px solid #e2e2df;
    padding-top: 8px;
    padding-bottom: 20px;
  }
  .primary-nav > a,
  .nav-dropdown > summary {
    padding: 16px 10px;
    font-size: 0.95rem;
    min-height: 54px;
    border-bottom-color: #e4e4e1;
  }
  .primary-nav > a:before,
  .nav-dropdown > summary:before {
    display: none;
  }
  .nav-dropdown > summary:after {
    border: 1px solid #dbcece;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 0;
  }
  .nav-dropdown[open] > summary {
    background: #f5eeee;
    border-radius: 8px 8px 0 0;
    border-bottom: 0;
  }
  .nav-dropdown[open] > summary:after {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }
  .nav-panel,
  .roofing-panel,
  .areas-panel,
  .nav-dropdown:not(.nav-wide) .nav-panel {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0 0 10px 10px;
    padding: 8px 22px 20px;
    background: #f7f7f4;
    animation: none;
    display: block;
  }
  .nav-panel p {
    padding-top: 7px;
    margin-top: 12px;
    margin-bottom: 7px;
    font-size: 0.6rem;
  }
  .nav-panel a,
  .areas-panel a,
  .nav-dropdown:not(.nav-wide) .nav-panel a {
    font-size: 0.83rem;
    min-height: 43px;
    display: flex;
    align-items: center;
    padding: 8px 9px;
  }
  .nav-panel > div {
    margin-bottom: 18px;
  }
  .nav-panel .nav-spotlight {
    display: none;
  }
  .nav-panel .nav-all {
    display: block;
    padding-top: 13px;
    padding-bottom: 3px;
    color: var(--red);
    font-size: 0.8rem;
    min-height: 40px;
  }
  .nav-dropdown:not(.nav-wide) .nav-panel:before {
    display: none;
  }
  .menu-toggle[aria-expanded=true] {
    background: var(--ink);
    border-color: var(--ink);
  }
  .menu-toggle[aria-expanded=true] .menu-bars > span {
    background: #fff;
  }
  .menu-bars > span {
    transition: transform 0.18s, opacity 0.18s;
  }
  .menu-toggle[aria-expanded=true] .menu-bars > span:first-child {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] .menu-bars > span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded=true] .menu-bars > span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* KVN-inspired responsive header: one clean sticky row, with compact navigation. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .header-phone small {
  display: none;
}
.site-header .header-phone img {
  display: none;
}
@media (min-width: 1200px) {
  .site-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px max(25px, calc((100vw - 1560px)/2));
  }
  .site-header .header-top {
    display: contents;
  }
  .site-header .brand {
    order: 0;
    width: 185px;
    flex: none;
  }
  .site-header .brand img {
    height: 90px;
  }
  .site-header .primary-nav {
    order: 1;
    flex: 1;
    width: auto;
    margin: 0;
    padding: 0;
    gap: clamp(12px, 1.2vw, 25px);
    justify-content: center;
  }
  .site-header .primary-nav > a,
  .site-header .nav-dropdown > summary {
    font-size: 0.77rem;
    padding-block: 15px;
  }
  .site-header .header-contact {
    order: 2;
    gap: 20px;
    flex: none;
  }
  .site-header .header-phone {
    font-size: 1.23rem;
    white-space: nowrap;
  }
  .site-header .header-contact .button {
    min-height: 48px;
    padding: 14px 19px;
    font-size: 0.74rem;
    white-space: nowrap;
  }
  .site-header .nav-contact {
    display: none;
  }
  .site-header .menu-toggle {
    display: none;
  }
  .site-header .roofing-panel,
  .site-header .areas-panel {
    top: 100%;
  }
  .site-header .nav-dropdown:not(.nav-wide) .nav-panel {
    top: calc(100% + 28px);
  }
  .site-header .nav-dropdown:not(.nav-wide) .nav-panel:before {
    height: 32px;
    top: -32px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .site-header {
    gap: 16px;
    padding-inline: 22px;
  }
  .site-header .brand {
    width: 145px;
  }
  .site-header .brand img {
    height: 72px;
  }
  .site-header .primary-nav {
    gap: 13px;
  }
  .site-header .primary-nav > a,
  .site-header .nav-dropdown > summary {
    font-size: 0.7rem;
  }
  .site-header .header-contact {
    gap: 14px;
  }
  .site-header .header-phone {
    font-size: 1.05rem;
  }
  .site-header .header-contact .button {
    font-size: 0.67rem;
    padding: 13px 14px;
    min-height: 45px;
  }
  .site-header .nav-dropdown:not(.nav-wide) .nav-panel {
    top: calc(100% + 20px);
  }
}
@media (min-width: 701px) and (max-width: 1199px) {
  .site-header .header-top {
    padding-block: 12px;
    gap: 25px;
  }
  .site-header .brand {
    width: 210px;
  }
  .site-header .brand img {
    height: 102px;
  }
  .site-header .header-contact {
    margin-left: auto;
    gap: 25px;
  }
  .site-header .header-phone {
    font-size: 1.5rem;
  }
  .site-header .header-contact .button {
    font-size: 0.83rem;
    padding: 16px 22px;
  }
  .site-header .menu-toggle {
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 6px;
    min-width: 50px;
    height: 50px;
    background: transparent;
    padding: 12px;
    cursor: pointer;
  }
  .site-header .menu-bars {
    gap: 6px;
    width: 26px;
  }
  .site-header .menu-bars > span {
    height: 3px;
    width: 26px;
  }
  .site-header .menu-toggle[aria-expanded=true] {
    background: var(--ink);
  }
  .site-header .menu-toggle[aria-expanded=true] .menu-bars > span {
    background: #fff;
  }
  .site-header .menu-toggle[aria-expanded=true] .menu-bars > span:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  .site-header .menu-toggle[aria-expanded=true] .menu-bars > span:nth-child(2) {
    opacity: 0;
  }
  .site-header .menu-toggle[aria-expanded=true] .menu-bars > span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
  .site-header .primary-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: calc(100% - 48px);
    margin-inline: auto;
    border-top: 1px solid #ddd;
    padding: 10px 0 25px;
    max-height: calc(100dvh - 135px);
    overflow-y: auto;
  }
  .js .site-header .primary-nav:not(.is-open) {
    display: none;
  }
  .site-header .primary-nav > a,
  .site-header .nav-dropdown > summary {
    font-size: 1rem;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    display: block;
  }
  .site-header .nav-dropdown > summary:after {
    float: right;
  }
  .site-header .primary-nav > a:before,
  .site-header .nav-dropdown > summary:before {
    display: none;
  }
  .site-header .nav-panel,
  .site-header .roofing-panel,
  .site-header .areas-panel,
  .site-header .nav-dropdown:not(.nav-wide) .nav-panel {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    background: var(--paper);
    border: 0;
    border-radius: 0 0 12px 12px;
    padding: 20px 25px;
    max-height: none;
  }
  .site-header .roofing-panel,
  .site-header .areas-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .site-header .nav-spotlight {
    display: none;
  }
  .site-header .nav-panel a {
    font-size: 0.9rem;
    min-height: 42px;
  }
  .site-header .nav-dropdown:not(.nav-wide) .nav-panel:before {
    display: none;
  }
  .site-header .nav-contact {
    display: block;
  }
}
@media (max-width: 700px) {
  .site-header .header-top {
    padding-block: 7px;
  }
  .site-header .brand {
    width: 170px;
  }
  .site-header .brand img {
    height: 82px;
  }
  .site-header .header-contact {
    display: none;
  }
  .site-header .menu-toggle {
    margin-left: auto;
    border: 0;
    width: 48px;
    height: 48px;
  }
  .site-header .menu-bars {
    gap: 5px;
    width: 25px;
  }
  .site-header .menu-bars > span {
    width: 25px;
    height: 3px;
  }
  .site-header .menu-toggle[aria-expanded=true] .menu-bars > span:first-child {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header .menu-toggle[aria-expanded=true] .menu-bars > span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }
  .site-header .primary-nav {
    max-height: calc(100dvh - 165px);
    overflow-y: auto;
  }
  .site-header .nav-panel {
    max-height: none;
  }
  .site-header .nav-contact {
    display: block;
  }
}
html {
  scroll-padding-top: 135px;
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 110px;
  }
}
/* Photo-to-content service tiles; no decorative arrow glyphs or red underline rules. */
.hero-copy .eyebrow:before {
  display: none;
}
.hero-headline span {
  border: 0;
  padding: 0;
}
.services-section {
  border-top: 0;
}
.intro-photos:before {
  border-color: #d1d1cd;
}
.experience-mark {
  border: 0;
}
.primary-nav > a:before,
.nav-dropdown > summary:before {
  display: none;
}
.service-tile {
  position: relative;
  isolation: isolate;
  border: 1px solid #323236;
  border-radius: 27px;
  background: #fff;
  overflow: hidden;
  min-width: 0;
  min-height: 385px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 5px 0 #17171905;
}
.service-tile > summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}
.service-tile > summary::-webkit-details-marker {
  display: none;
}
.service-tile-photo {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-tile > summary:hover .service-tile-photo {
  transform: scale(1.035);
}
.service-tile-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 23px 25px;
  background: #fff;
  position: relative;
  min-height: 85px;
  font-family: Oswald, sans-serif;
  font-size: 1.7rem;
  line-height: 1.12;
  text-transform: uppercase;
}
.service-tile-toggle {
  width: 18px;
  height: 18px;
  position: relative;
  flex: none;
}
.service-tile-toggle:before,
.service-tile-toggle:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.service-tile-toggle:after {
  transform: rotate(90deg);
}
.service-tile[open] {
  background: var(--red);
  color: #fff;
}
.service-tile[open] .service-tile-photo {
  display: none;
}
.service-tile[open] .service-tile-label {
  background: transparent;
  padding-bottom: 10px;
  color: #fff;
}
.service-tile[open] .service-tile-toggle:after {
  transform: rotate(0);
}
.service-tile-panel {
  padding: 8px 25px 95px;
  position: relative;
  min-height: 290px;
}
.service-tile-panel p {
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  max-width: 340px;
}
.service-tile-panel .button {
  position: relative;
  z-index: 1;
  display: flex;
  font-size: 0.72rem;
  padding: 14px 12px;
  border-radius: 11px;
  min-height: 49px;
}
.button-white {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
.button-white:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.tile-brandmark {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: absolute;
  left: 21px;
  bottom: -8px;
  opacity: 0.28;
  pointer-events: none;
}
.service-tile[open] > summary:focus-visible {
  outline-color: #fff;
  outline-offset: -7px;
  border-radius: 24px 24px 0 0;
}
.service-tile > summary:focus-visible {
  outline-offset: -7px;
  border-radius: 24px;
}
.service-tile[open] .button:focus-visible {
  outline-color: #fff;
}
.service-tile:nth-child(3n+2)[open] {
  background: #222326;
}
.service-tile:nth-child(3n+2) .button-white:hover {
  color: #222326;
}
@media (max-width: 1100px) {
  .service-tile {
    min-height: 340px;
  }
  .service-tile-photo {
    height: 255px;
  }
  .service-tile-label {
    font-size: 1.45rem;
    padding: 20px;
  }
  .service-tile-panel {
    padding: 8px 20px 80px;
    min-height: 255px;
  }
  .service-tile-panel p {
    font-size: 0.85rem;
  }
  .tile-brandmark {
    width: 100px;
    height: 100px;
    left: 17px;
  }
}
@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-tile {
    min-height: 370px;
    border-radius: 23px;
  }
  .service-tile-photo {
    height: 285px;
  }
  .service-tile-label {
    font-size: 1.75rem;
    padding: 24px;
    min-height: 85px;
  }
  .service-tile-panel {
    padding: 8px 24px 90px;
    min-height: 285px;
  }
  .service-tile-panel p {
    font-size: 1rem;
    max-width: none;
  }
  .service-tile-panel .button {
    font-size: 0.78rem;
  }
  .tile-brandmark {
    width: 115px;
    height: 115px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-panel {
    animation: none;
  }
  .service-tile,
  .service-tile-photo {
    transition: none;
  }
}
/* Direct hero copy, deeper red photography, and the supplied brand mark. */
.hero-headline {
  font-size: clamp(3.4rem, 5.1vw, 5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 8px #0004;
  max-width: 650px;
}
.hero-headline span {
  border: none!important;
  padding: 0;
}
.hero-description {
  max-width: 465px;
  font-size: 1.07rem;
  line-height: 1.7;
}
.hero-copy .eyebrow {
  line-height: 1.6;
}
.hero-copy .eyebrow:before {
  content: none !important;
}
.crew-banner {
  background: #920d1c;
  isolation: isolate;
}
.crew-banner:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(105, 6, 16, 0.91), rgba(146, 13, 28, 0.91)), url('/assets/images/project-23-1600.webp') center / cover;
  z-index: -2;
}
.crew-banner:after {
  opacity: 0.7;
}
.crew-grid h2 em,
.crew-grid .eyebrow,
.crew-grid p {
  color: #fff;
}
.crew-grid > img {
  box-shadow: -13px 13px 0 #ffffff2b;
}
.crew-grid h2 {
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
}
.text-launcher-icon {
  border: 0;
  background: var(--red);
  overflow: hidden;
  box-shadow: 0 5px 20px #0003;
}
.text-launcher-icon:before,
.text-launcher-icon:after {
  content: none;
}
.text-launcher-icon img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}
.text-launcher:before,
.text-launcher:after {
  content: none;
}
@media (min-width: 1450px) {
  .hero-headline {
    font-size: 5rem;
  }
}
@media (max-width: 850px) and (min-width: 701px) {
  .hero-headline {
    font-size: 3.35rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
}
@media (max-width: 700px) {
  .hero-headline {
    font-size: clamp(2.8rem, 10.3vw, 4.4rem);
    line-height: 1.13;
    letter-spacing: -0.025em;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 470px;
  }
  .crew-grid h2 {
    font-size: 2.8rem;
  }
  .hero-grid {
    padding-top: 40px;
  }
}
/* Shared photographic banners keep the page's search heading in the introduction below. */
.page-banner .hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 1fr);
  gap: 70px;
  align-items: center;
}
.page-banner .hero-copy {
  padding-block: 40px;
}
.page-banner .hero-headline {
  font-size: clamp(3rem, 4.6vw, 4.8rem);
  max-width: 650px;
  overflow-wrap: normal;
}
.page-banner .hero-description {
  max-width: 550px;
}
.page-banner .hero-call {
  font-weight: 700;
  font-size: 1rem;
  text-underline-offset: 6px;
}
.page-introduction {
  padding: 68px 0 10px;
}
.page-introduction h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
}
.page-introduction + .breadcrumbs {
  padding-top: 20px;
}
.page-introduction + .section {
  padding-top: 55px;
}
.contact-photo img {
  height: 100%;
  max-height: 690px;
  min-height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.post-heading {
  padding-top: 30px;
}
.post-layout {
  padding-top: 30px;
}
@media (max-width: 1100px) and (min-width: 701px) {
  .page-banner .hero-grid {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 1fr);
  }
  .page-banner .hero-headline {
    font-size: 3.3rem;
  }
}
@media (max-width: 700px) {
  .page-banner .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-banner .hero-copy {
    padding-block: 12px;
  }
  .page-banner .hero-headline {
    font-size: clamp(2.8rem, 10.3vw, 4.1rem);
  }
  .page-introduction {
    padding: 45px 0 5px;
  }
  .page-introduction h1 {
    font-size: 2.35rem;
  }
  .page-introduction + .section {
    padding-top: 35px;
  }
  .contact-photo img {
    min-height: 340px;
    max-height: 500px;
  }
  .hero-form {
    scroll-margin-top: 110px;
  }
}
@media (max-width: 700px) {
  .text-launcher-label {
    display: none;
  }
  .site-header .primary-nav {
    max-height: calc(100dvh - 210px);
  }
}
@media (max-width: 1199px) {
  .site-header:has(.primary-nav.is-open) ~ .text-widget {
    visibility: hidden;
    pointer-events: none;
  }
}
@media (min-width: 701px) and (max-width: 1199px) {
  .site-header .primary-nav {
    max-height: calc(100dvh - 190px);
  }
}
/* White chat launcher gives the red-and-charcoal favicon a clear background. */
.text-launcher-icon {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 18px #0003;
}
.text-launcher-icon img {
  width: 44px;
  height: 44px;
}
/* Service areas combine a real local photo with compact, grouped destination links. */
.site-header .areas-panel {
  width: min(890px, calc(100vw - 70px));
  grid-template-columns: 0.95fr 1.3fr;
  gap: 28px;
  right: 35px;
  left: auto;
  transform: none;
  padding: 25px;
  background: #fff;
  border-top: 0;
  border-radius: 0 0 24px 24px;
}
.site-header .areas-panel > div {
  margin: 0;
  min-width: 0;
}
.site-header .areas-panel .area-menu-feature {
  display: flex;
  position: relative;
  isolation: isolate;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 164px;
  margin: 0 0 18px;
  padding: 23px;
  border-radius: 15px;
  color: #fff;
  background: #151719;
}
.area-menu-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
  z-index: -2;
}
.area-menu-feature:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #210307e8, transparent);
  z-index: -1;
}
.area-menu-feature > span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.area-menu-feature > strong {
  font: 500 2.5rem/1.15 Oswald, sans-serif;
  text-transform: uppercase;
  margin-top: 4px;
}
.site-header .areas-panel .area-menu-feature:hover {
  background: #151719;
  color: #fff;
}
.site-header .areas-panel .area-menu-local > p {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  color: #5b5b5b;
}
.area-menu-neighborhoods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
}
.site-header .areas-panel .area-menu-neighborhoods a {
  margin: 0;
  padding: 10px 0;
  font-size: 0.75rem;
  border-bottom: 1px solid #eee;
  min-height: 41px;
  line-height: 1.4;
  border-radius: 0;
}
.site-header .areas-panel .area-menu-neighborhoods a:hover {
  background: transparent;
  color: var(--red);
  text-decoration: underline;
}
.area-menu-county {
  background: #f5f4f0;
  border-radius: 18px;
  padding: 23px;
}
.area-menu-kicker {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 9px;
}
.area-menu-title {
  display: block;
  font: 500 2.2rem/1.1 Oswald, sans-serif;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 19px;
}
.area-menu-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.site-header .areas-panel .area-menu-cities a {
  display: flex;
  align-items: center;
  margin: 0;
  min-height: 43px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  font-size: 0.77rem;
  line-height: 1.35;
  font-weight: 700;
  border: 1px solid #e8e5e1;
  transition: background 0.16s, color 0.16s;
}
.site-header .areas-panel .area-menu-cities a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.site-header .areas-panel .area-menu-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 0.73rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 45px;
  padding: 12px 15px;
  margin: 18px 0 0;
  border-radius: 8px;
  width: 100%;
}
.site-header .areas-panel .area-menu-all:hover {
  background: var(--red-dark);
  color: #fff;
}
@media (min-width: 701px) and (max-width: 1199px) {
  .site-header .areas-panel {
    width: 100%;
    padding: 18px 0 10px;
    gap: 20px;
    grid-template-columns: 0.95fr 1.3fr;
  }
  .site-header .areas-panel .area-menu-county {
    padding: 22px;
  }
  .site-header .areas-panel .area-menu-feature {
    min-height: 180px;
  }
}
@media (max-width: 700px) {
  .site-header .areas-panel {
    width: 100%;
    padding: 14px 0 8px;
    display: block;
    background: #fff;
    max-height: none;
  }
  .site-header .areas-panel .area-menu-feature {
    min-height: 130px;
    margin-bottom: 16px;
    padding: 18px;
  }
  .area-menu-feature > strong {
    font-size: 2.15rem;
  }
  .site-header .areas-panel .area-menu-local > p {
    padding-inline: 8px;
    font-size: 0.55rem;
  }
  .area-menu-neighborhoods {
    gap: 0 15px;
    padding: 0 8px;
  }
  .site-header .areas-panel .area-menu-neighborhoods a {
    font-size: 0.79rem;
    min-height: 44px;
  }
  .site-header .areas-panel .area-menu-county {
    margin-top: 20px;
    padding: 18px;
    border-radius: 15px;
  }
  .area-menu-title {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }
  .area-menu-title br {
    display: none;
  }
  .site-header .areas-panel .area-menu-cities a {
    min-height: 45px;
    padding: 10px;
    font-size: 0.75rem;
  }
  .area-menu-kicker {
    font-size: 0.53rem;
  }
  .site-header .areas-panel .area-menu-all {
    font-size: 0.66rem;
    min-height: 46px;
  }
}
.footer-bottom {
  padding-right: 84px;
}
/* A real completed roof anchors the closing invitation. */
.closing {
  padding-block: 65px;
  background: linear-gradient(115deg, #910b18, var(--red) 70%);
}
.closing:after {
  opacity: 0.75;
  right: -180px;
  top: -100px;
}
.closing-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 65px;
  align-items: center;
}
.closing-copy {
  min-width: 0;
}
.closing-copy h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.3rem);
  margin-bottom: 24px;
}
.closing-copy > p {
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.closing .closing-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 26px;
  margin: 0;
}
.closing-actions .button {
  padding: 18px 25px;
  border-radius: 11px;
  box-shadow: 0 5px 18px #54010c2b;
}
.closing-actions > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.closing-actions .closing-phone {
  font-size: 1.8rem;
  line-height: 1.2;
  text-decoration: none;
}
.closing-actions > div > span {
  font-size: 0.69rem;
}
.closing-photo {
  margin: 0;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 13px 13px 0 #ffffff1f;
}
.closing-photo > img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center 47%;
}
.closing-photo figcaption {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 38px 24px 20px;
  background: linear-gradient(0deg, #121416ed 20%, #12141600);
  color: #fff;
}
.closing-photo figcaption img {
  width: 135px;
  height: auto;
  flex: none;
}
.closing-photo figcaption span {
  font-size: 0.68rem;
  line-height: 1.6;
}
.closing-photo figcaption strong {
  display: block;
  font-size: 0.78rem;
}
@media (max-width: 1100px) and (min-width: 701px) {
  .closing-inner {
    gap: 35px;
  }
  .closing-copy h2 {
    font-size: 3rem;
  }
  .closing-photo > img {
    height: 380px;
  }
  .closing-photo figcaption {
    padding-inline: 18px;
    gap: 12px;
  }
  .closing-photo figcaption img {
    width: 105px;
  }
  .closing-photo figcaption strong {
    font-size: 0.64rem;
  }
  .closing-photo figcaption span {
    font-size: 0.58rem;
  }
  .closing-actions .closing-phone {
    font-size: 1.65rem;
  }
}
@media (max-width: 700px) {
  .closing {
    padding: 48px 0 58px;
  }
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .closing-copy h2 {
    font-size: 2.9rem;
    margin-bottom: 20px;
  }
  .closing-copy > p {
    font-size: 1rem;
    max-width: 480px;
  }
  .closing .closing-actions {
    gap: 20px;
  }
  .closing-actions .button {
    padding: 17px 21px;
  }
  .closing-actions .closing-phone {
    font-size: 1.65rem;
  }
  .closing-photo {
    max-width: 500px;
    box-shadow: 8px 8px 0 #ffffff1f;
  }
  .closing-photo > img {
    height: 300px;
  }
  .closing-photo figcaption {
    padding: 35px 18px 18px;
    gap: 15px;
  }
  .closing-photo figcaption img {
    width: 120px;
  }
  .closing-photo figcaption span {
    font-size: 0.6rem;
  }
  .closing-photo figcaption strong {
    font-size: 0.66rem;
  }
}
@media (max-width: 359px) {
  .closing-photo figcaption img {
    width: 100px;
  }
  .closing-photo figcaption {
    gap: 10px;
    padding-inline: 14px;
  }
  .closing-photo figcaption strong {
    font-size: 0.6rem;
  }
}
/* Full-bleed roofing photography behind the closing invitation. */
.closing {
  background: #880c19;
  padding-block: 80px;
}
.closing-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  z-index: -3;
}
.closing:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(103, 5, 17, 0.97) 0%, rgba(145, 12, 29, 0.91) 48%, rgba(112, 9, 24, 0.55) 100%);
}
.closing:after {
  opacity: 0.35;
}
.closing-inner {
  display: block;
}
.closing-copy {
  max-width: 680px;
}
.closing-copy h2 {
  max-width: 670px;
}
.closing-copy > p {
  max-width: 510px;
}
.closing .closing-actions {
  gap: 23px 32px;
}
@media (max-width: 700px) {
  .closing {
    padding: 54px 0 62px;
  }
  .closing:before {
    background: linear-gradient(90deg, rgba(105, 6, 18, 0.95), rgba(130, 11, 27, 0.83));
  }
  .closing-background {
    object-position: 65% center;
  }
  .closing .closing-actions {
    gap: 22px;
  }
  .closing-copy h2 {
    font-size: 2.8rem;
  }
}
/* Centered truck-photo invitation and a small amount of depth on the main buttons. */
.closing {
  text-align: center;
  padding: 78px 0;
}
.closing-background {
  object-position: center 69%;
}
.closing:before {
  background: linear-gradient(90deg, rgba(92, 5, 17, 0.86), rgba(126, 9, 27, 0.91) 48%, rgba(92, 5, 17, 0.83));
}
.closing-copy {
  max-width: 820px;
  margin-inline: auto;
}
.closing-copy h2 {
  max-width: none;
}
.closing-copy > p {
  max-width: 580px;
  margin-inline: auto;
}
.closing .closing-actions {
  justify-content: center;
}
.closing-actions > div {
  align-items: center;
}
.closing .eyebrow {
  margin-bottom: 20px;
}
.button:where(:not(.button-dark):not(.button-white)) {
  box-shadow: 0 4px 0 #660612, 0 7px 18px #64051020;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:where(:not(.button-dark):not(.button-white)):hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 #660612, 0 12px 22px #6405102b;
}
.button:where(:not(.button-dark):not(.button-white)):active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #660612, 0 3px 8px #64051020;
}
.button.button-white {
  box-shadow: 0 4px 0 #d0ceca, 0 8px 22px #47020d35;
}
.button.button-white:hover {
  box-shadow: 0 6px 0 #d0ceca, 0 12px 24px #47020d40;
  background: #fff;
}
.button.button-white:active {
  box-shadow: 0 1px 0 #d0ceca, 0 3px 9px #47020d35;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .button-dark,
  .button-white {
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .button-dark:hover,
  .button-white:hover {
    box-shadow: 0 6px 15px #00000015;
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .closing.is-visible .closing-background {
    animation: closing-photo-drift 4.5s ease-out both;
    transform-origin: 50% 65%;
  }
  @keyframes closing-photo-drift {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.045);
    }
  }
}
@media (max-width: 700px) {
  .closing {
    padding: 55px 0 62px;
  }
  .closing-background {
    object-position: 57% 66%;
  }
  .closing:before {
    background: rgba(113, 8, 25, 0.87);
  }
  .closing-copy h2 {
    font-size: 2.65rem;
  }
  .closing .closing-actions {
    gap: 24px;
  }
  .closing-copy > p {
    max-width: 400px;
  }
  .closing-actions > div {
    align-items: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .button,
  .button:hover,
  .button:active {
    transition: none!important;
    transform: none !important;
  }
  .closing-background {
    animation: none;
    transform: none;
  }
}
/* Brand color gives the long homepage a clearer rhythm between its photo sections. */
.services-section {
  background: linear-gradient(135deg, #141619, #24262a);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  border-radius: 65px 65px 0 0;
}
.services-section:before {
  content: '';
  position: absolute;
  right: -80px;
  top: -170px;
  width: 600px;
  height: 600px;
  background: url('/assets/images/favicon.png') center / contain no-repeat;
  opacity: 0.075;
  z-index: -1;
  pointer-events: none;
}
.services-section .eyebrow {
  color: #f7b4bc;
}
.services-section .section-heading p {
  color: #d7d8db;
}
.services-section .text-link {
  color: #fff;
  border-color: #f7b4bc;
}
.services-section .text-link:hover {
  color: #f7b4bc;
}
.services-section .service-tile {
  border-color: #9a9b9c;
  box-shadow: 0 10px 26px #0000002b;
}
.services-section .service-tile:not([open]) {
  color: var(--ink);
}
.services-section .service-tile:not([open]) .service-tile-label {
  color: var(--ink);
}
.services-section .service-tile[open] {
  border-color: #f4bdc2;
}
.services-section .service-tile:nth-child(3n+2)[open] {
  background: #a81021;
}
.process-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f5e7e4;
}
.process-section:before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  border: 90px solid #b20d1c06;
  transform: rotate(35deg);
  border-radius: 65px;
  right: -250px;
  top: -360px;
  pointer-events: none;
  z-index: -1;
}
.process-grid {
  gap: 22px;
}
.process-grid > div {
  background: #ffffffb8;
  padding: 27px 24px 22px;
  border-radius: 19px;
  border: 1px solid #dfc9c5;
  box-shadow: 0 5px 0 #bf93930a;
}
.process-grid .process-number {
  color: var(--red);
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.process-grid h3 {
  font-size: 1.55rem;
}
.process-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
}
.guides-section {
  background: linear-gradient(140deg, #f5ede7 0%, #f5f3ed 65%);
  position: relative;
}
.guides-section .post-card {
  background: #fff;
  border-color: #ded5cc;
  box-shadow: 0 8px 24px #432d1c0a;
}
.guides-section .post-card-copy {
  border-top: 0;
}
.guides-section .section-heading .text-link {
  border-color: var(--red);
}
@media (max-width: 1100px) and (min-width: 701px) {
  .process-grid {
    gap: 18px;
  }
  .process-grid > div {
    padding: 22px 18px;
  }
  .process-grid h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 700px) {
  .services-section {
    border-radius: 35px 35px 0 0;
  }
  .services-section:before {
    width: 360px;
    height: 360px;
    right: -90px;
    top: -80px;
    opacity: 0.06;
  }
  .process-grid {
    gap: 16px;
  }
  .process-grid > div {
    padding: 24px;
    border-radius: 16px;
  }
  .process-grid .process-number {
    font-size: 3.2rem;
    margin-bottom: 14px;
  }
  .process-grid p {
    font-size: 0.95rem;
  }
  .process-section:before {
    right: -460px;
  }
}
@media (max-width: 550px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* Solid buttons and the red, charcoal and silver palette from the logo. */
.button {
  background: linear-gradient(180deg, #ba1324, #a60d1e);
  color: #fff;
  border: 1px solid #a60d1e;
  box-shadow: 0 7px 18px #64051024;
  border-radius: 10px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.button:where(:not(.button-dark):not(.button-white)) {
  box-shadow: 0 4px 0 #660612, 0 7px 18px #64051020;
}
.button:hover,
.button:where(:not(.button-dark):not(.button-white)):hover {
  background: #970b1b;
  color: #fff;
  border-color: #970b1b;
  box-shadow: 0 6px 0 #660612, 0 12px 22px #6405102b;
  transform: translateY(-3px);
}
.button:active,
.button:where(:not(.button-dark):not(.button-white)):active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #660612, 0 3px 8px #64051020;
}
.button.button-dark {
  background: #202226;
  color: #fff;
  border: 1px solid #202226;
  box-shadow: 0 7px 18px #1416191f;
}
.button.button-dark:hover {
  background: #34363a;
  color: #fff;
  border-color: #34363a;
  box-shadow: 0 10px 23px #14161929;
}
.button.button-white {
  background: #fff;
  color: #202226;
  border: 1px solid #fff;
  box-shadow: 0 7px 20px #1b02092b;
}
.button.button-white:hover {
  background: #f2f2ef;
  color: #202226;
  border-color: #f2f2ef;
  box-shadow: 0 10px 24px #1b020935;
}
.button.button-white:active {
  box-shadow: 0 3px 9px #1b020929;
  transform: translateY(0);
}
.services-section:before {
  content: none;
  background: none;
}
.services-section .eyebrow {
  color: #fff;
}
.services-section .text-link {
  color: #fff;
  border-color: #8e9095;
}
.services-section .text-link:hover {
  color: #fff;
  border-color: #fff;
}
.services-section .service-tile[open] {
  border-color: #929397;
}
.process-section {
  background: #efefec;
}
.process-section:before {
  content: none;
}
.process-grid > div {
  background: #fff;
  border: 1px solid #d9d9d4;
  box-shadow: 0 7px 18px #17171908;
}
.tile-brandmark {
  filter: grayscale(1) brightness(1.7);
  opacity: 0.8;
}
.trust-strip {
  color: #fff;
  background: linear-gradient(105deg, #900c1b, #af1426);
  border: 0;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-block: 29px;
}
.trust-strip .wrap > div {
  padding: 7px 20px;
  text-align: left;
  border: 0;
  border-right: 1px solid #ffffff33;
  min-width: 0;
}
.trust-strip .wrap > div:first-child {
  padding-left: 0;
}
.trust-strip .wrap > div:last-child {
  border: 0;
  padding-right: 0;
}
.trust-strip strong {
  font-size: 1.55rem;
  line-height: 1.18;
  color: #fff;
  letter-spacing: 0;
}
.trust-strip .wrap > div:first-child strong {
  font-size: 2.55rem;
  line-height: 1;
}
.trust-strip span {
  font-size: 0.69rem;
  color: #fff;
  margin-top: 8px;
  line-height: 1.6;
}
@media (max-width: 1100px) and (min-width: 701px) {
  .trust-strip .wrap > div {
    padding-inline: 15px;
  }
  .trust-strip strong {
    font-size: 1.28rem;
  }
  .trust-strip span {
    font-size: 0.62rem;
  }
}
@media (max-width: 700px) {
  .trust-strip .wrap {
    grid-template-columns: 1fr 1fr;
    padding-block: 20px;
    gap: 18px 22px;
  }
  .trust-strip .wrap > div,
  .trust-strip .wrap > div:first-child,
  .trust-strip .wrap > div:last-child,
  .trust-strip .wrap > div:nth-child(odd),
  .trust-strip .wrap > div:nth-child(-n+2) {
    border: 0;
    padding: 0;
  }
  .trust-strip strong {
    font-size: 1.25rem;
    line-height: 1.22;
  }
  .trust-strip .wrap > div:first-child strong {
    font-size: 2rem;
    line-height: 1;
  }
  .trust-strip span {
    font-size: 0.63rem;
    line-height: 1.55;
    margin-top: 6px;
  }
  .trust-strip .wrap > div:nth-child(-n+2) {
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff29;
  }
}
@media (max-width: 360px) {
  .trust-strip .wrap {
    gap: 16px;
  }
  .trust-strip strong {
    font-size: 1.12rem;
  }
  .trust-strip span {
    font-size: 0.59rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .button,
  .button:hover,
  .button:active {
    transition: none!important;
    transform: none !important;
  }
}
/* Thin red frames reinforce the brand around selected project photography. */
.intro-photo-main,
.intro-photo-detail {
  border: 3px solid var(--red);
}
.project-showcase figure,
.gallery-grid figure {
  border: 2px solid var(--red);
}
.service-tile,
.services-section .service-tile {
  border: 2px solid var(--red);
}
.post-card > a {
  display: block;
  border: 2px solid var(--red);
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}
.prose > img,
.media-split > img,
.contact-photo img {
  border: 2px solid var(--red);
  border-radius: 22px;
}
@media (max-width: 700px) {
  .intro-photo-main,
  .intro-photo-detail {
    border-width: 2px;
  }
}
/* A soft silver glow highlights the closing estimate button. */
.closing .closing-actions .button-white {
  background: linear-gradient(180deg, #fff 0%, #f4f4f1 100%);
  color: #202226;
  border-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 0 #d7d4d0, 0 0 26px #ffffff50, 0 12px 30px #39000845;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.closing .closing-actions .button-white:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 7px;
  box-shadow: 0 4px 0 #d7d4d0, 0 0 36px #ffffff80, 0 14px 32px #39000850;
}
@media (hover: hover) {
  .closing .closing-actions .button-white:hover {
    background: #fff;
    color: #202226;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #d7d4d0, 0 0 36px #ffffff80, 0 16px 34px #39000850;
  }
}
.closing .closing-actions .button-white:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #d7d4d0, 0 0 20px #ffffff50, 0 5px 16px #39000840;
}
