:root {
  --ink: #18191d;
  --muted: #60646c;
  --paper: #f6f4f1;
  --white: #ffffff;
  --forest: #20242b;
  --moss: #426f86;
  --copper: #b46534;
  --line: #dcddd9;
  --shadow: 0 22px 60px rgba(24, 25, 29, 0.18);
  --shadow-soft: 0 12px 34px rgba(24, 25, 29, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

main {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 15px clamp(18px, 3vw, 44px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 25, 0.94), rgba(18, 20, 25, 0.44));
  backdrop-filter: blur(8px);
}

.logo img {
  width: clamp(145px, 15vw, 210px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(11px, 1.45vw, 24px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.button {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(180, 101, 52, 0.7);
  outline-offset: 3px;
}

.header-cta,
.button,
.gallery-filters button,
.menu-toggle {
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 11px 15px;
  color: var(--white);
  background: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 8px 24px rgba(180, 101, 52, 0.28);
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: #9f572e;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: min(860px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px clamp(20px, 6vw, 80px) 90px;
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: min(700px, 70vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 80px) 76px;
  color: var(--white);
}

.compact-hero {
  min-height: 58vh;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.94), rgba(17, 19, 24, 0.66) 52%, rgba(17, 19, 24, 0.24)),
    linear-gradient(0deg, rgba(17, 19, 24, 0.26), transparent 46%);
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #5d8da4;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.4vw, 5.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 790px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-content .hero-kicker {
  margin: -8px 0 16px;
  color: #b8d2df;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  box-shadow: 0 8px 22px rgba(24, 25, 29, 0.1);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button.primary:hover {
  background: #9f572e;
}

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

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}

.button.dark-secondary {
  color: var(--forest);
  border: 1px solid var(--forest);
  background: transparent;
}

.button.dark-secondary:hover {
  color: var(--white);
  background: var(--forest);
}

.section {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 80px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro-grid,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.prose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  color: var(--muted);
  font-size: 1.06rem;
}

.prose {
  color: var(--muted);
  font-size: 1.06rem;
}

.prose.narrow {
  max-width: 900px;
  margin-bottom: 34px;
}

.centered-copy {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.soft-section {
  background: #e9ecee;
}

.local-work-band {
  color: var(--white);
  background: var(--moss);
}

.local-work-band .eyebrow {
  color: #d6e7ef;
}

.local-work-band h2 {
  max-width: 820px;
}

.local-work-band .prose-grid {
  color: rgba(255, 255, 255, 0.84);
}

.text-link {
  color: var(--copper);
  font-weight: 900;
  text-underline-offset: 4px;
}

.text-link.light {
  color: #c9e0eb;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-top: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-row span {
  position: relative;
  padding: 8px 12px 8px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(20, 23, 28, 0.42);
  backdrop-filter: blur(4px);
}

.trust-row span::before {
  position: absolute;
  left: 12px;
  color: #a8c7d8;
  content: "✓";
}

.trust-row span {
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.trust-row span:hover {
  border-color: rgba(168, 199, 216, 0.7);
  background: rgba(20, 23, 28, 0.58);
  transform: translateY(-2px);
}

.intro-grid {
  align-items: start;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.linked-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.linked-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(24, 25, 29, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p,
.split-content p,
.process p,
.why span,
.contact-copy p {
  color: var(--muted);
}

.service-card span {
  color: var(--copper);
  font-weight: 900;
}

.rot-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 62px clamp(20px, 6vw, 80px);
  color: var(--white);
  background: var(--forest);
}

.rot-band .eyebrow {
  color: #a8c7d8;
}

.rot-band p:last-child {
  margin: 0;
  font-size: 1.1rem;
}

.split-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 900;
  content: "✓";
}

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

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

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

.steps article,
.why-grid div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.steps article:hover,
.why-grid div:hover {
  border-color: rgba(66, 111, 134, 0.38);
  box-shadow: 0 18px 42px rgba(24, 25, 29, 0.13);
  transform: translateY(-3px);
}

.steps span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--copper);
  font-weight: 900;
  transition: background 200ms ease, transform 200ms ease;
}

.steps article:hover span {
  background: var(--moss);
  transform: scale(1.06);
}

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

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

.why .why-grid div {
  min-height: 210px;
  padding-top: 70px;
}

.why .why-grid div::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--moss);
  content: "✓";
  font-size: 0.9rem;
  font-weight: 900;
}

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

.area-card {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(24, 25, 29, 0.14);
}

.area-card strong {
  font-size: 1.28rem;
  line-height: 1.15;
}

.area-card span {
  color: var(--muted);
}

.area-card em {
  align-self: end;
  color: var(--copper);
  font-style: normal;
  font-weight: 900;
}

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

.faq-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-list {
  display: grid;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(24, 25, 29, 0.06);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-list details[open] {
  border-color: rgba(66, 111, 134, 0.42);
  box-shadow: 0 14px 34px rgba(24, 25, 29, 0.1);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.faq-list summary:hover {
  color: var(--copper);
  background: rgba(66, 111, 134, 0.05);
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--copper);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  content: "+";
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  transform-origin: top;
}

.js-enabled .faq-list details[open] p {
  animation: faq-answer-in 240ms ease-out both;
}

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

.why-grid strong {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.gallery-section {
  background: #e9ecee;
}

.gallery-top {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 470px);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.gallery-top p:last-child {
  color: var(--muted);
}

code {
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(24, 25, 29, 0.08);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.gallery-filters button {
  padding: 10px 16px;
  color: var(--forest);
  background: var(--white);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gallery-filters button:hover {
  box-shadow: 0 8px 18px rgba(24, 25, 29, 0.1);
  transform: translateY(-1px);
}

.gallery-filters button.active {
  color: var(--white);
  background: var(--forest);
}

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

.gallery-item {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-item:hover {
  box-shadow: 0 22px 48px rgba(24, 25, 29, 0.18);
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 84px 22px 22px;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(16, 18, 23, 0.9));
  opacity: 0.94;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-item .gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: max-content;
  padding: 6px 10px;
  border-radius: 3px;
  color: var(--white);
  background: rgba(24, 25, 29, 0.84);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-page .breadcrumbs {
  padding-top: 116px;
}

.contact-layout {
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 20px;
}

.contact-copy h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
}

.contact-panel .contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 24px;
}

.contact-card {
  display: grid;
  align-content: start;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(24, 25, 29, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.contact-card:hover {
  box-shadow: 0 18px 42px rgba(24, 25, 29, 0.14);
  transform: translateY(-3px);
}

.contact-icon {
  display: inline-flex;
  width: max-content;
  min-width: 46px;
  min-height: 34px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--white);
  background: var(--moss);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 1.15rem;
}

.contact-card em {
  align-self: end;
  margin-top: 20px;
  color: var(--copper);
  font-style: normal;
  font-weight: 900;
}

.info-panel {
  margin: 24px 0;
  padding: 22px;
  border-left: 4px solid var(--moss);
  border-radius: 0 8px 8px 0;
  background: var(--white);
}

.info-panel p:last-child {
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-details a {
  font-weight: 800;
  text-decoration-color: var(--moss);
  text-underline-offset: 4px;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--moss);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(66, 111, 134, 0.14);
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 38px;
  align-items: start;
  padding: 58px clamp(20px, 6vw, 80px) 24px;
  color: var(--white);
  background: #171a20;
}

.content-band,
.cta-section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background: var(--forest);
}

.mid-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 48px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.mid-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.mid-cta p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) auto;
  gap: 28px;
  align-items: center;
}

.content-band .button,
.cta-section .button {
  justify-self: start;
}

.content-band .eyebrow,
.cta-section .eyebrow {
  color: #a8c7d8;
}

.content-band p,
.cta-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-section {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cta-section h2,
.cta-section p {
  max-width: 860px;
}

.site-footer img {
  width: 180px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #a8c7d8;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a,
.footer-contact span {
  display: block;
  padding: 5px 0;
  overflow-wrap: anywhere;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px clamp(20px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.comparison-grid,
.before-after-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.comparison-card,
.before-after-card,
.feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-card h3,
.before-after-card h3,
.feature-card h3 {
  margin-bottom: 12px;
}

.comparison-card p,
.before-after-card p,
.feature-card p {
  color: var(--muted);
}

.comparison-card.accent,
.before-after-card.after {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.comparison-card.accent p,
.before-after-card.after p {
  color: rgba(255, 255, 255, 0.76);
}

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

.feature-card {
  min-height: 210px;
}

.feature-card::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--copper);
  content: attr(data-step);
  font-size: 0.78rem;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 72px 22px 28px;
  background: rgba(13, 15, 19, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.lightbox img {
  max-height: 78vh;
  width: auto;
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.975);
  transition: opacity 220ms ease, transform 220ms ease;
}

.lightbox.open img {
  opacity: 1;
  transform: scale(1);
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--white);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

body.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease-out var(--delay, 0ms),
    transform 600ms ease-out var(--delay, 0ms);
  will-change: opacity, transform;
}

body.js-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 821px) {
  body.js-enabled .hero > .hero-media,
  body.js-enabled .page-hero > .hero-media {
    animation: hero-drift 16s ease-out both;
    transform-origin: center center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .area-card:hover,
  .gallery-item:hover,
  a.contact-card:hover,
  .steps article:hover,
  .why-grid div:hover,
  .feature-card:hover,
  .comparison-card:hover,
  .before-after-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 1120px) {
  .card-grid,
  .gallery-grid,
  .why-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 8px;
    background: rgba(24, 26, 32, 0.98);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 11px 12px;
  }

  .header-cta {
    display: none;
  }

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

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

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

@media (max-width: 820px) {
  .hero {
    min-height: min(760px, 84vh);
    padding: 130px 20px 64px;
  }

  .page-hero {
    min-height: min(650px, 66vh);
    padding: 130px 20px 58px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(24, 26, 32, 0.82), rgba(24, 26, 32, 0.9));
  }

  .intro-grid,
  .prose-grid,
  .split,
  .rot-band,
  .gallery-top,
  .contact,
  .site-footer,
  .content-band,
  .mid-cta,
  .comparison-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

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

  .steps.six-steps,
  .why .why-grid {
    grid-template-columns: 1fr;
  }

  .mid-cta .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .card-grid,
  .gallery-grid,
  .why-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.42rem;
  }

  .button {
    width: 100%;
  }

  body {
    padding-bottom: 62px;
  }

  .site-header {
    padding: 11px 16px;
  }

  .contact-page .breadcrumbs {
    padding-top: 92px;
  }

  .logo img {
    width: 150px;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 54px;
  }

  .page-hero {
    min-height: auto;
    padding: 120px 20px 54px;
  }

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

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    font-size: 0.82rem;
  }

  .contact-cards,
  .site-footer,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    min-height: 150px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(92px, 0.7fr) minmax(190px, 1.3fr);
    min-height: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: #171a20;
    box-shadow: 0 -8px 30px rgba(24, 25, 29, 0.24);
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
  }

  body.mobile-cta-visible .mobile-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.mobile-cta-footer .mobile-cta {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
  }

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

  .gallery-item,
  .gallery-item img {
    min-height: 340px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  body.js-enabled .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
